:root {
  --font-family-serif: system-ui-serif, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  --font-family-sans-serif: Bilo, system-ui, -apple-system, Segoe UI, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  --font-family-button: Bilo, system-ui, -apple-system, Segoe UI, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  --font-family-heading: Bilo, system-ui, -apple-system, Segoe UI, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  --text-container-spacer: 0;
  --link-color: #000;
  --link-color-hover: rgb(61, 61, 61);
  scroll-behavior: smooth;
}
@font-face {
  font-family: 'Bilo';
  src: url('../fonts/bilo/Bilo-Bold.woff2') format('woff2'),
      url('../fonts/bilo/Bilo-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bilo';
  src: url('../fonts/bilo/Bilo-ExtraBold.woff2') format('woff2'),
      url('../fonts/bilo/Bilo-ExtraBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bilo';
  src: url('../fonts/bilo/Bilo-Medium.woff2') format('woff2'),
      url('../fonts/bilo/Bilo-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bilo';
  src: url('../fonts/bilo/Bilo-Regular.woff2') format('woff2'),
      url('../fonts/bilo/Bilo-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family: var(--font-family-sans-serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
  word-break: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  margin: var(--text-container-sep-spacer, 0) 0;
  color: #20272d;
  background-color: currentColor;
  border: 0;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: var(--text-container-h-top-spacer, 0);
  margin-bottom: var(--text-container-h-bottom-spacer, 0);
}

p {
  margin-top: var(--text-container-spacer, 0);
  margin-bottom: var(--text-container-spacer, 0);
}

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

address {
  margin-bottom: var(--text-container-spacer, 0);
  font-style: normal;
  line-height: inherit;
}

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

ol,
ul,
dl {
  margin-top: var(--text-container-list-spacer, 0);
  margin-bottom: var(--text-container-list-spacer, 0);
}

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

dt {
  font-weight: 700;
}

dd {
  margin-bottom: calc(var(--text-container-list-spacer, 0) / 2);
  margin-left: 0;
}

blockquote {
  margin: var(--text-container-quote-spacer, 0) 0;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: .875em;
}

mark {
  padding: 2em;
  background-color: inherit;
}

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--font-family-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin: var(--text-container-code-spacer, 0) 0;
  overflow: auto;
  font-size: 1em;
  color: inherit;
  -ms-overflow-style: scrollbar;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: inherit;
  color: inherit;
  word-wrap: break-word;
}

a>code {
  color: inherit;
}

kbd {
  padding: .3rem .6rem;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
  border-radius: .2rem;
}

kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 400;
}

figure {
  margin: var(--text-container-image-spacer, 0) 0;
}

img,
svg {
  vertical-align: middle;
}

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

caption {
  padding-top: .8rem;
  padding-bottom: .8rem;
  color: inherit;
  text-align: left;
}

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

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

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

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

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

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

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

textarea {
  resize: vertical;
}

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

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: .8rem;
  font-size: 1em;
  font-weight: 700;
  line-height: inherit;
  white-space: normal;
}

legend+* {
  clear: left;
}

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

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

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

::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

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

output {
  display: inline-block;
}

iframe {
  height: 100%;
  border: 0;
}

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

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.u-fsz-80 {
  font-size: 8rem;
}

.u-fsz-56 {
  font-size: 5.6rem;
}

.u-fsz-48 {
  font-size: 4.8rem;
}

.u-fsz-44 {
  font-size: 4.4rem;
}

.u-fsz-36 {
  font-size: 3.6rem;
}

.u-fsz-32 {
  font-size: 3.2rem;
}

.u-fsz-28 {
  font-size: 2.8rem;
}

.u-fsz-24 {
  font-size: 2.4rem;
}

.u-fsz-22 {
  font-size: 2.2rem;
}

.u-fsz-18 {
  font-size: 1.8rem;
}

.u-fsz-16 {
  font-size: 1.6rem;
}

.u-fsz-14 {
  font-size: 1.4rem;
}

.u-fsz-13 {
  font-size: 1.3rem;
}

.u-fsz-11 {
  font-size: 1.2rem;
}

.u-lh-178p {
  line-height: 1.78;
}

.u-lh-166p {
  line-height: 1.6666;
}

.u-lh-150p {
  line-height: 1.5;
}

.u-lh-131p {
  line-height: 1.31;
}

.u-lh-116p {
  line-height: 1.1666;
}

.u-lh-100p {
  line-height: 1;
}

@media (min-width: 768px) {
  .md\:u-fsz-56 {
    font-size: 5.6rem;
  }

  .md\:u-fsz-48 {
    font-size: 4.8rem;
  }

  .md\:u-fsz-44 {
    font-size: 4.4rem;
  }

  .md\:u-fsz-36 {
    font-size: 3.6rem;
  }

  .md\:u-fsz-32 {
    font-size: 3.2rem;
  }

  .md\:u-fsz-28 {
    font-size: 2.8rem;
  }

  .md\:u-fsz-24 {
    font-size: 2.4rem;
  }

  .md\:u-fsz-22 {
    font-size: 2.2rem;
  }

  .md\:u-fsz-18 {
    font-size: 1.8rem;
  }

  .md\:u-fsz-16 {
    font-size: 1.6rem;
  }

  .md\:u-fsz-14 {
    font-size: 1.4rem;
  }

  .md\:u-fsz-11 {
    font-size: 1.1rem;
  }
}

@media (min-width: 992px) {
  .lg\:u-fsz-100 {
    font-size: 100px
  }
  .lg\:u-fsz-80 {
    font-size: 72px
  }

  .lg\:u-fsz-64 {
    font-size: 5.4rem;
  }

  .lg\:u-fsz-56 {
    font-size: 5.6rem;
  }

  .lg\:u-fsz-44 {
    font-size: 4.4rem;
  }

  .lg\:u-fsz-36 {
    font-size: 3.6rem;
  }

  .lg\:u-fsz-28 {
    font-size: 2.8rem;
  }

  .lg\:u-fsz-24 {
    font-size: 2.4rem;
  }

  .lg\:u-fsz-22 {
    font-size: 2.2rem;
  }

  .lg\:u-fsz-18 {
    font-size: 1.8rem;
  }

  .lg\:u-fsz-16 {
    font-size: 1.6rem;
  }

  .lg\:u-fsz-14 {
    font-size: 1.4rem;
  }

  .lg\:u-fsz-11 {
    font-size: 1.1rem;
  }
}

@media (min-width: 1200px) {
  .xl\:u-fsz-100 {
    font-size: 10rem;
  }
  .xl\:u-fsz-80 {
    font-size: 8rem;
  }

  .xl\:u-fsz-56 {
    font-size: 5.6rem;
  }

  .xl\:u-fsz-56 {
    font-size: 5.6rem;
  }

  .xl\:u-fsz-48 {
    font-size: 4.8rem;
  }

  .xl\:u-fsz-36 {
    font-size: 3.6rem;
  }

  .xl\:u-fsz-28 {
    font-size: 2.8rem;
  }

  .xl\:u-fsz-24 {
    font-size: 2.4rem;
  }

  .xl\:u-fsz-22 {
    font-size: 2.2rem;
  }

  .xl\:u-fsz-18 {
    font-size: 1.8rem;
  }

  .xl\:u-fsz-16 {
    font-size: 1.6rem;
  }

  .xl\:u-fsz-14 {
    font-size: 1.4rem;
  }

  .xl\:u-fsz-11 {
    font-size: 1.1rem;
  }
}

@media (min-width: 1500px) {
  .xxl\:u-fsz-100 {
    font-size: 10rem;
  }
  .xxl\:u-fsz-56 {
    font-size: 5.6rem;
  }

  .xxl\:u-fsz-48 {
    font-size: 4.8rem;
  }

  .xxl\:u-fsz-36 {
    font-size: 3.6rem;
  }

  .xxl\:u-fsz-28 {
    font-size: 2.8rem;
  }

  .xxl\:u-fsz-24 {
    font-size: 2.4rem;
  }

  .xxl\:u-fsz-22 {
    font-size: 2.2rem;
  }

  .xxl\:u-fsz-18 {
    font-size: 1.8rem;
  }

  .xxl\:u-fsz-16 {
    font-size: 1.6rem;
  }

  .xxl\:u-fsz-14 {
    font-size: 1.4rem;
  }

  .xxl\:u-fsz-11 {
    font-size: 1.1rem;
  }
}

.text-container {
  --text-container-spacer: 0;
  --text-container-h-top-spacer: 0;
  --text-container-h-bottom-spacer: 0;
  --text-container-list-spacer: 0;
  --text-container-image-spacer: 0;
  --text-container-quote-spacer: 0;
  --text-container-code-spacer: 0;
  --text-container-sep-spacer: 0;
}

.text-container--normal {
  --text-container-spacer: 1.666em;
  --text-container-h-top-spacer: 1.666em;
  --text-container-h-bottom-spacer: 1.666em;
  --text-container-list-spacer: 1.666em;
  --text-container-image-spacer: 1.666em;
  --text-container-quote-spacer: 1.666em;
  --text-container-code-spacer: 1.666em;
  --text-container-sep-spacer: 1.666em;
}

@media (min-width: 768px) {
  .md\:text-container--normal {
    --text-container-spacer: 1.666em;
    --text-container-h-top-spacer: 1.666em;
    --text-container-h-bottom-spacer: 1.666em;
    --text-container-list-spacer: 1.666em;
    --text-container-image-spacer: 1.666em;
    --text-container-quote-spacer: 1.666em;
    --text-container-code-spacer: 1.666em;
    --text-container-sep-spacer: 1.666em;
  }
}

@media (min-width: 992px) {
  .lg\:text-container--normal {
    --text-container-spacer: 1.666em;
    --text-container-h-top-spacer: 1.666em;
    --text-container-h-bottom-spacer: 1.666em;
    --text-container-list-spacer: 1.666em;
    --text-container-image-spacer: 1.666em;
    --text-container-quote-spacer: 1.666em;
    --text-container-code-spacer: 1.666em;
    --text-container-sep-spacer: 1.666em;
  }
}

@media (min-width: 1200px) {
  .xl\:text-container--normal {
    --text-container-spacer: 1.666em;
    --text-container-h-top-spacer: 1.666em;
    --text-container-h-bottom-spacer: 1.666em;
    --text-container-list-spacer: 1.666em;
    --text-container-image-spacer: 1.666em;
    --text-container-quote-spacer: 1.666em;
    --text-container-code-spacer: 1.666em;
    --text-container-sep-spacer: 1.666em;
  }
}

@media (min-width: 1500px) {
  .xxl\:text-container--normal {
    --text-container-spacer: 1.666em;
    --text-container-h-top-spacer: 1.666em;
    --text-container-h-bottom-spacer: 1.666em;
    --text-container-list-spacer: 1.666em;
    --text-container-image-spacer: 1.666em;
    --text-container-quote-spacer: 1.666em;
    --text-container-code-spacer: 1.666em;
    --text-container-sep-spacer: 1.666em;
  }
}

.text-container b,
.text-container strong {
  font-weight: 600;
}

.text-container h1,
.text-container h2,
.text-container h3,
.text-container h4,
.text-container h5,
.text-container h6 {
  font-family: var(--font-family-sans-serif);
  font-weight: 700;
  color: #495057;
}

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

.text-container figure img {
  width: 100%;
}

.text-container ul,
.text-container ol {
  list-style: none;
  padding-left: 2.4rem;
}

.text-container ul li,
.text-container ol li {
  position: relative;
  z-index: 1;
  margin-bottom: var(--text-container-spacer);
}

.text-container ul li:last-child,
.text-container ol li:last-child {
  margin-bottom: 0;
}

.text-container ol {
  padding-left: 3.6rem;
  counter-reset: counter;
}

.text-container ol li {
  counter-increment: counter;
}

.text-container ol li::before {
  content: counter(counter) ". ";
  position: absolute;
  left: -3.6rem;
  width: 3.6rem;
}

.text-container>*:first-child {
  margin-top: 0;
}

.text-container>*:last-child {
  margin-bottom: 0;
}

.text-links--blank a[href]:not(.button) {
  color: inherit;
}

.text-links--blank a[href]:not(.button):hover,
.text-links--blank a[href]:not(.button):focus {
  color: var(--link-color-hover);
}

.text-links--normal a[href]:not(.button) {
  color: var(--link-color);
}

.text-links--normal a[href]:not(.button):hover,
.text-links--normal a[href]:not(.button):focus {
  color: var(--link-color-hover);
}

.text-links--underline a[href]:not(.button) {
  text-decoration: underline;
}

.text-links--underline-hover a[href]:not(.button):hover,
.text-links--underline-hover a[href]:not(.button):focus {
  text-decoration: none;
}

.container,
.container-fluid {
  width: 100%;
  max-width: 1740px;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 524px;
  }

}

@media (min-width: 768px) {
  .container {
    max-width: 640px;
  }

}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }

}

@media (min-width: 1200px) {
  .container {
    max-width: 1152px;
  }

  .container-fluid .half {
    max-width: 576px;
  }

}

@media (min-width: 1500px) {
  .container {
    max-width: 1440px;
  }
  .container-fluid {
    max-width: 1740px !important;
  }

}

@media (min-width: 576px) {
  .container-sm {
    max-width: 524px;
  }
}

@media (min-width: 768px) {
  .container-md {
    max-width: 640px;
  }
}

@media (min-width: 992px) {
  .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container-xl {
    max-width: 1152px;
  }
}

@media (min-width: 1500px) {
  .container-xxl {
    max-width: 1440px;
  }
}

.row,
.buttons {
  --tn-row-columns: 1;
  --tn-row-gap-x: 0rem;
  --tn-row-gap-y: 0rem;
  display: flex;
  flex: 1 0 100%;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-top: calc(var(--tn-row-gap-y, 0) * -1);
  margin-left: calc(var(--tn-row-gap-x, 0) / -2);
  margin-right: calc(var(--tn-row-gap-x, 0) / -2);
}

.col {
  box-sizing: border-box;
  flex: 0 0 auto;
  padding-right: calc(var(--tn-row-gap-x, 0) / 2);
  padding-left: calc(var(--tn-row-gap-x, 0) / 2);
  margin-top: var(--tn-row-gap-y, 0);
  min-width: 0;
  max-width: 100%;
  width: calc(1 / var(--tn-row-columns, 12) * 100%);
}

.cols-1 {
  --tn-row-columns: 1;
}

.cols-2 {
  --tn-row-columns: 2;
}

.cols-3 {
  --tn-row-columns: 3;
}

.cols-4 {
  --tn-row-columns: 4;
}

.cols-5 {
  --tn-row-columns: 5;
}

.cols-6 {
  --tn-row-columns: 6;
}

.cols-7 {
  --tn-row-columns: 7;
}

.cols-8 {
  --tn-row-columns: 8;
}

.cols-9 {
  --tn-row-columns: 9;
}

.cols-10 {
  --tn-row-columns: 10;
}

.cols-11 {
  --tn-row-columns: 11;
}

.cols-12 {
  --tn-row-columns: 12;
}

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

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

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

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

.col-1 {
  max-width: none;
  width: calc(1 / var(--tn-row-columns, 12) * 100%);
  flex: 0 0 auto;
}

.col-2 {
  max-width: none;
  width: calc(2 / var(--tn-row-columns, 12) * 100%);
  flex: 0 0 auto;
}

.col-3 {
  max-width: none;
  width: calc(3 / var(--tn-row-columns, 12) * 100%);
  flex: 0 0 auto;
}

.col-4 {
  max-width: none;
  width: calc(4 / var(--tn-row-columns, 12) * 100%);
  flex: 0 0 auto;
}

.col-5 {
  max-width: none;
  width: calc(5 / var(--tn-row-columns, 12) * 100%);
  flex: 0 0 auto;
}

.col-6 {
  max-width: none;
  width: calc(6 / var(--tn-row-columns, 12) * 100%);
  flex: 0 0 auto;
}

.col-7 {
  max-width: none;
  width: calc(7 / var(--tn-row-columns, 12) * 100%);
  flex: 0 0 auto;
}

.col-8 {
  max-width: none;
  width: calc(8 / var(--tn-row-columns, 12) * 100%);
  flex: 0 0 auto;
}

.col-9 {
  max-width: none;
  width: calc(9 / var(--tn-row-columns, 12) * 100%);
  flex: 0 0 auto;
}

.col-10 {
  max-width: none;
  width: calc(10 / var(--tn-row-columns, 12) * 100%);
  flex: 0 0 auto;
}

.col-11 {
  max-width: none;
  width: calc(11 / var(--tn-row-columns, 12) * 100%);
  flex: 0 0 auto;
}

.col-12 {
  max-width: none;
  width: calc(12 / var(--tn-row-columns, 12) * 100%);
  flex: 0 0 auto;
}

.offset-1 {
  margin-left: calc(1 / var(--tn-row-columns, 12) * 100%);
}

.offset-2 {
  margin-left: calc(2 / var(--tn-row-columns, 12) * 100%);
}

.offset-3 {
  margin-left: calc(3 / var(--tn-row-columns, 12) * 100%);
}

.offset-4 {
  margin-left: calc(4 / var(--tn-row-columns, 12) * 100%);
}

.offset-5 {
  margin-left: calc(5 / var(--tn-row-columns, 12) * 100%);
}

.offset-6 {
  margin-left: calc(6 / var(--tn-row-columns, 12) * 100%);
}

.offset-7 {
  margin-left: calc(7 / var(--tn-row-columns, 12) * 100%);
}

.offset-8 {
  margin-left: calc(8 / var(--tn-row-columns, 12) * 100%);
}

.offset-9 {
  margin-left: calc(9 / var(--tn-row-columns, 12) * 100%);
}

.offset-10 {
  margin-left: calc(10 / var(--tn-row-columns, 12) * 100%);
}

.offset-11 {
  margin-left: calc(11 / var(--tn-row-columns, 12) * 100%);
}

.row.gap--zero,
.row.gap-x--zero {
  --tn-row-gap-x: 0rem;
}

.row.gap--zero,
.row.gap-y--zero {
  --tn-row-gap-y: 0rem;
}

.row.gap--small,
.row.gap-x--small {
  --tn-row-gap-x: 0.8rem;
}

.row.gap--small,
.row.gap-y--small {
  --tn-row-gap-y: 0.8rem;
}

.row.gap--medium,
.row.gap-x--medium {
  --tn-row-gap-x: 1.4rem;
}

.row.gap--medium,
.row.gap-y--medium {
  --tn-row-gap-y: 1.4rem;
}

.row.gap--large,
.row.gap-x--large {
  --tn-row-gap-x: 3.2rem;
}

.row.gap--large,
.row.gap-y--large {
  --tn-row-gap-y: 3.2rem;
}

.buttons.gap--zero,
.buttons.gap-x--zero {
  --tn-row-gap-x: 0rem;
}

.buttons.gap--zero,
.buttons.gap-y--zero {
  --tn-row-gap-y: 0rem;
}

.buttons.gap--medium,
.buttons.gap-x--medium {
  --tn-row-gap-x: 0.8rem;
}

.buttons.gap--medium,
.buttons.gap-y--medium {
  --tn-row-gap-y: 0.8rem;
}

.buttons.gap--large,
.buttons.gap-x--large {
  --tn-row-gap-x: 1.6rem;
}

.buttons.gap--large,
.buttons.gap-y--large {
  --tn-row-gap-y: 1.6rem;
}

@media (min-width: 576px) {
  .sm\:cols-1 {
    --tn-row-columns: 1;
  }

  .sm\:cols-2 {
    --tn-row-columns: 2;
  }

  .sm\:cols-3 {
    --tn-row-columns: 3;
  }

  .sm\:cols-4 {
    --tn-row-columns: 4;
  }

  .sm\:cols-5 {
    --tn-row-columns: 5;
  }

  .sm\:cols-6 {
    --tn-row-columns: 6;
  }

  .sm\:cols-7 {
    --tn-row-columns: 7;
  }

  .sm\:cols-8 {
    --tn-row-columns: 8;
  }

  .sm\:cols-9 {
    --tn-row-columns: 9;
  }

  .sm\:cols-10 {
    --tn-row-columns: 10;
  }

  .sm\:cols-11 {
    --tn-row-columns: 11;
  }

  .sm\:cols-12 {
    --tn-row-columns: 12;
  }

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

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

  .sm\:col-auto-fill {
    max-width: 100%;
    width: auto;
    flex: 1 1 auto;
  }

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

  .sm\:col-1 {
    max-width: none;
    width: calc(1 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .sm\:col-2 {
    max-width: none;
    width: calc(2 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .sm\:col-3 {
    max-width: none;
    width: calc(3 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .sm\:col-4 {
    max-width: none;
    width: calc(4 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .sm\:col-5 {
    max-width: none;
    width: calc(5 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .sm\:col-6 {
    max-width: none;
    width: calc(6 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .sm\:col-7 {
    max-width: none;
    width: calc(7 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .sm\:col-8 {
    max-width: none;
    width: calc(8 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .sm\:col-9 {
    max-width: none;
    width: calc(9 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .sm\:col-10 {
    max-width: none;
    width: calc(10 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .sm\:col-11 {
    max-width: none;
    width: calc(11 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .sm\:col-12 {
    max-width: none;
    width: calc(12 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .sm\:offset-0 {
    margin-left: 0;
  }

  .sm\:offset-1 {
    margin-left: calc(1 / var(--tn-row-columns, 12) * 100%);
  }

  .sm\:offset-2 {
    margin-left: calc(2 / var(--tn-row-columns, 12) * 100%);
  }

  .sm\:offset-3 {
    margin-left: calc(3 / var(--tn-row-columns, 12) * 100%);
  }

  .sm\:offset-4 {
    margin-left: calc(4 / var(--tn-row-columns, 12) * 100%);
  }

  .sm\:offset-5 {
    margin-left: calc(5 / var(--tn-row-columns, 12) * 100%);
  }

  .sm\:offset-6 {
    margin-left: calc(6 / var(--tn-row-columns, 12) * 100%);
  }

  .sm\:offset-7 {
    margin-left: calc(7 / var(--tn-row-columns, 12) * 100%);
  }

  .sm\:offset-8 {
    margin-left: calc(8 / var(--tn-row-columns, 12) * 100%);
  }

  .sm\:offset-9 {
    margin-left: calc(9 / var(--tn-row-columns, 12) * 100%);
  }

  .sm\:offset-10 {
    margin-left: calc(10 / var(--tn-row-columns, 12) * 100%);
  }

  .sm\:offset-11 {
    margin-left: calc(11 / var(--tn-row-columns, 12) * 100%);
  }

  .row.sm\:gap--zero,
  .row.sm\:gap-x--zero {
    --tn-row-gap-x: 0rem;
  }

  .row.sm\:gap--zero,
  .row.sm\:gap-y--zero {
    --tn-row-gap-y: 0rem;
  }

  .row.sm\:gap--small,
  .row.sm\:gap-x--small {
    --tn-row-gap-x: 0.8rem;
  }

  .row.sm\:gap--small,
  .row.sm\:gap-y--small {
    --tn-row-gap-y: 0.8rem;
  }

  .row.sm\:gap--medium,
  .row.sm\:gap-x--medium {
    --tn-row-gap-x: 2.4rem;
  }

  .row.sm\:gap--medium,
  .row.sm\:gap-y--medium {
    --tn-row-gap-y: 2.4rem;
  }

  .row.sm\:gap--large,
  .row.sm\:gap-x--large {
    --tn-row-gap-x: 3.2rem;
  }

  .row.sm\:gap--large,
  .row.sm\:gap-y--large {
    --tn-row-gap-y: 3.2rem;
  }

  .buttons.sm\:gap--zero,
  .buttons.sm\:gap-x--zero {
    --tn-row-gap-x: 0rem;
  }

  .buttons.sm\:gap--zero,
  .buttons.sm\:gap-y--zero {
    --tn-row-gap-y: 0rem;
  }

  .buttons.sm\:gap--medium,
  .buttons.sm\:gap-x--medium {
    --tn-row-gap-x: 0.8rem;
  }

  .buttons.sm\:gap--medium,
  .buttons.sm\:gap-y--medium {
    --tn-row-gap-y: 0.8rem;
  }

  .buttons.sm\:gap--large,
  .buttons.sm\:gap-x--large {
    --tn-row-gap-x: 1.6rem;
  }

  .buttons.sm\:gap--large,
  .buttons.sm\:gap-y--large {
    --tn-row-gap-y: 1.6rem;
  }
}

@media (min-width: 768px) {
  .md\:cols-1 {
    --tn-row-columns: 1;
  }

  .md\:cols-2 {
    --tn-row-columns: 2;
  }

  .md\:cols-3 {
    --tn-row-columns: 3;
  }

  .md\:cols-4 {
    --tn-row-columns: 4;
  }

  .md\:cols-5 {
    --tn-row-columns: 5;
  }

  .md\:cols-6 {
    --tn-row-columns: 6;
  }

  .md\:cols-7 {
    --tn-row-columns: 7;
  }

  .md\:cols-8 {
    --tn-row-columns: 8;
  }

  .md\:cols-9 {
    --tn-row-columns: 9;
  }

  .md\:cols-10 {
    --tn-row-columns: 10;
  }

  .md\:cols-11 {
    --tn-row-columns: 11;
  }

  .md\:cols-12 {
    --tn-row-columns: 12;
  }

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

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

  .md\:col-auto-fill {
    max-width: 100%;
    width: auto;
    flex: 1 1 auto;
  }

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

  .md\:col-1 {
    max-width: none;
    width: calc(1 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .md\:col-2 {
    max-width: none;
    width: calc(2 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .md\:col-3 {
    max-width: none;
    width: calc(3 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .md\:col-4 {
    max-width: none;
    width: calc(4 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .md\:col-5 {
    max-width: none;
    width: calc(5 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .md\:col-6 {
    max-width: none;
    width: calc(6 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .md\:col-7 {
    max-width: none;
    width: calc(7 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .md\:col-8 {
    max-width: none;
    width: calc(8 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .md\:col-9 {
    max-width: none;
    width: calc(9 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .md\:col-10 {
    max-width: none;
    width: calc(10 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .md\:col-11 {
    max-width: none;
    width: calc(11 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .md\:col-12 {
    max-width: none;
    width: calc(12 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .md\:offset-0 {
    margin-left: 0;
  }

  .md\:offset-1 {
    margin-left: calc(1 / var(--tn-row-columns, 12) * 100%);
  }

  .md\:offset-2 {
    margin-left: calc(2 / var(--tn-row-columns, 12) * 100%);
  }

  .md\:offset-3 {
    margin-left: calc(3 / var(--tn-row-columns, 12) * 100%);
  }

  .md\:offset-4 {
    margin-left: calc(4 / var(--tn-row-columns, 12) * 100%);
  }

  .md\:offset-5 {
    margin-left: calc(5 / var(--tn-row-columns, 12) * 100%);
  }

  .md\:offset-6 {
    margin-left: calc(6 / var(--tn-row-columns, 12) * 100%);
  }

  .md\:offset-7 {
    margin-left: calc(7 / var(--tn-row-columns, 12) * 100%);
  }

  .md\:offset-8 {
    margin-left: calc(8 / var(--tn-row-columns, 12) * 100%);
  }

  .md\:offset-9 {
    margin-left: calc(9 / var(--tn-row-columns, 12) * 100%);
  }

  .md\:offset-10 {
    margin-left: calc(10 / var(--tn-row-columns, 12) * 100%);
  }

  .md\:offset-11 {
    margin-left: calc(11 / var(--tn-row-columns, 12) * 100%);
  }

  .row.md\:gap--zero,
  .row.md\:gap-x--zero {
    --tn-row-gap-x: 0rem;
  }

  .row.md\:gap--zero,
  .row.md\:gap-y--zero {
    --tn-row-gap-y: 0rem;
  }

  .row.md\:gap--small,
  .row.md\:gap-x--small {
    --tn-row-gap-x: 0.8rem;
  }

  .row.md\:gap--small,
  .row.md\:gap-y--small {
    --tn-row-gap-y: 0.8rem;
  }

  .row.md\:gap--medium,
  .row.md\:gap-x--medium {
    --tn-row-gap-x: 2.4rem;
  }

  .row.md\:gap--medium,
  .row.md\:gap-y--medium {
    --tn-row-gap-y: 2.4rem;
  }

  .row.md\:gap--large,
  .row.md\:gap-x--large {
    --tn-row-gap-x: 3.2rem;
  }

  .row.md\:gap--large,
  .row.md\:gap-y--large {
    --tn-row-gap-y: 3.2rem;
  }

  .buttons.md\:gap--zero,
  .buttons.md\:gap-x--zero {
    --tn-row-gap-x: 0rem;
  }

  .buttons.md\:gap--zero,
  .buttons.md\:gap-y--zero {
    --tn-row-gap-y: 0rem;
  }

  .buttons.md\:gap--medium,
  .buttons.md\:gap-x--medium {
    --tn-row-gap-x: 0.8rem;
  }

  .buttons.md\:gap--medium,
  .buttons.md\:gap-y--medium {
    --tn-row-gap-y: 0.8rem;
  }

  .buttons.md\:gap--large,
  .buttons.md\:gap-x--large {
    --tn-row-gap-x: 1.6rem;
  }

  .buttons.md\:gap--large,
  .buttons.md\:gap-y--large {
    --tn-row-gap-y: 1.6rem;
  }
}

@media (min-width: 992px) {
  .lg\:cols-1 {
    --tn-row-columns: 1;
  }

  .lg\:cols-2 {
    --tn-row-columns: 2;
  }

  .lg\:cols-3 {
    --tn-row-columns: 3;
  }

  .lg\:cols-4 {
    --tn-row-columns: 4;
  }

  .lg\:cols-5 {
    --tn-row-columns: 5;
  }

  .lg\:cols-6 {
    --tn-row-columns: 6;
  }

  .lg\:cols-7 {
    --tn-row-columns: 7;
  }

  .lg\:cols-8 {
    --tn-row-columns: 8;
  }

  .lg\:cols-9 {
    --tn-row-columns: 9;
  }

  .lg\:cols-10 {
    --tn-row-columns: 10;
  }

  .lg\:cols-11 {
    --tn-row-columns: 11;
  }

  .lg\:cols-12 {
    --tn-row-columns: 12;
  }

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

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

  .lg\:col-auto-fill {
    max-width: 100%;
    width: auto;
    flex: 1 1 auto;
  }

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

  .lg\:col-1 {
    max-width: none;
    width: calc(1 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .lg\:col-2 {
    max-width: none;
    width: calc(2 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .lg\:col-3 {
    max-width: none;
    width: calc(3 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .lg\:col-4 {
    max-width: none;
    width: calc(4 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .lg\:col-5 {
    max-width: none;
    width: calc(5 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .lg\:col-6 {
    max-width: none;
    width: calc(6 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .lg\:col-7 {
    max-width: none;
    width: calc(7 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .lg\:col-8 {
    max-width: none;
    width: calc(8 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .lg\:col-9 {
    max-width: none;
    width: calc(9 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .lg\:col-10 {
    max-width: none;
    width: calc(10 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .lg\:col-11 {
    max-width: none;
    width: calc(11 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .lg\:col-12 {
    max-width: none;
    width: calc(12 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .lg\:offset-0 {
    margin-left: 0;
  }

  .lg\:offset-1 {
    margin-left: calc(1 / var(--tn-row-columns, 12) * 100%);
  }

  .lg\:offset-2 {
    margin-left: calc(2 / var(--tn-row-columns, 12) * 100%);
  }

  .lg\:offset-3 {
    margin-left: calc(3 / var(--tn-row-columns, 12) * 100%);
  }

  .lg\:offset-4 {
    margin-left: calc(4 / var(--tn-row-columns, 12) * 100%);
  }

  .lg\:offset-5 {
    margin-left: calc(5 / var(--tn-row-columns, 12) * 100%);
  }

  .lg\:offset-6 {
    margin-left: calc(6 / var(--tn-row-columns, 12) * 100%);
  }

  .lg\:offset-7 {
    margin-left: calc(7 / var(--tn-row-columns, 12) * 100%);
  }

  .lg\:offset-8 {
    margin-left: calc(8 / var(--tn-row-columns, 12) * 100%);
  }

  .lg\:offset-9 {
    margin-left: calc(9 / var(--tn-row-columns, 12) * 100%);
  }

  .lg\:offset-10 {
    margin-left: calc(10 / var(--tn-row-columns, 12) * 100%);
  }

  .lg\:offset-11 {
    margin-left: calc(11 / var(--tn-row-columns, 12) * 100%);
  }

  .row.lg\:gap--zero,
  .row.lg\:gap-x--zero {
    --tn-row-gap-x: 0rem;
  }

  .row.lg\:gap--zero,
  .row.lg\:gap-y--zero {
    --tn-row-gap-y: 0rem;
  }

  .row.lg\:gap--small,
  .row.lg\:gap-x--small {
    --tn-row-gap-x: 0.8rem;
  }

  .row.lg\:gap--small,
  .row.lg\:gap-y--small {
    --tn-row-gap-y: 0.8rem;
  }

  .row.lg\:gap--medium,
  .row.lg\:gap-x--medium {
    --tn-row-gap-x: 2.4rem;
  }

  .row.lg\:gap--medium,
  .row.lg\:gap-y--medium {
    --tn-row-gap-y: 2.4rem;
  }

  .row.lg\:gap--large,
  .row.lg\:gap-x--large {
    --tn-row-gap-x: 3.2rem;
  }

  .row.lg\:gap--large,
  .row.lg\:gap-y--large {
    --tn-row-gap-y: 3.2rem;
  }

  .buttons.lg\:gap--zero,
  .buttons.lg\:gap-x--zero {
    --tn-row-gap-x: 0rem;
  }

  .buttons.lg\:gap--zero,
  .buttons.lg\:gap-y--zero {
    --tn-row-gap-y: 0rem;
  }

  .buttons.lg\:gap--medium,
  .buttons.lg\:gap-x--medium {
    --tn-row-gap-x: 0.8rem;
  }

  .buttons.lg\:gap--medium,
  .buttons.lg\:gap-y--medium {
    --tn-row-gap-y: 0.8rem;
  }

  .buttons.lg\:gap--large,
  .buttons.lg\:gap-x--large {
    --tn-row-gap-x: 1.6rem;
  }

  .buttons.lg\:gap--large,
  .buttons.lg\:gap-y--large {
    --tn-row-gap-y: 1.6rem;
  }
}

@media (min-width: 1200px) {
  .xl\:cols-1 {
    --tn-row-columns: 1;
  }

  .xl\:cols-2 {
    --tn-row-columns: 2;
  }

  .xl\:cols-3 {
    --tn-row-columns: 3;
  }

  .xl\:cols-4 {
    --tn-row-columns: 4;
  }

  .xl\:cols-5 {
    --tn-row-columns: 5;
  }

  .xl\:cols-6 {
    --tn-row-columns: 6;
  }

  .xl\:cols-7 {
    --tn-row-columns: 7;
  }

  .xl\:cols-8 {
    --tn-row-columns: 8;
  }

  .xl\:cols-9 {
    --tn-row-columns: 9;
  }

  .xl\:cols-10 {
    --tn-row-columns: 10;
  }

  .xl\:cols-11 {
    --tn-row-columns: 11;
  }

  .xl\:cols-12 {
    --tn-row-columns: 12;
  }

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

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

  .xl\:col-auto-fill {
    max-width: 100%;
    width: auto;
    flex: 1 1 auto;
  }

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

  .xl\:col-1 {
    max-width: none;
    width: calc(1 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xl\:col-2 {
    max-width: none;
    width: calc(2 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xl\:col-3 {
    max-width: none;
    width: calc(3 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xl\:col-4 {
    max-width: none;
    width: calc(4 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xl\:col-5 {
    max-width: none;
    width: calc(5 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xl\:col-6 {
    max-width: none;
    width: calc(6 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xl\:col-7 {
    max-width: none;
    width: calc(7 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xl\:col-8 {
    max-width: none;
    width: calc(8 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xl\:col-9 {
    max-width: none;
    width: calc(9 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xl\:col-10 {
    max-width: none;
    width: calc(10 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xl\:col-11 {
    max-width: none;
    width: calc(11 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xl\:col-12 {
    max-width: none;
    width: calc(12 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xl\:offset-0 {
    margin-left: 0;
  }

  .xl\:offset-1 {
    margin-left: calc(1 / var(--tn-row-columns, 12) * 100%);
  }

  .xl\:offset-2 {
    margin-left: calc(2 / var(--tn-row-columns, 12) * 100%);
  }

  .xl\:offset-3 {
    margin-left: calc(3 / var(--tn-row-columns, 12) * 100%);
  }

  .xl\:offset-4 {
    margin-left: calc(4 / var(--tn-row-columns, 12) * 100%);
  }

  .xl\:offset-5 {
    margin-left: calc(5 / var(--tn-row-columns, 12) * 100%);
  }

  .xl\:offset-6 {
    margin-left: calc(6 / var(--tn-row-columns, 12) * 100%);
  }

  .xl\:offset-7 {
    margin-left: calc(7 / var(--tn-row-columns, 12) * 100%);
  }

  .xl\:offset-8 {
    margin-left: calc(8 / var(--tn-row-columns, 12) * 100%);
  }

  .xl\:offset-9 {
    margin-left: calc(9 / var(--tn-row-columns, 12) * 100%);
  }

  .xl\:offset-10 {
    margin-left: calc(10 / var(--tn-row-columns, 12) * 100%);
  }

  .xl\:offset-11 {
    margin-left: calc(11 / var(--tn-row-columns, 12) * 100%);
  }

  .row.xl\:gap--zero,
  .row.xl\:gap-x--zero {
    --tn-row-gap-x: 0rem;
  }

  .row.xl\:gap--zero,
  .row.xl\:gap-y--zero {
    --tn-row-gap-y: 0rem;
  }

  .row.xl\:gap--small,
  .row.xl\:gap-x--small {
    --tn-row-gap-x: 0.8rem;
  }

  .row.xl\:gap--small,
  .row.xl\:gap-y--small {
    --tn-row-gap-y: 0.8rem;
  }

  .row.xl\:gap--medium,
  .row.xl\:gap-x--medium {
    --tn-row-gap-x: 2.4rem;
  }

  .row.xl\:gap--medium,
  .row.xl\:gap-y--medium {
    --tn-row-gap-y: 2.4rem;
  }

  .row.xl\:gap--large,
  .row.xl\:gap-x--large {
    --tn-row-gap-x: 3.2rem;
  }

  .row.xl\:gap--large,
  .row.xl\:gap-y--large {
    --tn-row-gap-y: 3.2rem;
  }

  .buttons.xl\:gap--zero,
  .buttons.xl\:gap-x--zero {
    --tn-row-gap-x: 0rem;
  }

  .buttons.xl\:gap--zero,
  .buttons.xl\:gap-y--zero {
    --tn-row-gap-y: 0rem;
  }

  .buttons.xl\:gap--medium,
  .buttons.xl\:gap-x--medium {
    --tn-row-gap-x: 0.8rem;
  }

  .buttons.xl\:gap--medium,
  .buttons.xl\:gap-y--medium {
    --tn-row-gap-y: 0.8rem;
  }

  .buttons.xl\:gap--large,
  .buttons.xl\:gap-x--large {
    --tn-row-gap-x: 1.6rem;
  }

  .buttons.xl\:gap--large,
  .buttons.xl\:gap-y--large {
    --tn-row-gap-y: 1.6rem;
  }
}

@media (min-width: 1500px) {
  .xxl\:cols-1 {
    --tn-row-columns: 1;
  }

  .xxl\:cols-2 {
    --tn-row-columns: 2;
  }

  .xxl\:cols-3 {
    --tn-row-columns: 3;
  }

  .xxl\:cols-4 {
    --tn-row-columns: 4;
  }

  .xxl\:cols-5 {
    --tn-row-columns: 5;
  }

  .xxl\:cols-6 {
    --tn-row-columns: 6;
  }

  .xxl\:cols-7 {
    --tn-row-columns: 7;
  }

  .xxl\:cols-8 {
    --tn-row-columns: 8;
  }

  .xxl\:cols-9 {
    --tn-row-columns: 9;
  }

  .xxl\:cols-10 {
    --tn-row-columns: 10;
  }

  .xxl\:cols-11 {
    --tn-row-columns: 11;
  }

  .xxl\:cols-12 {
    --tn-row-columns: 12;
  }

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

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

  .xxl\:col-auto-fill {
    max-width: 100%;
    width: auto;
    flex: 1 1 auto;
  }

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

  .xxl\:col-1 {
    max-width: none;
    width: calc(1 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xxl\:col-2 {
    max-width: none;
    width: calc(2 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xxl\:col-3 {
    max-width: none;
    width: calc(3 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xxl\:col-4 {
    max-width: none;
    width: calc(4 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xxl\:col-5 {
    max-width: none;
    width: calc(5 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xxl\:col-6 {
    max-width: none;
    width: calc(6 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xxl\:col-7 {
    max-width: none;
    width: calc(7 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xxl\:col-8 {
    max-width: none;
    width: calc(8 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xxl\:col-9 {
    max-width: none;
    width: calc(9 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xxl\:col-10 {
    max-width: none;
    width: calc(10 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xxl\:col-11 {
    max-width: none;
    width: calc(11 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xxl\:col-12 {
    max-width: none;
    width: calc(12 / var(--tn-row-columns, 12) * 100%);
    flex: 0 0 auto;
  }

  .xxl\:offset-0 {
    margin-left: 0;
  }

  .xxl\:offset-1 {
    margin-left: calc(1 / var(--tn-row-columns, 12) * 100%);
  }

  .xxl\:offset-2 {
    margin-left: calc(2 / var(--tn-row-columns, 12) * 100%);
  }

  .xxl\:offset-3 {
    margin-left: calc(3 / var(--tn-row-columns, 12) * 100%);
  }

  .xxl\:offset-4 {
    margin-left: calc(4 / var(--tn-row-columns, 12) * 100%);
  }

  .xxl\:offset-5 {
    margin-left: calc(5 / var(--tn-row-columns, 12) * 100%);
  }

  .xxl\:offset-6 {
    margin-left: calc(6 / var(--tn-row-columns, 12) * 100%);
  }

  .xxl\:offset-7 {
    margin-left: calc(7 / var(--tn-row-columns, 12) * 100%);
  }

  .xxl\:offset-8 {
    margin-left: calc(8 / var(--tn-row-columns, 12) * 100%);
  }

  .xxl\:offset-9 {
    margin-left: calc(9 / var(--tn-row-columns, 12) * 100%);
  }

  .xxl\:offset-10 {
    margin-left: calc(10 / var(--tn-row-columns, 12) * 100%);
  }

  .xxl\:offset-11 {
    margin-left: calc(11 / var(--tn-row-columns, 12) * 100%);
  }

  .row.xxl\:gap--zero,
  .row.xxl\:gap-x--zero {
    --tn-row-gap-x: 0rem;
  }

  .row.xxl\:gap--zero,
  .row.xxl\:gap-y--zero {
    --tn-row-gap-y: 0rem;
  }

  .row.xxl\:gap--small,
  .row.xxl\:gap-x--small {
    --tn-row-gap-x: 0.8rem;
  }

  .row.xxl\:gap--small,
  .row.xxl\:gap-y--small {
    --tn-row-gap-y: 0.8rem;
  }

  .row.xxl\:gap--medium,
  .row.xxl\:gap-x--medium {
    --tn-row-gap-x: 2.4rem;
  }

  .row.xxl\:gap--medium,
  .row.xxl\:gap-y--medium {
    --tn-row-gap-y: 2.4rem;
  }

  .row.xxl\:gap--large,
  .row.xxl\:gap-x--large {
    --tn-row-gap-x: 3.2rem;
  }

  .row.xxl\:gap--large,
  .row.xxl\:gap-y--large {
    --tn-row-gap-y: 3.2rem;
  }

  .buttons.xxl\:gap--zero,
  .buttons.xxl\:gap-x--zero {
    --tn-row-gap-x: 0rem;
  }

  .buttons.xxl\:gap--zero,
  .buttons.xxl\:gap-y--zero {
    --tn-row-gap-y: 0rem;
  }

  .buttons.xxl\:gap--medium,
  .buttons.xxl\:gap-x--medium {
    --tn-row-gap-x: 0.8rem;
  }

  .buttons.xxl\:gap--medium,
  .buttons.xxl\:gap-y--medium {
    --tn-row-gap-y: 0.8rem;
  }

  .buttons.xxl\:gap--large,
  .buttons.xxl\:gap-x--large {
    --tn-row-gap-x: 1.6rem;
  }

  .buttons.xxl\:gap--large,
  .buttons.xxl\:gap-y--large {
    --tn-row-gap-y: 1.6rem;
  }
}

:root {
  --form-field-title-size: 1.4rem;
  --form-field-title-line-height: 1.8rem;
  --form-field-title-margin: .8rem;
  --form-field-text-size: 1.6rem;
  --form-field-line-height: 2.4rem;
  --form-field-icon-color: $body-color;
  --form-field-color: #20272d;
  --form-field-bg: #fff;
  --form-field-border-color: #d8d8d8;
  --form-field-border-color-focus: #b9c598;
  --form-field-border-radius: 0;
  --form-field-padding-x: 2rem;
  --form-field-padding-y: 1rem;
}

.field__label {
  display: block;
  width: 100%;
  margin: 0;
}

.field__title {
  font-size: var(--form-field-title-size);
  line-height: var(--form-field-title-line-height);
  margin-bottom: var(--form-field-title-margin);
  display: block;
}

.field__input-wrapper {
  display: flex;
  color: var(--form-field-color);
  /* border: 0.1rem solid var(--form-field-border-color); */
  border-radius: var(--form-field-border-radius);
  /* background-color: var(--form-field-bg); */
  transition: border-color 200ms ease-in-out;
}

.field__input-wrapper:focus-within {
  border-color: var(--form-field-border-color-focus);
}

.field__icon {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  justify-content: center;
  width: 3.6rem;
  color: var(--form-field-icon-color);
}

.field__input {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}

.field__input textarea,
.field__input input[type="date"],
.field__input input[type="datetime"],
.field__input input[type="datetime-local"],
.field__input input[type="email"],
.field__input input[type="month"],
.field__input input[type="number"],
.field__input input[type="password"],
.field__input input[type="search"],
.field__input input[type="tel"],
.field__input input[type="text"],
.field__input input[type="time"],
.field__input input[type="url"],
.field__input input[type="week"] {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  background: #EBEBEB;
  border: none;
  margin: 0;
  padding: var(--form-field-padding-y) var(--form-field-padding-x);
  font: inherit;
  font-size: var(--form-field-text-size);
  line-height: var(--form-field-line-height);
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.field__input textarea {
  resize: none;
  min-height: 16rem;
}

.height__full {
  height: 100%;
}

::placeholder {
  color: #000;
  font-weight: 400;
  font-size: 18px;
  opacity: 1;
}

@media (max-width:500px) {
  ::placeholder {
    font-size: 16px;
  }

  .field__input textarea {
    min-height: 15rem;

  }
}

@media (max-width:400px) {
  ::placeholder {
    font-size: 14px;
  }

  .field__input textarea {
    min-height: 15rem;

  }
}



footer {
  z-index: 0;
}


.map {
  height: 100%;
}

.map_size {
  width: 100%;
  height: 336px;}
@media(max-width:1199px){
.map_size {
  height: 248px;
}}

.button {
  font: 500 1.6rem/2rem var(--font-family-button);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition-timing-function: ease-in-out;
  transition-duration: 200ms;
  transition-property: background-color, border-color, color, box-shadow, transform, background-position;
  text-align: center;
  text-transform: none;
  color: inherit;
  border: 0 solid transparent;
  /* border-radius: 10px; */
  outline: 0;
  background: transparent;
  box-shadow: none;
  text-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.button__icon {
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.button__text {
  display: block;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
}

.button--small {
  cursor: pointer;
  border-radius: 0;
  border-width: 0.2rem;
  padding: 1.4rem 2.8rem;
  font-weight: 800;
  font-size: 2.3rem;
  line-height: 2.4rem;
  letter-spacing: 0;
}

.button-hero {
  position: absolute;
  bottom: -10px;

  z-index: 2;
}

footer .p-hero__container {
  background: url('../images/misc/contact-bg.jpg');
  background-size: cover;
  background-position: bottom;
}

.button--medium {
  cursor: pointer;
  border-width: 0.2rem;
  padding: 1.5rem 5.2rem;
  font-weight: 600;
  font-size: 2rem;
  /* line-height: 1.6rem; */
  letter-spacing: 0;
}

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

.button--medium .button__icon {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 2.4rem;
}

.button--medium .button__icon:first-child:not(:last-child) {
  margin-right: 1.2rem;
}

.button--medium .button__icon:last-child:not(:first-child) {
  margin-left: 1.2rem;
}

.button--medium.button--icon {
  padding: 1.2rem;
}

.button--large {
  border-radius: 0;
  border-width: 0.2rem;
  padding: 1.2rem 4rem;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 3rem;
  letter-spacing: 0;
}

.button--large .button__icon {
  width: 3rem;
  height: 3rem;
  font-size: 3.6rem;
}

.button--large .button__icon:first-child:not(:last-child) {
  margin-right: 1.2rem;
}

.button--large .button__icon:last-child:not(:first-child) {
  margin-left: 1.2rem;
}

.button--large.button--icon {
  padding: 1.3rem;
}

@media (min-width: 576px) {
  .sm\:button--medium {
    border-radius: 0;
    border-width: 0.2rem;
    padding: 1.1rem 2.7rem;
    font-weight: 800;
    font-size: 2.1rem;
    line-height: 2.4rem;
    letter-spacing: 0;
  }

  .sm\:button--medium .button__icon {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 2.4rem;
  }

  .sm\:button--medium .button__icon:first-child:not(:last-child) {
    margin-right: 1.2rem;
  }

  .sm\:button--medium .button__icon:last-child:not(:first-child) {
    margin-left: 1.2rem;
  }

  .sm\:button--medium.button--icon {
    padding: 1.2rem;
  }

  .sm\:button--large {
    border-radius: 0;
    border-width: 0.2rem;
    padding: 1.2rem 4rem;
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 3rem;
    letter-spacing: 0;
  }

  .sm\:button--large .button__icon {
    width: 3rem;
    height: 3rem;
    font-size: 3.6rem;
  }

  .sm\:button--large .button__icon:first-child:not(:last-child) {
    margin-right: 1.2rem;
  }

  .sm\:button--large .button__icon:last-child:not(:first-child) {
    margin-left: 1.2rem;
  }

  .sm\:button--large.button--icon {
    padding: 1.3rem;
  }
}

@media (min-width: 768px) {
  .md\:button--medium {
    border-radius: 0;
    border-width: 0.2rem;
    padding: 1.1rem 2.7rem;
    font-weight: 800;
    font-size: 2.1rem;
    line-height: 2.4rem;
    letter-spacing: 0;
  }

  .md\:button--medium .button__icon {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 2.4rem;
  }

  .md\:button--medium .button__icon:first-child:not(:last-child) {
    margin-right: 1.2rem;
  }

  .md\:button--medium .button__icon:last-child:not(:first-child) {
    margin-left: 1.2rem;
  }

  .md\:button--medium.button--icon {
    padding: 1.2rem;
  }

  .md\:button--large {
    border-radius: 0;
    border-width: 0.2rem;
    padding: 1.2rem 4rem;
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 3rem;
    letter-spacing: 0;
  }

  .md\:button--large .button__icon {
    width: 3rem;
    height: 3rem;
    font-size: 3.6rem;
  }

  .md\:button--large .button__icon:first-child:not(:last-child) {
    margin-right: 1.2rem;
  }

  .md\:button--large .button__icon:last-child:not(:first-child) {
    margin-left: 1.2rem;
  }

  .md\:button--large.button--icon {
    padding: 1.3rem;
  }
}

@media (min-width: 992px) {
  .lg\:button--medium {
    border-radius: 0;
    border-width: 0.2rem;
    padding: 1.1rem 2.7rem;
    font-weight: 800;
    font-size: 2.1rem;
    line-height: 2.4rem;
    letter-spacing: 0;
  }

  .lg\:button--medium .button__icon {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 2.4rem;
  }

  .lg\:button--medium .button__icon:first-child:not(:last-child) {
    margin-right: 1.2rem;
  }

  .lg\:button--medium .button__icon:last-child:not(:first-child) {
    margin-left: 1.2rem;
  }

  .lg\:button--medium.button--icon {
    padding: 1.2rem;
  }

  .lg\:button--large {
    border-radius: 0;
    border-width: 0.2rem;
    padding: 1.2rem 4rem;
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 3rem;
    letter-spacing: 0;
  }

  .lg\:button--large .button__icon {
    width: 3rem;
    height: 3rem;
    font-size: 3.6rem;
  }

  .lg\:button--large .button__icon:first-child:not(:last-child) {
    margin-right: 1.2rem;
  }

  .lg\:button--large .button__icon:last-child:not(:first-child) {
    margin-left: 1.2rem;
  }

  .lg\:button--large.button--icon {
    padding: 1.3rem;
  }
}

@media (min-width: 1200px) {
  .xl\:button--medium {
    border-radius: 0;
    border-width: 0.2rem;
    padding: 1.1rem 2.7rem;
    font-weight: 800;
    font-size: 2.1rem;
    line-height: 2.4rem;
    letter-spacing: 0;
  }

  .xl\:button--medium .button__icon {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 2.4rem;
  }

  .xl\:button--medium .button__icon:first-child:not(:last-child) {
    margin-right: 1.2rem;
  }

  .xl\:button--medium .button__icon:last-child:not(:first-child) {
    margin-left: 1.2rem;
  }

  .xl\:button--medium.button--icon {
    padding: 1.2rem;
  }

  .xl\:button--large {
    border-radius: 0;
    border-width: 0.2rem;
    padding: 1.2rem 4rem;
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 3rem;
    letter-spacing: 0;
  }

  .xl\:button--large .button__icon {
    width: 3rem;
    height: 3rem;
    font-size: 3.6rem;
  }

  .xl\:button--large .button__icon:first-child:not(:last-child) {
    margin-right: 1.2rem;
  }

  .xl\:button--large .button__icon:last-child:not(:first-child) {
    margin-left: 1.2rem;
  }

  .xl\:button--large.button--icon {
    padding: 1.3rem;
  }
}

@media (min-width: 1500px) {
  .xxl\:button--medium {
    border-radius: 0;
    border-width: 0.2rem;
    padding: 1.1rem 2.7rem;
    font-weight: 800;
    font-size: 2.1rem;
    line-height: 2.4rem;
    letter-spacing: 0;
  }

  .xxl\:button--medium .button__icon {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 2.4rem;
  }

  .xxl\:button--medium .button__icon:first-child:not(:last-child) {
    margin-right: 1.2rem;
  }

  .xxl\:button--medium .button__icon:last-child:not(:first-child) {
    margin-left: 1.2rem;
  }

  .xxl\:button--medium.button--icon {
    padding: 1.2rem;
  }

  .xxl\:button--large {
    border-radius: 0;
    border-width: 0.2rem;
    padding: 1.2rem 4rem;
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 3rem;
    letter-spacing: 0;
  }

  .xxl\:button--large .button__icon {
    width: 3rem;
    height: 3rem;
    font-size: 3.6rem;
  }

  .xxl\:button--large .button__icon:first-child:not(:last-child) {
    margin-right: 1.2rem;
  }

  .xxl\:button--large .button__icon:last-child:not(:first-child) {
    margin-left: 1.2rem;
  }

  .xxl\:button--large.button--icon {
    padding: 1.3rem;
  }
}

.button--primary {
  /* border-radius: 15px; */
  color: #fff;
  background-color: #B1993B;
  transition: 0.5s;
}

.btn-white{
  background: #fff;
  color: #000;
  transition: 0.5s;
}

.button--primary:hover,
.button--primary:focus {
  color: #000;
  transition: 0.5s;
  background-color: #fff;
}

.btn-white:hover{
  color: #fff;
  transition: 0.5s;
  background-color: rgb(43, 42, 42);
}



.section-separator {
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.section-separator::before {
  content: "";
  display: block;
  border-bottom: 0.1rem solid #e0e0e0;
}

.hamburger {
  position: relative;
  z-index: 1;
  font-size: 2.6rem;
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0;
  color: inherit;
  border: 0;
  border-radius: 0;
  background: transparent;
  grid-template: 100% / 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.hamburger .icon {
  margin: auto;
  grid-area: 1 / 1 / 2 / 2;
  transition-property: opacity, transform;
  transition-duration: 200ms;
  transition-timing-function: ease-in-out;
}

.hamburger:not(.active) .icon--close,
.hamburger.active .icon--menu {
  opacity: 0;
  transform: scale(0.5);
}

.logo {
  display: inline-flex;
  transition: height 200ms ease-in-out;
  color: #fff;
}




.logo a {
  display: block;
  outline: 0;
  transition: 0.5s;
  /* width: 50px; */
}

.logo img,
.logo svg {
  display: block;
  width: auto;
  height: 168px;
  max-width: 100%;
  transition: height 200ms ease-in-out;
}

@media(max-width:1199px){
  .logo img, .logo svg{
    height: 120px;
  }

}

.logo svg path {
  transition: fill 200ms ease-in-out;
}

.aspect-ratio {
  position: relative;
  width: 100%;
  display: grid;
  grid-auto-rows: auto;
  grid-auto-columns: auto;
}

.aspect-ratio::before {
  grid-area: 1 / 1 / 2 / 2;
  display: block;
  content: "";
  pointer-events: none;
}

.aspect-ratio__media,
.aspect-ratio__map {
  grid-area: 1 / 1 / 2 / 2;
  position: relative;
  z-index: 1;
}

.aspect-ratio__media video,
.aspect-ratio__media picture,
.aspect-ratio__media img,
.aspect-ratio__map-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.aspect-ratio__media {
  overflow: hidden;
}

.aspect-ratio__media video,
.aspect-ratio__media picture,
.aspect-ratio__media img {
  object-fit: cover;
  object-position: center;
  transition: transform 200ms ease-in-out;
}

.aspect-ratio__map-wrapper iframe {
  position: relative;
  width: 100%;
  height: 100%;
}

.aspect-ratio:not(.aspect-ratio--contain) a.aspect-ratio__media:hover picture,
.aspect-ratio:not(.aspect-ratio--contain) a.aspect-ratio__media:hover img,
.aspect-ratio:not(.aspect-ratio--contain) a.aspect-ratio__media:focus picture,
.aspect-ratio:not(.aspect-ratio--contain) a.aspect-ratio__media:focus img {
  transform: scale(1.05);
}

.aspect-ratio--external-link:hover .aspect-ratio:not(.aspect-ratio--contain) .aspect-ratio__media picture,
.aspect-ratio--external-link:hover .aspect-ratio:not(.aspect-ratio--contain) .aspect-ratio__media img {
  transform: scale(1.05);
}

.aspect-ratio__content {
  grid-area: 1 / 1 / 2 / 2;
  position: relative;
  z-index: 2;
}

.aspect-ratio--absolute .aspect-ratio__media,
.aspect-ratio--absolute .aspect-ratio__map,
.aspect-ratio--absolute .aspect-ratio__content {
  position: absolute;
}

.aspect-ratio--contain .aspect-ratio__media video,
.aspect-ratio--contain .aspect-ratio__media picture,
.aspect-ratio--contain .aspect-ratio__media img {
  object-fit: contain;
}

.aspect-ratio--16x9::before {
  padding-top: 56.25%;
}

.aspect-ratio--16x9 .aspect-ratio__media video,
.aspect-ratio--16x9 .aspect-ratio__media picture,
.aspect-ratio--16x9 .aspect-ratio__media img {
  position: absolute;
}

.aspect-ratio--9x16::before {
  padding-top: 177.77778%;
}

.aspect-ratio--9x16 .aspect-ratio__media video,
.aspect-ratio--9x16 .aspect-ratio__media picture,
.aspect-ratio--9x16 .aspect-ratio__media img {
  position: absolute;
}

.aspect-ratio--4x3::before {
  padding-top: 75%;
}

.aspect-ratio--4x3 .aspect-ratio__media video,
.aspect-ratio--4x3 .aspect-ratio__media picture,
.aspect-ratio--4x3 .aspect-ratio__media img {
  position: absolute;
}

.aspect-ratio--3x4::before {
  padding-top: 133.33333%;
}

.aspect-ratio--3x4 .aspect-ratio__media video,
.aspect-ratio--3x4 .aspect-ratio__media picture,
.aspect-ratio--3x4 .aspect-ratio__media img {
  position: absolute;
}

.aspect-ratio--3x2::before {
  padding-top: 66.66667%;
}

.aspect-ratio--3x2 .aspect-ratio__media video,
.aspect-ratio--3x2 .aspect-ratio__media picture,
.aspect-ratio--3x2 .aspect-ratio__media img {
  position: absolute;
}

.aspect-ratio--2x3::before {
  padding-top: 150%;
}

.aspect-ratio--2x3 .aspect-ratio__media video,
.aspect-ratio--2x3 .aspect-ratio__media picture,
.aspect-ratio--2x3 .aspect-ratio__media img {
  position: absolute;
}

.aspect-ratio--1x1::before {
  padding-top: 100%;
}

.aspect-ratio--1x1 .aspect-ratio__media video,
.aspect-ratio--1x1 .aspect-ratio__media picture,
.aspect-ratio--1x1 .aspect-ratio__media img {
  position: absolute;
}

.aspect-ratio--auto::before {
  padding-top: 0%;
}

.aspect-ratio--auto .aspect-ratio__media video,
.aspect-ratio--auto .aspect-ratio__media picture,
.aspect-ratio--auto .aspect-ratio__media img {
  position: relative;
}

@media (min-width: 576px) {
  .sm\:aspect-ratio--16x9::before {
    padding-top: 56.25%;
  }

  .sm\:aspect-ratio--16x9 .aspect-ratio__media video,
  .sm\:aspect-ratio--16x9 .aspect-ratio__media picture,
  .sm\:aspect-ratio--16x9 .aspect-ratio__media img {
    position: absolute;
  }

  .sm\:aspect-ratio--9x16::before {
    padding-top: 177.77778%;
  }

  .sm\:aspect-ratio--9x16 .aspect-ratio__media video,
  .sm\:aspect-ratio--9x16 .aspect-ratio__media picture,
  .sm\:aspect-ratio--9x16 .aspect-ratio__media img {
    position: absolute;
  }

  .sm\:aspect-ratio--4x3::before {
    padding-top: 75%;
  }

  .sm\:aspect-ratio--4x3 .aspect-ratio__media video,
  .sm\:aspect-ratio--4x3 .aspect-ratio__media picture,
  .sm\:aspect-ratio--4x3 .aspect-ratio__media img {
    position: absolute;
  }

  .sm\:aspect-ratio--3x4::before {
    padding-top: 133.33333%;
  }

  .sm\:aspect-ratio--3x4 .aspect-ratio__media video,
  .sm\:aspect-ratio--3x4 .aspect-ratio__media picture,
  .sm\:aspect-ratio--3x4 .aspect-ratio__media img {
    position: absolute;
  }

  .sm\:aspect-ratio--3x2::before {
    padding-top: 66.66667%;
  }

  .sm\:aspect-ratio--3x2 .aspect-ratio__media video,
  .sm\:aspect-ratio--3x2 .aspect-ratio__media picture,
  .sm\:aspect-ratio--3x2 .aspect-ratio__media img {
    position: absolute;
  }

  .sm\:aspect-ratio--2x3::before {
    padding-top: 150%;
  }

  .sm\:aspect-ratio--2x3 .aspect-ratio__media video,
  .sm\:aspect-ratio--2x3 .aspect-ratio__media picture,
  .sm\:aspect-ratio--2x3 .aspect-ratio__media img {
    position: absolute;
  }

  .sm\:aspect-ratio--1x1::before {
    padding-top: 100%;
  }

  .sm\:aspect-ratio--1x1 .aspect-ratio__media video,
  .sm\:aspect-ratio--1x1 .aspect-ratio__media picture,
  .sm\:aspect-ratio--1x1 .aspect-ratio__media img {
    position: absolute;
  }

  .sm\:aspect-ratio--auto::before {
    padding-top: 0%;
  }

  .sm\:aspect-ratio--auto .aspect-ratio__media video,
  .sm\:aspect-ratio--auto .aspect-ratio__media picture,
  .sm\:aspect-ratio--auto .aspect-ratio__media img {
    position: relative;
  }
}

@media (min-width: 768px) {
  .md\:aspect-ratio--16x9::before {
    padding-top: 56.25%;
  }

  .md\:aspect-ratio--16x9 .aspect-ratio__media video,
  .md\:aspect-ratio--16x9 .aspect-ratio__media picture,
  .md\:aspect-ratio--16x9 .aspect-ratio__media img {
    position: absolute;
  }

  .md\:aspect-ratio--9x16::before {
    padding-top: 177.77778%;
  }

  .md\:aspect-ratio--9x16 .aspect-ratio__media video,
  .md\:aspect-ratio--9x16 .aspect-ratio__media picture,
  .md\:aspect-ratio--9x16 .aspect-ratio__media img {
    position: absolute;
  }

  .md\:aspect-ratio--4x3::before {
    padding-top: 75%;
  }

  .md\:aspect-ratio--4x3 .aspect-ratio__media video,
  .md\:aspect-ratio--4x3 .aspect-ratio__media picture,
  .md\:aspect-ratio--4x3 .aspect-ratio__media img {
    position: absolute;
  }

  .md\:aspect-ratio--3x4::before {
    padding-top: 133.33333%;
  }

  .md\:aspect-ratio--3x4 .aspect-ratio__media video,
  .md\:aspect-ratio--3x4 .aspect-ratio__media picture,
  .md\:aspect-ratio--3x4 .aspect-ratio__media img {
    position: absolute;
  }

  .md\:aspect-ratio--3x2::before {
    padding-top: 66.66667%;
  }

  .md\:aspect-ratio--3x2 .aspect-ratio__media video,
  .md\:aspect-ratio--3x2 .aspect-ratio__media picture,
  .md\:aspect-ratio--3x2 .aspect-ratio__media img {
    position: absolute;
  }

  .md\:aspect-ratio--2x3::before {
    padding-top: 150%;
  }

  .md\:aspect-ratio--2x3 .aspect-ratio__media video,
  .md\:aspect-ratio--2x3 .aspect-ratio__media picture,
  .md\:aspect-ratio--2x3 .aspect-ratio__media img {
    position: absolute;
  }

  .md\:aspect-ratio--1x1::before {
    padding-top: 100%;
  }

  .md\:aspect-ratio--1x1 .aspect-ratio__media video,
  .md\:aspect-ratio--1x1 .aspect-ratio__media picture,
  .md\:aspect-ratio--1x1 .aspect-ratio__media img {
    position: absolute;
  }

  .md\:aspect-ratio--auto::before {
    padding-top: 0%;
  }

  .md\:aspect-ratio--auto .aspect-ratio__media video,
  .md\:aspect-ratio--auto .aspect-ratio__media picture,
  .md\:aspect-ratio--auto .aspect-ratio__media img {
    position: relative;
  }
}

@media (min-width: 992px) {
  .lg\:aspect-ratio--16x9::before {
    padding-top: 56.25%;
  }

  .lg\:aspect-ratio--16x9 .aspect-ratio__media video,
  .lg\:aspect-ratio--16x9 .aspect-ratio__media picture,
  .lg\:aspect-ratio--16x9 .aspect-ratio__media img {
    position: absolute;
  }

  .lg\:aspect-ratio--9x16::before {
    padding-top: 177.77778%;
  }

  .lg\:aspect-ratio--9x16 .aspect-ratio__media video,
  .lg\:aspect-ratio--9x16 .aspect-ratio__media picture,
  .lg\:aspect-ratio--9x16 .aspect-ratio__media img {
    position: absolute;
  }

  .lg\:aspect-ratio--4x3::before {
    padding-top: 75%;
  }

  .lg\:aspect-ratio--4x3 .aspect-ratio__media video,
  .lg\:aspect-ratio--4x3 .aspect-ratio__media picture,
  .lg\:aspect-ratio--4x3 .aspect-ratio__media img {
    position: absolute;
  }

  .lg\:aspect-ratio--3x4::before {
    padding-top: 133.33333%;
  }

  .lg\:aspect-ratio--3x4 .aspect-ratio__media video,
  .lg\:aspect-ratio--3x4 .aspect-ratio__media picture,
  .lg\:aspect-ratio--3x4 .aspect-ratio__media img {
    position: absolute;
  }

  .lg\:aspect-ratio--3x2::before {
    padding-top: 66.66667%;
  }

  .lg\:aspect-ratio--3x2 .aspect-ratio__media video,
  .lg\:aspect-ratio--3x2 .aspect-ratio__media picture,
  .lg\:aspect-ratio--3x2 .aspect-ratio__media img {
    position: absolute;
  }

  .lg\:aspect-ratio--2x3::before {
    padding-top: 150%;
  }

  .lg\:aspect-ratio--2x3 .aspect-ratio__media video,
  .lg\:aspect-ratio--2x3 .aspect-ratio__media picture,
  .lg\:aspect-ratio--2x3 .aspect-ratio__media img {
    position: absolute;
  }

  .lg\:aspect-ratio--1x1::before {
    padding-top: 100%;
  }

  .lg\:aspect-ratio--1x1 .aspect-ratio__media video,
  .lg\:aspect-ratio--1x1 .aspect-ratio__media picture,
  .lg\:aspect-ratio--1x1 .aspect-ratio__media img {
    position: absolute;
  }

  .lg\:aspect-ratio--auto::before {
    padding-top: 0%;
  }

  .lg\:aspect-ratio--auto .aspect-ratio__media video,
  .lg\:aspect-ratio--auto .aspect-ratio__media picture,
  .lg\:aspect-ratio--auto .aspect-ratio__media img {
    position: relative;
  }
}

@media (min-width: 1200px) {
  .xl\:aspect-ratio--16x9::before {
    padding-top: 56.25%;
  }

  .xl\:aspect-ratio--16x9 .aspect-ratio__media video,
  .xl\:aspect-ratio--16x9 .aspect-ratio__media picture,
  .xl\:aspect-ratio--16x9 .aspect-ratio__media img {
    position: absolute;
  }

  .xl\:aspect-ratio--9x16::before {
    padding-top: 177.77778%;
  }

  .xl\:aspect-ratio--9x16 .aspect-ratio__media video,
  .xl\:aspect-ratio--9x16 .aspect-ratio__media picture,
  .xl\:aspect-ratio--9x16 .aspect-ratio__media img {
    position: absolute;
  }

  .xl\:aspect-ratio--4x3::before {
    padding-top: 75%;
  }

  .xl\:aspect-ratio--4x3 .aspect-ratio__media video,
  .xl\:aspect-ratio--4x3 .aspect-ratio__media picture,
  .xl\:aspect-ratio--4x3 .aspect-ratio__media img {
    position: absolute;
  }

  .xl\:aspect-ratio--3x4::before {
    padding-top: 133.33333%;
  }

  .xl\:aspect-ratio--3x4 .aspect-ratio__media video,
  .xl\:aspect-ratio--3x4 .aspect-ratio__media picture,
  .xl\:aspect-ratio--3x4 .aspect-ratio__media img {
    position: absolute;
  }

  .xl\:aspect-ratio--3x2::before {
    padding-top: 66.66667%;
  }

  .xl\:aspect-ratio--3x2 .aspect-ratio__media video,
  .xl\:aspect-ratio--3x2 .aspect-ratio__media picture,
  .xl\:aspect-ratio--3x2 .aspect-ratio__media img {
    position: absolute;
  }

  .xl\:aspect-ratio--2x3::before {
    padding-top: 150%;
  }

  .xl\:aspect-ratio--2x3 .aspect-ratio__media video,
  .xl\:aspect-ratio--2x3 .aspect-ratio__media picture,
  .xl\:aspect-ratio--2x3 .aspect-ratio__media img {
    position: absolute;
  }

  .xl\:aspect-ratio--1x1::before {
    padding-top: 100%;
  }

  .xl\:aspect-ratio--1x1 .aspect-ratio__media video,
  .xl\:aspect-ratio--1x1 .aspect-ratio__media picture,
  .xl\:aspect-ratio--1x1 .aspect-ratio__media img {
    position: absolute;
  }

  .xl\:aspect-ratio--auto::before {
    padding-top: 0%;
  }

  .xl\:aspect-ratio--auto .aspect-ratio__media video,
  .xl\:aspect-ratio--auto .aspect-ratio__media picture,
  .xl\:aspect-ratio--auto .aspect-ratio__media img {
    position: relative;
  }
}

@media (min-width: 1500px) {
  .xxl\:aspect-ratio--16x9::before {
    padding-top: 56.25%;
  }

  .xxl\:aspect-ratio--16x9 .aspect-ratio__media video,
  .xxl\:aspect-ratio--16x9 .aspect-ratio__media picture,
  .xxl\:aspect-ratio--16x9 .aspect-ratio__media img {
    position: absolute;
  }

  .xxl\:aspect-ratio--9x16::before {
    padding-top: 177.77778%;
  }

  .xxl\:aspect-ratio--9x16 .aspect-ratio__media video,
  .xxl\:aspect-ratio--9x16 .aspect-ratio__media picture,
  .xxl\:aspect-ratio--9x16 .aspect-ratio__media img {
    position: absolute;
  }

  .xxl\:aspect-ratio--4x3::before {
    padding-top: 75%;
  }

  .xxl\:aspect-ratio--4x3 .aspect-ratio__media video,
  .xxl\:aspect-ratio--4x3 .aspect-ratio__media picture,
  .xxl\:aspect-ratio--4x3 .aspect-ratio__media img {
    position: absolute;
  }

  .xxl\:aspect-ratio--3x4::before {
    padding-top: 133.33333%;
  }

  .xxl\:aspect-ratio--3x4 .aspect-ratio__media video,
  .xxl\:aspect-ratio--3x4 .aspect-ratio__media picture,
  .xxl\:aspect-ratio--3x4 .aspect-ratio__media img {
    position: absolute;
  }

  .xxl\:aspect-ratio--3x2::before {
    padding-top: 66.66667%;
  }

  .xxl\:aspect-ratio--3x2 .aspect-ratio__media video,
  .xxl\:aspect-ratio--3x2 .aspect-ratio__media picture,
  .xxl\:aspect-ratio--3x2 .aspect-ratio__media img {
    position: absolute;
  }

  .xxl\:aspect-ratio--2x3::before {
    padding-top: 150%;
  }

  .xxl\:aspect-ratio--2x3 .aspect-ratio__media video,
  .xxl\:aspect-ratio--2x3 .aspect-ratio__media picture,
  .xxl\:aspect-ratio--2x3 .aspect-ratio__media img {
    position: absolute;
  }

  .xxl\:aspect-ratio--1x1::before {
    padding-top: 100%;
  }

  .xxl\:aspect-ratio--1x1 .aspect-ratio__media video,
  .xxl\:aspect-ratio--1x1 .aspect-ratio__media picture,
  .xxl\:aspect-ratio--1x1 .aspect-ratio__media img {
    position: absolute;
  }

  .xxl\:aspect-ratio--auto::before {
    padding-top: 0%;
  }

  .xxl\:aspect-ratio--auto .aspect-ratio__media video,
  .xxl\:aspect-ratio--auto .aspect-ratio__media picture,
  .xxl\:aspect-ratio--auto .aspect-ratio__media img {
    position: relative;
  }
}

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

.u-overflow-auto {
  overflow: auto !important;
}

.u-overflow-hidden {
  overflow: hidden !important;
}

.u-d-none {
  display: none !important;
}

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

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

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

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

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

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

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

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

.u-pos-static {
  position: static !important;
}

.u-pos-relative {
  position: relative !important;
}

.u-pos-absolute {
  position: absolute !important;
}

.u-pos-fixed {
  position: fixed !important;
}

.u-pos-sticky {
  position: sticky !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-jc-evenly {
  justify-content: space-evenly !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.u-fw-100 {
  font-weight: 100 !important;
}

.u-fw-200 {
  font-weight: 200 !important;
}

.u-fw-300 {
  font-weight: 300 !important;
}

.u-fw-400 {
  font-weight: 400 !important;
}

.u-fw-500 {
  font-weight: 500 !important;
}

.u-fw-600 {
  font-weight: 600 !important;
}

.u-fw-700 {
  font-weight: 700 !important;
}

.u-fw-800 {
  font-weight: 800 !important;
}

.u-fw-900 {
  font-weight: 900 !important;
}

.u-fw-lighter {
  font-weight: lighter !important;
}

.u-fw-bolder {
  font-weight: bolder !important;
}

.u-tt-lower {
  text-transform: lowercase !important;
}

.u-tt-upper {
  text-transform: uppercase !important;
}

.u-tt-capital {
  text-transform: capitalize !important;
}

.u-ta-left {
  text-align: left !important;
}

.u-ta-right {
  text-align: right !important;
}

.u-ta-center {
  text-align: center !important;
}

.u-ws-wrap {
  white-space: normal !important;
}

.u-ws-nowrap {
  white-space: nowrap !important;
}

.u-td-none {
  text-decoration: none !important;
}

.u-td-underline {
  text-decoration: underline !important;
}

.u-td-line-through {
  text-decoration: line-through !important;
}

.u-fs-italic {
  font-style: italic !important;
}

.u-fs-normal {
  font-style: normal !important;
}

.u-ww-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

.u-ff-serif {
  font-family: var(--font-family-serif) !important;
}

.u-ff-sans-serif {
  font-family: var(--font-family-sans-serif) !important;
}

.u-ff-button {
  font-family: var(--font-family-button) !important;
}

.u-ff-heading {
  font-family: var(--font-family-heading) !important;
}



.u-ff-monospace {
  font-family: var(--font-family-monospace) !important;
}

.u-us-all {
  user-select: all !important;
}

.u-us-auto {
  user-select: auto !important;
}

.u-us-none {
  user-select: none !important;
}

.u-pe-none {
  pointer-events: none !important;
}

.u-pe-auto {
  pointer-events: auto !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.u-tc-primary {
  color: #1d305b !important;
}

.u-tc-black {
  color: #000 !important;
}

.u-tc-white {
  color: #fff !important;
}

.u-tc-gray-100 {
  color: #f4f4f4 !important;
}

.u-tc-gray-200 {
  color: #e4e4e4 !important;
}

.u-tc-gray-300 {
  color: #d8d8d8 !important;
}

.u-tc-gray-400 {
  color: #959595 !important;
}

.u-tc-gray-500 {
  color: #8e8f90 !important;
}

.u-tc-gray-600 {
  color: #787878 !important;
}

.u-tc-gray-700 {
  color: #3b3b3b

 !important;
}

.u-tc-gray-800 {
  color: #343a40 !important;
}

.u-tc-gray-900 {
  color: #20272d !important;
}

.u-tc-body {
  color: #20272d !important;
}

.u-tc-reset {
  color: inherit !important;
}

.u-bg-primary {
  background-color: #B1993B !important;
}

.u-bg-black {
  background-color: #000 !important;
}

.u-bg-white {
  background-color: #fff !important;
}

.u-bg-gray-100 {
  background-color: #ECF0F3 !important;
}

.u-bg-gray-200 {
  background-color: #e4e4e4 !important;
}

.u-bg-gray-300 {
  background-color: #d8d8d8 !important;
}

.u-bg-gray-400 {
  background-color: #959595 !important;
}

.u-bg-gray-500 {
  background-color: #8e8f90 !important;
}

.u-bg-gray-600 {
  background-color: #787878 !important;
}

.u-bg-gray-700 {
  background-color: #495057 !important;
}

.u-bg-gray-800 {
  background-color: #3b3b3b

  !important;
}

.u-bg-gray-900 {
  background-color: #20272d !important;
}

.u-bg-body {
  background-color: #fff !important;
}

.u-bg-transparent {
  background-color: transparent !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.8rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ml-7,
.mx-7 {
  margin-left: 5.6rem !important;
}

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

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

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

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

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

.m-9 {
  margin: 7.2rem !important;
}

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

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

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

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

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

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

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

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

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

.m-11 {
  margin: 8.8rem !important;
}

.mt-11,
.my-11 {
  margin-top: 8.8rem !important;
}

.mr-11,
.mx-11 {
  margin-right: 8.8rem !important;
}

.mb-11,
.my-11 {
  margin-bottom: 8.8rem !important;
}

.ml-11,
.mx-11 {
  margin-left: 8.8rem !important;
}

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

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

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

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

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

.m-13 {
  margin: 10.4rem !important;
}

.mt-13,
.my-13 {
  margin-top: 10.4rem !important;
}

.mr-13,
.mx-13 {
  margin-right: 10.4rem !important;
}

.mb-13,
.my-13 {
  margin-bottom: 10.4rem !important;
}

.ml-13,
.mx-13 {
  margin-left: 10.4rem !important;
}

.m-14 {
  margin: 11.2rem !important;
}

.mt-14,
.my-14 {
  margin-top: 11.2rem !important;
}

.mr-14,
.mx-14 {
  margin-right: 11.2rem !important;
}

.mb-14,
.my-14 {
  margin-bottom: 11.2rem !important;
}

.ml-14,
.mx-14 {
  margin-left: 11.2rem !important;
}

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

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

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

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

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

.m-16 {
  margin: 12.8rem !important;
}

.mt-16,
.my-16 {
  margin-top: 12.8rem !important;
}

.mr-16,
.mx-16 {
  margin-right: 12.8rem !important;
}

.mb-16,
.my-16 {
  margin-bottom: 12.8rem !important;
}

.ml-16,
.mx-16 {
  margin-left: 12.8rem !important;
}

.m-17 {
  margin: 13.6rem !important;
}

.mt-17,
.my-17 {
  margin-top: 13.6rem !important;
}

.mr-17,
.mx-17 {
  margin-right: 13.6rem !important;
}

.mb-17,
.my-17 {
  margin-bottom: 13.6rem !important;
}

.ml-17,
.mx-17 {
  margin-left: 13.6rem !important;
}

.m-18 {
  margin: 14.4rem !important;
}

.mt-18,
.my-18 {
  margin-top: 14.4rem !important;
}

.mr-18,
.mx-18 {
  margin-right: 14.4rem !important;
}

.mb-18,
.my-18 {
  margin-bottom: 14.4rem !important;
}

.ml-18,
.mx-18 {
  margin-left: 14.4rem !important;
}

.m-19 {
  margin: 15.2rem !important;
}

.mt-19,
.my-19 {
  margin-top: 15.2rem !important;
}

.mr-19,
.mx-19 {
  margin-right: 15.2rem !important;
}

.mb-19,
.my-19 {
  margin-bottom: 15.2rem !important;
}

.ml-19,
.mx-19 {
  margin-left: 15.2rem !important;
}

.m-20 {
  margin: 16rem !important;
}

.mt-20,
.my-20 {
  margin-top: 16rem !important;
}

.mr-20,
.mx-20 {
  margin-right: 16rem !important;
}

.mb-20,
.my-20 {
  margin-bottom: 16rem !important;
}

.ml-20,
.mx-20 {
  margin-left: 16rem !important;
}

.m-a1 {
  margin: 0.4rem !important;
}

.mt-a1,
.my-a1 {
  margin-top: 0.4rem !important;
}

.mr-a1,
.mx-a1 {
  margin-right: 0.4rem !important;
}

.mb-a1,
.my-a1 {
  margin-bottom: 0.4rem !important;
}

.ml-a1,
.mx-a1 {
  margin-left: 0.4rem !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.8rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pb-5,
.py-5 {
  padding-bottom: 4rem !important;
  transition: 0.5s;
}

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

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

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

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

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

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

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

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

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

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

.pl-7,
.px-7 {
  padding-left: 5.6rem !important;
}

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

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

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

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

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

.p-9 {
  padding: 7.2rem !important;
}

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

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

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

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

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

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

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

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

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

.p-11 {
  padding: 8.8rem !important;
}

.pt-11,
.py-11 {
  padding-top: 8.8rem !important;
}

.pr-11,
.px-11 {
  padding-right: 8.8rem !important;
}

.pb-11,
.py-11 {
  padding-bottom: 8.8rem !important;
}

.pl-11,
.px-11 {
  padding-left: 8.8rem !important;
}

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

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

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

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

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

.p-13 {
  padding: 10.4rem !important;
}

.pt-13,
.py-13 {
  padding-top: 10.4rem !important;
}

.pr-13,
.px-13 {
  padding-right: 10.4rem !important;
}

.pb-13,
.py-13 {
  padding-bottom: 10.4rem !important;
}

.pl-13,
.px-13 {
  padding-left: 10.4rem !important;
}

.p-14 {
  padding: 11.2rem !important;
}

.pt-14,
.py-14 {
  padding-top: 11.2rem !important;
}

.pr-14,
.px-14 {
  padding-right: 11.2rem !important;
}

.pb-14,
.py-14 {
  padding-bottom: 11.2rem !important;
}

.pl-14,
.px-14 {
  padding-left: 11.2rem !important;
}

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

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

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

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

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

.p-16 {
  padding: 12.8rem !important;
}

.pt-16,
.py-16 {
  padding-top: 12.8rem !important;
}

.pr-16,
.px-16 {
  padding-right: 12.8rem !important;
}

.pb-16,
.py-16 {
  padding-bottom: 12.8rem !important;
}

.pl-16,
.px-16 {
  padding-left: 12.8rem !important;
}

.p-17 {
  padding: 13.6rem !important;
}

.pt-17,
.py-17 {
  padding-top: 13.6rem !important;
}

.pr-17,
.px-17 {
  padding-right: 13.6rem !important;
}

.pb-17,
.py-17 {
  padding-bottom: 13.6rem !important;
}

.pl-17,
.px-17 {
  padding-left: 13.6rem !important;
}

.p-18 {
  padding: 14.4rem !important;
}

.pt-18,
.py-18 {
  padding-top: 14.4rem !important;
}

.pr-18,
.px-18 {
  padding-right: 14.4rem !important;
}

.pb-18,
.py-18 {
  padding-bottom: 14.4rem !important;
}

.pl-18,
.px-18 {
  padding-left: 14.4rem !important;
}

.p-19 {
  padding: 15.2rem !important;
}

.pt-19,
.py-19 {
  padding-top: 15.2rem !important;
}

.pr-19,
.px-19 {
  padding-right: 15.2rem !important;
}

.pb-19,
.py-19 {
  padding-bottom: 15.2rem !important;
}

.pl-19,
.px-19 {
  padding-left: 15.2rem !important;
}

.p-20 {
  padding: 16rem !important;
}

.pt-20,
.py-20 {
  padding-top: 16rem !important;
}

.pr-20,
.px-20 {
  padding-right: 16rem !important;
}

.pb-20,
.py-20 {
  padding-bottom: 16rem !important;
}

.pl-20,
.px-20 {
  padding-left: 16rem !important;
}

.p-a1 {
  padding: 0.4rem !important;
}

.pt-a1,
.py-a1 {
  padding-top: 0.4rem !important;
}

.pr-a1,
.px-a1 {
  padding-right: 0.4rem !important;
}

.pb-a1,
.py-a1 {
  padding-bottom: 0.4rem !important;
}

.pl-a1,
.px-a1 {
  padding-left: 0.4rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ml-n7,
.mx-n7 {
  margin-left: -5.6rem !important;
}

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

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

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

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

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

.m-n9 {
  margin: -7.2rem !important;
}

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

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

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

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

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

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

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

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

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

.m-n11 {
  margin: -8.8rem !important;
}

.mt-n11,
.my-n11 {
  margin-top: -8.8rem !important;
}

.mr-n11,
.mx-n11 {
  margin-right: -8.8rem !important;
}

.mb-n11,
.my-n11 {
  margin-bottom: -8.8rem !important;
}

.ml-n11,
.mx-n11 {
  margin-left: -8.8rem !important;
}

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

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

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

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

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

.m-n13 {
  margin: -10.4rem !important;
}

.mt-n13,
.my-n13 {
  margin-top: -10.4rem !important;
}

.mr-n13,
.mx-n13 {
  margin-right: -10.4rem !important;
}

.mb-n13,
.my-n13 {
  margin-bottom: -10.4rem !important;
}

.ml-n13,
.mx-n13 {
  margin-left: -10.4rem !important;
}

.m-n14 {
  margin: -11.2rem !important;
}

.mt-n14,
.my-n14 {
  margin-top: -11.2rem !important;
}

.mr-n14,
.mx-n14 {
  margin-right: -11.2rem !important;
}

.mb-n14,
.my-n14 {
  margin-bottom: -11.2rem !important;
}

.ml-n14,
.mx-n14 {
  margin-left: -11.2rem !important;
}

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

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

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

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

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

.m-n16 {
  margin: -12.8rem !important;
}

.mt-n16,
.my-n16 {
  margin-top: -12.8rem !important;
}

.mr-n16,
.mx-n16 {
  margin-right: -12.8rem !important;
}

.mb-n16,
.my-n16 {
  margin-bottom: -12.8rem !important;
}

.ml-n16,
.mx-n16 {
  margin-left: -12.8rem !important;
}

.m-n17 {
  margin: -13.6rem !important;
}

.mt-n17,
.my-n17 {
  margin-top: -13.6rem !important;
}

.mr-n17,
.mx-n17 {
  margin-right: -13.6rem !important;
}

.mb-n17,
.my-n17 {
  margin-bottom: -13.6rem !important;
}

.ml-n17,
.mx-n17 {
  margin-left: -13.6rem !important;
}

.m-n18 {
  margin: -14.4rem !important;
}

.mt-n18,
.my-n18 {
  margin-top: -14.4rem !important;
}

.mr-n18,
.mx-n18 {
  margin-right: -14.4rem !important;
}

.mb-n18,
.my-n18 {
  margin-bottom: -14.4rem !important;
}

.ml-n18,
.mx-n18 {
  margin-left: -14.4rem !important;
}

.m-n19 {
  margin: -15.2rem !important;
}

.mt-n19,
.my-n19 {
  margin-top: -15.2rem !important;
}

.mr-n19,
.mx-n19 {
  margin-right: -15.2rem !important;
}

.mb-n19,
.my-n19 {
  margin-bottom: -15.2rem !important;
}

.ml-n19,
.mx-n19 {
  margin-left: -15.2rem !important;
}

.m-n20 {
  margin: -16rem !important;
}

.mt-n20,
.my-n20 {
  margin-top: -16rem !important;
}

.mr-n20,
.mx-n20 {
  margin-right: -16rem !important;
}

.mb-n20,
.my-n20 {
  margin-bottom: -16rem !important;
}

.ml-n20,
.mx-n20 {
  margin-left: -16rem !important;
}

.m-na1 {
  margin: -0.4rem !important;
}

.mt-na1,
.my-na1 {
  margin-top: -0.4rem !important;
}

.mr-na1,
.mx-na1 {
  margin-right: -0.4rem !important;
}

.mb-na1,
.my-na1 {
  margin-bottom: -0.4rem !important;
}

.ml-na1,
.mx-na1 {
  margin-left: -0.4rem !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: 576px) {
  .sm\:u-d-none {
    display: none !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:u-jc-evenly {
    justify-content: space-evenly !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:u-as-stretch {
    align-self: stretch !important;
  }

  .sm\:order-first {
    order: -1 !important;
  }

  .sm\:order-0 {
    order: 0 !important;
  }

  .sm\:order-1 {
    order: 1 !important;
  }

  .sm\:order-2 {
    order: 2 !important;
  }

  .sm\:order-3 {
    order: 3 !important;
  }

  .sm\:order-4 {
    order: 4 !important;
  }

  .sm\:order-5 {
    order: 5 !important;
  }

  .sm\:order-last {
    order: 6 !important;
  }

  .sm\:u-ta-left {
    text-align: left !important;
  }

  .sm\:u-ta-right {
    text-align: right !important;
  }

  .sm\:u-ta-center {
    text-align: center !important;
  }

  .sm\:m-0 {
    margin: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:ml-7,
  .sm\:mx-7 {
    margin-left: 5.6rem !important;
  }

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

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

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

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

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

  .sm\:m-9 {
    margin: 7.2rem !important;
  }

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

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

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

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

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

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

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

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

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

  .sm\:m-11 {
    margin: 8.8rem !important;
  }

  .sm\:mt-11,
  .sm\:my-11 {
    margin-top: 8.8rem !important;
  }

  .sm\:mr-11,
  .sm\:mx-11 {
    margin-right: 8.8rem !important;
  }

  .sm\:mb-11,
  .sm\:my-11 {
    margin-bottom: 8.8rem !important;
  }

  .sm\:ml-11,
  .sm\:mx-11 {
    margin-left: 8.8rem !important;
  }

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

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

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

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

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

  .sm\:m-13 {
    margin: 10.4rem !important;
  }

  .sm\:mt-13,
  .sm\:my-13 {
    margin-top: 10.4rem !important;
  }

  .sm\:mr-13,
  .sm\:mx-13 {
    margin-right: 10.4rem !important;
  }

  .sm\:mb-13,
  .sm\:my-13 {
    margin-bottom: 10.4rem !important;
  }

  .sm\:ml-13,
  .sm\:mx-13 {
    margin-left: 10.4rem !important;
  }

  .sm\:m-14 {
    margin: 11.2rem !important;
  }

  .sm\:mt-14,
  .sm\:my-14 {
    margin-top: 11.2rem !important;
  }

  .sm\:mr-14,
  .sm\:mx-14 {
    margin-right: 11.2rem !important;
  }

  .sm\:mb-14,
  .sm\:my-14 {
    margin-bottom: 11.2rem !important;
  }

  .sm\:ml-14,
  .sm\:mx-14 {
    margin-left: 11.2rem !important;
  }

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

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

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

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

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

  .sm\:m-16 {
    margin: 12.8rem !important;
  }

  .sm\:mt-16,
  .sm\:my-16 {
    margin-top: 12.8rem !important;
  }

  .sm\:mr-16,
  .sm\:mx-16 {
    margin-right: 12.8rem !important;
  }

  .sm\:mb-16,
  .sm\:my-16 {
    margin-bottom: 12.8rem !important;
  }

  .sm\:ml-16,
  .sm\:mx-16 {
    margin-left: 12.8rem !important;
  }

  .sm\:m-17 {
    margin: 13.6rem !important;
  }

  .sm\:mt-17,
  .sm\:my-17 {
    margin-top: 13.6rem !important;
  }

  .sm\:mr-17,
  .sm\:mx-17 {
    margin-right: 13.6rem !important;
  }

  .sm\:mb-17,
  .sm\:my-17 {
    margin-bottom: 13.6rem !important;
  }

  .sm\:ml-17,
  .sm\:mx-17 {
    margin-left: 13.6rem !important;
  }

  .sm\:m-18 {
    margin: 14.4rem !important;
  }

  .sm\:mt-18,
  .sm\:my-18 {
    margin-top: 14.4rem !important;
  }

  .sm\:mr-18,
  .sm\:mx-18 {
    margin-right: 14.4rem !important;
  }

  .sm\:mb-18,
  .sm\:my-18 {
    margin-bottom: 14.4rem !important;
  }

  .sm\:ml-18,
  .sm\:mx-18 {
    margin-left: 14.4rem !important;
  }

  .sm\:m-19 {
    margin: 15.2rem !important;
  }

  .sm\:mt-19,
  .sm\:my-19 {
    margin-top: 15.2rem !important;
  }

  .sm\:mr-19,
  .sm\:mx-19 {
    margin-right: 15.2rem !important;
  }

  .sm\:mb-19,
  .sm\:my-19 {
    margin-bottom: 15.2rem !important;
  }

  .sm\:ml-19,
  .sm\:mx-19 {
    margin-left: 15.2rem !important;
  }

  .sm\:m-20 {
    margin: 16rem !important;
  }

  .sm\:mt-20,
  .sm\:my-20 {
    margin-top: 16rem !important;
  }

  .sm\:mr-20,
  .sm\:mx-20 {
    margin-right: 16rem !important;
  }

  .sm\:mb-20,
  .sm\:my-20 {
    margin-bottom: 16rem !important;
  }

  .sm\:ml-20,
  .sm\:mx-20 {
    margin-left: 16rem !important;
  }

  .sm\:m-a1 {
    margin: 0.4rem !important;
  }

  .sm\:mt-a1,
  .sm\:my-a1 {
    margin-top: 0.4rem !important;
  }

  .sm\:mr-a1,
  .sm\:mx-a1 {
    margin-right: 0.4rem !important;
  }

  .sm\:mb-a1,
  .sm\:my-a1 {
    margin-bottom: 0.4rem !important;
  }

  .sm\:ml-a1,
  .sm\:mx-a1 {
    margin-left: 0.4rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:pl-7,
  .sm\:px-7 {
    padding-left: 5.6rem !important;
  }

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

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

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

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

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

  .sm\:p-9 {
    padding: 7.2rem !important;
  }

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

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

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

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

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

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

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

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

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

  .sm\:p-11 {
    padding: 8.8rem !important;
  }

  .sm\:pt-11,
  .sm\:py-11 {
    padding-top: 8.8rem !important;
  }

  .sm\:pr-11,
  .sm\:px-11 {
    padding-right: 8.8rem !important;
  }

  .sm\:pb-11,
  .sm\:py-11 {
    padding-bottom: 8.8rem !important;
  }

  .sm\:pl-11,
  .sm\:px-11 {
    padding-left: 8.8rem !important;
  }

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

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

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

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

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

  .sm\:p-13 {
    padding: 10.4rem !important;
  }

  .sm\:pt-13,
  .sm\:py-13 {
    padding-top: 10.4rem !important;
  }

  .sm\:pr-13,
  .sm\:px-13 {
    padding-right: 10.4rem !important;
  }

  .sm\:pb-13,
  .sm\:py-13 {
    padding-bottom: 10.4rem !important;
  }

  .sm\:pl-13,
  .sm\:px-13 {
    padding-left: 10.4rem !important;
  }

  .sm\:p-14 {
    padding: 11.2rem !important;
  }

  .sm\:pt-14,
  .sm\:py-14 {
    padding-top: 11.2rem !important;
  }

  .sm\:pr-14,
  .sm\:px-14 {
    padding-right: 11.2rem !important;
  }

  .sm\:pb-14,
  .sm\:py-14 {
    padding-bottom: 11.2rem !important;
  }

  .sm\:pl-14,
  .sm\:px-14 {
    padding-left: 11.2rem !important;
  }

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

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

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

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

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

  .sm\:p-16 {
    padding: 12.8rem !important;
  }

  .sm\:pt-16,
  .sm\:py-16 {
    padding-top: 12.8rem !important;
  }

  .sm\:pr-16,
  .sm\:px-16 {
    padding-right: 12.8rem !important;
  }

  .sm\:pb-16,
  .sm\:py-16 {
    padding-bottom: 12.8rem !important;
  }

  .sm\:pl-16,
  .sm\:px-16 {
    padding-left: 12.8rem !important;
  }

  .sm\:p-17 {
    padding: 13.6rem !important;
  }

  .sm\:pt-17,
  .sm\:py-17 {
    padding-top: 13.6rem !important;
  }

  .sm\:pr-17,
  .sm\:px-17 {
    padding-right: 13.6rem !important;
  }

  .sm\:pb-17,
  .sm\:py-17 {
    padding-bottom: 13.6rem !important;
  }

  .sm\:pl-17,
  .sm\:px-17 {
    padding-left: 13.6rem !important;
  }

  .sm\:p-18 {
    padding: 14.4rem !important;
  }

  .sm\:pt-18,
  .sm\:py-18 {
    padding-top: 14.4rem !important;
  }

  .sm\:pr-18,
  .sm\:px-18 {
    padding-right: 14.4rem !important;
  }

  .sm\:pb-18,
  .sm\:py-18 {
    padding-bottom: 14.4rem !important;
  }

  .sm\:pl-18,
  .sm\:px-18 {
    padding-left: 14.4rem !important;
  }

  .sm\:p-19 {
    padding: 15.2rem !important;
  }

  .sm\:pt-19,
  .sm\:py-19 {
    padding-top: 15.2rem !important;
  }

  .sm\:pr-19,
  .sm\:px-19 {
    padding-right: 15.2rem !important;
  }

  .sm\:pb-19,
  .sm\:py-19 {
    padding-bottom: 15.2rem !important;
  }

  .sm\:pl-19,
  .sm\:px-19 {
    padding-left: 15.2rem !important;
  }

  .sm\:p-20 {
    padding: 16rem !important;
  }

  .sm\:pt-20,
  .sm\:py-20 {
    padding-top: 16rem !important;
  }

  .sm\:pr-20,
  .sm\:px-20 {
    padding-right: 16rem !important;
  }

  .sm\:pb-20,
  .sm\:py-20 {
    padding-bottom: 16rem !important;
  }

  .sm\:pl-20,
  .sm\:px-20 {
    padding-left: 16rem !important;
  }

  .sm\:p-a1 {
    padding: 0.4rem !important;
  }

  .sm\:pt-a1,
  .sm\:py-a1 {
    padding-top: 0.4rem !important;
  }

  .sm\:pr-a1,
  .sm\:px-a1 {
    padding-right: 0.4rem !important;
  }

  .sm\:pb-a1,
  .sm\:py-a1 {
    padding-bottom: 0.4rem !important;
  }

  .sm\:pl-a1,
  .sm\:px-a1 {
    padding-left: 0.4rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:ml-n7,
  .sm\:mx-n7 {
    margin-left: -5.6rem !important;
  }

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

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

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

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

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

  .sm\:m-n9 {
    margin: -7.2rem !important;
  }

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

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

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

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

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

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

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

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

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

  .sm\:m-n11 {
    margin: -8.8rem !important;
  }

  .sm\:mt-n11,
  .sm\:my-n11 {
    margin-top: -8.8rem !important;
  }

  .sm\:mr-n11,
  .sm\:mx-n11 {
    margin-right: -8.8rem !important;
  }

  .sm\:mb-n11,
  .sm\:my-n11 {
    margin-bottom: -8.8rem !important;
  }

  .sm\:ml-n11,
  .sm\:mx-n11 {
    margin-left: -8.8rem !important;
  }

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

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

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

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

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

  .sm\:m-n13 {
    margin: -10.4rem !important;
  }

  .sm\:mt-n13,
  .sm\:my-n13 {
    margin-top: -10.4rem !important;
  }

  .sm\:mr-n13,
  .sm\:mx-n13 {
    margin-right: -10.4rem !important;
  }

  .sm\:mb-n13,
  .sm\:my-n13 {
    margin-bottom: -10.4rem !important;
  }

  .sm\:ml-n13,
  .sm\:mx-n13 {
    margin-left: -10.4rem !important;
  }

  .sm\:m-n14 {
    margin: -11.2rem !important;
  }

  .sm\:mt-n14,
  .sm\:my-n14 {
    margin-top: -11.2rem !important;
  }

  .sm\:mr-n14,
  .sm\:mx-n14 {
    margin-right: -11.2rem !important;
  }

  .sm\:mb-n14,
  .sm\:my-n14 {
    margin-bottom: -11.2rem !important;
  }

  .sm\:ml-n14,
  .sm\:mx-n14 {
    margin-left: -11.2rem !important;
  }

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

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

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

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

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

  .sm\:m-n16 {
    margin: -12.8rem !important;
  }

  .sm\:mt-n16,
  .sm\:my-n16 {
    margin-top: -12.8rem !important;
  }

  .sm\:mr-n16,
  .sm\:mx-n16 {
    margin-right: -12.8rem !important;
  }

  .sm\:mb-n16,
  .sm\:my-n16 {
    margin-bottom: -12.8rem !important;
  }

  .sm\:ml-n16,
  .sm\:mx-n16 {
    margin-left: -12.8rem !important;
  }

  .sm\:m-n17 {
    margin: -13.6rem !important;
  }

  .sm\:mt-n17,
  .sm\:my-n17 {
    margin-top: -13.6rem !important;
  }

  .sm\:mr-n17,
  .sm\:mx-n17 {
    margin-right: -13.6rem !important;
  }

  .sm\:mb-n17,
  .sm\:my-n17 {
    margin-bottom: -13.6rem !important;
  }

  .sm\:ml-n17,
  .sm\:mx-n17 {
    margin-left: -13.6rem !important;
  }

  .sm\:m-n18 {
    margin: -14.4rem !important;
  }

  .sm\:mt-n18,
  .sm\:my-n18 {
    margin-top: -14.4rem !important;
  }

  .sm\:mr-n18,
  .sm\:mx-n18 {
    margin-right: -14.4rem !important;
  }

  .sm\:mb-n18,
  .sm\:my-n18 {
    margin-bottom: -14.4rem !important;
  }

  .sm\:ml-n18,
  .sm\:mx-n18 {
    margin-left: -14.4rem !important;
  }

  .sm\:m-n19 {
    margin: -15.2rem !important;
  }

  .sm\:mt-n19,
  .sm\:my-n19 {
    margin-top: -15.2rem !important;
  }

  .sm\:mr-n19,
  .sm\:mx-n19 {
    margin-right: -15.2rem !important;
  }

  .sm\:mb-n19,
  .sm\:my-n19 {
    margin-bottom: -15.2rem !important;
  }

  .sm\:ml-n19,
  .sm\:mx-n19 {
    margin-left: -15.2rem !important;
  }

  .sm\:m-n20 {
    margin: -16rem !important;
  }

  .sm\:mt-n20,
  .sm\:my-n20 {
    margin-top: -16rem !important;
  }

  .sm\:mr-n20,
  .sm\:mx-n20 {
    margin-right: -16rem !important;
  }

  .sm\:mb-n20,
  .sm\:my-n20 {
    margin-bottom: -16rem !important;
  }

  .sm\:ml-n20,
  .sm\:mx-n20 {
    margin-left: -16rem !important;
  }

  .sm\:m-na1 {
    margin: -0.4rem !important;
  }

  .sm\:mt-na1,
  .sm\:my-na1 {
    margin-top: -0.4rem !important;
  }

  .sm\:mr-na1,
  .sm\:mx-na1 {
    margin-right: -0.4rem !important;
  }

  .sm\:mb-na1,
  .sm\:my-na1 {
    margin-bottom: -0.4rem !important;
  }

  .sm\:ml-na1,
  .sm\:mx-na1 {
    margin-left: -0.4rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .md\:u-jc-evenly {
    justify-content: space-evenly !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .md\:u-as-stretch {
    align-self: stretch !important;
  }

  .md\:order-first {
    order: -1 !important;
  }

  .md\:order-0 {
    order: 0 !important;
  }

  .md\:order-1 {
    order: 1 !important;
  }

  .md\:order-2 {
    order: 2 !important;
  }

  .md\:order-3 {
    order: 3 !important;
  }

  .md\:order-4 {
    order: 4 !important;
  }

  .md\:order-5 {
    order: 5 !important;
  }

  .md\:order-last {
    order: 6 !important;
  }

  .md\:u-ta-left {
    text-align: left !important;
  }

  .md\:u-ta-right {
    text-align: right !important;
  }

  .md\:u-ta-center {
    text-align: center !important;
  }

  .md\:m-0 {
    margin: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .md\:ml-7,
  .md\:mx-7 {
    margin-left: 5.6rem !important;
  }

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

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

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

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

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

  .md\:m-9 {
    margin: 7.2rem !important;
  }

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

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

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

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

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

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

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

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

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

  .md\:m-11 {
    margin: 8.8rem !important;
  }

  .md\:mt-11,
  .md\:my-11 {
    margin-top: 8.8rem !important;
  }

  .md\:mr-11,
  .md\:mx-11 {
    margin-right: 8.8rem !important;
  }

  .md\:mb-11,
  .md\:my-11 {
    margin-bottom: 8.8rem !important;
  }

  .md\:ml-11,
  .md\:mx-11 {
    margin-left: 8.8rem !important;
  }

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

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

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

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

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

  .md\:m-13 {
    margin: 10.4rem !important;
  }

  .md\:mt-13,
  .md\:my-13 {
    margin-top: 10.4rem !important;
  }

  .md\:mr-13,
  .md\:mx-13 {
    margin-right: 10.4rem !important;
  }

  .md\:mb-13,
  .md\:my-13 {
    margin-bottom: 10.4rem !important;
  }

  .md\:ml-13,
  .md\:mx-13 {
    margin-left: 10.4rem !important;
  }

  .md\:m-14 {
    margin: 11.2rem !important;
  }

  .md\:mt-14,
  .md\:my-14 {
    margin-top: 11.2rem !important;
  }

  .md\:mr-14,
  .md\:mx-14 {
    margin-right: 11.2rem !important;
  }

  .md\:mb-14,
  .md\:my-14 {
    margin-bottom: 11.2rem !important;
  }

  .md\:ml-14,
  .md\:mx-14 {
    margin-left: 11.2rem !important;
  }

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

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

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

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

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

  .md\:m-16 {
    margin: 12.8rem !important;
  }

  .md\:mt-16,
  .md\:my-16 {
    margin-top: 12.8rem !important;
  }

  .md\:mr-16,
  .md\:mx-16 {
    margin-right: 12.8rem !important;
  }

  .md\:mb-16,
  .md\:my-16 {
    margin-bottom: 12.8rem !important;
  }

  .md\:ml-16,
  .md\:mx-16 {
    margin-left: 12.8rem !important;
  }

  .md\:m-17 {
    margin: 13.6rem !important;
  }

  .md\:mt-17,
  .md\:my-17 {
    margin-top: 13.6rem !important;
  }

  .md\:mr-17,
  .md\:mx-17 {
    margin-right: 13.6rem !important;
  }

  .md\:mb-17,
  .md\:my-17 {
    margin-bottom: 13.6rem !important;
  }

  .md\:ml-17,
  .md\:mx-17 {
    margin-left: 13.6rem !important;
  }

  .md\:m-18 {
    margin: 14.4rem !important;
  }

  .md\:mt-18,
  .md\:my-18 {
    margin-top: 14.4rem !important;
  }

  .md\:mr-18,
  .md\:mx-18 {
    margin-right: 14.4rem !important;
  }

  .md\:mb-18,
  .md\:my-18 {
    margin-bottom: 14.4rem !important;
  }

  .md\:ml-18,
  .md\:mx-18 {
    margin-left: 14.4rem !important;
  }

  .md\:m-19 {
    margin: 15.2rem !important;
  }

  .md\:mt-19,
  .md\:my-19 {
    margin-top: 15.2rem !important;
  }

  .md\:mr-19,
  .md\:mx-19 {
    margin-right: 15.2rem !important;
  }

  .md\:mb-19,
  .md\:my-19 {
    margin-bottom: 15.2rem !important;
  }

  .md\:ml-19,
  .md\:mx-19 {
    margin-left: 15.2rem !important;
  }

  .md\:m-20 {
    margin: 16rem !important;
  }

  .md\:mt-20,
  .md\:my-20 {
    margin-top: 16rem !important;
  }

  .md\:mr-20,
  .md\:mx-20 {
    margin-right: 16rem !important;
  }

  .md\:mb-20,
  .md\:my-20 {
    margin-bottom: 16rem !important;
  }

  .md\:ml-20,
  .md\:mx-20 {
    margin-left: 16rem !important;
  }

  .md\:m-a1 {
    margin: 0.4rem !important;
  }

  .md\:mt-a1,
  .md\:my-a1 {
    margin-top: 0.4rem !important;
  }

  .md\:mr-a1,
  .md\:mx-a1 {
    margin-right: 0.4rem !important;
  }

  .md\:mb-a1,
  .md\:my-a1 {
    margin-bottom: 0.4rem !important;
  }

  .md\:ml-a1,
  .md\:mx-a1 {
    margin-left: 0.4rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .md\:pl-7,
  .md\:px-7 {
    padding-left: 5.6rem !important;
  }

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

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

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

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

  .md\:pl-8,
  .md\:px-8 {
    padding-left: 6.4rem !important;
  }

  .md\:p-9 {
    padding: 7.2rem !important;
  }

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

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

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

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

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

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

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

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

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

  .md\:p-11 {
    padding: 8.8rem !important;
  }

  .md\:pt-11,
  .md\:py-11 {
    padding-top: 8.8rem !important;
  }

  .md\:pr-11,
  .md\:px-11 {
    padding-right: 8.8rem !important;
  }

  .md\:pb-11,
  .md\:py-11 {
    padding-bottom: 8.8rem !important;
  }

  .md\:pl-11,
  .md\:px-11 {
    padding-left: 8.8rem !important;
  }

  .md\:p-12 {
    padding: 9.6rem !important;
  }

  .md\:pt-12,
  .md\:py-12 {
    padding-top: 9.6rem !important;
  }

  .md\:pr-12,
  .md\:px-12 {
    padding-right: 9.6rem !important;
  }

  .md\:pb-12,
  .md\:py-12 {
    padding-bottom: 9.6rem !important;
  }

  .md\:pl-12,
  .md\:px-12 {
    padding-left: 9.6rem !important;
  }

  .md\:p-13 {
    padding: 10.4rem !important;
  }

  .md\:pt-13,
  .md\:py-13 {
    padding-top: 10.4rem !important;
  }

  .md\:pr-13,
  .md\:px-13 {
    padding-right: 10.4rem !important;
  }

  .md\:pb-13,
  .md\:py-13 {
    padding-bottom: 10.4rem !important;
  }

  .md\:pl-13,
  .md\:px-13 {
    padding-left: 10.4rem !important;
  }

  .md\:p-14 {
    padding: 11.2rem !important;
  }

  .md\:pt-14,
  .md\:py-14 {
    padding-top: 11.2rem !important;
  }

  .md\:pr-14,
  .md\:px-14 {
    padding-right: 11.2rem !important;
  }

  .md\:pb-14,
  .md\:py-14 {
    padding-bottom: 11.2rem !important;
  }

  .md\:pl-14,
  .md\:px-14 {
    padding-left: 11.2rem !important;
  }

  .md\:p-15 {
    padding: 12rem !important;
  }

  .md\:pt-15,
  .md\:py-15 {
    padding-top: 12rem !important;
  }

  .md\:pr-15,
  .md\:px-15 {
    padding-right: 12rem !important;
  }

  .md\:pb-15,
  .md\:py-15 {
    padding-bottom: 12rem !important;
  }

  .md\:pl-15,
  .md\:px-15 {
    padding-left: 12rem !important;
  }

  .md\:p-16 {
    padding: 12.8rem !important;
  }

  .md\:pt-16,
  .md\:py-16 {
    padding-top: 12.8rem !important;
  }

  .md\:pr-16,
  .md\:px-16 {
    padding-right: 12.8rem !important;
  }

  .md\:pb-16,
  .md\:py-16 {
    padding-bottom: 12.8rem !important;
  }

  .md\:pl-16,
  .md\:px-16 {
    padding-left: 12.8rem !important;
  }

  .md\:p-17 {
    padding: 13.6rem !important;
  }

  .md\:pt-17,
  .md\:py-17 {
    padding-top: 13.6rem !important;
  }

  .md\:pr-17,
  .md\:px-17 {
    padding-right: 13.6rem !important;
  }

  .md\:pb-17,
  .md\:py-17 {
    padding-bottom: 13.6rem !important;
  }

  .md\:pl-17,
  .md\:px-17 {
    padding-left: 13.6rem !important;
  }

  .md\:p-18 {
    padding: 14.4rem !important;
  }

  .md\:pt-18,
  .md\:py-18 {
    padding-top: 14.4rem !important;
  }

  .md\:pr-18,
  .md\:px-18 {
    padding-right: 14.4rem !important;
  }

  .md\:pb-18,
  .md\:py-18 {
    padding-bottom: 14.4rem !important;
  }

  .md\:pl-18,
  .md\:px-18 {
    padding-left: 14.4rem !important;
  }

  .md\:p-19 {
    padding: 15.2rem !important;
  }

  .md\:pt-19,
  .md\:py-19 {
    padding-top: 15.2rem !important;
  }

  .md\:pr-19,
  .md\:px-19 {
    padding-right: 15.2rem !important;
  }

  .md\:pb-19,
  .md\:py-19 {
    padding-bottom: 15.2rem !important;
  }

  .md\:pl-19,
  .md\:px-19 {
    padding-left: 15.2rem !important;
  }

  .md\:p-20 {
    padding: 16rem !important;
  }

  .md\:pt-20,
  .md\:py-20 {
    padding-top: 16rem !important;
  }

  .md\:pr-20,
  .md\:px-20 {
    padding-right: 16rem !important;
  }

  .md\:pb-20,
  .md\:py-20 {
    padding-bottom: 16rem !important;
  }

  .md\:pl-20,
  .md\:px-20 {
    padding-left: 16rem !important;
  }

  .md\:p-a1 {
    padding: 0.4rem !important;
  }

  .md\:pt-a1,
  .md\:py-a1 {
    padding-top: 0.4rem !important;
  }

  .md\:pr-a1,
  .md\:px-a1 {
    padding-right: 0.4rem !important;
  }

  .md\:pb-a1,
  .md\:py-a1 {
    padding-bottom: 0.4rem !important;
  }

  .md\:pl-a1,
  .md\:px-a1 {
    padding-left: 0.4rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .md\:ml-n7,
  .md\:mx-n7 {
    margin-left: -5.6rem !important;
  }

  .md\:m-n8 {
    margin: -6.4rem !important;
  }

  .md\:mt-n8,
  .md\:my-n8 {
    margin-top: -6.4rem !important;
  }

  .md\:mr-n8,
  .md\:mx-n8 {
    margin-right: -6.4rem !important;
  }

  .md\:mb-n8,
  .md\:my-n8 {
    margin-bottom: -6.4rem !important;
  }

  .md\:ml-n8,
  .md\:mx-n8 {
    margin-left: -6.4rem !important;
  }

  .md\:m-n9 {
    margin: -7.2rem !important;
  }

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

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

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

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

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

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

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

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

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

  .md\:m-n11 {
    margin: -8.8rem !important;
  }

  .md\:mt-n11,
  .md\:my-n11 {
    margin-top: -8.8rem !important;
  }

  .md\:mr-n11,
  .md\:mx-n11 {
    margin-right: -8.8rem !important;
  }

  .md\:mb-n11,
  .md\:my-n11 {
    margin-bottom: -8.8rem !important;
  }

  .md\:ml-n11,
  .md\:mx-n11 {
    margin-left: -8.8rem !important;
  }

  .md\:m-n12 {
    margin: -9.6rem !important;
  }

  .md\:mt-n12,
  .md\:my-n12 {
    margin-top: -9.6rem !important;
  }

  .md\:mr-n12,
  .md\:mx-n12 {
    margin-right: -9.6rem !important;
  }

  .md\:mb-n12,
  .md\:my-n12 {
    margin-bottom: -9.6rem !important;
  }

  .md\:ml-n12,
  .md\:mx-n12 {
    margin-left: -9.6rem !important;
  }

  .md\:m-n13 {
    margin: -10.4rem !important;
  }

  .md\:mt-n13,
  .md\:my-n13 {
    margin-top: -10.4rem !important;
  }

  .md\:mr-n13,
  .md\:mx-n13 {
    margin-right: -10.4rem !important;
  }

  .md\:mb-n13,
  .md\:my-n13 {
    margin-bottom: -10.4rem !important;
  }

  .md\:ml-n13,
  .md\:mx-n13 {
    margin-left: -10.4rem !important;
  }

  .md\:m-n14 {
    margin: -11.2rem !important;
  }

  .md\:mt-n14,
  .md\:my-n14 {
    margin-top: -11.2rem !important;
  }

  .md\:mr-n14,
  .md\:mx-n14 {
    margin-right: -11.2rem !important;
  }

  .md\:mb-n14,
  .md\:my-n14 {
    margin-bottom: -11.2rem !important;
  }

  .md\:ml-n14,
  .md\:mx-n14 {
    margin-left: -11.2rem !important;
  }

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

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

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

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

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

  .md\:m-n16 {
    margin: -12.8rem !important;
  }

  .md\:mt-n16,
  .md\:my-n16 {
    margin-top: -12.8rem !important;
  }

  .md\:mr-n16,
  .md\:mx-n16 {
    margin-right: -12.8rem !important;
  }

  .md\:mb-n16,
  .md\:my-n16 {
    margin-bottom: -12.8rem !important;
  }

  .md\:ml-n16,
  .md\:mx-n16 {
    margin-left: -12.8rem !important;
  }

  .md\:m-n17 {
    margin: -13.6rem !important;
  }

  .md\:mt-n17,
  .md\:my-n17 {
    margin-top: -13.6rem !important;
  }

  .md\:mr-n17,
  .md\:mx-n17 {
    margin-right: -13.6rem !important;
  }

  .md\:mb-n17,
  .md\:my-n17 {
    margin-bottom: -13.6rem !important;
  }

  .md\:ml-n17,
  .md\:mx-n17 {
    margin-left: -13.6rem !important;
  }

  .md\:m-n18 {
    margin: -14.4rem !important;
  }

  .md\:mt-n18,
  .md\:my-n18 {
    margin-top: -14.4rem !important;
  }

  .md\:mr-n18,
  .md\:mx-n18 {
    margin-right: -14.4rem !important;
  }

  .md\:mb-n18,
  .md\:my-n18 {
    margin-bottom: -14.4rem !important;
  }

  .md\:ml-n18,
  .md\:mx-n18 {
    margin-left: -14.4rem !important;
  }

  .md\:m-n19 {
    margin: -15.2rem !important;
  }

  .md\:mt-n19,
  .md\:my-n19 {
    margin-top: -15.2rem !important;
  }

  .md\:mr-n19,
  .md\:mx-n19 {
    margin-right: -15.2rem !important;
  }

  .md\:mb-n19,
  .md\:my-n19 {
    margin-bottom: -15.2rem !important;
  }

  .md\:ml-n19,
  .md\:mx-n19 {
    margin-left: -15.2rem !important;
  }

  .md\:m-n20 {
    margin: -16rem !important;
  }

  .md\:mt-n20,
  .md\:my-n20 {
    margin-top: -16rem !important;
  }

  .md\:mr-n20,
  .md\:mx-n20 {
    margin-right: -16rem !important;
  }

  .md\:mb-n20,
  .md\:my-n20 {
    margin-bottom: -16rem !important;
  }

  .md\:ml-n20,
  .md\:mx-n20 {
    margin-left: -16rem !important;
  }

  .md\:m-na1 {
    margin: -0.4rem !important;
  }

  .md\:mt-na1,
  .md\:my-na1 {
    margin-top: -0.4rem !important;
  }

  .md\:mr-na1,
  .md\:mx-na1 {
    margin-right: -0.4rem !important;
  }

  .md\:mb-na1,
  .md\:my-na1 {
    margin-bottom: -0.4rem !important;
  }

  .md\:ml-na1,
  .md\:mx-na1 {
    margin-left: -0.4rem !important;
  }

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

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

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

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

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

@media (min-width: 992px) {
  .lg\:u-d-none {
    display: none !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lg\:u-jc-evenly {
    justify-content: space-evenly !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lg\:u-as-stretch {
    align-self: stretch !important;
  }

  .lg\:order-first {
    order: -1 !important;
  }

  .lg\:order-0 {
    order: 0 !important;
  }

  .lg\:order-1 {
    order: 1 !important;
  }

  .lg\:order-2 {
    order: 2 !important;
  }

  .lg\:order-3 {
    order: 3 !important;
  }

  .lg\:order-4 {
    order: 4 !important;
  }

  .lg\:order-5 {
    order: 5 !important;
  }

  .lg\:order-last {
    order: 6 !important;
  }

  .lg\:u-ta-left {
    text-align: left !important;
  }

  .lg\:u-ta-right {
    text-align: right !important;
  }

  .lg\:u-ta-center {
    text-align: center !important;
  }

  .lg\:m-0 {
    margin: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lg\:ml-7,
  .lg\:mx-7 {
    margin-left: 5.6rem !important;
  }

  .lg\:m-8 {
    margin: 6.4rem !important;
  }

  .lg\:mt-8,
  .lg\:my-8 {
    margin-top: 6.4rem !important;
  }

  .lg\:mr-8,
  .lg\:mx-8 {
    margin-right: 6.4rem !important;
  }

  .lg\:mb-8,
  .lg\:my-8 {
    margin-bottom: 6.4rem !important;
  }

  .lg\:ml-8,
  .lg\:mx-8 {
    margin-left: 6.4rem !important;
  }

  .lg\:m-9 {
    margin: 7.2rem !important;
  }

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

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

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

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

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

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

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

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

  .lg\:ml-10,
  .lg\:mx-10 {
    margin-left: 8rem !important;
  }

  .lg\:m-11 {
    margin: 8.8rem !important;
  }

  .lg\:mt-11,
  .lg\:my-11 {
    margin-top: 8.8rem !important;
  }

  .lg\:mr-11,
  .lg\:mx-11 {
    margin-right: 8.8rem !important;
  }

  .lg\:mb-11,
  .lg\:my-11 {
    margin-bottom: 8.8rem !important;
  }

  .lg\:ml-11,
  .lg\:mx-11 {
    margin-left: 8.8rem !important;
  }

  .lg\:m-12 {
    margin: 9.6rem !important;
  }

  .lg\:mt-12,
  .lg\:my-12 {
    margin-top: 9.6rem !important;
  }

  .lg\:mr-12,
  .lg\:mx-12 {
    margin-right: 9.6rem !important;
  }

  .lg\:mb-12,
  .lg\:my-12 {
    margin-bottom: 9.6rem !important;
  }

  .lg\:ml-12,
  .lg\:mx-12 {
    margin-left: 9.6rem !important;
  }

  .lg\:m-13 {
    margin: 10.4rem !important;
  }

  .lg\:mt-13,
  .lg\:my-13 {
    margin-top: 10.4rem !important;
  }

  .lg\:mr-13,
  .lg\:mx-13 {
    margin-right: 10.4rem !important;
  }

  .lg\:mb-13,
  .lg\:my-13 {
    margin-bottom: 10.4rem !important;
  }

  .lg\:ml-13,
  .lg\:mx-13 {
    margin-left: 10.4rem !important;
  }

  .lg\:m-14 {
    margin: 11.2rem !important;
  }

  .lg\:mt-14,
  .lg\:my-14 {
    margin-top: 11.2rem !important;
  }

  .lg\:mr-14,
  .lg\:mx-14 {
    margin-right: 11.2rem !important;
  }

  .lg\:mb-14,
  .lg\:my-14 {
    margin-bottom: 11.2rem !important;
  }

  .lg\:ml-14,
  .lg\:mx-14 {
    margin-left: 11.2rem !important;
  }

  .lg\:m-15 {
    margin: 12rem !important;
  }

  .lg\:mt-15,
  .lg\:my-15 {
    margin-top: 12rem !important;
  }

  .lg\:mr-15,
  .lg\:mx-15 {
    margin-right: 12rem !important;
  }

  .lg\:mb-15,
  .lg\:my-15 {
    margin-bottom: 12rem !important;
  }

  .lg\:ml-15,
  .lg\:mx-15 {
    margin-left: 12rem !important;
  }

  .lg\:m-16 {
    margin: 12.8rem !important;
  }

  .lg\:mt-16,
  .lg\:my-16 {
    margin-top: 12.8rem !important;
  }

  .lg\:mr-16,
  .lg\:mx-16 {
    margin-right: 12.8rem !important;
  }

  .lg\:mb-16,
  .lg\:my-16 {
    margin-bottom: 12.8rem !important;
  }

  .lg\:ml-16,
  .lg\:mx-16 {
    margin-left: 12.8rem !important;
  }

  .lg\:m-17 {
    margin: 13.6rem !important;
  }

  .lg\:mt-17,
  .lg\:my-17 {
    margin-top: 13.6rem !important;
  }

  .lg\:mr-17,
  .lg\:mx-17 {
    margin-right: 13.6rem !important;
  }

  .lg\:mb-17,
  .lg\:my-17 {
    margin-bottom: 13.6rem !important;
  }

  .lg\:ml-17,
  .lg\:mx-17 {
    margin-left: 13.6rem !important;
  }

  .lg\:m-18 {
    margin: 14.4rem !important;
  }

  .lg\:mt-18,
  .lg\:my-18 {
    margin-top: 14.4rem !important;
  }

  .lg\:mr-18,
  .lg\:mx-18 {
    margin-right: 14.4rem !important;
  }

  .lg\:mb-18,
  .lg\:my-18 {
    margin-bottom: 14.4rem !important;
  }

  .lg\:ml-18,
  .lg\:mx-18 {
    margin-left: 14.4rem !important;
  }

  .lg\:m-19 {
    margin: 15.2rem !important;
  }

  .lg\:mt-19,
  .lg\:my-19 {
    margin-top: 15.2rem !important;
  }

  .lg\:mr-19,
  .lg\:mx-19 {
    margin-right: 15.2rem !important;
  }

  .lg\:mb-19,
  .lg\:my-19 {
    margin-bottom: 15.2rem !important;
  }

  .lg\:ml-19,
  .lg\:mx-19 {
    margin-left: 15.2rem !important;
  }

  .lg\:m-20 {
    margin: 16rem !important;
  }

  .lg\:mt-20,
  .lg\:my-20 {
    margin-top: 16rem !important;
  }

  .lg\:mr-20,
  .lg\:mx-20 {
    margin-right: 16rem !important;
  }

  .lg\:mb-20,
  .lg\:my-20 {
    margin-bottom: 16rem !important;
  }

  .lg\:ml-20,
  .lg\:mx-20 {
    margin-left: 16rem !important;
  }

  .lg\:m-a1 {
    margin: 0.4rem !important;
  }

  .lg\:mt-a1,
  .lg\:my-a1 {
    margin-top: 0.4rem !important;
  }

  .lg\:mr-a1,
  .lg\:mx-a1 {
    margin-right: 0.4rem !important;
  }

  .lg\:mb-a1,
  .lg\:my-a1 {
    margin-bottom: 0.4rem !important;
  }

  .lg\:ml-a1,
  .lg\:mx-a1 {
    margin-left: 0.4rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lg\:pr-4,
  .lg\:px-4 {
    padding-right: 3.2rem !important;
  }

  .lg\:pb-4,
  .lg\:py-4 {
    padding-bottom: 3.2rem !important;
  }

  .lg\:pl-4,
  .lg\:px-4 {
    padding-left: 3.2rem !important;
  }

  .lg\:p-5 {
    padding: 4rem !important;
  }

  .lg\:pt-5,
  .lg\:py-5 {
    padding-top: 4rem !important;
  }

  .lg\:pr-5,
  .lg\:px-5 {
    padding-right: 4rem !important;
  }

  .lg\:pb-5,
  .lg\:py-5 {
    padding-bottom: 4rem !important;
  }

  .lg\:pl-5,
  .lg\:px-5 {
    padding-left: 4rem !important;
  }

  .lg\:p-6 {
    padding: 4.8rem !important;
  }

  .lg\:pt-6,
  .lg\:py-6 {
    padding-top: 4.8rem !important;
  }

  .lg\:pr-6,
  .lg\:px-6 {
    padding-right: 4.8rem !important;
  }

  .lg\:pb-6,
  .lg\:py-6 {
    padding-bottom: 4.8rem !important;
  }

  .lg\:pl-6,
  .lg\:px-6 {
    padding-left: 4.8rem !important;
  }

  .lg\:p-7 {
    padding: 5.6rem !important;
  }

  .lg\:pt-7,
  .lg\:py-7 {
    padding-top: 5.6rem !important;
  }

  .lg\:pr-7,
  .lg\:px-7 {
    padding-right: 5.6rem !important;
  }

  .lg\:pb-7,
  .lg\:py-7 {
    padding-bottom: 5.6rem !important;
  }

  .lg\:pl-7,
  .lg\:px-7 {
    padding-left: 5.6rem !important;
  }

  .lg\:p-8 {
    padding: 6.4rem !important;
  }

  .lg\:pt-8,
  .lg\:py-8 {
    padding-top: 6.4rem !important;
  }

  .lg\:pr-8,
  .lg\:px-8 {
    padding-right: 6.4rem !important;
  }

  .lg\:pb-8,
  .lg\:py-8 {
    padding-bottom: 6.4rem !important;
  }

  .lg\:pl-8,
  .lg\:px-8 {
    padding-left: 6.4rem !important;
  }

  .lg\:p-9 {
    padding: 7.2rem !important;
  }

  .lg\:pt-9,
  .lg\:py-9 {
    padding-top: 7.2rem !important;
  }

  .lg\:pr-9,
  .lg\:px-9 {
    padding-right: 7.2rem !important;
  }

  .lg\:pb-9,
  .lg\:py-9 {
    padding-bottom: 7.2rem !important;
  }

  .lg\:pl-9,
  .lg\:px-9 {
    padding-left: 7.2rem !important;
  }

  .lg\:p-10 {
    padding: 8rem !important;
  }

  .lg\:pt-10,
  .lg\:py-10 {
    padding-top: 8rem !important;
  }

  .lg\:pr-10,
  .lg\:px-10 {
    padding-right: 8rem !important;
  }

  .lg\:pb-10,
  .lg\:py-10 {
    padding-bottom: 8rem !important;
  }

  .lg\:pl-10,
  .lg\:px-10 {
    padding-left: 8rem !important;
  }

  .lg\:p-11 {
    padding: 8.8rem !important;
  }

  .lg\:pt-11,
  .lg\:py-11 {
    padding-top: 8.8rem !important;
  }

  .lg\:pr-11,
  .lg\:px-11 {
    padding-right: 8.8rem !important;
  }

  .lg\:pb-11,
  .lg\:py-11 {
    padding-bottom: 8.8rem !important;
  }

  .lg\:pl-11,
  .lg\:px-11 {
    padding-left: 8.8rem !important;
  }

  .lg\:p-12 {
    padding: 9.6rem !important;
  }

  .lg\:pt-12,
  .lg\:py-12 {
    padding-top: 9.6rem !important;
  }

  .lg\:pr-12,
  .lg\:px-12 {
    padding-right: 9.6rem !important;
  }

  .lg\:pb-12,
  .lg\:py-12 {
    padding-bottom: 9.6rem !important;
  }

  .lg\:pl-12,
  .lg\:px-12 {
    padding-left: 9.6rem !important;
  }

  .lg\:p-13 {
    padding: 10.4rem !important;
  }

  .lg\:pt-13,
  .lg\:py-13 {
    padding-top: 10.4rem !important;
  }

  .lg\:pr-13,
  .lg\:px-13 {
    padding-right: 10.4rem !important;
  }

  .lg\:pb-13,
  .lg\:py-13 {
    padding-bottom: 10.4rem !important;
  }

  .lg\:pl-13,
  .lg\:px-13 {
    padding-left: 10.4rem !important;
  }

  .lg\:p-14 {
    padding: 11.2rem !important;
  }

  .lg\:pt-14,
  .lg\:py-14 {
    padding-top: 11.2rem !important;
  }

  .lg\:pr-14,
  .lg\:px-14 {
    padding-right: 11.2rem !important;
  }

  .lg\:pb-14,
  .lg\:py-14 {
    padding-bottom: 11.2rem !important;
  }

  .lg\:pl-14,
  .lg\:px-14 {
    padding-left: 11.2rem !important;
  }

  .lg\:p-15 {
    padding: 12rem !important;
  }

  .lg\:pt-15,
  .lg\:py-15 {
    padding-top: 12rem !important;
  }

  .lg\:pr-15,
  .lg\:px-15 {
    padding-right: 12rem !important;
  }

  .lg\:pb-15,
  .lg\:py-15 {
    padding-bottom: 12rem !important;
  }

  .lg\:pl-15,
  .lg\:px-15 {
    padding-left: 12rem !important;
  }

  .lg\:p-16 {
    padding: 12.8rem !important;
  }

  .lg\:pt-16,
  .lg\:py-16 {
    padding-top: 12.8rem !important;
  }

  .lg\:pr-16,
  .lg\:px-16 {
    padding-right: 12.8rem !important;
  }

  .lg\:pb-16,
  .lg\:py-16 {
    padding-bottom: 12.8rem !important;
  }

  .lg\:pl-16,
  .lg\:px-16 {
    padding-left: 12.8rem !important;
  }

  .lg\:p-17 {
    padding: 13.6rem !important;
  }

  .lg\:pt-17,
  .lg\:py-17 {
    padding-top: 13.6rem !important;
  }

  .lg\:pr-17,
  .lg\:px-17 {
    padding-right: 13.6rem !important;
  }

  .lg\:pb-17,
  .lg\:py-17 {
    padding-bottom: 13.6rem !important;
  }

  .lg\:pl-17,
  .lg\:px-17 {
    padding-left: 13.6rem !important;
  }

  .lg\:p-18 {
    padding: 14.4rem !important;
  }

  .lg\:pt-18,
  .lg\:py-18 {
    padding-top: 14.4rem !important;
  }

  .lg\:pr-18,
  .lg\:px-18 {
    padding-right: 14.4rem !important;
  }

  .lg\:pb-18,
  .lg\:py-18 {
    padding-bottom: 14.4rem !important;
  }

  .lg\:pl-18,
  .lg\:px-18 {
    padding-left: 14.4rem !important;
  }

  .lg\:p-19 {
    padding: 15.2rem !important;
  }

  .lg\:pt-19,
  .lg\:py-19 {
    padding-top: 15.2rem !important;
  }

  .lg\:pr-19,
  .lg\:px-19 {
    padding-right: 15.2rem !important;
  }

  .lg\:pb-19,
  .lg\:py-19 {
    padding-bottom: 15.2rem !important;
  }

  .lg\:pl-19,
  .lg\:px-19 {
    padding-left: 15.2rem !important;
  }

  .lg\:p-20 {
    padding: 16rem !important;
  }

  .lg\:pt-20,
  .lg\:py-20 {
    padding-top: 16rem !important;
  }

  .lg\:pr-20,
  .lg\:px-20 {
    padding-right: 16rem !important;
  }

  .lg\:pb-20,
  .lg\:py-20 {
    padding-bottom: 16rem !important;
  }

  .lg\:pl-20,
  .lg\:px-20 {
    padding-left: 16rem !important;
  }

  .lg\:p-a1 {
    padding: 0.4rem !important;
  }

  .lg\:pt-a1,
  .lg\:py-a1 {
    padding-top: 0.4rem !important;
  }

  .lg\:pr-a1,
  .lg\:px-a1 {
    padding-right: 0.4rem !important;
  }

  .lg\:pb-a1,
  .lg\:py-a1 {
    padding-bottom: 0.4rem !important;
  }

  .lg\:pl-a1,
  .lg\:px-a1 {
    padding-left: 0.4rem !important;
  }

  .lg\:m-n1 {
    margin: -0.8rem !important;
  }

  .lg\:mt-n1,
  .lg\:my-n1 {
    margin-top: -0.8rem !important;
  }

  .lg\:mr-n1,
  .lg\:mx-n1 {
    margin-right: -0.8rem !important;
  }

  .lg\:mb-n1,
  .lg\:my-n1 {
    margin-bottom: -0.8rem !important;
  }

  .lg\:ml-n1,
  .lg\:mx-n1 {
    margin-left: -0.8rem !important;
  }

  .lg\:m-n2 {
    margin: -1.6rem !important;
  }

  .lg\:mt-n2,
  .lg\:my-n2 {
    margin-top: -1.6rem !important;
  }

  .lg\:mr-n2,
  .lg\:mx-n2 {
    margin-right: -1.6rem !important;
  }

  .lg\:mb-n2,
  .lg\:my-n2 {
    margin-bottom: -1.6rem !important;
  }

  .lg\:ml-n2,
  .lg\:mx-n2 {
    margin-left: -1.6rem !important;
  }

  .lg\:m-n3 {
    margin: -2.4rem !important;
  }

  .lg\:mt-n3,
  .lg\:my-n3 {
    margin-top: -2.4rem !important;
  }

  .lg\:mr-n3,
  .lg\:mx-n3 {
    margin-right: -2.4rem !important;
  }

  .lg\:mb-n3,
  .lg\:my-n3 {
    margin-bottom: -2.4rem !important;
  }

  .lg\:ml-n3,
  .lg\:mx-n3 {
    margin-left: -2.4rem !important;
  }

  .lg\:m-n4 {
    margin: -3.2rem !important;
  }

  .lg\:mt-n4,
  .lg\:my-n4 {
    margin-top: -3.2rem !important;
  }

  .lg\:mr-n4,
  .lg\:mx-n4 {
    margin-right: -3.2rem !important;
  }

  .lg\:mb-n4,
  .lg\:my-n4 {
    margin-bottom: -3.2rem !important;
  }

  .lg\:ml-n4,
  .lg\:mx-n4 {
    margin-left: -3.2rem !important;
  }

  .lg\:m-n5 {
    margin: -4rem !important;
  }

  .lg\:mt-n5,
  .lg\:my-n5 {
    margin-top: -4rem !important;
  }

  .lg\:mr-n5,
  .lg\:mx-n5 {
    margin-right: -4rem !important;
  }

  .lg\:mb-n5,
  .lg\:my-n5 {
    margin-bottom: -4rem !important;
  }

  .lg\:ml-n5,
  .lg\:mx-n5 {
    margin-left: -4rem !important;
  }

  .lg\:m-n6 {
    margin: -4.8rem !important;
  }

  .lg\:mt-n6,
  .lg\:my-n6 {
    margin-top: -4.8rem !important;
  }

  .lg\:mr-n6,
  .lg\:mx-n6 {
    margin-right: -4.8rem !important;
  }

  .lg\:mb-n6,
  .lg\:my-n6 {
    margin-bottom: -4.8rem !important;
  }

  .lg\:ml-n6,
  .lg\:mx-n6 {
    margin-left: -4.8rem !important;
  }

  .lg\:m-n7 {
    margin: -5.6rem !important;
  }

  .lg\:mt-n7,
  .lg\:my-n7 {
    margin-top: -5.6rem !important;
  }

  .lg\:mr-n7,
  .lg\:mx-n7 {
    margin-right: -5.6rem !important;
  }

  .lg\:mb-n7,
  .lg\:my-n7 {
    margin-bottom: -5.6rem !important;
  }

  .lg\:ml-n7,
  .lg\:mx-n7 {
    margin-left: -5.6rem !important;
  }

  .lg\:m-n8 {
    margin: -6.4rem !important;
  }

  .lg\:mt-n8,
  .lg\:my-n8 {
    margin-top: -6.4rem !important;
  }

  .lg\:mr-n8,
  .lg\:mx-n8 {
    margin-right: -6.4rem !important;
  }

  .lg\:mb-n8,
  .lg\:my-n8 {
    margin-bottom: -6.4rem !important;
  }

  .lg\:ml-n8,
  .lg\:mx-n8 {
    margin-left: -6.4rem !important;
  }

  .lg\:m-n9 {
    margin: -7.2rem !important;
  }

  .lg\:mt-n9,
  .lg\:my-n9 {
    margin-top: -7.2rem !important;
  }

  .lg\:mr-n9,
  .lg\:mx-n9 {
    margin-right: -7.2rem !important;
  }

  .lg\:mb-n9,
  .lg\:my-n9 {
    margin-bottom: -7.2rem !important;
  }

  .lg\:ml-n9,
  .lg\:mx-n9 {
    margin-left: -7.2rem !important;
  }

  .lg\:m-n10 {
    margin: -8rem !important;
  }

  .lg\:mt-n10,
  .lg\:my-n10 {
    margin-top: -8rem !important;
  }

  .lg\:mr-n10,
  .lg\:mx-n10 {
    margin-right: -8rem !important;
  }

  .lg\:mb-n10,
  .lg\:my-n10 {
    margin-bottom: -8rem !important;
  }

  .lg\:ml-n10,
  .lg\:mx-n10 {
    margin-left: -8rem !important;
  }

  .lg\:m-n11 {
    margin: -8.8rem !important;
  }

  .lg\:mt-n11,
  .lg\:my-n11 {
    margin-top: -8.8rem !important;
  }

  .lg\:mr-n11,
  .lg\:mx-n11 {
    margin-right: -8.8rem !important;
  }

  .lg\:mb-n11,
  .lg\:my-n11 {
    margin-bottom: -8.8rem !important;
  }

  .lg\:ml-n11,
  .lg\:mx-n11 {
    margin-left: -8.8rem !important;
  }

  .lg\:m-n12 {
    margin: -9.6rem !important;
  }

  .lg\:mt-n12,
  .lg\:my-n12 {
    margin-top: -9.6rem !important;
  }

  .lg\:mr-n12,
  .lg\:mx-n12 {
    margin-right: -9.6rem !important;
  }

  .lg\:mb-n12,
  .lg\:my-n12 {
    margin-bottom: -9.6rem !important;
  }

  .lg\:ml-n12,
  .lg\:mx-n12 {
    margin-left: -9.6rem !important;
  }

  .lg\:m-n13 {
    margin: -10.4rem !important;
  }

  .lg\:mt-n13,
  .lg\:my-n13 {
    margin-top: -10.4rem !important;
  }

  .lg\:mr-n13,
  .lg\:mx-n13 {
    margin-right: -10.4rem !important;
  }

  .lg\:mb-n13,
  .lg\:my-n13 {
    margin-bottom: -10.4rem !important;
  }

  .lg\:ml-n13,
  .lg\:mx-n13 {
    margin-left: -10.4rem !important;
  }

  .lg\:m-n14 {
    margin: -11.2rem !important;
  }

  .lg\:mt-n14,
  .lg\:my-n14 {
    margin-top: -11.2rem !important;
  }

  .lg\:mr-n14,
  .lg\:mx-n14 {
    margin-right: -11.2rem !important;
  }

  .lg\:mb-n14,
  .lg\:my-n14 {
    margin-bottom: -11.2rem !important;
  }

  .lg\:ml-n14,
  .lg\:mx-n14 {
    margin-left: -11.2rem !important;
  }

  .lg\:m-n15 {
    margin: -12rem !important;
  }

  .lg\:mt-n15,
  .lg\:my-n15 {
    margin-top: -12rem !important;
  }

  .lg\:mr-n15,
  .lg\:mx-n15 {
    margin-right: -12rem !important;
  }

  .lg\:mb-n15,
  .lg\:my-n15 {
    margin-bottom: -12rem !important;
  }

  .lg\:ml-n15,
  .lg\:mx-n15 {
    margin-left: -12rem !important;
  }

  .lg\:m-n16 {
    margin: -12.8rem !important;
  }

  .lg\:mt-n16,
  .lg\:my-n16 {
    margin-top: -12.8rem !important;
  }

  .lg\:mr-n16,
  .lg\:mx-n16 {
    margin-right: -12.8rem !important;
  }

  .lg\:mb-n16,
  .lg\:my-n16 {
    margin-bottom: -12.8rem !important;
  }

  .lg\:ml-n16,
  .lg\:mx-n16 {
    margin-left: -12.8rem !important;
  }

  .lg\:m-n17 {
    margin: -13.6rem !important;
  }

  .lg\:mt-n17,
  .lg\:my-n17 {
    margin-top: -13.6rem !important;
  }

  .lg\:mr-n17,
  .lg\:mx-n17 {
    margin-right: -13.6rem !important;
  }

  .lg\:mb-n17,
  .lg\:my-n17 {
    margin-bottom: -13.6rem !important;
  }

  .lg\:ml-n17,
  .lg\:mx-n17 {
    margin-left: -13.6rem !important;
  }

  .lg\:m-n18 {
    margin: -14.4rem !important;
  }

  .lg\:mt-n18,
  .lg\:my-n18 {
    margin-top: -14.4rem !important;
  }

  .lg\:mr-n18,
  .lg\:mx-n18 {
    margin-right: -14.4rem !important;
  }

  .lg\:mb-n18,
  .lg\:my-n18 {
    margin-bottom: -14.4rem !important;
  }

  .lg\:ml-n18,
  .lg\:mx-n18 {
    margin-left: -14.4rem !important;
  }

  .lg\:m-n19 {
    margin: -15.2rem !important;
  }

  .lg\:mt-n19,
  .lg\:my-n19 {
    margin-top: -15.2rem !important;
  }

  .lg\:mr-n19,
  .lg\:mx-n19 {
    margin-right: -15.2rem !important;
  }

  .lg\:mb-n19,
  .lg\:my-n19 {
    margin-bottom: -15.2rem !important;
  }

  .lg\:ml-n19,
  .lg\:mx-n19 {
    margin-left: -15.2rem !important;
  }

  .lg\:m-n20 {
    margin: -16rem !important;
  }

  .lg\:mt-n20,
  .lg\:my-n20 {
    margin-top: -16rem !important;
  }

  .lg\:mr-n20,
  .lg\:mx-n20 {
    margin-right: -16rem !important;
  }

  .lg\:mb-n20,
  .lg\:my-n20 {
    margin-bottom: -16rem !important;
  }

  .lg\:ml-n20,
  .lg\:mx-n20 {
    margin-left: -16rem !important;
  }

  .lg\:m-na1 {
    margin: -0.4rem !important;
  }

  .lg\:mt-na1,
  .lg\:my-na1 {
    margin-top: -0.4rem !important;
  }

  .lg\:mr-na1,
  .lg\:mx-na1 {
    margin-right: -0.4rem !important;
  }

  .lg\:mb-na1,
  .lg\:my-na1 {
    margin-bottom: -0.4rem !important;
  }

  .lg\:ml-na1,
  .lg\:mx-na1 {
    margin-left: -0.4rem !important;
  }

  .lg\:m-auto {
    margin: auto !important;
  }

  .lg\:mt-auto,
  .lg\:my-auto {
    margin-top: auto !important;
  }

  .lg\:mr-auto,
  .lg\:mx-auto {
    margin-right: auto !important;
  }

  .lg\:mb-auto,
  .lg\:my-auto {
    margin-bottom: auto !important;
  }

  .lg\:ml-auto,
  .lg\:mx-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .xl\:u-d-none {
    display: none !important;
  }

  .xl\:u-d-inline {
    display: inline !important;
  }

  .xl\:u-d-inline-block {
    display: inline-block !important;
  }

  .xl\:u-d-block {
    display: block !important;
  }

  .xl\:u-d-table {
    display: table !important;
  }

  .xl\:u-d-table-row {
    display: table-row !important;
  }

  .xl\:u-d-table-cell {
    display: table-cell !important;
  }

  .xl\:u-d-flex {
    display: flex !important;
  }

  .xl\:u-d-inline-flex {
    display: inline-flex !important;
  }

  .xl\:u-flex-fill {
    flex: 1 1 auto !important;
  }

  .xl\:u-flex-row {
    flex-direction: row !important;
  }

  .xl\:u-flex-column {
    flex-direction: column !important;
  }

  .xl\:u-flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .xl\:u-flex-column-reverse {
    flex-direction: column-reverse !important;
  }

  .xl\:u-flex-grow-0 {
    flex-grow: 0 !important;
  }

  .xl\:u-flex-grow-1 {
    flex-grow: 1 !important;
  }

  .xl\:u-flex-shrink-0 {
    flex-shrink: 0 !important;
  }

  .xl\:u-flex-shrink-1 {
    flex-shrink: 1 !important;
  }

  .xl\:u-flex-wrap {
    flex-wrap: wrap !important;
  }

  .xl\:u-flex-nowrap {
    flex-wrap: nowrap !important;
  }

  .xl\:u-flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .xl\:u-jc-start {
    justify-content: flex-start !important;
  }

  .xl\:u-jc-end {
    justify-content: flex-end !important;
  }

  .xl\:u-jc-center {
    justify-content: center !important;
  }

  .xl\:u-jc-between {
    justify-content: space-between !important;
  }

  .xl\:u-jc-around {
    justify-content: space-around !important;
  }

  .xl\:u-jc-evenly {
    justify-content: space-evenly !important;
  }

  .xl\:u-ai-start {
    align-items: flex-start !important;
  }

  .xl\:u-ai-end {
    align-items: flex-end !important;
  }

  .xl\:u-ai-center {
    align-items: center !important;
  }

  .xl\:u-ai-baseline {
    align-items: baseline !important;
  }

  .xl\:u-ai-stretch {
    align-items: stretch !important;
  }

  .xl\:u-ac-start {
    align-content: flex-start !important;
  }

  .xl\:u-ac-end {
    align-content: flex-end !important;
  }

  .xl\:u-ac-center {
    align-content: center !important;
  }

  .xl\:u-ac-between {
    align-content: space-between !important;
  }

  .xl\:u-ac-around {
    align-content: space-around !important;
  }

  .xl\:u-ac-stretch {
    align-content: stretch !important;
  }

  .xl\:u-as-auto {
    align-self: auto !important;
  }

  .xl\:u-as-start {
    align-self: flex-start !important;
  }

  .xl\:u-as-end {
    align-self: flex-end !important;
  }

  .xl\:u-as-center {
    align-self: center !important;
  }

  .xl\:u-as-baseline {
    align-self: baseline !important;
  }

  .xl\:u-as-stretch {
    align-self: stretch !important;
  }

  .xl\:order-first {
    order: -1 !important;
  }

  .xl\:order-0 {
    order: 0 !important;
  }

  .xl\:order-1 {
    order: 1 !important;
  }

  .xl\:order-2 {
    order: 2 !important;
  }

  .xl\:order-3 {
    order: 3 !important;
  }

  .xl\:order-4 {
    order: 4 !important;
  }

  .xl\:order-5 {
    order: 5 !important;
  }

  .xl\:order-last {
    order: 6 !important;
  }

  .xl\:u-ta-left {
    text-align: left !important;
  }

  .xl\:u-ta-right {
    text-align: right !important;
  }

  .xl\:u-ta-center {
    text-align: center !important;
  }

  .xl\:m-0 {
    margin: 0 !important;
  }

  .xl\:mt-0,
  .xl\:my-0 {
    margin-top: 0 !important;
  }

  .xl\:mr-0,
  .xl\:mx-0 {
    margin-right: 0 !important;
  }

  .xl\:mb-0,
  .xl\:my-0 {
    margin-bottom: 0 !important;
  }

  .xl\:ml-0,
  .xl\:mx-0 {
    margin-left: 0 !important;
  }

  .xl\:m-1 {
    margin: 0.8rem !important;
  }

  .xl\:mt-1,
  .xl\:my-1 {
    margin-top: 0.8rem !important;
  }

  .xl\:mr-1,
  .xl\:mx-1 {
    margin-right: 0.8rem !important;
  }

  .xl\:mb-1,
  .xl\:my-1 {
    margin-bottom: 0.8rem !important;
  }

  .xl\:ml-1,
  .xl\:mx-1 {
    margin-left: 0.8rem !important;
  }

  .xl\:m-2 {
    margin: 1.6rem !important;
  }

  .xl\:mt-2,
  .xl\:my-2 {
    margin-top: 1.6rem !important;
  }

  .xl\:mr-2,
  .xl\:mx-2 {
    margin-right: 1.6rem !important;
  }

  .xl\:mb-2,
  .xl\:my-2 {
    margin-bottom: 1.6rem !important;
  }

  .xl\:ml-2,
  .xl\:mx-2 {
    margin-left: 1.6rem !important;
  }

  .xl\:m-3 {
    margin: 2.4rem !important;
  }

  .xl\:mt-3,
  .xl\:my-3 {
    margin-top: 2.4rem !important;
  }

  .xl\:mr-3,
  .xl\:mx-3 {
    margin-right: 2.4rem !important;
  }

  .xl\:mb-3,
  .xl\:my-3 {
    margin-bottom: 2.4rem !important;
  }

  .xl\:ml-3,
  .xl\:mx-3 {
    margin-left: 2.4rem !important;
  }

  .xl\:m-4 {
    margin: 3.2rem !important;
  }

  .xl\:mt-4,
  .xl\:my-4 {
    margin-top: 3.2rem !important;
  }

  .xl\:mr-4,
  .xl\:mx-4 {
    margin-right: 3.2rem !important;
  }

  .xl\:mb-4,
  .xl\:my-4 {
    margin-bottom: 3.2rem !important;
  }

  .xl\:ml-4,
  .xl\:mx-4 {
    margin-left: 3.2rem !important;
  }

  .xl\:m-5 {
    margin: 4rem !important;
  }

  .xl\:mt-5,
  .xl\:my-5 {
    margin-top: 4rem !important;
  }

  .xl\:mr-5,
  .xl\:mx-5 {
    margin-right: 4rem !important;
  }

  .xl\:mb-5,
  .xl\:my-5 {
    margin-bottom: 4rem !important;
  }

  .xl\:ml-5,
  .xl\:mx-5 {
    margin-left: 4rem !important;
  }

  .xl\:m-6 {
    margin: 4.8rem !important;
  }

  .xl\:mt-6,
  .xl\:my-6 {
    margin-top: 4.8rem !important;
  }

  .xl\:mr-6,
  .xl\:mx-6 {
    margin-right: 4.8rem !important;
  }

  .xl\:mb-6,
  .xl\:my-6 {
    margin-bottom: 4.8rem !important;
  }

  .xl\:ml-6,
  .xl\:mx-6 {
    margin-left: 4.8rem !important;
  }

  .xl\:m-7 {
    margin: 5.6rem !important;
  }

  .xl\:mt-7,
  .xl\:my-7 {
    margin-top: 5.6rem !important;
  }

  .xl\:mr-7,
  .xl\:mx-7 {
    margin-right: 5.6rem !important;
  }

  .xl\:mb-7,
  .xl\:my-7 {
    margin-bottom: 5.6rem !important;
  }

  .xl\:ml-7,
  .xl\:mx-7 {
    margin-left: 5.6rem !important;
  }

  .xl\:m-8 {
    margin: 6.4rem !important;
  }

  .xl\:mt-8,
  .xl\:my-8 {
    margin-top: 6.4rem !important;
  }

  .xl\:mr-8,
  .xl\:mx-8 {
    margin-right: 6.4rem !important;
  }

  .xl\:mb-8,
  .xl\:my-8 {
    margin-bottom: 6.4rem !important;
  }

  .xl\:ml-8,
  .xl\:mx-8 {
    margin-left: 6.4rem !important;
  }

  .xl\:m-9 {
    margin: 7.2rem !important;
  }

  .xl\:mt-9,
  .xl\:my-9 {
    margin-top: 7.2rem !important;
  }

  .xl\:mr-9,
  .xl\:mx-9 {
    margin-right: 7.2rem !important;
  }

  .xl\:mb-9,
  .xl\:my-9 {
    margin-bottom: 7.2rem !important;
  }

  .xl\:ml-9,
  .xl\:mx-9 {
    margin-left: 7.2rem !important;
  }

  .xl\:m-10 {
    margin: 8rem !important;
  }

  .xl\:mt-10,
  .xl\:my-10 {
    margin-top: 8rem !important;
  }

  .xl\:mr-10,
  .xl\:mx-10 {
    margin-right: 8rem !important;
  }

  .xl\:mb-10,
  .xl\:my-10 {
    margin-bottom: 8rem !important;
  }

  .xl\:ml-10,
  .xl\:mx-10 {
    margin-left: 8rem !important;
  }

  .xl\:m-11 {
    margin: 8.8rem !important;
  }

  .xl\:mt-11,
  .xl\:my-11 {
    margin-top: 8.8rem !important;
  }

  .xl\:mr-11,
  .xl\:mx-11 {
    margin-right: 8.8rem !important;
  }

  .xl\:mb-11,
  .xl\:my-11 {
    margin-bottom: 8.8rem !important;
  }

  .xl\:ml-11,
  .xl\:mx-11 {
    margin-left: 8.8rem !important;
  }

  .xl\:m-12 {
    margin: 9.6rem !important;
  }

  .xl\:mt-12,
  .xl\:my-12 {
    margin-top: 9.6rem !important;
  }

  .xl\:mr-12,
  .xl\:mx-12 {
    margin-right: 9.6rem !important;
  }

  .xl\:mb-12,
  .xl\:my-12 {
    margin-bottom: 9.6rem !important;
  }

  .xl\:ml-12,
  .xl\:mx-12 {
    margin-left: 9.6rem !important;
  }

  .xl\:m-13 {
    margin: 10.4rem !important;
  }

  .xl\:mt-13,
  .xl\:my-13 {
    margin-top: 10.4rem !important;
  }

  .xl\:mr-13,
  .xl\:mx-13 {
    margin-right: 10.4rem !important;
  }

  .xl\:mb-13,
  .xl\:my-13 {
    margin-bottom: 10.4rem !important;
  }

  .xl\:ml-13,
  .xl\:mx-13 {
    margin-left: 10.4rem !important;
  }

  .xl\:m-14 {
    margin: 11.2rem !important;
  }

  .xl\:mt-14,
  .xl\:my-14 {
    margin-top: 11.2rem !important;
  }

  .xl\:mr-14,
  .xl\:mx-14 {
    margin-right: 11.2rem !important;
  }

  .xl\:mb-14,
  .xl\:my-14 {
    margin-bottom: 11.2rem !important;
  }

  .xl\:ml-14,
  .xl\:mx-14 {
    margin-left: 11.2rem !important;
  }

  .xl\:m-15 {
    margin: 12rem !important;
  }

  .xl\:mt-15,
  .xl\:my-15 {
    margin-top: 12rem !important;
  }

  .xl\:mr-15,
  .xl\:mx-15 {
    margin-right: 12rem !important;
  }

  .xl\:mb-15,
  .xl\:my-15 {
    margin-bottom: 12rem !important;
  }

  .xl\:ml-15,
  .xl\:mx-15 {
    margin-left: 12rem !important;
  }

  .xl\:m-16 {
    margin: 12.8rem !important;
  }

  .xl\:mt-16,
  .xl\:my-16 {
    margin-top: 12.8rem !important;
  }

  .xl\:mr-16,
  .xl\:mx-16 {
    margin-right: 12.8rem !important;
  }

  .xl\:mb-16,
  .xl\:my-16 {
    margin-bottom: 12.8rem !important;
  }

  .xl\:ml-16,
  .xl\:mx-16 {
    margin-left: 12.8rem !important;
  }

  .xl\:m-17 {
    margin: 13.6rem !important;
  }

  .xl\:mt-17,
  .xl\:my-17 {
    margin-top: 13.6rem !important;
  }

  .xl\:mr-17,
  .xl\:mx-17 {
    margin-right: 13.6rem !important;
  }

  .xl\:mb-17,
  .xl\:my-17 {
    margin-bottom: 13.6rem !important;
  }

  .xl\:ml-17,
  .xl\:mx-17 {
    margin-left: 13.6rem !important;
  }

  .xl\:m-18 {
    margin: 14.4rem !important;
  }

  .xl\:mt-18,
  .xl\:my-18 {
    margin-top: 14.4rem !important;
  }

  .xl\:mr-18,
  .xl\:mx-18 {
    margin-right: 14.4rem !important;
  }

  .xl\:mb-18,
  .xl\:my-18 {
    margin-bottom: 14.4rem !important;
  }

  .xl\:ml-18,
  .xl\:mx-18 {
    margin-left: 14.4rem !important;
  }

  .xl\:m-19 {
    margin: 15.2rem !important;
  }

  .xl\:mt-19,
  .xl\:my-19 {
    margin-top: 15.2rem !important;
  }

  .xl\:mr-19,
  .xl\:mx-19 {
    margin-right: 15.2rem !important;
  }

  .xl\:mb-19,
  .xl\:my-19 {
    margin-bottom: 15.2rem !important;
  }

  .xl\:ml-19,
  .xl\:mx-19 {
    margin-left: 15.2rem !important;
  }

  .xl\:m-20 {
    margin: 16rem !important;
  }

  .xl\:mt-20,
  .xl\:my-20 {
    margin-top: 16rem !important;
  }

  .xl\:mr-20,
  .xl\:mx-20 {
    margin-right: 16rem !important;
  }

  .xl\:mb-20,
  .xl\:my-20 {
    margin-bottom: 16rem !important;
  }

  .xl\:ml-20,
  .xl\:mx-20 {
    margin-left: 16rem !important;
  }

  .xl\:m-a1 {
    margin: 0.4rem !important;
  }

  .xl\:mt-a1,
  .xl\:my-a1 {
    margin-top: 0.4rem !important;
  }

  .xl\:mr-a1,
  .xl\:mx-a1 {
    margin-right: 0.4rem !important;
  }

  .xl\:mb-a1,
  .xl\:my-a1 {
    margin-bottom: 0.4rem !important;
  }

  .xl\:ml-a1,
  .xl\:mx-a1 {
    margin-left: 0.4rem !important;
  }

  .xl\:p-0 {
    padding: 0 !important;
  }

  .xl\:pt-0,
  .xl\:py-0 {
    padding-top: 0 !important;
  }

  .xl\:pr-0,
  .xl\:px-0 {
    padding-right: 0 !important;
  }

  .xl\:pb-0,
  .xl\:py-0 {
    padding-bottom: 0 !important;
  }

  .xl\:pl-0,
  .xl\:px-0 {
    padding-left: 0 !important;
  }

  .xl\:p-1 {
    padding: 0.8rem !important;
  }

  .xl\:pt-1,
  .xl\:py-1 {
    padding-top: 0.8rem !important;
  }

  .xl\:pr-1,
  .xl\:px-1 {
    padding-right: 0.8rem !important;
  }

  .xl\:pb-1,
  .xl\:py-1 {
    padding-bottom: 0.8rem !important;
  }

  .xl\:pl-1,
  .xl\:px-1 {
    padding-left: 0.8rem !important;
  }

  .xl\:p-2 {
    padding: 1.6rem !important;
  }

  .xl\:pt-2,
  .xl\:py-2 {
    padding-top: 1.6rem !important;
  }

  .xl\:pr-2,
  .xl\:px-2 {
    padding-right: 1.6rem !important;
  }

  .xl\:pb-2,
  .xl\:py-2 {
    padding-bottom: 1.6rem !important;
  }

  .xl\:pl-2,
  .xl\:px-2 {
    padding-left: 1.6rem !important;
  }

  .xl\:p-3 {
    padding: 2.4rem !important;
  }

  .xl\:pt-3,
  .xl\:py-3 {
    padding-top: 2.4rem !important;
  }

  .xl\:pr-3,
  .xl\:px-3 {
    padding-right: 2.4rem !important;
  }

  .xl\:pb-3,
  .xl\:py-3 {
    padding-bottom: 2.4rem !important;
  }

  .xl\:pl-3,
  .xl\:px-3 {
    padding-left: 2.4rem !important;
  }

  .xl\:p-4 {
    padding: 3.2rem !important;
  }

  .xl\:pt-4,
  .xl\:py-4 {
    padding-top: 3.2rem !important;
  }

  .xl\:pr-4,
  .xl\:px-4 {
    padding-right: 3.2rem !important;
  }

  .xl\:pb-4,
  .xl\:py-4 {
    padding-bottom: 3.2rem !important;
  }

  .xl\:pl-4,
  .xl\:px-4 {
    padding-left: 3.2rem !important;
  }

  .xl\:p-5 {
    padding: 4rem !important;
  }

  .xl\:pt-5,
  .xl\:py-5 {
    padding-top: 4rem !important;
  }

  .xl\:pr-5,
  .xl\:px-5 {
    padding-right: 4rem !important;
  }

  .xl\:pb-5,
  .xl\:py-5 {
    padding-bottom: 4rem !important;
  }

  .xl\:pl-5,
  .xl\:px-5 {
    padding-left: 4rem !important;
  }

  .xl\:p-6 {
    padding: 4.8rem !important;
  }

  .xl\:pt-6,
  .xl\:py-6 {
    padding-top: 4.8rem !important;
  }

  .xl\:pr-6,
  .xl\:px-6 {
    padding-right: 4.8rem !important;
  }

  .xl\:pb-6,
  .xl\:py-6 {
    padding-bottom: 4.8rem !important;
  }

  .xl\:pl-6,
  .xl\:px-6 {
    padding-left: 4.8rem !important;
  }

  .xl\:p-7 {
    padding: 5.6rem !important;
  }

  .xl\:pt-7,
  .xl\:py-7 {
    padding-top: 5.6rem !important;
  }

  .xl\:pr-7,
  .xl\:px-7 {
    padding-right: 5.6rem !important;
  }

  .xl\:pb-7,
  .xl\:py-7 {
    padding-bottom: 5.6rem !important;
  }

  .xl\:pl-7,
  .xl\:px-7 {
    padding-left: 5.6rem !important;
  }

  .xl\:p-8 {
    padding: 6.4rem !important;
  }

  .xl\:pt-8,
  .xl\:py-8 {
    padding-top: 6.4rem !important;
  }

  .xl\:pr-8,
  .xl\:px-8 {
    padding-right: 6.4rem !important;
  }

  .xl\:pb-8,
  .xl\:py-8 {
    padding-bottom: 6.4rem !important;
  }

  .xl\:pl-8,
  .xl\:px-8 {
    padding-left: 6.4rem !important;
  }

  .xl\:p-9 {
    padding: 7.2rem !important;
  }

  .xl\:pt-9,
  .xl\:py-9 {
    padding-top: 7.2rem !important;
  }

  .xl\:pr-9,
  .xl\:px-9 {
    padding-right: 7.2rem !important;
  }

  .xl\:pb-9,
  .xl\:py-9 {
    padding-bottom: 7.2rem !important;
  }

  .xl\:pl-9,
  .xl\:px-9 {
    padding-left: 7.2rem !important;
  }

  .xl\:p-10 {
    padding: 8rem !important;
  }

  .xl\:pt-10,
  .xl\:py-10 {
    padding-top: 8rem !important;
  }

  .xl\:pr-10,
  .xl\:px-10 {
    padding-right: 8rem !important;
  }

  .xl\:pb-10,
  .xl\:py-10 {
    padding-bottom: 8rem !important;
  }

  .xl\:pl-10,
  .xl\:px-10 {
    padding-left: 8rem !important;
  }

  .xl\:p-11 {
    padding: 8.8rem !important;
  }

  .xl\:pt-11,
  .xl\:py-11 {
    padding-top: 8.8rem !important;
  }

  .xl\:pr-11,
  .xl\:px-11 {
    padding-right: 8.8rem !important;
  }

  .xl\:pb-11,
  .xl\:py-11 {
    padding-bottom: 8.8rem !important;
  }

  .xl\:pl-11,
  .xl\:px-11 {
    padding-left: 8.8rem !important;
  }

  .xl\:p-12 {
    padding: 9.6rem !important;
  }

  .xl\:pt-12,
  .xl\:py-12 {
    padding-top: 9.6rem !important;
  }

  .xl\:pr-12,
  .xl\:px-12 {
    padding-right: 9.6rem !important;
  }

  .xl\:pb-12,
  .xl\:py-12 {
    padding-bottom: 9.6rem !important;
  }

  .xl\:pl-12,
  .xl\:px-12 {
    padding-left: 9.6rem !important;
  }

  .xl\:p-13 {
    padding: 10.4rem !important;
  }

  .xl\:pt-13,
  .xl\:py-13 {
    padding-top: 10.4rem !important;
  }

  .xl\:pr-13,
  .xl\:px-13 {
    padding-right: 10.4rem !important;
  }

  .xl\:pb-13,
  .xl\:py-13 {
    padding-bottom: 10.4rem !important;
  }

  .xl\:pl-13,
  .xl\:px-13 {
    padding-left: 10.4rem !important;
  }

  .xl\:p-14 {
    padding: 11.2rem !important;
  }

  .xl\:pt-14,
  .xl\:py-14 {
    padding-top: 11.2rem !important;
  }

  .xl\:pr-14,
  .xl\:px-14 {
    padding-right: 11.2rem !important;
  }

  .xl\:pb-14,
  .xl\:py-14 {
    padding-bottom: 11.2rem !important;
  }

  .xl\:pl-14,
  .xl\:px-14 {
    padding-left: 11.2rem !important;
  }

  .xl\:p-15 {
    padding: 12rem !important;
  }

  .xl\:pt-15,
  .xl\:py-15 {
    padding-top: 12rem !important;
  }

  .xl\:pr-15,
  .xl\:px-15 {
    padding-right: 12rem !important;
  }

  .xl\:pb-15,
  .xl\:py-15 {
    padding-bottom: 12rem !important;
  }

  .xl\:pl-15,
  .xl\:px-15 {
    padding-left: 12rem !important;
  }

  .xl\:p-16 {
    padding: 12.8rem !important;
  }

  .xl\:pt-16,
  .xl\:py-16 {
    padding-top: 12.8rem !important;
  }

  .xl\:pr-16,
  .xl\:px-16 {
    padding-right: 12.8rem !important;
  }

  .xl\:pb-16,
  .xl\:py-16 {
    padding-bottom: 12.8rem !important;
  }

  .xl\:pl-16,
  .xl\:px-16 {
    padding-left: 12.8rem !important;
  }

  .xl\:p-17 {
    padding: 13.6rem !important;
  }

  .xl\:pt-17,
  .xl\:py-17 {
    padding-top: 13.6rem !important;
  }

  .xl\:pr-17,
  .xl\:px-17 {
    padding-right: 13.6rem !important;
  }

  .xl\:pb-17,
  .xl\:py-17 {
    padding-bottom: 13.6rem !important;
  }

  .xl\:pl-17,
  .xl\:px-17 {
    padding-left: 13.6rem !important;
  }

  .xl\:p-18 {
    padding: 14.4rem !important;
  }

  .xl\:pt-18,
  .xl\:py-18 {
    padding-top: 14.4rem !important;
  }

  .xl\:pr-18,
  .xl\:px-18 {
    padding-right: 14.4rem !important;
  }

  .xl\:pb-18,
  .xl\:py-18 {
    padding-bottom: 14.4rem !important;
  }

  .xl\:pl-18,
  .xl\:px-18 {
    padding-left: 14.4rem !important;
  }

  .xl\:p-19 {
    padding: 15.2rem !important;
  }

  .xl\:pt-19,
  .xl\:py-19 {
    padding-top: 15.2rem !important;
  }

  .xl\:pr-19,
  .xl\:px-19 {
    padding-right: 15.2rem !important;
  }

  .xl\:pb-19,
  .xl\:py-19 {
    padding-bottom: 15.2rem !important;
  }

  .xl\:pl-19,
  .xl\:px-19 {
    padding-left: 15.2rem !important;
  }

  .xl\:p-20 {
    padding: 16rem !important;
  }

  .xl\:pt-20,
  .xl\:py-20 {
    padding-top: 16rem !important;
  }

  .xl\:pr-20,
  .xl\:px-20 {
    padding-right: 16rem !important;
  }

  .xl\:pb-20,
  .xl\:py-20 {
    padding-bottom: 16rem !important;
  }

  .xl\:pl-20,
  .xl\:px-20 {
    padding-left: 16rem !important;
  }

  .xl\:p-a1 {
    padding: 0.4rem !important;
  }

  .xl\:pt-a1,
  .xl\:py-a1 {
    padding-top: 0.4rem !important;
  }

  .xl\:pr-a1,
  .xl\:px-a1 {
    padding-right: 0.4rem !important;
  }

  .xl\:pb-a1,
  .xl\:py-a1 {
    padding-bottom: 0.4rem !important;
  }

  .xl\:pl-a1,
  .xl\:px-a1 {
    padding-left: 0.4rem !important;
  }

  .xl\:m-n1 {
    margin: -0.8rem !important;
  }

  .xl\:mt-n1,
  .xl\:my-n1 {
    margin-top: -0.8rem !important;
  }

  .xl\:mr-n1,
  .xl\:mx-n1 {
    margin-right: -0.8rem !important;
  }

  .xl\:mb-n1,
  .xl\:my-n1 {
    margin-bottom: -0.8rem !important;
  }

  .xl\:ml-n1,
  .xl\:mx-n1 {
    margin-left: -0.8rem !important;
  }

  .xl\:m-n2 {
    margin: -1.6rem !important;
  }

  .xl\:mt-n2,
  .xl\:my-n2 {
    margin-top: -1.6rem !important;
  }

  .xl\:mr-n2,
  .xl\:mx-n2 {
    margin-right: -1.6rem !important;
  }

  .xl\:mb-n2,
  .xl\:my-n2 {
    margin-bottom: -1.6rem !important;
  }

  .xl\:ml-n2,
  .xl\:mx-n2 {
    margin-left: -1.6rem !important;
  }

  .xl\:m-n3 {
    margin: -2.4rem !important;
  }

  .xl\:mt-n3,
  .xl\:my-n3 {
    margin-top: -2.4rem !important;
  }

  .xl\:mr-n3,
  .xl\:mx-n3 {
    margin-right: -2.4rem !important;
  }

  .xl\:mb-n3,
  .xl\:my-n3 {
    margin-bottom: -2.4rem !important;
  }

  .xl\:ml-n3,
  .xl\:mx-n3 {
    margin-left: -2.4rem !important;
  }

  .xl\:m-n4 {
    margin: -3.2rem !important;
  }

  .xl\:mt-n4,
  .xl\:my-n4 {
    margin-top: -3.2rem !important;
  }

  .xl\:mr-n4,
  .xl\:mx-n4 {
    margin-right: -3.2rem !important;
  }

  .xl\:mb-n4,
  .xl\:my-n4 {
    margin-bottom: -3.2rem !important;
  }

  .xl\:ml-n4,
  .xl\:mx-n4 {
    margin-left: -3.2rem !important;
  }

  .xl\:m-n5 {
    margin: -4rem !important;
  }

  .xl\:mt-n5,
  .xl\:my-n5 {
    margin-top: -4rem !important;
  }

  .xl\:mr-n5,
  .xl\:mx-n5 {
    margin-right: -4rem !important;
  }

  .xl\:mb-n5,
  .xl\:my-n5 {
    margin-bottom: -4rem !important;
  }

  .xl\:ml-n5,
  .xl\:mx-n5 {
    margin-left: -4rem !important;
  }

  .xl\:m-n6 {
    margin: -4.8rem !important;
  }

  .xl\:mt-n6,
  .xl\:my-n6 {
    margin-top: -4.8rem !important;
  }

  .xl\:mr-n6,
  .xl\:mx-n6 {
    margin-right: -4.8rem !important;
  }

  .xl\:mb-n6,
  .xl\:my-n6 {
    margin-bottom: -4.8rem !important;
  }

  .xl\:ml-n6,
  .xl\:mx-n6 {
    margin-left: -4.8rem !important;
  }

  .xl\:m-n7 {
    margin: -5.6rem !important;
  }

  .xl\:mt-n7,
  .xl\:my-n7 {
    margin-top: -5.6rem !important;
  }

  .xl\:mr-n7,
  .xl\:mx-n7 {
    margin-right: -5.6rem !important;
  }

  .xl\:mb-n7,
  .xl\:my-n7 {
    margin-bottom: -5.6rem !important;
  }

  .xl\:ml-n7,
  .xl\:mx-n7 {
    margin-left: -5.6rem !important;
  }

  .xl\:m-n8 {
    margin: -6.4rem !important;
  }

  .xl\:mt-n8,
  .xl\:my-n8 {
    margin-top: -6.4rem !important;
  }

  .xl\:mr-n8,
  .xl\:mx-n8 {
    margin-right: -6.4rem !important;
  }

  .xl\:mb-n8,
  .xl\:my-n8 {
    margin-bottom: -6.4rem !important;
  }

  .xl\:ml-n8,
  .xl\:mx-n8 {
    margin-left: -6.4rem !important;
  }

  .xl\:m-n9 {
    margin: -7.2rem !important;
  }

  .xl\:mt-n9,
  .xl\:my-n9 {
    margin-top: -7.2rem !important;
  }

  .xl\:mr-n9,
  .xl\:mx-n9 {
    margin-right: -7.2rem !important;
  }

  .xl\:mb-n9,
  .xl\:my-n9 {
    margin-bottom: -7.2rem !important;
  }

  .xl\:ml-n9,
  .xl\:mx-n9 {
    margin-left: -7.2rem !important;
  }

  .xl\:m-n10 {
    margin: -8rem !important;
  }

  .xl\:mt-n10,
  .xl\:my-n10 {
    margin-top: -8rem !important;
  }

  .xl\:mr-n10,
  .xl\:mx-n10 {
    margin-right: -8rem !important;
  }

  .xl\:mb-n10,
  .xl\:my-n10 {
    margin-bottom: -8rem !important;
  }

  .xl\:ml-n10,
  .xl\:mx-n10 {
    margin-left: -8rem !important;
  }

  .xl\:m-n11 {
    margin: -8.8rem !important;
  }

  .xl\:mt-n11,
  .xl\:my-n11 {
    margin-top: -8.8rem !important;
  }

  .xl\:mr-n11,
  .xl\:mx-n11 {
    margin-right: -8.8rem !important;
  }

  .xl\:mb-n11,
  .xl\:my-n11 {
    margin-bottom: -8.8rem !important;
  }

  .xl\:ml-n11,
  .xl\:mx-n11 {
    margin-left: -8.8rem !important;
  }

  .xl\:m-n12 {
    margin: -9.6rem !important;
  }

  .xl\:mt-n12,
  .xl\:my-n12 {
    margin-top: -9.6rem !important;
  }

  .xl\:mr-n12,
  .xl\:mx-n12 {
    margin-right: -9.6rem !important;
  }

  .xl\:mb-n12,
  .xl\:my-n12 {
    margin-bottom: -9.6rem !important;
  }

  .xl\:ml-n12,
  .xl\:mx-n12 {
    margin-left: -9.6rem !important;
  }

  .xl\:m-n13 {
    margin: -10.4rem !important;
  }

  .xl\:mt-n13,
  .xl\:my-n13 {
    margin-top: -10.4rem !important;
  }

  .xl\:mr-n13,
  .xl\:mx-n13 {
    margin-right: -10.4rem !important;
  }

  .xl\:mb-n13,
  .xl\:my-n13 {
    margin-bottom: -10.4rem !important;
  }

  .xl\:ml-n13,
  .xl\:mx-n13 {
    margin-left: -10.4rem !important;
  }

  .xl\:m-n14 {
    margin: -11.2rem !important;
  }

  .xl\:mt-n14,
  .xl\:my-n14 {
    margin-top: -11.2rem !important;
  }

  .xl\:mr-n14,
  .xl\:mx-n14 {
    margin-right: -11.2rem !important;
  }

  .xl\:mb-n14,
  .xl\:my-n14 {
    margin-bottom: -11.2rem !important;
  }

  .xl\:ml-n14,
  .xl\:mx-n14 {
    margin-left: -11.2rem !important;
  }

  .xl\:m-n15 {
    margin: -12rem !important;
  }

  .xl\:mt-n15,
  .xl\:my-n15 {
    margin-top: -12rem !important;
  }

  .xl\:mr-n15,
  .xl\:mx-n15 {
    margin-right: -12rem !important;
  }

  .xl\:mb-n15,
  .xl\:my-n15 {
    margin-bottom: -12rem !important;
  }

  .xl\:ml-n15,
  .xl\:mx-n15 {
    margin-left: -12rem !important;
  }

  .xl\:m-n16 {
    margin: -12.8rem !important;
  }

  .xl\:mt-n16,
  .xl\:my-n16 {
    margin-top: -12.8rem !important;
  }

  .xl\:mr-n16,
  .xl\:mx-n16 {
    margin-right: -12.8rem !important;
  }

  .xl\:mb-n16,
  .xl\:my-n16 {
    margin-bottom: -12.8rem !important;
  }

  .xl\:ml-n16,
  .xl\:mx-n16 {
    margin-left: -12.8rem !important;
  }

  .xl\:m-n17 {
    margin: -13.6rem !important;
  }

  .xl\:mt-n17,
  .xl\:my-n17 {
    margin-top: -13.6rem !important;
  }

  .xl\:mr-n17,
  .xl\:mx-n17 {
    margin-right: -13.6rem !important;
  }

  .xl\:mb-n17,
  .xl\:my-n17 {
    margin-bottom: -13.6rem !important;
  }

  .xl\:ml-n17,
  .xl\:mx-n17 {
    margin-left: -13.6rem !important;
  }

  .xl\:m-n18 {
    margin: -14.4rem !important;
  }

  .xl\:mt-n18,
  .xl\:my-n18 {
    margin-top: -14.4rem !important;
  }

  .xl\:mr-n18,
  .xl\:mx-n18 {
    margin-right: -14.4rem !important;
  }

  .xl\:mb-n18,
  .xl\:my-n18 {
    margin-bottom: -14.4rem !important;
  }

  .xl\:ml-n18,
  .xl\:mx-n18 {
    margin-left: -14.4rem !important;
  }

  .xl\:m-n19 {
    margin: -15.2rem !important;
  }

  .xl\:mt-n19,
  .xl\:my-n19 {
    margin-top: -15.2rem !important;
  }

  .xl\:mr-n19,
  .xl\:mx-n19 {
    margin-right: -15.2rem !important;
  }

  .xl\:mb-n19,
  .xl\:my-n19 {
    margin-bottom: -15.2rem !important;
  }

  .xl\:ml-n19,
  .xl\:mx-n19 {
    margin-left: -15.2rem !important;
  }

  .xl\:m-n20 {
    margin: -16rem !important;
  }

  .xl\:mt-n20,
  .xl\:my-n20 {
    margin-top: -16rem !important;
  }

  .xl\:mr-n20,
  .xl\:mx-n20 {
    margin-right: -16rem !important;
  }

  .xl\:mb-n20,
  .xl\:my-n20 {
    margin-bottom: -16rem !important;
  }

  .xl\:ml-n20,
  .xl\:mx-n20 {
    margin-left: -16rem !important;
  }

  .xl\:m-na1 {
    margin: -0.4rem !important;
  }

  .xl\:mt-na1,
  .xl\:my-na1 {
    margin-top: -0.4rem !important;
  }

  .xl\:mr-na1,
  .xl\:mx-na1 {
    margin-right: -0.4rem !important;
  }

  .xl\:mb-na1,
  .xl\:my-na1 {
    margin-bottom: -0.4rem !important;
  }

  .xl\:ml-na1,
  .xl\:mx-na1 {
    margin-left: -0.4rem !important;
  }

  .xl\:m-auto {
    margin: auto !important;
  }

  .xl\:mt-auto,
  .xl\:my-auto {
    margin-top: auto !important;
  }

  .xl\:mr-auto,
  .xl\:mx-auto {
    margin-right: auto !important;
  }

  .xl\:mb-auto,
  .xl\:my-auto {
    margin-bottom: auto !important;
  }

  .xl\:ml-auto,
  .xl\:mx-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1500px) {
  .xxl\:u-d-none {
    display: none !important;
  }

  .xxl\:u-d-inline {
    display: inline !important;
  }

  .xxl\:u-d-inline-block {
    display: inline-block !important;
  }

  .xxl\:u-d-block {
    display: block !important;
  }

  .xxl\:u-d-table {
    display: table !important;
  }

  .xxl\:u-d-table-row {
    display: table-row !important;
  }

  .xxl\:u-d-table-cell {
    display: table-cell !important;
  }

  .xxl\:u-d-flex {
    display: flex !important;
  }

  .xxl\:u-d-inline-flex {
    display: inline-flex !important;
  }

  .xxl\:u-flex-fill {
    flex: 1 1 auto !important;
  }

  .xxl\:u-flex-row {
    flex-direction: row !important;
  }

  .xxl\:u-flex-column {
    flex-direction: column !important;
  }

  .xxl\:u-flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .xxl\:u-flex-column-reverse {
    flex-direction: column-reverse !important;
  }

  .xxl\:u-flex-grow-0 {
    flex-grow: 0 !important;
  }

  .xxl\:u-flex-grow-1 {
    flex-grow: 1 !important;
  }

  .xxl\:u-flex-shrink-0 {
    flex-shrink: 0 !important;
  }

  .xxl\:u-flex-shrink-1 {
    flex-shrink: 1 !important;
  }

  .xxl\:u-flex-wrap {
    flex-wrap: wrap !important;
  }

  .xxl\:u-flex-nowrap {
    flex-wrap: nowrap !important;
  }

  .xxl\:u-flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .xxl\:u-jc-start {
    justify-content: flex-start !important;
  }

  .xxl\:u-jc-end {
    justify-content: flex-end !important;
  }

  .xxl\:u-jc-center {
    justify-content: center !important;
  }

  .xxl\:u-jc-between {
    justify-content: space-between !important;
  }

  .xxl\:u-jc-around {
    justify-content: space-around !important;
  }

  .xxl\:u-jc-evenly {
    justify-content: space-evenly !important;
  }

  .xxl\:u-ai-start {
    align-items: flex-start !important;
  }

  .xxl\:u-ai-end {
    align-items: flex-end !important;
  }

  .xxl\:u-ai-center {
    align-items: center !important;
  }

  .xxl\:u-ai-baseline {
    align-items: baseline !important;
  }

  .xxl\:u-ai-stretch {
    align-items: stretch !important;
  }

  .xxl\:u-ac-start {
    align-content: flex-start !important;
  }

  .xxl\:u-ac-end {
    align-content: flex-end !important;
  }

  .xxl\:u-ac-center {
    align-content: center !important;
  }

  .xxl\:u-ac-between {
    align-content: space-between !important;
  }

  .xxl\:u-ac-around {
    align-content: space-around !important;
  }

  .xxl\:u-ac-stretch {
    align-content: stretch !important;
  }

  .xxl\:u-as-auto {
    align-self: auto !important;
  }

  .xxl\:u-as-start {
    align-self: flex-start !important;
  }

  .xxl\:u-as-end {
    align-self: flex-end !important;
  }

  .xxl\:u-as-center {
    align-self: center !important;
  }

  .xxl\:u-as-baseline {
    align-self: baseline !important;
  }

  .xxl\:u-as-stretch {
    align-self: stretch !important;
  }

  .xxl\:order-first {
    order: -1 !important;
  }

  .xxl\:order-0 {
    order: 0 !important;
  }

  .xxl\:order-1 {
    order: 1 !important;
  }

  .xxl\:order-2 {
    order: 2 !important;
  }

  .xxl\:order-3 {
    order: 3 !important;
  }

  .xxl\:order-4 {
    order: 4 !important;
  }

  .xxl\:order-5 {
    order: 5 !important;
  }

  .xxl\:order-last {
    order: 6 !important;
  }

  .xxl\:u-ta-left {
    text-align: left !important;
  }

  .xxl\:u-ta-right {
    text-align: right !important;
  }

  .xxl\:u-ta-center {
    text-align: center !important;
  }

  .xxl\:m-0 {
    margin: 0 !important;
  }

  .xxl\:mt-0,
  .xxl\:my-0 {
    margin-top: 0 !important;
  }

  .xxl\:mr-0,
  .xxl\:mx-0 {
    margin-right: 0 !important;
  }

  .xxl\:mb-0,
  .xxl\:my-0 {
    margin-bottom: 0 !important;
  }

  .xxl\:ml-0,
  .xxl\:mx-0 {
    margin-left: 0 !important;
  }

  .xxl\:m-1 {
    margin: 0.8rem !important;
  }

  .xxl\:mt-1,
  .xxl\:my-1 {
    margin-top: 0.8rem !important;
  }

  .xxl\:mr-1,
  .xxl\:mx-1 {
    margin-right: 0.8rem !important;
  }

  .xxl\:mb-1,
  .xxl\:my-1 {
    margin-bottom: 0.8rem !important;
  }

  .xxl\:ml-1,
  .xxl\:mx-1 {
    margin-left: 0.8rem !important;
  }

  .xxl\:m-2 {
    margin: 1.6rem !important;
  }

  .xxl\:mt-2,
  .xxl\:my-2 {
    margin-top: 1.6rem !important;
  }

  .xxl\:mr-2,
  .xxl\:mx-2 {
    margin-right: 1.6rem !important;
  }

  .xxl\:mb-2,
  .xxl\:my-2 {
    margin-bottom: 1.6rem !important;
  }

  .xxl\:ml-2,
  .xxl\:mx-2 {
    margin-left: 1.6rem !important;
  }

  .xxl\:m-3 {
    margin: 2.4rem !important;
  }

  .xxl\:mt-3,
  .xxl\:my-3 {
    margin-top: 2.4rem !important;
  }

  .xxl\:mr-3,
  .xxl\:mx-3 {
    margin-right: 2.4rem !important;
  }

  .xxl\:mb-3,
  .xxl\:my-3 {
    margin-bottom: 2.4rem !important;
  }

  .xxl\:ml-3,
  .xxl\:mx-3 {
    margin-left: 2.4rem !important;
  }

  .xxl\:m-4 {
    margin: 3.2rem !important;
  }

  .xxl\:mt-4,
  .xxl\:my-4 {
    margin-top: 3.2rem !important;
  }

  .xxl\:mr-4,
  .xxl\:mx-4 {
    margin-right: 3.2rem !important;
  }

  .xxl\:mb-4,
  .xxl\:my-4 {
    margin-bottom: 3.2rem !important;
  }

  .xxl\:ml-4,
  .xxl\:mx-4 {
    margin-left: 3.2rem !important;
  }

  .xxl\:m-5 {
    margin: 4rem !important;
  }

  .xxl\:mt-5,
  .xxl\:my-5 {
    margin-top: 4rem !important;
  }

  .xxl\:mr-5,
  .xxl\:mx-5 {
    margin-right: 4rem !important;
  }

  .xxl\:mb-5,
  .xxl\:my-5 {
    margin-bottom: 4rem !important;
  }

  .xxl\:ml-5,
  .xxl\:mx-5 {
    margin-left: 4rem !important;
  }

  .xxl\:m-6 {
    margin: 4.8rem !important;
  }

  .xxl\:mt-6,
  .xxl\:my-6 {
    margin-top: 4.8rem !important;
  }

  .xxl\:mr-6,
  .xxl\:mx-6 {
    margin-right: 4.8rem !important;
  }

  .xxl\:mb-6,
  .xxl\:my-6 {
    margin-bottom: 4.8rem !important;
  }

  .xxl\:ml-6,
  .xxl\:mx-6 {
    margin-left: 4.8rem !important;
  }

  .xxl\:m-7 {
    margin: 5.6rem !important;
  }

  .xxl\:mt-7,
  .xxl\:my-7 {
    margin-top: 5.6rem !important;
  }

  .xxl\:mr-7,
  .xxl\:mx-7 {
    margin-right: 5.6rem !important;
  }

  .xxl\:mb-7,
  .xxl\:my-7 {
    margin-bottom: 5.6rem !important;
  }

  .xxl\:ml-7,
  .xxl\:mx-7 {
    margin-left: 5.6rem !important;
  }

  .xxl\:m-8 {
    margin: 6.4rem !important;
  }

  .xxl\:mt-8,
  .xxl\:my-8 {
    margin-top: 6.4rem !important;
  }

  .xxl\:mr-8,
  .xxl\:mx-8 {
    margin-right: 6.4rem !important;
  }

  .xxl\:mb-8,
  .xxl\:my-8 {
    margin-bottom: 6.4rem !important;
  }

  .xxl\:ml-8,
  .xxl\:mx-8 {
    margin-left: 6.4rem !important;
  }

  .xxl\:m-9 {
    margin: 7.2rem !important;
  }

  .xxl\:mt-9,
  .xxl\:my-9 {
    margin-top: 7.2rem !important;
  }

  .xxl\:mr-9,
  .xxl\:mx-9 {
    margin-right: 7.2rem !important;
  }

  .xxl\:mb-9,
  .xxl\:my-9 {
    margin-bottom: 7.2rem !important;
  }

  .xxl\:ml-9,
  .xxl\:mx-9 {
    margin-left: 7.2rem !important;
  }

  .xxl\:m-10 {
    margin: 8rem !important;
  }

  .xxl\:mt-10,
  .xxl\:my-10 {
    margin-top: 8rem !important;
  }

  .xxl\:mr-10,
  .xxl\:mx-10 {
    margin-right: 8rem !important;
  }

  .xxl\:mb-10,
  .xxl\:my-10 {
    margin-bottom: 8rem !important;
  }

  .xxl\:ml-10,
  .xxl\:mx-10 {
    margin-left: 8rem !important;
  }

  .xxl\:m-11 {
    margin: 8.8rem !important;
  }

  .xxl\:mt-11,
  .xxl\:my-11 {
    margin-top: 8.8rem !important;
  }

  .xxl\:mr-11,
  .xxl\:mx-11 {
    margin-right: 8.8rem !important;
  }

  .xxl\:mb-11,
  .xxl\:my-11 {
    margin-bottom: 8.8rem !important;
  }

  .xxl\:ml-11,
  .xxl\:mx-11 {
    margin-left: 8.8rem !important;
  }

  .xxl\:m-12 {
    margin: 9.6rem !important;
  }

  .xxl\:mt-12,
  .xxl\:my-12 {
    margin-top: 9.6rem !important;
  }

  .xxl\:mr-12,
  .xxl\:mx-12 {
    margin-right: 9.6rem !important;
  }

  .xxl\:mb-12,
  .xxl\:my-12 {
    margin-bottom: 9.6rem !important;
  }

  .xxl\:ml-12,
  .xxl\:mx-12 {
    margin-left: 9.6rem !important;
  }

  .xxl\:m-13 {
    margin: 10.4rem !important;
  }

  .xxl\:mt-13,
  .xxl\:my-13 {
    margin-top: 10.4rem !important;
  }

  .xxl\:mr-13,
  .xxl\:mx-13 {
    margin-right: 10.4rem !important;
  }

  .xxl\:mb-13,
  .xxl\:my-13 {
    margin-bottom: 10.4rem !important;
  }

  .xxl\:ml-13,
  .xxl\:mx-13 {
    margin-left: 10.4rem !important;
  }

  .xxl\:m-14 {
    margin: 11.2rem !important;
  }

  .xxl\:mt-14,
  .xxl\:my-14 {
    margin-top: 11.2rem !important;
  }

  .xxl\:mr-14,
  .xxl\:mx-14 {
    margin-right: 11.2rem !important;
  }

  .xxl\:mb-14,
  .xxl\:my-14 {
    margin-bottom: 11.2rem !important;
  }

  .xxl\:ml-14,
  .xxl\:mx-14 {
    margin-left: 11.2rem !important;
  }

  .xxl\:m-15 {
    margin: 12rem !important;
  }

  .xxl\:mt-15,
  .xxl\:my-15 {
    margin-top: 12rem !important;
  }

  .xxl\:mr-15,
  .xxl\:mx-15 {
    margin-right: 12rem !important;
  }

  .xxl\:mb-15,
  .xxl\:my-15 {
    margin-bottom: 12rem !important;
  }

  .xxl\:ml-15,
  .xxl\:mx-15 {
    margin-left: 12rem !important;
  }

  .xxl\:m-16 {
    margin: 12.8rem !important;
  }

  .xxl\:mt-16,
  .xxl\:my-16 {
    margin-top: 12.8rem !important;
  }

  .xxl\:mr-16,
  .xxl\:mx-16 {
    margin-right: 12.8rem !important;
  }

  .xxl\:mb-16,
  .xxl\:my-16 {
    margin-bottom: 12.8rem !important;
  }

  .xxl\:ml-16,
  .xxl\:mx-16 {
    margin-left: 12.8rem !important;
  }

  .xxl\:m-17 {
    margin: 13.6rem !important;
  }

  .xxl\:mt-17,
  .xxl\:my-17 {
    margin-top: 13.6rem !important;
  }

  .xxl\:mr-17,
  .xxl\:mx-17 {
    margin-right: 13.6rem !important;
  }

  .xxl\:mb-17,
  .xxl\:my-17 {
    margin-bottom: 13.6rem !important;
  }

  .xxl\:ml-17,
  .xxl\:mx-17 {
    margin-left: 13.6rem !important;
  }

  .xxl\:m-18 {
    margin: 14.4rem !important;
  }

  .xxl\:mt-18,
  .xxl\:my-18 {
    margin-top: 14.4rem !important;
  }

  .xxl\:mr-18,
  .xxl\:mx-18 {
    margin-right: 14.4rem !important;
  }

  .xxl\:mb-18,
  .xxl\:my-18 {
    margin-bottom: 14.4rem !important;
  }

  .xxl\:ml-18,
  .xxl\:mx-18 {
    margin-left: 14.4rem !important;
  }

  .xxl\:m-19 {
    margin: 15.2rem !important;
  }

  .xxl\:mt-19,
  .xxl\:my-19 {
    margin-top: 15.2rem !important;
  }

  .xxl\:mr-19,
  .xxl\:mx-19 {
    margin-right: 15.2rem !important;
  }

  .xxl\:mb-19,
  .xxl\:my-19 {
    margin-bottom: 15.2rem !important;
  }

  .xxl\:ml-19,
  .xxl\:mx-19 {
    margin-left: 15.2rem !important;
  }

  .xxl\:m-20 {
    margin: 16rem !important;
  }

  .xxl\:mt-20,
  .xxl\:my-20 {
    margin-top: 16rem !important;
  }

  .xxl\:mr-20,
  .xxl\:mx-20 {
    margin-right: 16rem !important;
  }

  .xxl\:mb-20,
  .xxl\:my-20 {
    margin-bottom: 16rem !important;
  }

  .xxl\:ml-20,
  .xxl\:mx-20 {
    margin-left: 16rem !important;
  }

  .xxl\:m-a1 {
    margin: 0.4rem !important;
  }

  .xxl\:mt-a1,
  .xxl\:my-a1 {
    margin-top: 0.4rem !important;
  }

  .xxl\:mr-a1,
  .xxl\:mx-a1 {
    margin-right: 0.4rem !important;
  }

  .xxl\:mb-a1,
  .xxl\:my-a1 {
    margin-bottom: 0.4rem !important;
  }

  .xxl\:ml-a1,
  .xxl\:mx-a1 {
    margin-left: 0.4rem !important;
  }

  .xxl\:p-0 {
    padding: 0 !important;
  }

  .xxl\:pt-0,
  .xxl\:py-0 {
    padding-top: 0 !important;
  }

  .xxl\:pr-0,
  .xxl\:px-0 {
    padding-right: 0 !important;
  }

  .xxl\:pb-0,
  .xxl\:py-0 {
    padding-bottom: 0 !important;
  }

  .xxl\:pl-0,
  .xxl\:px-0 {
    padding-left: 0 !important;
  }

  .xxl\:p-1 {
    padding: 0.8rem !important;
  }

  .xxl\:pt-1,
  .xxl\:py-1 {
    padding-top: 0.8rem !important;
  }

  .xxl\:pr-1,
  .xxl\:px-1 {
    padding-right: 0.8rem !important;
  }

  .xxl\:pb-1,
  .xxl\:py-1 {
    padding-bottom: 0.8rem !important;
  }

  .xxl\:pl-1,
  .xxl\:px-1 {
    padding-left: 0.8rem !important;
  }

  .xxl\:p-2 {
    padding: 1.6rem !important;
  }

  .xxl\:pt-2,
  .xxl\:py-2 {
    padding-top: 1.6rem !important;
  }

  .xxl\:pr-2,
  .xxl\:px-2 {
    padding-right: 1.6rem !important;
  }

  .xxl\:pb-2,
  .xxl\:py-2 {
    padding-bottom: 1.6rem !important;
  }

  .xxl\:pl-2,
  .xxl\:px-2 {
    padding-left: 1.6rem !important;
  }

  .xxl\:p-3 {
    padding: 2.4rem !important;
  }

  .xxl\:pt-3,
  .xxl\:py-3 {
    padding-top: 2.4rem !important;
  }

  .xxl\:pr-3,
  .xxl\:px-3 {
    padding-right: 2.4rem !important;
  }

  .xxl\:pb-3,
  .xxl\:py-3 {
    padding-bottom: 2.4rem !important;
  }

  .xxl\:pl-3,
  .xxl\:px-3 {
    padding-left: 2.4rem !important;
  }

  .xxl\:p-4 {
    padding: 3.2rem !important;
  }

  .xxl\:pt-4,
  .xxl\:py-4 {
    padding-top: 3.2rem !important;
  }

  .xxl\:pr-4,
  .xxl\:px-4 {
    padding-right: 3.2rem !important;
  }

  .xxl\:pb-4,
  .xxl\:py-4 {
    padding-bottom: 3.2rem !important;
  }

  .xxl\:pl-4,
  .xxl\:px-4 {
    padding-left: 3.2rem !important;
  }

  .xxl\:p-5 {
    padding: 4rem !important;
  }

  .xxl\:pt-5,
  .xxl\:py-5 {
    padding-top: 4rem !important;
  }

  .xxl\:pr-5,
  .xxl\:px-5 {
    padding-right: 4rem !important;
  }

  .xxl\:pb-5,
  .xxl\:py-5 {
    padding-bottom: 4rem !important;
  }

  .xxl\:pl-5,
  .xxl\:px-5 {
    padding-left: 4rem !important;
  }

  .xxl\:p-6 {
    padding: 4.8rem !important;
  }

  .xxl\:pt-6,
  .xxl\:py-6 {
    padding-top: 4.8rem !important;
  }

  .xxl\:pr-6,
  .xxl\:px-6 {
    padding-right: 4.8rem !important;
  }

  .xxl\:pb-6,
  .xxl\:py-6 {
    padding-bottom: 4.8rem !important;
  }

  .xxl\:pl-6,
  .xxl\:px-6 {
    padding-left: 4.8rem !important;
  }

  .xxl\:p-7 {
    padding: 5.6rem !important;
  }

  .xxl\:pt-7,
  .xxl\:py-7 {
    padding-top: 5.6rem !important;
  }

  .xxl\:pr-7,
  .xxl\:px-7 {
    padding-right: 5.6rem !important;
  }

  .xxl\:pb-7,
  .xxl\:py-7 {
    padding-bottom: 5.6rem !important;
  }

  .xxl\:pl-7,
  .xxl\:px-7 {
    padding-left: 5.6rem !important;
  }

  .xxl\:p-8 {
    padding: 6.4rem !important;
  }

  .xxl\:pt-8,
  .xxl\:py-8 {
    padding-top: 6.4rem !important;
  }

  .xxl\:pr-8,
  .xxl\:px-8 {
    padding-right: 6.4rem !important;
  }

  .xxl\:pb-8,
  .xxl\:py-8 {
    padding-bottom: 6.4rem !important;
  }

  .xxl\:pl-8,
  .xxl\:px-8 {
    padding-left: 6.4rem !important;
  }

  .xxl\:p-9 {
    padding: 7.2rem !important;
  }

  .xxl\:pt-9,
  .xxl\:py-9 {
    padding-top: 7.2rem !important;
  }

  .xxl\:pr-9,
  .xxl\:px-9 {
    padding-right: 7.2rem !important;
  }

  .xxl\:pb-9,
  .xxl\:py-9 {
    padding-bottom: 7.2rem !important;
  }

  .xxl\:pl-9,
  .xxl\:px-9 {
    padding-left: 7.2rem !important;
  }

  .xxl\:p-10 {
    padding: 8rem !important;
  }

  .xxl\:pt-10,
  .xxl\:py-10 {
    padding-top: 8rem !important;
  }

  .xxl\:pr-10,
  .xxl\:px-10 {
    padding-right: 8rem !important;
  }

  .xxl\:pb-10,
  .xxl\:py-10 {
    padding-bottom: 8rem !important;
  }

  .xxl\:pl-10,
  .xxl\:px-10 {
    padding-left: 8rem !important;
  }

  .xxl\:p-11 {
    padding: 8.8rem !important;
  }

  .xxl\:pt-11,
  .xxl\:py-11 {
    padding-top: 8.8rem !important;
  }

  .xxl\:pr-11,
  .xxl\:px-11 {
    padding-right: 8.8rem !important;
  }

  .xxl\:pb-11,
  .xxl\:py-11 {
    padding-bottom: 8.8rem !important;
  }

  .xxl\:pl-11,
  .xxl\:px-11 {
    padding-left: 8.8rem !important;
  }

  .xxl\:p-12 {
    padding: 9.6rem !important;
  }

  .xxl\:pt-12,
  .xxl\:py-12 {
    padding-top: 9.6rem !important;
  }

  .xxl\:pr-12,
  .xxl\:px-12 {
    padding-right: 9.6rem !important;
  }

  .xxl\:pb-12,
  .xxl\:py-12 {
    padding-bottom: 9.6rem !important;
  }

  .xxl\:pl-12,
  .xxl\:px-12 {
    padding-left: 9.6rem !important;
  }

  .xxl\:p-13 {
    padding: 10.4rem !important;
  }

  .xxl\:pt-13,
  .xxl\:py-13 {
    padding-top: 10.4rem !important;
  }

  .xxl\:pr-13,
  .xxl\:px-13 {
    padding-right: 10.4rem !important;
  }

  .xxl\:pb-13,
  .xxl\:py-13 {
    padding-bottom: 10.4rem !important;
  }

  .xxl\:pl-13,
  .xxl\:px-13 {
    padding-left: 10.4rem !important;
  }

  .xxl\:p-14 {
    padding: 11.2rem !important;
  }

  .xxl\:pt-14,
  .xxl\:py-14 {
    padding-top: 11.2rem !important;
  }

  .xxl\:pr-14,
  .xxl\:px-14 {
    padding-right: 11.2rem !important;
  }

  .xxl\:pb-14,
  .xxl\:py-14 {
    padding-bottom: 11.2rem !important;
  }

  .xxl\:pl-14,
  .xxl\:px-14 {
    padding-left: 11.2rem !important;
  }

  .xxl\:p-15 {
    padding: 12rem !important;
  }

  .xxl\:pt-15,
  .xxl\:py-15 {
    padding-top: 12rem !important;
  }

  .xxl\:pr-15,
  .xxl\:px-15 {
    padding-right: 12rem !important;
  }

  .xxl\:pb-15,
  .xxl\:py-15 {
    padding-bottom: 12rem !important;
  }

  .xxl\:pl-15,
  .xxl\:px-15 {
    padding-left: 12rem !important;
  }

  .xxl\:p-16 {
    padding: 12.8rem !important;
  }

  .xxl\:pt-16,
  .xxl\:py-16 {
    padding-top: 12.8rem !important;
  }

  .xxl\:pr-16,
  .xxl\:px-16 {
    padding-right: 12.8rem !important;
  }

  .xxl\:pb-16,
  .xxl\:py-16 {
    padding-bottom: 12.8rem !important;
  }

  .xxl\:pl-16,
  .xxl\:px-16 {
    padding-left: 12.8rem !important;
  }

  .xxl\:p-17 {
    padding: 13.6rem !important;
  }

  .xxl\:pt-17,
  .xxl\:py-17 {
    padding-top: 13.6rem !important;
  }

  .xxl\:pr-17,
  .xxl\:px-17 {
    padding-right: 13.6rem !important;
  }

  .xxl\:pb-17,
  .xxl\:py-17 {
    padding-bottom: 13.6rem !important;
  }

  .xxl\:pl-17,
  .xxl\:px-17 {
    padding-left: 13.6rem !important;
  }

  .xxl\:p-18 {
    padding: 14.4rem !important;
  }

  .xxl\:pt-18,
  .xxl\:py-18 {
    padding-top: 14.4rem !important;
  }

  .xxl\:pr-18,
  .xxl\:px-18 {
    padding-right: 14.4rem !important;
  }

  .xxl\:pb-18,
  .xxl\:py-18 {
    padding-bottom: 14.4rem !important;
  }

  .xxl\:pl-18,
  .xxl\:px-18 {
    padding-left: 14.4rem !important;
  }

  .xxl\:p-19 {
    padding: 15.2rem !important;
  }

  .xxl\:pt-19,
  .xxl\:py-19 {
    padding-top: 15.2rem !important;
  }

  .xxl\:pr-19,
  .xxl\:px-19 {
    padding-right: 15.2rem !important;
  }

  .xxl\:pb-19,
  .xxl\:py-19 {
    padding-bottom: 15.2rem !important;
  }

  .xxl\:pl-19,
  .xxl\:px-19 {
    padding-left: 15.2rem !important;
  }

  .xxl\:p-20 {
    padding: 16rem !important;
  }

  .xxl\:pt-20,
  .xxl\:py-20 {
    padding-top: 16rem !important;
  }

  .xxl\:pr-20,
  .xxl\:px-20 {
    padding-right: 16rem !important;
  }

  .xxl\:pb-20,
  .xxl\:py-20 {
    padding-bottom: 16rem !important;
  }

  .xxl\:pl-20,
  .xxl\:px-20 {
    padding-left: 16rem !important;
  }

  .xxl\:p-a1 {
    padding: 0.4rem !important;
  }

  .xxl\:pt-a1,
  .xxl\:py-a1 {
    padding-top: 0.4rem !important;
  }

  .xxl\:pr-a1,
  .xxl\:px-a1 {
    padding-right: 0.4rem !important;
  }

  .xxl\:pb-a1,
  .xxl\:py-a1 {
    padding-bottom: 0.4rem !important;
  }

  .xxl\:pl-a1,
  .xxl\:px-a1 {
    padding-left: 0.4rem !important;
  }

  .xxl\:m-n1 {
    margin: -0.8rem !important;
  }

  .xxl\:mt-n1,
  .xxl\:my-n1 {
    margin-top: -0.8rem !important;
  }

  .xxl\:mr-n1,
  .xxl\:mx-n1 {
    margin-right: -0.8rem !important;
  }

  .xxl\:mb-n1,
  .xxl\:my-n1 {
    margin-bottom: -0.8rem !important;
  }

  .xxl\:ml-n1,
  .xxl\:mx-n1 {
    margin-left: -0.8rem !important;
  }

  .xxl\:m-n2 {
    margin: -1.6rem !important;
  }

  .xxl\:mt-n2,
  .xxl\:my-n2 {
    margin-top: -1.6rem !important;
  }

  .xxl\:mr-n2,
  .xxl\:mx-n2 {
    margin-right: -1.6rem !important;
  }

  .xxl\:mb-n2,
  .xxl\:my-n2 {
    margin-bottom: -1.6rem !important;
  }

  .xxl\:ml-n2,
  .xxl\:mx-n2 {
    margin-left: -1.6rem !important;
  }

  .xxl\:m-n3 {
    margin: -2.4rem !important;
  }

  .xxl\:mt-n3,
  .xxl\:my-n3 {
    margin-top: -2.4rem !important;
  }

  .xxl\:mr-n3,
  .xxl\:mx-n3 {
    margin-right: -2.4rem !important;
  }

  .xxl\:mb-n3,
  .xxl\:my-n3 {
    margin-bottom: -2.4rem !important;
  }

  .xxl\:ml-n3,
  .xxl\:mx-n3 {
    margin-left: -2.4rem !important;
  }

  .xxl\:m-n4 {
    margin: -3.2rem !important;
  }

  .xxl\:mt-n4,
  .xxl\:my-n4 {
    margin-top: -3.2rem !important;
  }

  .xxl\:mr-n4,
  .xxl\:mx-n4 {
    margin-right: -3.2rem !important;
  }

  .xxl\:mb-n4,
  .xxl\:my-n4 {
    margin-bottom: -3.2rem !important;
  }

  .xxl\:ml-n4,
  .xxl\:mx-n4 {
    margin-left: -3.2rem !important;
  }

  .xxl\:m-n5 {
    margin: -4rem !important;
  }

  .xxl\:mt-n5,
  .xxl\:my-n5 {
    margin-top: -4rem !important;
  }

  .xxl\:mr-n5,
  .xxl\:mx-n5 {
    margin-right: -4rem !important;
  }

  .xxl\:mb-n5,
  .xxl\:my-n5 {
    margin-bottom: -4rem !important;
  }

  .xxl\:ml-n5,
  .xxl\:mx-n5 {
    margin-left: -4rem !important;
  }

  .xxl\:m-n6 {
    margin: -4.8rem !important;
  }

  .xxl\:mt-n6,
  .xxl\:my-n6 {
    margin-top: -4.8rem !important;
  }

  .xxl\:mr-n6,
  .xxl\:mx-n6 {
    margin-right: -4.8rem !important;
  }

  .xxl\:mb-n6,
  .xxl\:my-n6 {
    margin-bottom: -4.8rem !important;
  }

  .xxl\:ml-n6,
  .xxl\:mx-n6 {
    margin-left: -4.8rem !important;
  }

  .xxl\:m-n7 {
    margin: -5.6rem !important;
  }

  .xxl\:mt-n7,
  .xxl\:my-n7 {
    margin-top: -5.6rem !important;
  }

  .xxl\:mr-n7,
  .xxl\:mx-n7 {
    margin-right: -5.6rem !important;
  }

  .xxl\:mb-n7,
  .xxl\:my-n7 {
    margin-bottom: -5.6rem !important;
  }

  .xxl\:ml-n7,
  .xxl\:mx-n7 {
    margin-left: -5.6rem !important;
  }

  .xxl\:m-n8 {
    margin: -6.4rem !important;
  }

  .xxl\:mt-n8,
  .xxl\:my-n8 {
    margin-top: -6.4rem !important;
  }

  .xxl\:mr-n8,
  .xxl\:mx-n8 {
    margin-right: -6.4rem !important;
  }

  .xxl\:mb-n8,
  .xxl\:my-n8 {
    margin-bottom: -6.4rem !important;
  }

  .xxl\:ml-n8,
  .xxl\:mx-n8 {
    margin-left: -6.4rem !important;
  }

  .xxl\:m-n9 {
    margin: -7.2rem !important;
  }

  .xxl\:mt-n9,
  .xxl\:my-n9 {
    margin-top: -7.2rem !important;
  }

  .xxl\:mr-n9,
  .xxl\:mx-n9 {
    margin-right: -7.2rem !important;
  }

  .xxl\:mb-n9,
  .xxl\:my-n9 {
    margin-bottom: -7.2rem !important;
  }

  .xxl\:ml-n9,
  .xxl\:mx-n9 {
    margin-left: -7.2rem !important;
  }

  .xxl\:m-n10 {
    margin: -8rem !important;
  }

  .xxl\:mt-n10,
  .xxl\:my-n10 {
    margin-top: -8rem !important;
  }

  .xxl\:mr-n10,
  .xxl\:mx-n10 {
    margin-right: -8rem !important;
  }

  .xxl\:mb-n10,
  .xxl\:my-n10 {
    margin-bottom: -8rem !important;
  }

  .xxl\:ml-n10,
  .xxl\:mx-n10 {
    margin-left: -8rem !important;
  }

  .xxl\:m-n11 {
    margin: -8.8rem !important;
  }

  .xxl\:mt-n11,
  .xxl\:my-n11 {
    margin-top: -8.8rem !important;
  }

  .xxl\:mr-n11,
  .xxl\:mx-n11 {
    margin-right: -8.8rem !important;
  }

  .xxl\:mb-n11,
  .xxl\:my-n11 {
    margin-bottom: -8.8rem !important;
  }

  .xxl\:ml-n11,
  .xxl\:mx-n11 {
    margin-left: -8.8rem !important;
  }

  .xxl\:m-n12 {
    margin: -9.6rem !important;
  }

  .xxl\:mt-n12,
  .xxl\:my-n12 {
    margin-top: -9.6rem !important;
  }

  .xxl\:mr-n12,
  .xxl\:mx-n12 {
    margin-right: -9.6rem !important;
  }

  .xxl\:mb-n12,
  .xxl\:my-n12 {
    margin-bottom: -9.6rem !important;
  }

  .xxl\:ml-n12,
  .xxl\:mx-n12 {
    margin-left: -9.6rem !important;
  }

  .xxl\:m-n13 {
    margin: -10.4rem !important;
  }

  .xxl\:mt-n13,
  .xxl\:my-n13 {
    margin-top: -10.4rem !important;
  }

  .xxl\:mr-n13,
  .xxl\:mx-n13 {
    margin-right: -10.4rem !important;
  }

  .xxl\:mb-n13,
  .xxl\:my-n13 {
    margin-bottom: -10.4rem !important;
  }

  .xxl\:ml-n13,
  .xxl\:mx-n13 {
    margin-left: -10.4rem !important;
  }

  .xxl\:m-n14 {
    margin: -11.2rem !important;
  }

  .xxl\:mt-n14,
  .xxl\:my-n14 {
    margin-top: -11.2rem !important;
  }

  .xxl\:mr-n14,
  .xxl\:mx-n14 {
    margin-right: -11.2rem !important;
  }

  .xxl\:mb-n14,
  .xxl\:my-n14 {
    margin-bottom: -11.2rem !important;
  }

  .xxl\:ml-n14,
  .xxl\:mx-n14 {
    margin-left: -11.2rem !important;
  }

  .xxl\:m-n15 {
    margin: -12rem !important;
  }

  .xxl\:mt-n15,
  .xxl\:my-n15 {
    margin-top: -12rem !important;
  }

  .xxl\:mr-n15,
  .xxl\:mx-n15 {
    margin-right: -12rem !important;
  }

  .xxl\:mb-n15,
  .xxl\:my-n15 {
    margin-bottom: -12rem !important;
  }

  .xxl\:ml-n15,
  .xxl\:mx-n15 {
    margin-left: -12rem !important;
  }

  .xxl\:m-n16 {
    margin: -12.8rem !important;
  }

  .xxl\:mt-n16,
  .xxl\:my-n16 {
    margin-top: -12.8rem !important;
  }

  .xxl\:mr-n16,
  .xxl\:mx-n16 {
    margin-right: -12.8rem !important;
  }

  .xxl\:mb-n16,
  .xxl\:my-n16 {
    margin-bottom: -12.8rem !important;
  }

  .xxl\:ml-n16,
  .xxl\:mx-n16 {
    margin-left: -12.8rem !important;
  }

  .xxl\:m-n17 {
    margin: -13.6rem !important;
  }

  .xxl\:mt-n17,
  .xxl\:my-n17 {
    margin-top: -13.6rem !important;
  }

  .xxl\:mr-n17,
  .xxl\:mx-n17 {
    margin-right: -13.6rem !important;
  }

  .xxl\:mb-n17,
  .xxl\:my-n17 {
    margin-bottom: -13.6rem !important;
  }

  .xxl\:ml-n17,
  .xxl\:mx-n17 {
    margin-left: -13.6rem !important;
  }

  .xxl\:m-n18 {
    margin: -14.4rem !important;
  }

  .xxl\:mt-n18,
  .xxl\:my-n18 {
    margin-top: -14.4rem !important;
  }

  .xxl\:mr-n18,
  .xxl\:mx-n18 {
    margin-right: -14.4rem !important;
  }

  .xxl\:mb-n18,
  .xxl\:my-n18 {
    margin-bottom: -14.4rem !important;
  }

  .xxl\:ml-n18,
  .xxl\:mx-n18 {
    margin-left: -14.4rem !important;
  }

  .xxl\:m-n19 {
    margin: -15.2rem !important;
  }

  .xxl\:mt-n19,
  .xxl\:my-n19 {
    margin-top: -15.2rem !important;
  }

  .xxl\:mr-n19,
  .xxl\:mx-n19 {
    margin-right: -15.2rem !important;
  }

  .xxl\:mb-n19,
  .xxl\:my-n19 {
    margin-bottom: -15.2rem !important;
  }

  .xxl\:ml-n19,
  .xxl\:mx-n19 {
    margin-left: -15.2rem !important;
  }

  .xxl\:m-n20 {
    margin: -16rem !important;
  }

  .xxl\:mt-n20,
  .xxl\:my-n20 {
    margin-top: -16rem !important;
  }

  .xxl\:mr-n20,
  .xxl\:mx-n20 {
    margin-right: -16rem !important;
  }

  .xxl\:mb-n20,
  .xxl\:my-n20 {
    margin-bottom: -16rem !important;
  }

  .xxl\:ml-n20,
  .xxl\:mx-n20 {
    margin-left: -16rem !important;
  }

  .xxl\:m-na1 {
    margin: -0.4rem !important;
  }

  .xxl\:mt-na1,
  .xxl\:my-na1 {
    margin-top: -0.4rem !important;
  }

  .xxl\:mr-na1,
  .xxl\:mx-na1 {
    margin-right: -0.4rem !important;
  }

  .xxl\:mb-na1,
  .xxl\:my-na1 {
    margin-bottom: -0.4rem !important;
  }

  .xxl\:ml-na1,
  .xxl\:mx-na1 {
    margin-left: -0.4rem !important;
  }

  .xxl\:m-auto {
    margin: auto !important;
  }

  .xxl\:mt-auto,
  .xxl\:my-auto {
    margin-top: auto !important;
  }

  .xxl\:mr-auto,
  .xxl\:mx-auto {
    margin-right: auto !important;
  }

  .xxl\:mb-auto,
  .xxl\:my-auto {
    margin-bottom: auto !important;
  }

  .xxl\:ml-auto,
  .xxl\:mx-auto {
    margin-left: auto !important;
  }
}

@media print {
  .-printu-d-none {
    display: none !important;
  }

  .-printu-d-inline {
    display: inline !important;
  }

  .-printu-d-inline-block {
    display: inline-block !important;
  }

  .-printu-d-block {
    display: block !important;
  }

  .-printu-d-table {
    display: table !important;
  }

  .-printu-d-table-row {
    display: table-row !important;
  }

  .-printu-d-table-cell {
    display: table-cell !important;
  }

  .-printu-d-flex {
    display: flex !important;
  }

  .-printu-d-inline-flex {
    display: inline-flex !important;
  }
}

.cc-window {
  opacity: 1;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.cc-window.cc-invisible {
  opacity: 0;
}

.cc-animate.cc-revoke {
  -webkit-transition: transform 1s ease;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

.cc-animate.cc-revoke.cc-top {
  -webkit-transform: translateY(-2em);
  transform: translateY(-2em);
}

.cc-animate.cc-revoke.cc-bottom {
  -webkit-transform: translateY(2em);
  transform: translateY(2em);
}

.cc-animate.cc-revoke.cc-active.cc-top {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cc-animate.cc-revoke.cc-active.cc-bottom {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cc-revoke:hover {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cc-grower {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 1s;
  transition: max-height 1s;
}

.cc-revoke,
.cc-window {
  position: fixed;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Helvetica, Calibri, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  z-index: 9999;
}

.cc-window.cc-static {
  position: static;
}

.cc-window.cc-floating {
  padding: 2em;
  max-width: 24em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cc-window.cc-banner {
  padding: 1em 1.8em;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.cc-revoke {
  padding: .5em;
}

.cc-revoke:hover {
  text-decoration: underline;
}

.cc-header {
  font-size: 18px;
  font-weight: 700;
}

.cc-btn,
.cc-close,
.cc-link,
.cc-revoke {
  cursor: pointer;
}

.cc-link {
  opacity: .8;
  display: inline-block;
  padding: .2em;
  text-decoration: underline;
}

.cc-link:hover {
  opacity: 1;
}

.cc-link:active,
.cc-link:visited {
  color: initial;
}

.cc-btn {
  display: block;
  padding: .4em .8em;
  font-size: .9em;
  font-weight: 700;
  border-width: 2px;
  border-style: solid;
  text-align: center;
  white-space: nowrap;
}

.cc-highlight .cc-btn:first-child {
  background-color: transparent;
  border-color: transparent;
}

.cc-highlight .cc-btn:first-child:focus,
.cc-highlight .cc-btn:first-child:hover {
  background-color: transparent;
  text-decoration: underline;
}

.cc-close {
  display: block;
  position: absolute;
  top: .5em;
  right: .5em;
  font-size: 1.6em;
  opacity: .9;
  line-height: .75;
}

.cc-close:focus,
.cc-close:hover {
  opacity: 1;
}

.cc-revoke.cc-top {
  top: 0;
  left: 3em;
  border-bottom-left-radius: .5em;
  border-bottom-right-radius: .5em;
}

.cc-revoke.cc-bottom {
  bottom: 0;
  left: 3em;
  border-top-left-radius: .5em;
  border-top-right-radius: .5em;
}

.cc-revoke.cc-left {
  left: 3em;
  right: unset;
}

.cc-revoke.cc-right {
  right: 3em;
  left: unset;
}

.cc-top {
  top: 1em;
}

.cc-left {
  left: 1em;
}

.cc-right {
  right: 1em;
}

.cc-bottom {
  bottom: 1em;
}

.cc-floating>.cc-link {
  margin-bottom: 1em;
}

.cc-floating .cc-message {
  display: block;
  margin-bottom: 1em;
}

.cc-window.cc-floating .cc-compliance {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.cc-window.cc-banner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cc-banner.cc-top {
  left: 0;
  right: 0;
  top: 0;
}

.cc-banner.cc-bottom {
  left: 0;
  right: 0;
  bottom: 0;
}

.cc-banner .cc-message {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 100%;
  margin-right: 1em;
}

.cc-compliance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

.cc-floating .cc-compliance>.cc-btn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.cc-btn+.cc-btn {
  margin-left: .5em;
}

@media print {

  .cc-revoke,
  .cc-window {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  .cc-btn {
    white-space: normal;
  }
}

@media screen and (max-width: 414px) and (orientation: portrait),
screen and (max-width: 736px) and (orientation: landscape) {
  .cc-window.cc-top {
    top: 0;
  }

  .cc-window.cc-bottom {
    bottom: 0;
  }

  .cc-window.cc-banner,
  .cc-window.cc-floating,
  .cc-window.cc-left,
  .cc-window.cc-right {
    left: 0;
    right: 0;
  }

  .cc-window.cc-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .cc-window.cc-banner .cc-compliance {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }

  .cc-window.cc-floating {
    max-width: none;
  }

  .cc-window .cc-message {
    margin-bottom: 1em;
  }

  .cc-window.cc-banner {
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }

  .cc-window.cc-banner .cc-message {
    margin-right: 0;
  }
}

.cc-floating.cc-theme-classic {
  padding: 1.2em;
  border-radius: 5px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
  text-align: center;
  display: inline;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.cc-theme-classic .cc-btn {
  border-radius: 5px;
}

.cc-theme-classic .cc-btn:last-child {
  min-width: 140px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
  display: inline-block;
}

.cc-theme-edgeless.cc-window {
  padding: 0;
}

.cc-floating.cc-theme-edgeless .cc-message {
  margin: 2em;
  margin-bottom: 1.5em;
}

.cc-banner.cc-theme-edgeless .cc-btn {
  margin: 0;
  padding: .8em 1.8em;
  height: 100%;
}

.cc-banner.cc-theme-edgeless .cc-message {
  margin-left: 1em;
}

.cc-floating.cc-theme-edgeless .cc-btn+.cc-btn {
  margin-left: 0;
}

.m-social ul {
  list-style: none;
  padding: 0;
  margin: -.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.m-social ul>li {
  flex: 0 0 auto;
  padding: .4rem;
}

.m-social ul>li>a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  border-radius: 9rem;
  font-size: 3rem;
}

.m-social ul>li>a img,
.m-social ul>li>a svg,
li.m-social a img {
  width: auto;
  height: 1em;
  display: block;
}

.m-social ul>li>a svg path {
  fill: currentColor;
}

.m-social a[href*="facebook.com"] {
  color: #0073d5;
}

.m-social a[href*="twitter.com"] {
  color: #1DA1F2;
}

@media (max-width: 991.98px) {
  .m-articles__block .m-articles__block-wrapper {
    border-bottom: 0.1rem solid #d8d8d8;
  }

  .m-articles__block:last-child .m-articles__block-wrapper {
    border-bottom-width: 0;
  }
}

@media (min-width: 992px) {
  .m-articles__block .m-articles__block-wrapper {
    border-right: 0.1rem solid #d8d8d8;
  }

  .m-articles__block:last-child .m-articles__block-wrapper {
    border-right-width: 0;
  }
}

.m-articles__block-wrapper {
  display: block;
}

.m-articles__block-wrapper:hover {
  background-color: #b9c598;
  color: #fff;
}

.m-news__block {
  padding-bottom: 2.4rem;
  border-bottom: 0.1rem solid #343a40;
  margin-bottom: 2.4rem;
}

.m-news__block:last-child {
  padding-bottom: 0;
  border-bottom-width: 0;
  margin-bottom: 0;
}

header {
  /* box-shadow: 0px 10px 13px -15px rgba(17, 17, 17, 0.582); */
}

@media (max-width: 991.98px) {
  .page--header-is-active {
    overflow: hidden;
  }
}

:root {
  --header-height: 6.2rem;
}

@media (min-width: 992px) {
  :root {
    --header-height: 1rem;
  }
}



.c-header-placeholder {
  /* background: #fff; */
  height: var(--header-height, 0px);
}

.c-header {
  --header-mobile-bg: #fff;
  --header-mobile-color: #20272d;
  --header-mobile-bar-bg: #fff;
  --header-mobile-bar-color: #20272d;
  --header-mobile-bar-logo: #20272d;
  --header-mobile-link: #20272d;
  --header-mobile-link-hover: rgb(138, 138, 138);
  --header-mobile-link-active: #rgb(61, 61, 61);
  --header-mobile-menu: #20272d;
  --header-mobile-menu-hover: #rgb(61, 61, 61);
  --header-desktop-bg: #fff;
  --header-desktop-color: #20272d;
  --header-desktop-link: #20272d;
  --header-desktop-link-hover: rgb(61, 61, 61);
  --header-desktop-link-active: rgb(61, 61, 61);
  --header-desktop-logo: #fff;
  pointer-events: none;
  position: fixed;

  /* overflow: hidden; */
  z-index: 1030;
  top: 0;
  left: 0;
  width: 100%;

}

@media (max-width: 991.98px) {
  .c-header {
    height: 100%;
  }
}

.customize-support .c-header {
  padding-top: 3.2rem;
}

@media (max-width: 782px) {
  .customize-support .c-header {
    padding-top: 4.6rem;
  }
}

@media (max-width: 600px) {
  .customize-support .c-header {
    padding-top: 4.6rem;
    position: absolute;
  }
}

.c-header__logo {
  transition: color 200ms ease-in-out;
}

.c-header__logo a {
  display: block;
}

.c-header__logo img,
.c-header__logo svg {
  display: block;
  width: auto;
}

.c-header__logo svg path[fill="white"] {
  fill: currentColor;
}

.c-header-mobile {
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  background-color: transparent;
  color: var(--header-mobile-color);
  transition-property: background-color, color;
  transition-duration: 200ms;
  transition-timing-function: ease-in-out;
}

@media (min-width: 992px) {
  .c-header-mobile {
    display: none;
  }
}

.c-header.active .c-header-mobile {
  background-color: var(--header-mobile-bg);
}

.c-header-mobile__bar {
  color: var(--header-mobile-bar-bg);
  background-color:#B1993B;
  pointer-events: auto;
  transition-property: background-color, color;
  transition-duration: 200ms;
  transition-timing-function: ease-in-out;
  box-shadow: 0 2px 5px 0 #eeeeee42;

}

.c-header-mobile__bar-container {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  min-height: 4.8rem;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .c-header-mobile__bar-container {
    min-height: 6.4rem;
  }
}

.c-header-mobile__content {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  overflow: auto;
  color: var(--header-mobile-color);
  background: rgb(43, 43, 43);
  pointer-events: none;
  position: relative;
  opacity: 0;
  transform: scaleY(0.95);
  transform-origin: top;
  transition-property: transform, opacity;
  transition-duration: 200ms;
  transition-timing-function: ease-in-out;
}

.c-header.active .c-header-mobile {
  pointer-events: auto;
}

.c-header.active .c-header-mobile__content {
  opacity: 1;
  transform: scaleX(1);
  pointer-events: auto;
}

.c-header-mobile__content-container {
  min-height: 100%;
  display: flex;
}

.c-header-mobile__content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2.4rem 0;
}

.c-header-mobile__logo {
  color: var(--header-mobile-bar-logo);
}

.c-header-mobile__logo a {
  height: 4rem;
}

.c-header-mobile__logo img,
.c-header-mobile__logo svg {
  height: 100%;
}

.c-header-mobile__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-header-mobile__nav ul>li[data-hideable-nav-item]>ul {
  margin-left: .2rem;
  padding-left: 1.6rem;
  border-left: 0.1rem solid #e4e4e4;
}

.c-header-mobile__nav ul>li[data-hideable-nav-item="inactive"]>ul {
  display: none;
}

.c-header-mobile__nav ul>li[data-hideable-nav-item="active"]>a .icon {
  transform: rotateZ(180deg);
}

.c-header-mobile__nav ul>li[data-hideable-nav-item="active"]>ul {
  display: block;
}

.c-header-mobile__nav ul>li>a {
  display: block;
  position: relative;
  z-index: 1;
  outline: 0;
  padding: .8rem 4rem .8rem 0;
  color: #fff;
  transition: color 200ms ease-in-out;
}

.c-header-mobile__nav ul>li>a:hover {
  color: #fff;
  text-decoration: underline;
}

.c-header-mobile__nav ul>li>a.active {
  color: var(--header-mobile-link-active);
  font-weight: 700;
}

.c-header-mobile__nav ul>li>a .icon {
  color: var(--header-mobile-link-active);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: auto;
  width: 4rem;
  transition: transform 200ms ease-in-out;
  font-size: 1.25em;
}

.c-header-mobile__bottom-nav {
  margin-top: 2.4rem;
}

.c-header-mobile__social ul {
  justify-content: flex-start;
}

.c-header .hamburger {
  color: rgb(255, 255, 255);
  transition: color 200ms ease-in-out;
}

.c-header .hamburger:hover,
.c-header .hamburger:focus {
  color: rgb(255, 255, 255);
}

.c-header-desktop {
  pointer-events: auto;
  /* background-color: var(--header-desktop-bg); */
  color: var(--header-desktop-color);
  transition-property: color, background-color;
  transition-duration: 200ms;
  transition-timing-function: ease-in-out;
}

@media (max-width: 991.98px) {
  .c-header-desktop {
    display: none;
  }
}

.c-header-desktop__top {
  height: 0;
  display: flex;
  justify-content: flex-end;
}

.c-header-desktop__top-info ul {
  list-style: none;
  padding: 1rem 0;
  margin: 0 -1.6rem;
  display: flex;
}

.c-header-desktop__top-info ul>li {
  padding: .4rem 1.6rem;
  border-right: 0.1rem solid rgba(32, 39, 45, 0.3);
}

.c-header-desktop__top-info ul>li:last-child {
  border-right-width: 0;
}

.c-header-desktop__middle {
  transition-property: padding-top, padding-bottom;
  transition-duration: 200ms;
  transition-timing-function: ease-in-out;
}

.c-header {
  transition: 0.5s;
}

@media (min-width:992px) {
  .scrolled2,
  .c-header.scrolled {
    transition: 0.5s;
    background: #B1993B;
    box-shadow: 0 2px 5px 0 #eeeeee42;
  }
  .scrolled2 .logo img,
  .c-header.scrolled .logo img {
    /* transform: scale(0.50, 0.50); */
    height: 75px;
    transition: height 200ms ease-in-out;
  }
  .scrolled2 .pb-5,
  .scrolled .pb-5{
    padding-bottom: 0 !important;
    transition: 0.5s;
  }
}

.scrolled .c-header-desktop__nav>ul>li>a {

}

.c-header.scrolled .c-header-desktop__middle {
  padding-top: 1rem;
  padding-bottom: 1rem;
}



/* .c-header.scrolled .logo img {
  height: 8rem;
  transition: 0.5s;
} */


.c-header-desktop__nav {
  /* padding-top: 2rem; */
  min-width: 0;
  max-width: 100%;

  flex: 1 1 auto;
}

.c-header-desktop__nav>ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-header-desktop__nav>ul>li {
  margin: 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}



.c-header-desktop__nav>ul>li:first-child::after {
  display: none;
}

.c-header-desktop__nav>ul>li>a {
  /* text-transform: uppercase; */
  display: block;
  padding: 1.6rem 1.6rem;
  padding-left: 0;
  font-weight: 500;
  white-space: nowrap;
  transition-property: background-color, color, padding-top, padding-bottom;
  transition-duration: 200ms;
  transition-timing-function: ease-in-out;
}

@media (min-width: 1200px) {
  .c-header-desktop__nav>ul>li>a {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}

@media (min-width: 1500px) {
  .c-header-desktop__nav>ul>li>a {
    padding-left: 2.3rem;
    padding-right: 2.3rem;
  }
}
.scrolled .lang{
  color: #000 !important;
}

.c-header-desktop__nav>ul>li>a:hover {
  color: var(--header-desktop-link-hover);
}

.c-header-desktop__nav>ul>li>a.active {
  color: var(--header-desktop-link-active);
  font-weight: 700;
}

.c-header-desktop__nav>ul>li>a .icon {
  color: var(--header-desktop-link-hover);
  font-size: 1em;
  vertical-align: -.125em;
  margin-left: .25em;
}

.c-header-desktop__nav>ul>li>ul {
  min-width: 100%;
  list-style: none;
  margin: 0;
  top: 100%;
  display: block;
  color: var(--header-desktop-color);
  z-index: 2100;
  visibility: hidden;
  opacity: 0;
  transition-property: visibility, opacity, transform;
  transition-delay: 0.25s, 0s, 0s;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  pointer-events: none;
  left: 0;
  position: absolute;
  border-radius: 0;
  background: var(--header-desktop-bg);
  padding: .8rem 0;
  font-weight: 400;
  /* text-align: center; */
}

.c-header-desktop__nav>ul>li:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: translate(0);
  transition-delay: 0s;
  pointer-events: auto;
}

.c-header-desktop__nav>ul>li>ul>li>a {
  display: block;
  padding: .4rem 1.6rem;
  color: var(--header-desktop-linkl);
  white-space: nowrap;
}

.c-header-desktop__nav>ul>li>ul>li>a:hover {
  color: var(--header-desktop-link-hover);
}

.c-header.scrolled .c-header-desktop__nav>ul>li>a {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.c-header-desktop__nav>ul>li>ul li>ul {
  top: -5px;
  left: 100%;
  position: absolute;
}

.c-header-desktop__nav>ul>li>ul li {
  position: relative;
  z-index: 1;
}

.c-header-desktop__nav>ul li>ul {
  min-width: 100%;
  list-style: none;
  margin: 0;
  top: 100%;
  display: block;
  color: rgb(255, 255, 255) !important;
  z-index: 2100;
  padding: 4px 0;
  visibility: hidden;
  opacity: 0;
  transition-property: visibility, opacity, transform;
  transition-delay: 0.25s, 0s, 0s;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  pointer-events: none;
  left: 0;
  position: absolute;
  border-radius: 0;
  /* border-top: 1px solid #000; */
  background:rgba(0, 0, 0, 0.397);
}

.scrolled .c-header-desktop__nav>ul li>ul {

  background: #fff;
}


.c-header-desktop__nav>ul>li>ul li:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: translate(0);
  transition-delay: 0s;
  pointer-events: auto;
}

.c-header-desktop__nav>ul>li>ul li>a {
  color: rgb(255, 255, 255);
  flex: 0 0 auto;
  min-width: 0;
  max-width: 100%;
  padding: 8px 16px;
  /* text-shadow: 0px 4px 10px #000; */
  display: block;
  white-space: nowrap;
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  transition-property: background-color, color;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.scrolled .c-header-desktop__nav>ul>li>ul li>a {
  color: #000;
  text-shadow: none;
}
.lang a{
  padding-bottom:0 !important;
}

.c-header-desktop__nav>ul>li>ul li>a:hover {
  color: #000;
}

.scrolled .c-header-desktop__nav>ul>li>ul li>a:hover {
  color: #000;
}

.c-header-desktop__container {
  position: relative;
  z-index: 1;
}

.c-header-desktop__social {
  padding-top: 2rem;
}

.c-footer__menu ul {
  list-style: none;
  padding: 0;
}

.c-footer__map {
  height: 100%;
}

.c-footer__map iframe {
  width: 100%;
  min-height: 30rem;
  border: 0;
}
.p-hero {
  position: relative;
  z-index: 1;
  /* overflow: hidden; */
  height: 90vh;
  /* background: url('../images/misc/main-page-hero-image.png'); */


}
.heroSwiper {
  height: 100%;
  min-height: 800px;
}
.p-hero{
  min-height: 800px;
}


@media(max-width:750px){
  .heroSwiper {
    height: 70vh;
    min-height: auto;
    height: 450px !important;
  }
  .p-hero{
    min-height: auto;
    height: 400px !important;
  }
}
@media(max-width:500px){
  .heroSwiper {
    height: 400px !important;
  }
  .p-hero{
    height: 400px !important;
  }
}




.bg-opacity{
  background: #000228;
  opacity: 0.6;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index:2;
}

.p-hero__article-wrapper{
}

.subSite {
  height: 10vh;
}
@media(max-width:900px){
.subSite{
  height: 5vh;
}

}



.p-hero__article-wrapper {
  background-size: cover;
}

.page--main .p-hero__slider-wrapper {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.page--main .p-hero__article {
  position: relative;
  z-index: 1;
  /* overflow: hidden; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex: 0 0 auto;
  min-width: 0;
  position: relative;
  z-index: 1;
  transition-property: transform, opacity;
  width: 100%;
  display: flex;
  flex-direction: column;
  /* pointer-events: none; */
  /* min-height: 42rem; */
}

.img-fluid {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
}

.page--main .p-hero__article--active {
  pointer-events: auto;
}

.page--main .p-hero__article-image {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.page--main .p-hero__article-image::before {
  content: "";
  display: block;
  padding-top: 50%;
}

@media (min-width: 992px) {
  .page--main .p-hero__article-image {
    flex: 1 1 auto;
  }

  .page--main .p-hero__article-image::before {
    content: none;
  }
}

.page--main .p-hero__article-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.page--main .p-hero__article-wrapper {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .page--main .p-hero__article-wrapper {
    flex-direction: row;
  }
}

.page--main .p-hero__article-header {
  /* padding: 4rem 3.2rem; */
  flex-direction: column;
  z-index:3;
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  position: relative;
}

.p-hero__article-header{
  z-index: 4;
}

@media (min-width: 992px) {
  .page--main .p-hero__article-header {
    align-self: end;
    /* max-width: 42rem; */
    flex: 0 0 auto;
  }
}



.p-hero__article-header h2 {
  text-shadow: 1px 1px 10px rgb(255, 255, 255);
}

.p-hero__article-header p{
  max-width: 60ch;
}




.checkbox[type='checkbox'] {
  /* position: none; */
  display: block;
  position: relative;
  flex-direction: row;
  width: 20px;
  height: 20px;
  margin: 0 2.8rem;
}

@media(max-width:991px) {
  .checkbox[type='checkbox'] {
    margin: 0 1.2rem;
  }

  .footer-margin {
    margin-top: 16rem !important;
  }
}

.checkbox[type='checkbox']::after {
  cursor: pointer;
  width: 20px;
  left: 0;
  top: 0;
  height: 20px;
  border: none;
  background: #fff;
  position: absolute;
  content: "";

}

.checkbox[type='checkbox']:checked::after {
  width: 20px;
  height: 20px;
  background: none;
  border-radius: 0;
}








@media(max-width:991px) {
  .p-hero__article-image {
    display: none;
  }
}

@media (max-width:1400px) {
  .herofont {
    font-size: 100px;
  }
}

@media (max-width:1000px) {
  .herofont {
    font-size: 76px;
  }
}

@media (max-width:800px) {
  .herofont {
    font-size: 60px;
  }
}

@media (max-width:500px) {
  .herofont {
    font-size: 40px;
  }
}

@media (max-width:1200px) {

  footer .button,
  .phoneimg .button--primary {
    font-size: 1.8rem;
  }

  .button--medium {
    padding: 14px 50px;
  }

  .half {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }

  .rowreverse {
    flex-direction: column-reverse;
  }

  .c-footer__map {
    margin-right: -16px;
  }

}

@media (max-width:991px) {

  .p-about-us img {
    margin-top: 1.6rem;
    max-height: 300px;
  }




}
@media (max-width:768px) {
  .button--medium {
    padding: 10px 30px;
    font-size: 16px !important;
  }



}


@media (max-width:550px) {
  .button--medium {
    padding: 5px 10px;
    font-size: 12px !important;
  }



}


.c-footer__map {
  filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="g"><feColorMatrix type="matrix" values="0.3 0.3 0.3 0 0 0.3 0.3 0.3 0 0 0.3 0.3 0.3 0 0 0 0 0 1 0"/></filter></svg>#g');
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: progid:DXImageTransform.Microsoft.BasicImage(grayScale=1);
}


@media print {
  .-printu-d-none {
    display: none !important;
  }

  .-printu-d-inline {
    display: inline !important;
  }

  .-printu-d-inline-block {
    display: inline-block !important;
  }

  .-printu-d-block {
    display: block !important;
  }

  .-printu-d-table {
    display: table !important;
  }

  .-printu-d-table-row {
    display: table-row !important;
  }

  .-printu-d-table-cell {
    display: table-cell !important;
  }

  .-printu-d-flex {
    display: flex !important;
  }

  .-printu-d-inline-flex {
    display: inline-flex !important;
  }
}

@font-face {
  font-family: 'lg';
  src: url("../fonts/lg/lg.eot?n1z373");
  src: url("../fonts/lg/lg.eot?#iefixn1z373") format("embedded-opentype"), url("../fonts/lg/lg.woff?n1z373") format("woff"), url("../fonts/lg/lg.ttf?n1z373") format("truetype"), url("../fonts/lg/lg.svg?n1z373#lg") format("svg");
  font-weight: normal;
  font-style: normal;
}

.lg-icon {
  font-family: 'lg';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@-moz-keyframes lg-right-end {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@-ms-keyframes lg-right-end {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@keyframes lg-right-end {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}

@-moz-keyframes lg-left-end {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}

@-ms-keyframes lg-left-end {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}

@keyframes lg-left-end {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}

.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  -o-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}

.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  -o-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}

.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  background: none;
  border: none;
  box-shadow: none;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.lg-toolbar .lg-icon:hover {
  color: #FFF;
}

.lg-toolbar .lg-close:after {
  content: "\e070";
}

.lg-toolbar .lg-download:after {
  content: "\e0f2";
}

.lg-sub-html {
  background-color: rgba(0, 0, 0, 0.45);
  bottom: 0;
  color: #EEE;
  font-size: 16px;
  left: 0;
  padding: 10px 40px;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 1080;
}

.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}

.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}

#lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  vertical-align: middle;
}

.lg-toolbar,
.lg-prev,
.lg-next {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -moz-transition: -moz-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
}

.lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}

.lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}

.lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.lg-outer .lg-thumb-outer {
  background-color: #0D0A0A;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 1080;
  max-height: 350px;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}

.lg-outer.lg-thumb-open .lg-thumb-outer {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
}

.lg-outer .lg-thumb {
  padding: 10px 0;
  height: 100%;
  margin-bottom: -5px;
}

.lg-outer .lg-thumb-item {
  border-radius: 5px;
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border: 2px solid #FFF;
  border-radius: 4px;
  margin-bottom: 5px;
}

@media (min-width: 1025px) {
  .lg-outer .lg-thumb-item {
    -webkit-transition: border-color 0.25s ease;
    -o-transition: border-color 0.25s ease;
    transition: border-color 0.25s ease;
  }
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: #a90707;
}

.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lg-outer.lg-has-thumb .lg-item {
  padding-bottom: 120px;
}

.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0;
}

.lg-outer.lg-pull-caption-up .lg-sub-html {
  -webkit-transition: bottom 0.25s ease;
  -o-transition: bottom 0.25s ease;
  transition: bottom 0.25s ease;
}

.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  bottom: 100px;
}

.lg-outer .lg-toggle-thumb {
  background-color: #0D0A0A;
  border-radius: 2px 2px 0 0;
  color: #999;
  cursor: pointer;
  font-size: 24px;
  height: 39px;
  line-height: 27px;
  padding: 5px 0;
  position: absolute;
  right: 20px;
  text-align: center;
  top: -39px;
  width: 50px;
  outline: medium none;
  border: none;
}

.lg-outer .lg-toggle-thumb:after {
  content: "\e1ff";
}

.lg-outer .lg-toggle-thumb:hover {
  color: #FFF;
}

.lg-outer .lg-video-cont {
  display: inline-block;
  vertical-align: middle;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 0 5px;
}

.lg-outer .lg-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}

.lg-outer .lg-video .lg-object {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.lg-outer .lg-video .lg-video-play {
  width: 84px;
  height: 59px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -42px;
  margin-top: -30px;
  z-index: 1080;
  cursor: pointer;
}

.lg-outer .lg-has-vimeo .lg-video-play {
  background: url("../images/lg/vimeo-play.png") no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-vimeo:hover .lg-video-play {
  background: url("../images/lg/vimeo-play.png") no-repeat scroll 0 -58px transparent;
}

.lg-outer .lg-has-html5 .lg-video-play {
  background: transparent url("../images/lg/video-play.png") no-repeat scroll 0 0;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  width: 64px;
  opacity: 0.8;
}

.lg-outer .lg-has-html5:hover .lg-video-play {
  opacity: 1;
}

.lg-outer .lg-has-youtube .lg-video-play {
  background: url("../images/lg/youtube-play.png") no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-youtube:hover .lg-video-play {
  background: url("../images/lg/youtube-play.png") no-repeat scroll 0 -60px transparent;
}

.lg-outer .lg-video-object {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.lg-outer .lg-has-video .lg-video-object {
  visibility: hidden;
}

.lg-outer .lg-has-video.lg-video-playing .lg-object,
.lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  display: none;
}

.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  visibility: visible;
}

.lg-progress-bar {
  background-color: #333;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1083;
  opacity: 0;
  -webkit-transition: opacity 0.08s ease 0s;
  -moz-transition: opacity 0.08s ease 0s;
  -o-transition: opacity 0.08s ease 0s;
  transition: opacity 0.08s ease 0s;
}

.lg-progress-bar .lg-progress {
  background-color: #a90707;
  height: 5px;
  width: 0;
}

.lg-progress-bar.lg-start .lg-progress {
  width: 100%;
}

.lg-show-autoplay .lg-progress-bar {
  opacity: 1;
}

.lg-autoplay-button:after {
  content: "\e01d";
}

.lg-show-autoplay .lg-autoplay-button:after {
  content: "\e01a";
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap,
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

#lg-zoom-in:after {
  content: "\e311";
}

#lg-actual-size {
  font-size: 20px;
}

#lg-actual-size:after {
  content: "\e033";
}

#lg-zoom-out {
  opacity: 0.5;
  pointer-events: none;
}

#lg-zoom-out:after {
  content: "\e312";
}

.lg-zoomed #lg-zoom-out {
  opacity: 1;
  pointer-events: auto;
}

.lg-outer .lg-pager-outer {
  bottom: 60px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 1080;
  height: 10px;
}

.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  overflow: visible;
}

.lg-outer .lg-pager-cont {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  margin: 0 5px;
}

.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  box-shadow: 0 0 0 2px white inset;
}

.lg-outer .lg-pager-thumb-cont {
  background-color: #fff;
  color: #FFF;
  bottom: 100%;
  height: 83px;
  left: 0;
  margin-bottom: 20px;
  margin-left: -60px;
  opacity: 0;
  padding: 5px;
  position: absolute;
  width: 120px;
  border-radius: 3px;
  -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  -moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
}

.lg-outer .lg-pager-thumb-cont img {
  width: 100%;
  height: 100%;
}

.lg-outer .lg-pager {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  display: block;
  height: 12px;
  -webkit-transition: box-shadow 0.3s ease 0s;
  -o-transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  width: 12px;
}

.lg-outer .lg-pager:hover,
.lg-outer .lg-pager:focus {
  box-shadow: 0 0 0 8px white inset;
}

.lg-outer .lg-caret {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px dashed;
  bottom: -10px;
  display: inline-block;
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  vertical-align: middle;
  width: 0;
}

.lg-fullscreen:after {
  content: "\e20c";
}

.lg-fullscreen-on .lg-fullscreen:after {
  content: "\e20d";
}

.lg-outer #lg-dropdown-overlay {
  background-color: rgba(0, 0, 0, 0.25);
  bottom: 0;
  cursor: default;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1081;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  -o-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
}

.lg-outer.lg-dropdown-active .lg-dropdown,
.lg-outer.lg-dropdown-active #lg-dropdown-overlay {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -moz-transform: translate3d(0, 0px, 0);
  -o-transform: translate3d(0, 0px, 0);
  -ms-transform: translate3d(0, 0px, 0);
  -webkit-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
  opacity: 1;
  visibility: visible;
}

.lg-outer.lg-dropdown-active #lg-share {
  color: #FFF;
}

.lg-outer .lg-dropdown {
  background-color: #fff;
  border-radius: 2px;
  font-size: 14px;
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  -moz-transform: translate3d(0, 5px, 0);
  -o-transform: translate3d(0, 5px, 0);
  -ms-transform: translate3d(0, 5px, 0);
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
  -webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -moz-transition: -moz-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -o-transition: -o-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
}

.lg-outer .lg-dropdown:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  border: 8px solid transparent;
  border-bottom-color: #FFF;
  right: 16px;
  top: -16px;
}

.lg-outer .lg-dropdown>li:last-child {
  margin-bottom: 0px;
}

.lg-outer .lg-dropdown>li:hover a,
.lg-outer .lg-dropdown>li:hover .lg-icon {
  color: #333;
}

.lg-outer .lg-dropdown a {
  color: #333;
  display: block;
  white-space: pre;
  padding: 4px 12px;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
}

.lg-outer .lg-dropdown a:hover {
  background-color: rgba(0, 0, 0, 0.07);
}

.lg-outer .lg-dropdown .lg-dropdown-text {
  display: inline-block;
  line-height: 1;
  margin-top: -3px;
  vertical-align: middle;
}

.lg-outer .lg-dropdown .lg-icon {
  color: #333;
  display: inline-block;
  float: none;
  font-size: 20px;
  height: auto;
  line-height: 1;
  margin-right: 8px;
  padding: 0;
  vertical-align: middle;
  width: auto;
}

.lg-outer #lg-share {
  position: relative;
}

.lg-outer #lg-share:after {
  content: "\e80d";
}

.lg-outer #lg-share-facebook .lg-icon {
  color: #3b5998;
}

.lg-outer #lg-share-facebook .lg-icon:after {
  content: "\e901";
}

.lg-outer #lg-share-twitter .lg-icon {
  color: #00aced;
}

.lg-outer #lg-share-twitter .lg-icon:after {
  content: "\e904";
}

.lg-outer #lg-share-googleplus .lg-icon {
  color: #dd4b39;
}

.lg-outer #lg-share-googleplus .lg-icon:after {
  content: "\e902";
}

.lg-outer #lg-share-pinterest .lg-icon {
  color: #cb2027;
}

.lg-outer #lg-share-pinterest .lg-icon:after {
  content: "\e903";
}

.group {
  *zoom: 1;
}

.group:before,
.group:after {
  display: table;
  content: "";
  line-height: 0;
}

.group:after {
  clear: both;
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-outer * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lg-outer.lg-visible {
  opacity: 1;
}

.lg-outer.lg-css3 .lg-item.lg-prev-slide,
.lg-outer.lg-css3 .lg-item.lg-next-slide,
.lg-outer.lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  max-height: 100%;
}

.lg-outer .lg-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}

.lg-outer .lg-item {
  background: url("../images/lg/loading.gif") no-repeat scroll center center transparent;
  display: none !important;
}

.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}

.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}

.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}

.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

.lg-outer .lg-img-wrap {
  position: absolute;
  padding: 0 5px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.lg-outer .lg-item.lg-complete {
  background-image: none;
}

.lg-outer .lg-item.lg-current {
  z-index: 1060;
}

.lg-outer .lg-image {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
}

.lg-outer.lg-show-after-load .lg-item .lg-object,
.lg-outer.lg-show-after-load .lg-item .lg-video-play {
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object,
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
  opacity: 1;
}

.lg-outer .lg-empty-html {
  display: none;
}

.lg-outer.lg-hide-download #lg-download {
  display: none;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(3.2rem);
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-backdrop.in {
  opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  -moz-transition: none 0s ease 0s !important;
  -o-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-css3.lg-use-left .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
  opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-prev-slide,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  -moz-transition: opacity 0.1s ease 0s;
  -o-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-slide.lg-use-left .lg-item {
  opacity: 0;
  position: absolute;
  left: 0;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  left: -100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  left: 100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  left: 0;
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}





.box-offer-img {
  width: 200px;
  height: 100%
}

@media (max-width:1500px) {

  .box-offer-img {
    width: 200px;
    height: 100%;
  }

}

@media (max-width:1200px) {

  .box-offer-img {
    width: 250px;
    height: 200px;
  }

}

@media (max-width:991px) {
  .services .container {
    max-width: 100%;

  }

  /* .box-offer-img{
    width: 220px;
    height:170px ;
    } */

  .service span {
    font-size: 20px;
  }



}

@media (max-width:825px) {
  .box-offer-img {
    width: 200px;
    height: 170px;

  }
}

@media (max-width:770px) {
  .box-offer-img {
    width: 190px;
    height: 100px;
  }

  .box-text {
    font-size: 16px !important;
    color: #fff !important;
  }



}

@media (max-width:767px) {
  .reverse {
    flex-direction: column-reverse !important;
  }

  .margin-small {
    margin-top: 5rem;
  }


}


@media (max-width:680px) {
  .box-offer-img {
    width: 150px;
    height: 100px;
  }

  .box-text {
    font-size: 16px !important;
  }


}

@media (max-width:560px) {
  .box-offer-img {
    width: 130px;
    height: 80px;
  }

  .box-text {
    font-size: 12px !important;
  }


}

@media (max-width:500px) {
  .box-offer-img {
    width: 100px;
    height: 80px;
  }

  .box-text {
    font-size: 12px !important;
    padding-bottom: 20px !important;
  }
  .box-img{
    padding-top: 15px !important;
    padding-left: 15px !important;
  }
  .box-img img{
    width: 50px;
  }

}



@media (max-width:350px) {
  .box-offer-img {
    width: 70px;
    height: 70px;
  }

  .box-text {
    font-size: 10px !important;
  }


}

@media(max-width: 1199px){
.box-text{
  font-size: 20px !important;
}
}


.img-box {
  height: 100%;
  /* width: 100%; */
}

@media (min-width:1200px) {
  .img-box {
    height: 100%;
    width: 100%;
  }
}
@media (max-width:400px) {
  .box-offer-img {
    width: 90px;
    height: 80px;
  }

  .box-text {
    font-size: 16px !important;
  }
}



.circle {
  border-radius: 50%;
  background: #d52e28;
  width: 10px;
  height: 10px;
}

.circle-big {

  width: 12px;
  height: 12px;
}


@media (max-width:470px) {
  .info {
    font-size: 14px !important;
  }

  .info h1 {
    font-size: 25px;
  }

}

@media (max-width:400px) {
  .info {
    font-size: 12px !important;
  }

  .info h1 {
    font-size: 16px;
  }

}

.u-fsz-9 {
  font-size: 1.0rem !important;
}






.line-contact-sn,
.line-contact,
.line {
  position: relative;
}

.line::after {
  position: absolute;
  content: '';
  background: #ebd5b2;
  top: 0;
  box-sizing: border-box;
  right: 10px;
  height: 100%;
  width: 2px;
  z-index: 10;
}

.line-contact-sn::after,
.line-contact::after {
  position: absolute;
  content: '';
  background: #0007;
  top: 0;
  bottom: 0;
  margin: auto;
  box-sizing: border-box;
  right: 30px;
  height: 18px;
  width: 2px;
  z-index: 10;
}
@media (max-width:350px) {
  .box-offer-img {
    width: 70px;
    height: 60px;
  }

  .box-text {
    font-size: 12px !important;
  }


}
@media(max-width:1500px) {
  .line-contact::after {
    right: 8px;
  }

  .line-contact-sn::after {
    right: 15px;
  }
}

@media(max-width:1199px) {
  .line-contact::after {
    right: 52px;
  }

  .line-contact-sn::after {
    display: none;
  }
}

@media(max-width:991px) {
  .line-contact::after {
    display: none;
  }

  .line-contact-sn::after {
    display: none;
  }
}


.service {
  background: #00aced;
  display: flex;
  height: 208px;
  align-items: flex-end;
  cursor: pointer;
}

.service span {
  padding-left: 30px;
  padding-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
}

@media (max-width:900px) {
  .service span {
    font-size: 18px;

  }
}



.service {
  filter: grayscale(0%);
  transition: 0.5s;
}

.service:hover {
  filter: grayscale(100%);
  transition: 0.5s;
}

.half-size {
  width: 50%;
}

.about-photo {
  position: absolute;
  left: 0;
  top: 45px;
  width: 50%;
}

@media(max-width:1199px) {
  .about-photo {
    left: 0;
    right: 0;
    top: 20%;
    margin-right: auto;
    margin-left: auto;
    z-index: -1;
    opacity: 0.2;
  }

  .help-photo img {
    left: 0;
    right: 0;
    width: 100%;
    object-fit: cover;
    top: 0;
    z-index: -1;
    /* width: 100%; */
    /* height: auto !important; */
    opacity: 0.2;
  }
}
  @media(max-width:800px) {
    .help-photo img {
      width: 100%;
      height: auto !important;
    }


  }
  @media(max-width:687px) {
    .help-photo img {
      width: auto;
      object-fit: fill;
      height: auto !important;
    }


  }

  @media(max-width:1199px) {
    .about-photo {
      width: 80%;
    }

  }

  .help-text {
    z-index: 2;
  }

  .help-photo {
    /* height: 100%; */
    z-index: 1;
  }
.help img{
  width: 100%;
  object-fit: cover;
}


  .map_size {}

  .partners .swiper-wrapper {
    height: 80px;
  }

  .partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
  }

  .partners .swiper-slide {
    display: flex;
    align-items: center;
    width: auto;
    /* width: 300px; */
  }

  .partner-logo {
    width: 100%;
  }



  .heroBtn {
    position: absolute;
    bottom: 70px;
    z-index: 5;
  }

  .help-photo img {
    position: absolute;
    /* right: 0; */
  }
.help{
  overflow: hidden;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000000 !important;
  border-radius: 100%;
  width: 90px;
  height: 90px;
  background: #fff;
}

@media(max-width:1399px){
  .swiper-button-next,
  .swiper-button-prev {
    width: 60px;
    height: 60px;
  }
  .swiper-button-next img,
  .swiper-button-prev img {
    width: 24px;
  }
  .offer-text{
    font-size: 26px;
  }
}
@media(max-width:991px){
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .swiper-button-next img,
  .swiper-button-prev img {
    width: 24px;
  }
  .offer-text{
    font-size: 20px;
    padding-left: 10px;
    padding-bottom: 10px;
  }
}
@media(max-width:440px){

  .offer-text{
    font-size: 26px;
    padding-left: 10px;
    padding-bottom: 10px;
  }
}




.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 30px !important;
}

.help-photo img {
  /* position: absolute; */
  /* right: 0; */
  height: 100%;}






@media(max-width:1000px){
  .swiper-button-next,
.swiper-button-prev{
 /* display: none; */
}
}


.box:before{
	content: "";
	display: block;
	padding-top: 100%; 	/* initial ratio of 1:1*/
}

.blog-img:before{
	content: "";
	display: block;
	padding-top: 100%; 	/* initial ratio of 1:1*/
}


.offers .box{
  background: #2a34f4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;

}

.orders .box{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.box-content{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.box-img{
  padding-left: 36px;
  padding-top: 36px;
}
.box-text{
  text-align: center;
  padding-bottom: 50px;
  font-size: 30px;
  text-transform: uppercase;
  color: #fff;
}

.services{
  position: relative;
  margin-top: -104px;
  z-index: 2;
}

@media(max-width:767px){
.services{
  margin-top: 20px;
}
.heroBtn {
  position: absolute;
  bottom: 0px;
  z-index: 5;
}

.p-hero__article-header p{
  width: 90%;
}

.p-hero__article-header{
  margin-top: 50px;
}
}


.opacity{
  opacity: 1 !important;
}

.about{

background-size: 50%;
  background-position: top left;
}
@media (max-width:770px){
.about{
background-image: none;
background-size: 70%;
  background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url('../images/misc/about.png') !important;

}
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
  content: '';
}


.review-avatar img{
/* height: auto; */
width: 100%;
object-fit: cover;
object-position: center;
height: 100%;
}
.review-avatar{
  width:150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
}

@media (max-width:991px){
  .review-avatar{
    width:100px;
    height: 100px;
  }
  .review-text h2{
    font-size: 18px;
  }
  .review-text p{
    font-size: 16px;
  }
}
@media (max-width:580px){

  .review-text h2{
    font-size: 16px;
  }
  .review-text p{
    font-size: 14px;
  }
}


.review-text{
  max-width: 80ch;
}

.swiper-pagination-bullet{
background: #fff;
opacity:1;
width:10px;
height: 10px;
}
@media(max-width:500px){
  .swiper-pagination-bullet{

    width:8px;
    height: 8px;
    }
}


.swiper-pagination-bullet-active{
  background: #000000;

}

.c-header.scrolled .pt-5{
  padding-top: 10px !important;
  transition: 0.5s;
}
.pt-5{
  transition: 0.5s;
}

.blog-header{
  padding: 16px 0;
}

.blog-text{
  padding-bottom: 16px;
}

.blog-text p{
  padding-bottom: 16px;
}

.blog-text a{
  color: #2ac5f4;
  font-weight: 800;
}

@media(max-width:992px){
  .blog-header h2{
    font-size: 12px;
  }
  .blog-text p{
    font-size: 10px;
  }
  .blog-text a{
    font-size: 10px;
  }
}


@media(max-width:800px){
  .partners img{
width: 200px;
  }
}

@media(max-width:500px){
  .partners img{
width: 150px;
  }
}
@media(max-width:360px){
  .partners img{
width: 100px;
  }
}


.info{
  position: absolute;
  left: 0;
  bottom: 0;
}
.info2{display: none;}
@media(max-width:991px){
  .info{
    display:none;
  }
  .info2{
    font-size: 11px;
    display: block;
  }
}


.help a{
  font-weight: 600;
  transition: 0.5s;
}
.help a:hover{
  font-weight: 800;
  transition: 0.5s;
}

.offer-text{
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  transition: 0.5s;
  font-weight: 800;
}
.orders a:hover .offer-text{
  transition: 0.5s;
  left: 15px;
  bottom: 15px;
}


.lang{
  position: absolute  !important;
  right: 0;
  top: 0;
  color: #fff !important;
}
.lang.u-tc-black {
  color: #000 !important;
}

.swiper-button-next, .swiper-button-prev {
  position: relative;
  top: 50%;
  width: calc(var(--swiper-navigation-size)/ 44 * 27);
  height: var(--swiper-navigation-size);
margin-top: 0;
}


.rooms img{
width:100% ;
height: 300px;
object-fit: cover;
}

.rooms p{
  /* padding-top: 45px; */
  line-height: 35px;
}

.line{
  width:66px ;
  height: 5px;
  background:#B1993B ;
}

@media(max-width:1199px){
  .rooms p{
    padding-top: 15px;
    line-height: 20px;
  }

}

@media(max-width:900px){
  .rooms img{
    height: 200px;
  }

}

/* Shine */
.hover14 figure {
  position: relative;
}
.hover14 figure::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.hover14 figure:hover::before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/* Opacity #1 */
.hover11 figure img {
  opacity: 1;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.hover11 figure:hover img {
  opacity: .5;
}