@charset "UTF-8";
/*
 * Theme Name: Alisia
 * 
 * ANAGRAMA 2024
 */
/* ===== [ IMPORTANT NOTE ] ======
 * Please do not edit the compiled style.min.css file
 * (Those changes are going to be overwritten when compiled again).
 */
/* ===== [ HOW TO COMPILE ] ======
 * Prerequisites: Sass
 * 
 * [RUN COMMAND INSIDE _root_ FOLDER]
 * The following command will compile scss assets to css
 *
 → sass --watch assets/scss/style.scss:style.min.css --style compressed
 */
/*!
 * Bootstrap v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

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

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

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

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

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

h6, h5, h4, h3, h2, h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

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

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

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

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

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

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

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

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

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

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

dt {
  font-weight: 700;
}

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

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

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

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

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

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

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

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

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

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

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

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

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

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

textarea {
  resize: vertical;
}

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

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

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

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

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

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

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

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

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

output {
  display: inline-block;
}

iframe {
  border: 0;
}

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

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

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

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

.col {
  flex: 1 0 0%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1800px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.link-primary {
  color: #0d6efd;
}
.link-primary:hover, .link-primary:focus {
  color: #0a58ca;
}

.link-secondary {
  color: #6c757d;
}
.link-secondary:hover, .link-secondary:focus {
  color: #565e64;
}

.link-success {
  color: #198754;
}
.link-success:hover, .link-success:focus {
  color: #146c43;
}

.link-info {
  color: #0dcaf0;
}
.link-info:hover, .link-info:focus {
  color: #3dd5f3;
}

.link-warning {
  color: #ffc107;
}
.link-warning:hover, .link-warning:focus {
  color: #ffcd39;
}

.link-danger {
  color: #dc3545;
}
.link-danger:hover, .link-danger:focus {
  color: #b02a37;
}

.link-light {
  color: #f8f9fa;
}
.link-light:hover, .link-light:focus {
  color: #f9fafb;
}

.link-dark {
  color: #212529;
}
.link-dark:hover, .link-dark:focus {
  color: #1a1e21;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

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

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

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

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

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

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

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

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

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

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

.border {
  border: 1px solid #dee2e6 !important;
}

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

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

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

.border-end {
  border-right: 1px solid #dee2e6 !important;
}

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

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

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

.border-start {
  border-left: 1px solid #dee2e6 !important;
}

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

.border-primary {
  border-color: #0d6efd !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #198754 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #212529 !important;
}

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

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

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

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

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

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

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

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

.vw-100 {
  width: 100vw !important;
}

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

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

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

.vh-100 {
  height: 100vh !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

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

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

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

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

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

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

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

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

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

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

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

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

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

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

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

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

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

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

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

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

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1800px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
/**
 * Swiper 4.3.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 31, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-invisible-blank-slide {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* 1rem = 10px */
.display {
  font-family: "Causten-Regular";
  font-size: 30px;
  line-height: 35px;
  letter-spacing: 0.097em;
  font-weight: 400;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .display {
    font-size: 40px;
    line-height: 45px;
  }
}
@media (min-width: 992px) {
  .display {
    font-size: 54px;
    line-height: 59px;
  }
}

.display-italic {
  font-family: "ChronicleDisplay-Italic";
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .display-italic {
    font-size: 20px;
    line-height: 29px;
  }
}
@media (min-width: 992px) {
  .display-italic {
    font-size: 27px;
    line-height: 34px;
  }
}

h1, .h1 {
  font-family: "Causten-Regular";
  font-size: 19px;
  line-height: 27px;
  letter-spacing: 0.096em;
  font-weight: 400;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (min-width: 992px) {
  h1, .h1 {
    font-size: 30px;
    line-height: 44px;
  }
}

.num {
  font-family: "ChronicleText-Roman";
  font-size: 36px;
  line-height: 40px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .num {
    font-size: 40px;
    line-height: 44px;
  }
}
@media (min-width: 992px) {
  .num {
    font-size: 70px;
    line-height: 74px;
  }
}

.multi-digit {
  letter-spacing: 0.06em;
}

.ammenities_caption {
  line-height: 2.2rem !important;
}
@media (min-width: 992px) {
  .ammenities_caption {
    line-height: 1.5rem !important;
  }
}

.italic-text {
  font-family: "ChronicleDisplay-Italic";
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.01em;
  font-weight: 400;
}
@media (min-width: 768px) {
  .italic-text {
    font-size: 16px;
    line-height: 19px;
  }
}
@media (min-width: 992px) {
  .italic-text {
    font-size: 16px;
    line-height: 18px;
  }
}

.link-text {
  font-family: "Causten-Regular";
  line-height: 18px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.uppercase {
  text-transform: uppercase;
}

.m-300 {
  margin: 300px;
}

.mt-300,
.my-300 {
  margin-top: 300px;
}

.mr-300,
.mx-300 {
  margin-right: 300px;
}

.mb-300,
.my-300 {
  margin-bottom: 300px;
}

.ml-300,
.mx-300 {
  margin-left: 300px;
}

.m-295 {
  margin: 295px;
}

.mt-295,
.my-295 {
  margin-top: 295px;
}

.mr-295,
.mx-295 {
  margin-right: 295px;
}

.mb-295,
.my-295 {
  margin-bottom: 295px;
}

.ml-295,
.mx-295 {
  margin-left: 295px;
}

.m-290 {
  margin: 290px;
}

.mt-290,
.my-290 {
  margin-top: 290px;
}

.mr-290,
.mx-290 {
  margin-right: 290px;
}

.mb-290,
.my-290 {
  margin-bottom: 290px;
}

.ml-290,
.mx-290 {
  margin-left: 290px;
}

.m-285 {
  margin: 285px;
}

.mt-285,
.my-285 {
  margin-top: 285px;
}

.mr-285,
.mx-285 {
  margin-right: 285px;
}

.mb-285,
.my-285 {
  margin-bottom: 285px;
}

.ml-285,
.mx-285 {
  margin-left: 285px;
}

.m-280 {
  margin: 280px;
}

.mt-280,
.my-280 {
  margin-top: 280px;
}

.mr-280,
.mx-280 {
  margin-right: 280px;
}

.mb-280,
.my-280 {
  margin-bottom: 280px;
}

.ml-280,
.mx-280 {
  margin-left: 280px;
}

.m-275 {
  margin: 275px;
}

.mt-275,
.my-275 {
  margin-top: 275px;
}

.mr-275,
.mx-275 {
  margin-right: 275px;
}

.mb-275,
.my-275 {
  margin-bottom: 275px;
}

.ml-275,
.mx-275 {
  margin-left: 275px;
}

.m-270 {
  margin: 270px;
}

.mt-270,
.my-270 {
  margin-top: 270px;
}

.mr-270,
.mx-270 {
  margin-right: 270px;
}

.mb-270,
.my-270 {
  margin-bottom: 270px;
}

.ml-270,
.mx-270 {
  margin-left: 270px;
}

.m-265 {
  margin: 265px;
}

.mt-265,
.my-265 {
  margin-top: 265px;
}

.mr-265,
.mx-265 {
  margin-right: 265px;
}

.mb-265,
.my-265 {
  margin-bottom: 265px;
}

.ml-265,
.mx-265 {
  margin-left: 265px;
}

.m-260 {
  margin: 260px;
}

.mt-260,
.my-260 {
  margin-top: 260px;
}

.mr-260,
.mx-260 {
  margin-right: 260px;
}

.mb-260,
.my-260 {
  margin-bottom: 260px;
}

.ml-260,
.mx-260 {
  margin-left: 260px;
}

.m-255 {
  margin: 255px;
}

.mt-255,
.my-255 {
  margin-top: 255px;
}

.mr-255,
.mx-255 {
  margin-right: 255px;
}

.mb-255,
.my-255 {
  margin-bottom: 255px;
}

.ml-255,
.mx-255 {
  margin-left: 255px;
}

.m-250 {
  margin: 250px;
}

.mt-250,
.my-250 {
  margin-top: 250px;
}

.mr-250,
.mx-250 {
  margin-right: 250px;
}

.mb-250,
.my-250 {
  margin-bottom: 250px;
}

.ml-250,
.mx-250 {
  margin-left: 250px;
}

.m-245 {
  margin: 245px;
}

.mt-245,
.my-245 {
  margin-top: 245px;
}

.mr-245,
.mx-245 {
  margin-right: 245px;
}

.mb-245,
.my-245 {
  margin-bottom: 245px;
}

.ml-245,
.mx-245 {
  margin-left: 245px;
}

.m-240 {
  margin: 240px;
}

.mt-240,
.my-240 {
  margin-top: 240px;
}

.mr-240,
.mx-240 {
  margin-right: 240px;
}

.mb-240,
.my-240 {
  margin-bottom: 240px;
}

.ml-240,
.mx-240 {
  margin-left: 240px;
}

.m-235 {
  margin: 235px;
}

.mt-235,
.my-235 {
  margin-top: 235px;
}

.mr-235,
.mx-235 {
  margin-right: 235px;
}

.mb-235,
.my-235 {
  margin-bottom: 235px;
}

.ml-235,
.mx-235 {
  margin-left: 235px;
}

.m-230 {
  margin: 230px;
}

.mt-230,
.my-230 {
  margin-top: 230px;
}

.mr-230,
.mx-230 {
  margin-right: 230px;
}

.mb-230,
.my-230 {
  margin-bottom: 230px;
}

.ml-230,
.mx-230 {
  margin-left: 230px;
}

.m-225 {
  margin: 225px;
}

.mt-225,
.my-225 {
  margin-top: 225px;
}

.mr-225,
.mx-225 {
  margin-right: 225px;
}

.mb-225,
.my-225 {
  margin-bottom: 225px;
}

.ml-225,
.mx-225 {
  margin-left: 225px;
}

.m-220 {
  margin: 220px;
}

.mt-220,
.my-220 {
  margin-top: 220px;
}

.mr-220,
.mx-220 {
  margin-right: 220px;
}

.mb-220,
.my-220 {
  margin-bottom: 220px;
}

.ml-220,
.mx-220 {
  margin-left: 220px;
}

.m-215 {
  margin: 215px;
}

.mt-215,
.my-215 {
  margin-top: 215px;
}

.mr-215,
.mx-215 {
  margin-right: 215px;
}

.mb-215,
.my-215 {
  margin-bottom: 215px;
}

.ml-215,
.mx-215 {
  margin-left: 215px;
}

.m-210 {
  margin: 210px;
}

.mt-210,
.my-210 {
  margin-top: 210px;
}

.mr-210,
.mx-210 {
  margin-right: 210px;
}

.mb-210,
.my-210 {
  margin-bottom: 210px;
}

.ml-210,
.mx-210 {
  margin-left: 210px;
}

.m-205 {
  margin: 205px;
}

.mt-205,
.my-205 {
  margin-top: 205px;
}

.mr-205,
.mx-205 {
  margin-right: 205px;
}

.mb-205,
.my-205 {
  margin-bottom: 205px;
}

.ml-205,
.mx-205 {
  margin-left: 205px;
}

.m-200 {
  margin: 200px;
}

.mt-200,
.my-200 {
  margin-top: 200px;
}

.mr-200,
.mx-200 {
  margin-right: 200px;
}

.mb-200,
.my-200 {
  margin-bottom: 200px;
}

.ml-200,
.mx-200 {
  margin-left: 200px;
}

.m-195 {
  margin: 195px;
}

.mt-195,
.my-195 {
  margin-top: 195px;
}

.mr-195,
.mx-195 {
  margin-right: 195px;
}

.mb-195,
.my-195 {
  margin-bottom: 195px;
}

.ml-195,
.mx-195 {
  margin-left: 195px;
}

.m-190 {
  margin: 190px;
}

.mt-190,
.my-190 {
  margin-top: 190px;
}

.mr-190,
.mx-190 {
  margin-right: 190px;
}

.mb-190,
.my-190 {
  margin-bottom: 190px;
}

.ml-190,
.mx-190 {
  margin-left: 190px;
}

.m-185 {
  margin: 185px;
}

.mt-185,
.my-185 {
  margin-top: 185px;
}

.mr-185,
.mx-185 {
  margin-right: 185px;
}

.mb-185,
.my-185 {
  margin-bottom: 185px;
}

.ml-185,
.mx-185 {
  margin-left: 185px;
}

.m-180 {
  margin: 180px;
}

.mt-180,
.my-180 {
  margin-top: 180px;
}

.mr-180,
.mx-180 {
  margin-right: 180px;
}

.mb-180,
.my-180 {
  margin-bottom: 180px;
}

.ml-180,
.mx-180 {
  margin-left: 180px;
}

.m-175 {
  margin: 175px;
}

.mt-175,
.my-175 {
  margin-top: 175px;
}

.mr-175,
.mx-175 {
  margin-right: 175px;
}

.mb-175,
.my-175 {
  margin-bottom: 175px;
}

.ml-175,
.mx-175 {
  margin-left: 175px;
}

.m-170 {
  margin: 170px;
}

.mt-170,
.my-170 {
  margin-top: 170px;
}

.mr-170,
.mx-170 {
  margin-right: 170px;
}

.mb-170,
.my-170 {
  margin-bottom: 170px;
}

.ml-170,
.mx-170 {
  margin-left: 170px;
}

.m-165 {
  margin: 165px;
}

.mt-165,
.my-165 {
  margin-top: 165px;
}

.mr-165,
.mx-165 {
  margin-right: 165px;
}

.mb-165,
.my-165 {
  margin-bottom: 165px;
}

.ml-165,
.mx-165 {
  margin-left: 165px;
}

.m-160 {
  margin: 160px;
}

.mt-160,
.my-160 {
  margin-top: 160px;
}

.mr-160,
.mx-160 {
  margin-right: 160px;
}

.mb-160,
.my-160 {
  margin-bottom: 160px;
}

.ml-160,
.mx-160 {
  margin-left: 160px;
}

.m-155 {
  margin: 155px;
}

.mt-155,
.my-155 {
  margin-top: 155px;
}

.mr-155,
.mx-155 {
  margin-right: 155px;
}

.mb-155,
.my-155 {
  margin-bottom: 155px;
}

.ml-155,
.mx-155 {
  margin-left: 155px;
}

.m-150 {
  margin: 150px;
}

.mt-150,
.my-150 {
  margin-top: 150px;
}

.mr-150,
.mx-150 {
  margin-right: 150px;
}

.mb-150,
.my-150 {
  margin-bottom: 150px;
}

.ml-150,
.mx-150 {
  margin-left: 150px;
}

.m-145 {
  margin: 145px;
}

.mt-145,
.my-145 {
  margin-top: 145px;
}

.mr-145,
.mx-145 {
  margin-right: 145px;
}

.mb-145,
.my-145 {
  margin-bottom: 145px;
}

.ml-145,
.mx-145 {
  margin-left: 145px;
}

.m-140 {
  margin: 140px;
}

.mt-140,
.my-140 {
  margin-top: 140px;
}

.mr-140,
.mx-140 {
  margin-right: 140px;
}

.mb-140,
.my-140 {
  margin-bottom: 140px;
}

.ml-140,
.mx-140 {
  margin-left: 140px;
}

.m-135 {
  margin: 135px;
}

.mt-135,
.my-135 {
  margin-top: 135px;
}

.mr-135,
.mx-135 {
  margin-right: 135px;
}

.mb-135,
.my-135 {
  margin-bottom: 135px;
}

.ml-135,
.mx-135 {
  margin-left: 135px;
}

.m-130 {
  margin: 130px;
}

.mt-130,
.my-130 {
  margin-top: 130px;
}

.mr-130,
.mx-130 {
  margin-right: 130px;
}

.mb-130,
.my-130 {
  margin-bottom: 130px;
}

.ml-130,
.mx-130 {
  margin-left: 130px;
}

.m-125 {
  margin: 125px;
}

.mt-125,
.my-125 {
  margin-top: 125px;
}

.mr-125,
.mx-125 {
  margin-right: 125px;
}

.mb-125,
.my-125 {
  margin-bottom: 125px;
}

.ml-125,
.mx-125 {
  margin-left: 125px;
}

.m-120 {
  margin: 120px;
}

.mt-120,
.my-120 {
  margin-top: 120px;
}

.mr-120,
.mx-120 {
  margin-right: 120px;
}

.mb-120,
.my-120 {
  margin-bottom: 120px;
}

.ml-120,
.mx-120 {
  margin-left: 120px;
}

.m-115 {
  margin: 115px;
}

.mt-115,
.my-115 {
  margin-top: 115px;
}

.mr-115,
.mx-115 {
  margin-right: 115px;
}

.mb-115,
.my-115 {
  margin-bottom: 115px;
}

.ml-115,
.mx-115 {
  margin-left: 115px;
}

.m-110 {
  margin: 110px;
}

.mt-110,
.my-110 {
  margin-top: 110px;
}

.mr-110,
.mx-110 {
  margin-right: 110px;
}

.mb-110,
.my-110 {
  margin-bottom: 110px;
}

.ml-110,
.mx-110 {
  margin-left: 110px;
}

.m-105 {
  margin: 105px;
}

.mt-105,
.my-105 {
  margin-top: 105px;
}

.mr-105,
.mx-105 {
  margin-right: 105px;
}

.mb-105,
.my-105 {
  margin-bottom: 105px;
}

.ml-105,
.mx-105 {
  margin-left: 105px;
}

.m-100 {
  margin: 100px;
}

.mt-100,
.my-100 {
  margin-top: 100px;
}

.mr-100,
.mx-100 {
  margin-right: 100px;
}

.mb-100,
.my-100 {
  margin-bottom: 100px;
}

.ml-100,
.mx-100 {
  margin-left: 100px;
}

.m-95 {
  margin: 95px;
}

.mt-95,
.my-95 {
  margin-top: 95px;
}

.mr-95,
.mx-95 {
  margin-right: 95px;
}

.mb-95,
.my-95 {
  margin-bottom: 95px;
}

.ml-95,
.mx-95 {
  margin-left: 95px;
}

.m-90 {
  margin: 90px;
}

.mt-90,
.my-90 {
  margin-top: 90px;
}

.mr-90,
.mx-90 {
  margin-right: 90px;
}

.mb-90,
.my-90 {
  margin-bottom: 90px;
}

.ml-90,
.mx-90 {
  margin-left: 90px;
}

.m-85 {
  margin: 85px;
}

.mt-85,
.my-85 {
  margin-top: 85px;
}

.mr-85,
.mx-85 {
  margin-right: 85px;
}

.mb-85,
.my-85 {
  margin-bottom: 85px;
}

.ml-85,
.mx-85 {
  margin-left: 85px;
}

.m-80 {
  margin: 80px;
}

.mt-80,
.my-80 {
  margin-top: 80px;
}

.mr-80,
.mx-80 {
  margin-right: 80px;
}

.mb-80,
.my-80 {
  margin-bottom: 80px;
}

.ml-80,
.mx-80 {
  margin-left: 80px;
}

.m-75 {
  margin: 75px;
}

.mt-75,
.my-75 {
  margin-top: 75px;
}

.mr-75,
.mx-75 {
  margin-right: 75px;
}

.mb-75,
.my-75 {
  margin-bottom: 75px;
}

.ml-75,
.mx-75 {
  margin-left: 75px;
}

.m-70 {
  margin: 70px;
}

.mt-70,
.my-70 {
  margin-top: 70px;
}

.mr-70,
.mx-70 {
  margin-right: 70px;
}

.mb-70,
.my-70 {
  margin-bottom: 70px;
}

.ml-70,
.mx-70 {
  margin-left: 70px;
}

.m-65 {
  margin: 65px;
}

.mt-65,
.my-65 {
  margin-top: 65px;
}

.mr-65,
.mx-65 {
  margin-right: 65px;
}

.mb-65,
.my-65 {
  margin-bottom: 65px;
}

.ml-65,
.mx-65 {
  margin-left: 65px;
}

.m-60 {
  margin: 60px;
}

.mt-60,
.my-60 {
  margin-top: 60px;
}

.mr-60,
.mx-60 {
  margin-right: 60px;
}

.mb-60,
.my-60 {
  margin-bottom: 60px;
}

.ml-60,
.mx-60 {
  margin-left: 60px;
}

.m-55 {
  margin: 55px;
}

.mt-55,
.my-55 {
  margin-top: 55px;
}

.mr-55,
.mx-55 {
  margin-right: 55px;
}

.mb-55,
.my-55 {
  margin-bottom: 55px;
}

.ml-55,
.mx-55 {
  margin-left: 55px;
}

.m-50 {
  margin: 50px;
}

.mt-50,
.my-50 {
  margin-top: 50px;
}

.mr-50,
.mx-50 {
  margin-right: 50px;
}

.mb-50,
.my-50 {
  margin-bottom: 50px;
}

.ml-50,
.mx-50 {
  margin-left: 50px;
}

.m-45 {
  margin: 45px;
}

.mt-45,
.my-45 {
  margin-top: 45px;
}

.mr-45,
.mx-45 {
  margin-right: 45px;
}

.mb-45,
.my-45 {
  margin-bottom: 45px;
}

.ml-45,
.mx-45 {
  margin-left: 45px;
}

.m-40 {
  margin: 40px;
}

.mt-40,
.my-40 {
  margin-top: 40px;
}

.mr-40,
.mx-40 {
  margin-right: 40px;
}

.mb-40,
.my-40 {
  margin-bottom: 40px;
}

.ml-40,
.mx-40 {
  margin-left: 40px;
}

.m-35 {
  margin: 35px;
}

.mt-35,
.my-35 {
  margin-top: 35px;
}

.mr-35,
.mx-35 {
  margin-right: 35px;
}

.mb-35,
.my-35 {
  margin-bottom: 35px;
}

.ml-35,
.mx-35 {
  margin-left: 35px;
}

.m-30 {
  margin: 30px;
}

.mt-30,
.my-30 {
  margin-top: 30px;
}

.mr-30,
.mx-30 {
  margin-right: 30px;
}

.mb-30,
.my-30 {
  margin-bottom: 30px;
}

.ml-30,
.mx-30 {
  margin-left: 30px;
}

.m-25 {
  margin: 25px;
}

.mt-25,
.my-25 {
  margin-top: 25px;
}

.mr-25,
.mx-25 {
  margin-right: 25px;
}

.mb-25,
.my-25 {
  margin-bottom: 25px;
}

.ml-25,
.mx-25 {
  margin-left: 25px;
}

.m-20 {
  margin: 20px;
}

.mt-20,
.my-20 {
  margin-top: 20px;
}

.mr-20,
.mx-20 {
  margin-right: 20px;
}

.mb-20,
.my-20 {
  margin-bottom: 20px;
}

.ml-20,
.mx-20 {
  margin-left: 20px;
}

.m-15 {
  margin: 15px;
}

.mt-15,
.my-15 {
  margin-top: 15px;
}

.mr-15,
.mx-15 {
  margin-right: 15px;
}

.mb-15,
.my-15 {
  margin-bottom: 15px;
}

.ml-15,
.mx-15 {
  margin-left: 15px;
}

.m-10 {
  margin: 10px;
}

.mt-10,
.my-10 {
  margin-top: 10px;
}

.mr-10,
.mx-10 {
  margin-right: 10px;
}

.mb-10,
.my-10 {
  margin-bottom: 10px;
}

.ml-10,
.mx-10 {
  margin-left: 10px;
}

.m-5 {
  margin: 5px;
}

.mt-5,
.my-5 {
  margin-top: 5px;
}

.mr-5,
.mx-5 {
  margin-right: 5px;
}

.mb-5,
.my-5 {
  margin-bottom: 5px;
}

.ml-5,
.mx-5 {
  margin-left: 5px;
}

.m-0 {
  margin: 0px;
}

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

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

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

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

.p-300 {
  padding: 300px;
}

.pt-300,
.py-300 {
  padding-top: 300px;
}

.pr-300,
.px-300 {
  padding-right: 300px;
}

.pb-300,
.py-300 {
  padding-bottom: 300px;
}

.pl-300,
.px-300 {
  padding-left: 300px;
}

.p-295 {
  padding: 295px;
}

.pt-295,
.py-295 {
  padding-top: 295px;
}

.pr-295,
.px-295 {
  padding-right: 295px;
}

.pb-295,
.py-295 {
  padding-bottom: 295px;
}

.pl-295,
.px-295 {
  padding-left: 295px;
}

.p-290 {
  padding: 290px;
}

.pt-290,
.py-290 {
  padding-top: 290px;
}

.pr-290,
.px-290 {
  padding-right: 290px;
}

.pb-290,
.py-290 {
  padding-bottom: 290px;
}

.pl-290,
.px-290 {
  padding-left: 290px;
}

.p-285 {
  padding: 285px;
}

.pt-285,
.py-285 {
  padding-top: 285px;
}

.pr-285,
.px-285 {
  padding-right: 285px;
}

.pb-285,
.py-285 {
  padding-bottom: 285px;
}

.pl-285,
.px-285 {
  padding-left: 285px;
}

.p-280 {
  padding: 280px;
}

.pt-280,
.py-280 {
  padding-top: 280px;
}

.pr-280,
.px-280 {
  padding-right: 280px;
}

.pb-280,
.py-280 {
  padding-bottom: 280px;
}

.pl-280,
.px-280 {
  padding-left: 280px;
}

.p-275 {
  padding: 275px;
}

.pt-275,
.py-275 {
  padding-top: 275px;
}

.pr-275,
.px-275 {
  padding-right: 275px;
}

.pb-275,
.py-275 {
  padding-bottom: 275px;
}

.pl-275,
.px-275 {
  padding-left: 275px;
}

.p-270 {
  padding: 270px;
}

.pt-270,
.py-270 {
  padding-top: 270px;
}

.pr-270,
.px-270 {
  padding-right: 270px;
}

.pb-270,
.py-270 {
  padding-bottom: 270px;
}

.pl-270,
.px-270 {
  padding-left: 270px;
}

.p-265 {
  padding: 265px;
}

.pt-265,
.py-265 {
  padding-top: 265px;
}

.pr-265,
.px-265 {
  padding-right: 265px;
}

.pb-265,
.py-265 {
  padding-bottom: 265px;
}

.pl-265,
.px-265 {
  padding-left: 265px;
}

.p-260 {
  padding: 260px;
}

.pt-260,
.py-260 {
  padding-top: 260px;
}

.pr-260,
.px-260 {
  padding-right: 260px;
}

.pb-260,
.py-260 {
  padding-bottom: 260px;
}

.pl-260,
.px-260 {
  padding-left: 260px;
}

.p-255 {
  padding: 255px;
}

.pt-255,
.py-255 {
  padding-top: 255px;
}

.pr-255,
.px-255 {
  padding-right: 255px;
}

.pb-255,
.py-255 {
  padding-bottom: 255px;
}

.pl-255,
.px-255 {
  padding-left: 255px;
}

.p-250 {
  padding: 250px;
}

.pt-250,
.py-250 {
  padding-top: 250px;
}

.pr-250,
.px-250 {
  padding-right: 250px;
}

.pb-250,
.py-250 {
  padding-bottom: 250px;
}

.pl-250,
.px-250 {
  padding-left: 250px;
}

.p-245 {
  padding: 245px;
}

.pt-245,
.py-245 {
  padding-top: 245px;
}

.pr-245,
.px-245 {
  padding-right: 245px;
}

.pb-245,
.py-245 {
  padding-bottom: 245px;
}

.pl-245,
.px-245 {
  padding-left: 245px;
}

.p-240 {
  padding: 240px;
}

.pt-240,
.py-240 {
  padding-top: 240px;
}

.pr-240,
.px-240 {
  padding-right: 240px;
}

.pb-240,
.py-240 {
  padding-bottom: 240px;
}

.pl-240,
.px-240 {
  padding-left: 240px;
}

.p-235 {
  padding: 235px;
}

.pt-235,
.py-235 {
  padding-top: 235px;
}

.pr-235,
.px-235 {
  padding-right: 235px;
}

.pb-235,
.py-235 {
  padding-bottom: 235px;
}

.pl-235,
.px-235 {
  padding-left: 235px;
}

.p-230 {
  padding: 230px;
}

.pt-230,
.py-230 {
  padding-top: 230px;
}

.pr-230,
.px-230 {
  padding-right: 230px;
}

.pb-230,
.py-230 {
  padding-bottom: 230px;
}

.pl-230,
.px-230 {
  padding-left: 230px;
}

.p-225 {
  padding: 225px;
}

.pt-225,
.py-225 {
  padding-top: 225px;
}

.pr-225,
.px-225 {
  padding-right: 225px;
}

.pb-225,
.py-225 {
  padding-bottom: 225px;
}

.pl-225,
.px-225 {
  padding-left: 225px;
}

.p-220 {
  padding: 220px;
}

.pt-220,
.py-220 {
  padding-top: 220px;
}

.pr-220,
.px-220 {
  padding-right: 220px;
}

.pb-220,
.py-220 {
  padding-bottom: 220px;
}

.pl-220,
.px-220 {
  padding-left: 220px;
}

.p-215 {
  padding: 215px;
}

.pt-215,
.py-215 {
  padding-top: 215px;
}

.pr-215,
.px-215 {
  padding-right: 215px;
}

.pb-215,
.py-215 {
  padding-bottom: 215px;
}

.pl-215,
.px-215 {
  padding-left: 215px;
}

.p-210 {
  padding: 210px;
}

.pt-210,
.py-210 {
  padding-top: 210px;
}

.pr-210,
.px-210 {
  padding-right: 210px;
}

.pb-210,
.py-210 {
  padding-bottom: 210px;
}

.pl-210,
.px-210 {
  padding-left: 210px;
}

.p-205 {
  padding: 205px;
}

.pt-205,
.py-205 {
  padding-top: 205px;
}

.pr-205,
.px-205 {
  padding-right: 205px;
}

.pb-205,
.py-205 {
  padding-bottom: 205px;
}

.pl-205,
.px-205 {
  padding-left: 205px;
}

.p-200 {
  padding: 200px;
}

.pt-200,
.py-200 {
  padding-top: 200px;
}

.pr-200,
.px-200 {
  padding-right: 200px;
}

.pb-200,
.py-200 {
  padding-bottom: 200px;
}

.pl-200,
.px-200 {
  padding-left: 200px;
}

.p-195 {
  padding: 195px;
}

.pt-195,
.py-195 {
  padding-top: 195px;
}

.pr-195,
.px-195 {
  padding-right: 195px;
}

.pb-195,
.py-195 {
  padding-bottom: 195px;
}

.pl-195,
.px-195 {
  padding-left: 195px;
}

.p-190 {
  padding: 190px;
}

.pt-190,
.py-190 {
  padding-top: 190px;
}

.pr-190,
.px-190 {
  padding-right: 190px;
}

.pb-190,
.py-190 {
  padding-bottom: 190px;
}

.pl-190,
.px-190 {
  padding-left: 190px;
}

.p-185 {
  padding: 185px;
}

.pt-185,
.py-185 {
  padding-top: 185px;
}

.pr-185,
.px-185 {
  padding-right: 185px;
}

.pb-185,
.py-185 {
  padding-bottom: 185px;
}

.pl-185,
.px-185 {
  padding-left: 185px;
}

.p-180 {
  padding: 180px;
}

.pt-180,
.py-180 {
  padding-top: 180px;
}

.pr-180,
.px-180 {
  padding-right: 180px;
}

.pb-180,
.py-180 {
  padding-bottom: 180px;
}

.pl-180,
.px-180 {
  padding-left: 180px;
}

.p-175 {
  padding: 175px;
}

.pt-175,
.py-175 {
  padding-top: 175px;
}

.pr-175,
.px-175 {
  padding-right: 175px;
}

.pb-175,
.py-175 {
  padding-bottom: 175px;
}

.pl-175,
.px-175 {
  padding-left: 175px;
}

.p-170 {
  padding: 170px;
}

.pt-170,
.py-170 {
  padding-top: 170px;
}

.pr-170,
.px-170 {
  padding-right: 170px;
}

.pb-170,
.py-170 {
  padding-bottom: 170px;
}

.pl-170,
.px-170 {
  padding-left: 170px;
}

.p-165 {
  padding: 165px;
}

.pt-165,
.py-165 {
  padding-top: 165px;
}

.pr-165,
.px-165 {
  padding-right: 165px;
}

.pb-165,
.py-165 {
  padding-bottom: 165px;
}

.pl-165,
.px-165 {
  padding-left: 165px;
}

.p-160 {
  padding: 160px;
}

.pt-160,
.py-160 {
  padding-top: 160px;
}

.pr-160,
.px-160 {
  padding-right: 160px;
}

.pb-160,
.py-160 {
  padding-bottom: 160px;
}

.pl-160,
.px-160 {
  padding-left: 160px;
}

.p-155 {
  padding: 155px;
}

.pt-155,
.py-155 {
  padding-top: 155px;
}

.pr-155,
.px-155 {
  padding-right: 155px;
}

.pb-155,
.py-155 {
  padding-bottom: 155px;
}

.pl-155,
.px-155 {
  padding-left: 155px;
}

.p-150 {
  padding: 150px;
}

.pt-150,
.py-150 {
  padding-top: 150px;
}

.pr-150,
.px-150 {
  padding-right: 150px;
}

.pb-150,
.py-150 {
  padding-bottom: 150px;
}

.pl-150,
.px-150 {
  padding-left: 150px;
}

.p-145 {
  padding: 145px;
}

.pt-145,
.py-145 {
  padding-top: 145px;
}

.pr-145,
.px-145 {
  padding-right: 145px;
}

.pb-145,
.py-145 {
  padding-bottom: 145px;
}

.pl-145,
.px-145 {
  padding-left: 145px;
}

.p-140 {
  padding: 140px;
}

.pt-140,
.py-140 {
  padding-top: 140px;
}

.pr-140,
.px-140 {
  padding-right: 140px;
}

.pb-140,
.py-140 {
  padding-bottom: 140px;
}

.pl-140,
.px-140 {
  padding-left: 140px;
}

.p-135 {
  padding: 135px;
}

.pt-135,
.py-135 {
  padding-top: 135px;
}

.pr-135,
.px-135 {
  padding-right: 135px;
}

.pb-135,
.py-135 {
  padding-bottom: 135px;
}

.pl-135,
.px-135 {
  padding-left: 135px;
}

.p-130 {
  padding: 130px;
}

.pt-130,
.py-130 {
  padding-top: 130px;
}

.pr-130,
.px-130 {
  padding-right: 130px;
}

.pb-130,
.py-130 {
  padding-bottom: 130px;
}

.pl-130,
.px-130 {
  padding-left: 130px;
}

.p-125 {
  padding: 125px;
}

.pt-125,
.py-125 {
  padding-top: 125px;
}

.pr-125,
.px-125 {
  padding-right: 125px;
}

.pb-125,
.py-125 {
  padding-bottom: 125px;
}

.pl-125,
.px-125 {
  padding-left: 125px;
}

.p-120 {
  padding: 120px;
}

.pt-120,
.py-120 {
  padding-top: 120px;
}

.pr-120,
.px-120 {
  padding-right: 120px;
}

.pb-120,
.py-120 {
  padding-bottom: 120px;
}

.pl-120,
.px-120 {
  padding-left: 120px;
}

.p-115 {
  padding: 115px;
}

.pt-115,
.py-115 {
  padding-top: 115px;
}

.pr-115,
.px-115 {
  padding-right: 115px;
}

.pb-115,
.py-115 {
  padding-bottom: 115px;
}

.pl-115,
.px-115 {
  padding-left: 115px;
}

.p-110 {
  padding: 110px;
}

.pt-110,
.py-110 {
  padding-top: 110px;
}

.pr-110,
.px-110 {
  padding-right: 110px;
}

.pb-110,
.py-110 {
  padding-bottom: 110px;
}

.pl-110,
.px-110 {
  padding-left: 110px;
}

.p-105 {
  padding: 105px;
}

.pt-105,
.py-105 {
  padding-top: 105px;
}

.pr-105,
.px-105 {
  padding-right: 105px;
}

.pb-105,
.py-105 {
  padding-bottom: 105px;
}

.pl-105,
.px-105 {
  padding-left: 105px;
}

.p-100 {
  padding: 100px;
}

.pt-100,
.py-100 {
  padding-top: 100px;
}

.pr-100,
.px-100 {
  padding-right: 100px;
}

.pb-100,
.py-100 {
  padding-bottom: 100px;
}

.pl-100,
.px-100 {
  padding-left: 100px;
}

.p-95 {
  padding: 95px;
}

.pt-95,
.py-95 {
  padding-top: 95px;
}

.pr-95,
.px-95 {
  padding-right: 95px;
}

.pb-95,
.py-95 {
  padding-bottom: 95px;
}

.pl-95,
.px-95 {
  padding-left: 95px;
}

.p-90 {
  padding: 90px;
}

.pt-90,
.py-90 {
  padding-top: 90px;
}

.pr-90,
.px-90 {
  padding-right: 90px;
}

.pb-90,
.py-90 {
  padding-bottom: 90px;
}

.pl-90,
.px-90 {
  padding-left: 90px;
}

.p-85 {
  padding: 85px;
}

.pt-85,
.py-85 {
  padding-top: 85px;
}

.pr-85,
.px-85 {
  padding-right: 85px;
}

.pb-85,
.py-85 {
  padding-bottom: 85px;
}

.pl-85,
.px-85 {
  padding-left: 85px;
}

.p-80 {
  padding: 80px;
}

.pt-80,
.py-80 {
  padding-top: 80px;
}

.pr-80,
.px-80 {
  padding-right: 80px;
}

.pb-80,
.py-80 {
  padding-bottom: 80px;
}

.pl-80,
.px-80 {
  padding-left: 80px;
}

.p-75 {
  padding: 75px;
}

.pt-75,
.py-75 {
  padding-top: 75px;
}

.pr-75,
.px-75 {
  padding-right: 75px;
}

.pb-75,
.py-75 {
  padding-bottom: 75px;
}

.pl-75,
.px-75 {
  padding-left: 75px;
}

.p-70 {
  padding: 70px;
}

.pt-70,
.py-70 {
  padding-top: 70px;
}

.pr-70,
.px-70 {
  padding-right: 70px;
}

.pb-70,
.py-70 {
  padding-bottom: 70px;
}

.pl-70,
.px-70 {
  padding-left: 70px;
}

.p-65 {
  padding: 65px;
}

.pt-65,
.py-65 {
  padding-top: 65px;
}

.pr-65,
.px-65 {
  padding-right: 65px;
}

.pb-65,
.py-65 {
  padding-bottom: 65px;
}

.pl-65,
.px-65 {
  padding-left: 65px;
}

.p-60 {
  padding: 60px;
}

.pt-60,
.py-60 {
  padding-top: 60px;
}

.pr-60,
.px-60 {
  padding-right: 60px;
}

.pb-60,
.py-60 {
  padding-bottom: 60px;
}

.pl-60,
.px-60 {
  padding-left: 60px;
}

.p-55 {
  padding: 55px;
}

.pt-55,
.py-55 {
  padding-top: 55px;
}

.pr-55,
.px-55 {
  padding-right: 55px;
}

.pb-55,
.py-55 {
  padding-bottom: 55px;
}

.pl-55,
.px-55 {
  padding-left: 55px;
}

.p-50 {
  padding: 50px;
}

.pt-50,
.py-50 {
  padding-top: 50px;
}

.pr-50,
.px-50 {
  padding-right: 50px;
}

.pb-50,
.py-50 {
  padding-bottom: 50px;
}

.pl-50,
.px-50 {
  padding-left: 50px;
}

.p-45 {
  padding: 45px;
}

.pt-45,
.py-45 {
  padding-top: 45px;
}

.pr-45,
.px-45 {
  padding-right: 45px;
}

.pb-45,
.py-45 {
  padding-bottom: 45px;
}

.pl-45,
.px-45 {
  padding-left: 45px;
}

.p-40 {
  padding: 40px;
}

.pt-40,
.py-40 {
  padding-top: 40px;
}

.pr-40,
.px-40 {
  padding-right: 40px;
}

.pb-40,
.py-40 {
  padding-bottom: 40px;
}

.pl-40,
.px-40 {
  padding-left: 40px;
}

.p-35 {
  padding: 35px;
}

.pt-35,
.py-35 {
  padding-top: 35px;
}

.pr-35,
.px-35 {
  padding-right: 35px;
}

.pb-35,
.py-35 {
  padding-bottom: 35px;
}

.pl-35,
.px-35 {
  padding-left: 35px;
}

.p-30 {
  padding: 30px;
}

.pt-30,
.py-30 {
  padding-top: 30px;
}

.pr-30,
.px-30 {
  padding-right: 30px;
}

.pb-30,
.py-30 {
  padding-bottom: 30px;
}

.pl-30,
.px-30 {
  padding-left: 30px;
}

.p-25 {
  padding: 25px;
}

.pt-25,
.py-25 {
  padding-top: 25px;
}

.pr-25,
.px-25 {
  padding-right: 25px;
}

.pb-25,
.py-25 {
  padding-bottom: 25px;
}

.pl-25,
.px-25 {
  padding-left: 25px;
}

.p-20 {
  padding: 20px;
}

.pt-20,
.py-20 {
  padding-top: 20px;
}

.pr-20,
.px-20 {
  padding-right: 20px;
}

.pb-20,
.py-20 {
  padding-bottom: 20px;
}

.pl-20,
.px-20 {
  padding-left: 20px;
}

.p-15 {
  padding: 15px;
}

.pt-15,
.py-15 {
  padding-top: 15px;
}

.pr-15,
.px-15 {
  padding-right: 15px;
}

.pb-15,
.py-15 {
  padding-bottom: 15px;
}

.pl-15,
.px-15 {
  padding-left: 15px;
}

.p-10 {
  padding: 10px;
}

.pt-10,
.py-10 {
  padding-top: 10px;
}

.pr-10,
.px-10 {
  padding-right: 10px;
}

.pb-10,
.py-10 {
  padding-bottom: 10px;
}

.pl-10,
.px-10 {
  padding-left: 10px;
}

.p-5 {
  padding: 5px;
}

.pt-5,
.py-5 {
  padding-top: 5px;
}

.pr-5,
.px-5 {
  padding-right: 5px;
}

.pb-5,
.py-5 {
  padding-bottom: 5px;
}

.pl-5,
.px-5 {
  padding-left: 5px;
}

.p-0 {
  padding: 0px;
}

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

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

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

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

.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) {
  .m-sm-300 {
    margin: 300px;
  }
  .mt-sm-300,
  .my-sm-300 {
    margin-top: 300px;
  }
  .mr-sm-300,
  .mx-sm-300 {
    margin-right: 300px;
  }
  .mb-sm-300,
  .my-sm-300 {
    margin-bottom: 300px;
  }
  .ml-sm-300,
  .mx-sm-300 {
    margin-left: 300px;
  }
  .m-sm-295 {
    margin: 295px;
  }
  .mt-sm-295,
  .my-sm-295 {
    margin-top: 295px;
  }
  .mr-sm-295,
  .mx-sm-295 {
    margin-right: 295px;
  }
  .mb-sm-295,
  .my-sm-295 {
    margin-bottom: 295px;
  }
  .ml-sm-295,
  .mx-sm-295 {
    margin-left: 295px;
  }
  .m-sm-290 {
    margin: 290px;
  }
  .mt-sm-290,
  .my-sm-290 {
    margin-top: 290px;
  }
  .mr-sm-290,
  .mx-sm-290 {
    margin-right: 290px;
  }
  .mb-sm-290,
  .my-sm-290 {
    margin-bottom: 290px;
  }
  .ml-sm-290,
  .mx-sm-290 {
    margin-left: 290px;
  }
  .m-sm-285 {
    margin: 285px;
  }
  .mt-sm-285,
  .my-sm-285 {
    margin-top: 285px;
  }
  .mr-sm-285,
  .mx-sm-285 {
    margin-right: 285px;
  }
  .mb-sm-285,
  .my-sm-285 {
    margin-bottom: 285px;
  }
  .ml-sm-285,
  .mx-sm-285 {
    margin-left: 285px;
  }
  .m-sm-280 {
    margin: 280px;
  }
  .mt-sm-280,
  .my-sm-280 {
    margin-top: 280px;
  }
  .mr-sm-280,
  .mx-sm-280 {
    margin-right: 280px;
  }
  .mb-sm-280,
  .my-sm-280 {
    margin-bottom: 280px;
  }
  .ml-sm-280,
  .mx-sm-280 {
    margin-left: 280px;
  }
  .m-sm-275 {
    margin: 275px;
  }
  .mt-sm-275,
  .my-sm-275 {
    margin-top: 275px;
  }
  .mr-sm-275,
  .mx-sm-275 {
    margin-right: 275px;
  }
  .mb-sm-275,
  .my-sm-275 {
    margin-bottom: 275px;
  }
  .ml-sm-275,
  .mx-sm-275 {
    margin-left: 275px;
  }
  .m-sm-270 {
    margin: 270px;
  }
  .mt-sm-270,
  .my-sm-270 {
    margin-top: 270px;
  }
  .mr-sm-270,
  .mx-sm-270 {
    margin-right: 270px;
  }
  .mb-sm-270,
  .my-sm-270 {
    margin-bottom: 270px;
  }
  .ml-sm-270,
  .mx-sm-270 {
    margin-left: 270px;
  }
  .m-sm-265 {
    margin: 265px;
  }
  .mt-sm-265,
  .my-sm-265 {
    margin-top: 265px;
  }
  .mr-sm-265,
  .mx-sm-265 {
    margin-right: 265px;
  }
  .mb-sm-265,
  .my-sm-265 {
    margin-bottom: 265px;
  }
  .ml-sm-265,
  .mx-sm-265 {
    margin-left: 265px;
  }
  .m-sm-260 {
    margin: 260px;
  }
  .mt-sm-260,
  .my-sm-260 {
    margin-top: 260px;
  }
  .mr-sm-260,
  .mx-sm-260 {
    margin-right: 260px;
  }
  .mb-sm-260,
  .my-sm-260 {
    margin-bottom: 260px;
  }
  .ml-sm-260,
  .mx-sm-260 {
    margin-left: 260px;
  }
  .m-sm-255 {
    margin: 255px;
  }
  .mt-sm-255,
  .my-sm-255 {
    margin-top: 255px;
  }
  .mr-sm-255,
  .mx-sm-255 {
    margin-right: 255px;
  }
  .mb-sm-255,
  .my-sm-255 {
    margin-bottom: 255px;
  }
  .ml-sm-255,
  .mx-sm-255 {
    margin-left: 255px;
  }
  .m-sm-250 {
    margin: 250px;
  }
  .mt-sm-250,
  .my-sm-250 {
    margin-top: 250px;
  }
  .mr-sm-250,
  .mx-sm-250 {
    margin-right: 250px;
  }
  .mb-sm-250,
  .my-sm-250 {
    margin-bottom: 250px;
  }
  .ml-sm-250,
  .mx-sm-250 {
    margin-left: 250px;
  }
  .m-sm-245 {
    margin: 245px;
  }
  .mt-sm-245,
  .my-sm-245 {
    margin-top: 245px;
  }
  .mr-sm-245,
  .mx-sm-245 {
    margin-right: 245px;
  }
  .mb-sm-245,
  .my-sm-245 {
    margin-bottom: 245px;
  }
  .ml-sm-245,
  .mx-sm-245 {
    margin-left: 245px;
  }
  .m-sm-240 {
    margin: 240px;
  }
  .mt-sm-240,
  .my-sm-240 {
    margin-top: 240px;
  }
  .mr-sm-240,
  .mx-sm-240 {
    margin-right: 240px;
  }
  .mb-sm-240,
  .my-sm-240 {
    margin-bottom: 240px;
  }
  .ml-sm-240,
  .mx-sm-240 {
    margin-left: 240px;
  }
  .m-sm-235 {
    margin: 235px;
  }
  .mt-sm-235,
  .my-sm-235 {
    margin-top: 235px;
  }
  .mr-sm-235,
  .mx-sm-235 {
    margin-right: 235px;
  }
  .mb-sm-235,
  .my-sm-235 {
    margin-bottom: 235px;
  }
  .ml-sm-235,
  .mx-sm-235 {
    margin-left: 235px;
  }
  .m-sm-230 {
    margin: 230px;
  }
  .mt-sm-230,
  .my-sm-230 {
    margin-top: 230px;
  }
  .mr-sm-230,
  .mx-sm-230 {
    margin-right: 230px;
  }
  .mb-sm-230,
  .my-sm-230 {
    margin-bottom: 230px;
  }
  .ml-sm-230,
  .mx-sm-230 {
    margin-left: 230px;
  }
  .m-sm-225 {
    margin: 225px;
  }
  .mt-sm-225,
  .my-sm-225 {
    margin-top: 225px;
  }
  .mr-sm-225,
  .mx-sm-225 {
    margin-right: 225px;
  }
  .mb-sm-225,
  .my-sm-225 {
    margin-bottom: 225px;
  }
  .ml-sm-225,
  .mx-sm-225 {
    margin-left: 225px;
  }
  .m-sm-220 {
    margin: 220px;
  }
  .mt-sm-220,
  .my-sm-220 {
    margin-top: 220px;
  }
  .mr-sm-220,
  .mx-sm-220 {
    margin-right: 220px;
  }
  .mb-sm-220,
  .my-sm-220 {
    margin-bottom: 220px;
  }
  .ml-sm-220,
  .mx-sm-220 {
    margin-left: 220px;
  }
  .m-sm-215 {
    margin: 215px;
  }
  .mt-sm-215,
  .my-sm-215 {
    margin-top: 215px;
  }
  .mr-sm-215,
  .mx-sm-215 {
    margin-right: 215px;
  }
  .mb-sm-215,
  .my-sm-215 {
    margin-bottom: 215px;
  }
  .ml-sm-215,
  .mx-sm-215 {
    margin-left: 215px;
  }
  .m-sm-210 {
    margin: 210px;
  }
  .mt-sm-210,
  .my-sm-210 {
    margin-top: 210px;
  }
  .mr-sm-210,
  .mx-sm-210 {
    margin-right: 210px;
  }
  .mb-sm-210,
  .my-sm-210 {
    margin-bottom: 210px;
  }
  .ml-sm-210,
  .mx-sm-210 {
    margin-left: 210px;
  }
  .m-sm-205 {
    margin: 205px;
  }
  .mt-sm-205,
  .my-sm-205 {
    margin-top: 205px;
  }
  .mr-sm-205,
  .mx-sm-205 {
    margin-right: 205px;
  }
  .mb-sm-205,
  .my-sm-205 {
    margin-bottom: 205px;
  }
  .ml-sm-205,
  .mx-sm-205 {
    margin-left: 205px;
  }
  .m-sm-200 {
    margin: 200px;
  }
  .mt-sm-200,
  .my-sm-200 {
    margin-top: 200px;
  }
  .mr-sm-200,
  .mx-sm-200 {
    margin-right: 200px;
  }
  .mb-sm-200,
  .my-sm-200 {
    margin-bottom: 200px;
  }
  .ml-sm-200,
  .mx-sm-200 {
    margin-left: 200px;
  }
  .m-sm-195 {
    margin: 195px;
  }
  .mt-sm-195,
  .my-sm-195 {
    margin-top: 195px;
  }
  .mr-sm-195,
  .mx-sm-195 {
    margin-right: 195px;
  }
  .mb-sm-195,
  .my-sm-195 {
    margin-bottom: 195px;
  }
  .ml-sm-195,
  .mx-sm-195 {
    margin-left: 195px;
  }
  .m-sm-190 {
    margin: 190px;
  }
  .mt-sm-190,
  .my-sm-190 {
    margin-top: 190px;
  }
  .mr-sm-190,
  .mx-sm-190 {
    margin-right: 190px;
  }
  .mb-sm-190,
  .my-sm-190 {
    margin-bottom: 190px;
  }
  .ml-sm-190,
  .mx-sm-190 {
    margin-left: 190px;
  }
  .m-sm-185 {
    margin: 185px;
  }
  .mt-sm-185,
  .my-sm-185 {
    margin-top: 185px;
  }
  .mr-sm-185,
  .mx-sm-185 {
    margin-right: 185px;
  }
  .mb-sm-185,
  .my-sm-185 {
    margin-bottom: 185px;
  }
  .ml-sm-185,
  .mx-sm-185 {
    margin-left: 185px;
  }
  .m-sm-180 {
    margin: 180px;
  }
  .mt-sm-180,
  .my-sm-180 {
    margin-top: 180px;
  }
  .mr-sm-180,
  .mx-sm-180 {
    margin-right: 180px;
  }
  .mb-sm-180,
  .my-sm-180 {
    margin-bottom: 180px;
  }
  .ml-sm-180,
  .mx-sm-180 {
    margin-left: 180px;
  }
  .m-sm-175 {
    margin: 175px;
  }
  .mt-sm-175,
  .my-sm-175 {
    margin-top: 175px;
  }
  .mr-sm-175,
  .mx-sm-175 {
    margin-right: 175px;
  }
  .mb-sm-175,
  .my-sm-175 {
    margin-bottom: 175px;
  }
  .ml-sm-175,
  .mx-sm-175 {
    margin-left: 175px;
  }
  .m-sm-170 {
    margin: 170px;
  }
  .mt-sm-170,
  .my-sm-170 {
    margin-top: 170px;
  }
  .mr-sm-170,
  .mx-sm-170 {
    margin-right: 170px;
  }
  .mb-sm-170,
  .my-sm-170 {
    margin-bottom: 170px;
  }
  .ml-sm-170,
  .mx-sm-170 {
    margin-left: 170px;
  }
  .m-sm-165 {
    margin: 165px;
  }
  .mt-sm-165,
  .my-sm-165 {
    margin-top: 165px;
  }
  .mr-sm-165,
  .mx-sm-165 {
    margin-right: 165px;
  }
  .mb-sm-165,
  .my-sm-165 {
    margin-bottom: 165px;
  }
  .ml-sm-165,
  .mx-sm-165 {
    margin-left: 165px;
  }
  .m-sm-160 {
    margin: 160px;
  }
  .mt-sm-160,
  .my-sm-160 {
    margin-top: 160px;
  }
  .mr-sm-160,
  .mx-sm-160 {
    margin-right: 160px;
  }
  .mb-sm-160,
  .my-sm-160 {
    margin-bottom: 160px;
  }
  .ml-sm-160,
  .mx-sm-160 {
    margin-left: 160px;
  }
  .m-sm-155 {
    margin: 155px;
  }
  .mt-sm-155,
  .my-sm-155 {
    margin-top: 155px;
  }
  .mr-sm-155,
  .mx-sm-155 {
    margin-right: 155px;
  }
  .mb-sm-155,
  .my-sm-155 {
    margin-bottom: 155px;
  }
  .ml-sm-155,
  .mx-sm-155 {
    margin-left: 155px;
  }
  .m-sm-150 {
    margin: 150px;
  }
  .mt-sm-150,
  .my-sm-150 {
    margin-top: 150px;
  }
  .mr-sm-150,
  .mx-sm-150 {
    margin-right: 150px;
  }
  .mb-sm-150,
  .my-sm-150 {
    margin-bottom: 150px;
  }
  .ml-sm-150,
  .mx-sm-150 {
    margin-left: 150px;
  }
  .m-sm-145 {
    margin: 145px;
  }
  .mt-sm-145,
  .my-sm-145 {
    margin-top: 145px;
  }
  .mr-sm-145,
  .mx-sm-145 {
    margin-right: 145px;
  }
  .mb-sm-145,
  .my-sm-145 {
    margin-bottom: 145px;
  }
  .ml-sm-145,
  .mx-sm-145 {
    margin-left: 145px;
  }
  .m-sm-140 {
    margin: 140px;
  }
  .mt-sm-140,
  .my-sm-140 {
    margin-top: 140px;
  }
  .mr-sm-140,
  .mx-sm-140 {
    margin-right: 140px;
  }
  .mb-sm-140,
  .my-sm-140 {
    margin-bottom: 140px;
  }
  .ml-sm-140,
  .mx-sm-140 {
    margin-left: 140px;
  }
  .m-sm-135 {
    margin: 135px;
  }
  .mt-sm-135,
  .my-sm-135 {
    margin-top: 135px;
  }
  .mr-sm-135,
  .mx-sm-135 {
    margin-right: 135px;
  }
  .mb-sm-135,
  .my-sm-135 {
    margin-bottom: 135px;
  }
  .ml-sm-135,
  .mx-sm-135 {
    margin-left: 135px;
  }
  .m-sm-130 {
    margin: 130px;
  }
  .mt-sm-130,
  .my-sm-130 {
    margin-top: 130px;
  }
  .mr-sm-130,
  .mx-sm-130 {
    margin-right: 130px;
  }
  .mb-sm-130,
  .my-sm-130 {
    margin-bottom: 130px;
  }
  .ml-sm-130,
  .mx-sm-130 {
    margin-left: 130px;
  }
  .m-sm-125 {
    margin: 125px;
  }
  .mt-sm-125,
  .my-sm-125 {
    margin-top: 125px;
  }
  .mr-sm-125,
  .mx-sm-125 {
    margin-right: 125px;
  }
  .mb-sm-125,
  .my-sm-125 {
    margin-bottom: 125px;
  }
  .ml-sm-125,
  .mx-sm-125 {
    margin-left: 125px;
  }
  .m-sm-120 {
    margin: 120px;
  }
  .mt-sm-120,
  .my-sm-120 {
    margin-top: 120px;
  }
  .mr-sm-120,
  .mx-sm-120 {
    margin-right: 120px;
  }
  .mb-sm-120,
  .my-sm-120 {
    margin-bottom: 120px;
  }
  .ml-sm-120,
  .mx-sm-120 {
    margin-left: 120px;
  }
  .m-sm-115 {
    margin: 115px;
  }
  .mt-sm-115,
  .my-sm-115 {
    margin-top: 115px;
  }
  .mr-sm-115,
  .mx-sm-115 {
    margin-right: 115px;
  }
  .mb-sm-115,
  .my-sm-115 {
    margin-bottom: 115px;
  }
  .ml-sm-115,
  .mx-sm-115 {
    margin-left: 115px;
  }
  .m-sm-110 {
    margin: 110px;
  }
  .mt-sm-110,
  .my-sm-110 {
    margin-top: 110px;
  }
  .mr-sm-110,
  .mx-sm-110 {
    margin-right: 110px;
  }
  .mb-sm-110,
  .my-sm-110 {
    margin-bottom: 110px;
  }
  .ml-sm-110,
  .mx-sm-110 {
    margin-left: 110px;
  }
  .m-sm-105 {
    margin: 105px;
  }
  .mt-sm-105,
  .my-sm-105 {
    margin-top: 105px;
  }
  .mr-sm-105,
  .mx-sm-105 {
    margin-right: 105px;
  }
  .mb-sm-105,
  .my-sm-105 {
    margin-bottom: 105px;
  }
  .ml-sm-105,
  .mx-sm-105 {
    margin-left: 105px;
  }
  .m-sm-100 {
    margin: 100px;
  }
  .mt-sm-100,
  .my-sm-100 {
    margin-top: 100px;
  }
  .mr-sm-100,
  .mx-sm-100 {
    margin-right: 100px;
  }
  .mb-sm-100,
  .my-sm-100 {
    margin-bottom: 100px;
  }
  .ml-sm-100,
  .mx-sm-100 {
    margin-left: 100px;
  }
  .m-sm-95 {
    margin: 95px;
  }
  .mt-sm-95,
  .my-sm-95 {
    margin-top: 95px;
  }
  .mr-sm-95,
  .mx-sm-95 {
    margin-right: 95px;
  }
  .mb-sm-95,
  .my-sm-95 {
    margin-bottom: 95px;
  }
  .ml-sm-95,
  .mx-sm-95 {
    margin-left: 95px;
  }
  .m-sm-90 {
    margin: 90px;
  }
  .mt-sm-90,
  .my-sm-90 {
    margin-top: 90px;
  }
  .mr-sm-90,
  .mx-sm-90 {
    margin-right: 90px;
  }
  .mb-sm-90,
  .my-sm-90 {
    margin-bottom: 90px;
  }
  .ml-sm-90,
  .mx-sm-90 {
    margin-left: 90px;
  }
  .m-sm-85 {
    margin: 85px;
  }
  .mt-sm-85,
  .my-sm-85 {
    margin-top: 85px;
  }
  .mr-sm-85,
  .mx-sm-85 {
    margin-right: 85px;
  }
  .mb-sm-85,
  .my-sm-85 {
    margin-bottom: 85px;
  }
  .ml-sm-85,
  .mx-sm-85 {
    margin-left: 85px;
  }
  .m-sm-80 {
    margin: 80px;
  }
  .mt-sm-80,
  .my-sm-80 {
    margin-top: 80px;
  }
  .mr-sm-80,
  .mx-sm-80 {
    margin-right: 80px;
  }
  .mb-sm-80,
  .my-sm-80 {
    margin-bottom: 80px;
  }
  .ml-sm-80,
  .mx-sm-80 {
    margin-left: 80px;
  }
  .m-sm-75 {
    margin: 75px;
  }
  .mt-sm-75,
  .my-sm-75 {
    margin-top: 75px;
  }
  .mr-sm-75,
  .mx-sm-75 {
    margin-right: 75px;
  }
  .mb-sm-75,
  .my-sm-75 {
    margin-bottom: 75px;
  }
  .ml-sm-75,
  .mx-sm-75 {
    margin-left: 75px;
  }
  .m-sm-70 {
    margin: 70px;
  }
  .mt-sm-70,
  .my-sm-70 {
    margin-top: 70px;
  }
  .mr-sm-70,
  .mx-sm-70 {
    margin-right: 70px;
  }
  .mb-sm-70,
  .my-sm-70 {
    margin-bottom: 70px;
  }
  .ml-sm-70,
  .mx-sm-70 {
    margin-left: 70px;
  }
  .m-sm-65 {
    margin: 65px;
  }
  .mt-sm-65,
  .my-sm-65 {
    margin-top: 65px;
  }
  .mr-sm-65,
  .mx-sm-65 {
    margin-right: 65px;
  }
  .mb-sm-65,
  .my-sm-65 {
    margin-bottom: 65px;
  }
  .ml-sm-65,
  .mx-sm-65 {
    margin-left: 65px;
  }
  .m-sm-60 {
    margin: 60px;
  }
  .mt-sm-60,
  .my-sm-60 {
    margin-top: 60px;
  }
  .mr-sm-60,
  .mx-sm-60 {
    margin-right: 60px;
  }
  .mb-sm-60,
  .my-sm-60 {
    margin-bottom: 60px;
  }
  .ml-sm-60,
  .mx-sm-60 {
    margin-left: 60px;
  }
  .m-sm-55 {
    margin: 55px;
  }
  .mt-sm-55,
  .my-sm-55 {
    margin-top: 55px;
  }
  .mr-sm-55,
  .mx-sm-55 {
    margin-right: 55px;
  }
  .mb-sm-55,
  .my-sm-55 {
    margin-bottom: 55px;
  }
  .ml-sm-55,
  .mx-sm-55 {
    margin-left: 55px;
  }
  .m-sm-50 {
    margin: 50px;
  }
  .mt-sm-50,
  .my-sm-50 {
    margin-top: 50px;
  }
  .mr-sm-50,
  .mx-sm-50 {
    margin-right: 50px;
  }
  .mb-sm-50,
  .my-sm-50 {
    margin-bottom: 50px;
  }
  .ml-sm-50,
  .mx-sm-50 {
    margin-left: 50px;
  }
  .m-sm-45 {
    margin: 45px;
  }
  .mt-sm-45,
  .my-sm-45 {
    margin-top: 45px;
  }
  .mr-sm-45,
  .mx-sm-45 {
    margin-right: 45px;
  }
  .mb-sm-45,
  .my-sm-45 {
    margin-bottom: 45px;
  }
  .ml-sm-45,
  .mx-sm-45 {
    margin-left: 45px;
  }
  .m-sm-40 {
    margin: 40px;
  }
  .mt-sm-40,
  .my-sm-40 {
    margin-top: 40px;
  }
  .mr-sm-40,
  .mx-sm-40 {
    margin-right: 40px;
  }
  .mb-sm-40,
  .my-sm-40 {
    margin-bottom: 40px;
  }
  .ml-sm-40,
  .mx-sm-40 {
    margin-left: 40px;
  }
  .m-sm-35 {
    margin: 35px;
  }
  .mt-sm-35,
  .my-sm-35 {
    margin-top: 35px;
  }
  .mr-sm-35,
  .mx-sm-35 {
    margin-right: 35px;
  }
  .mb-sm-35,
  .my-sm-35 {
    margin-bottom: 35px;
  }
  .ml-sm-35,
  .mx-sm-35 {
    margin-left: 35px;
  }
  .m-sm-30 {
    margin: 30px;
  }
  .mt-sm-30,
  .my-sm-30 {
    margin-top: 30px;
  }
  .mr-sm-30,
  .mx-sm-30 {
    margin-right: 30px;
  }
  .mb-sm-30,
  .my-sm-30 {
    margin-bottom: 30px;
  }
  .ml-sm-30,
  .mx-sm-30 {
    margin-left: 30px;
  }
  .m-sm-25 {
    margin: 25px;
  }
  .mt-sm-25,
  .my-sm-25 {
    margin-top: 25px;
  }
  .mr-sm-25,
  .mx-sm-25 {
    margin-right: 25px;
  }
  .mb-sm-25,
  .my-sm-25 {
    margin-bottom: 25px;
  }
  .ml-sm-25,
  .mx-sm-25 {
    margin-left: 25px;
  }
  .m-sm-20 {
    margin: 20px;
  }
  .mt-sm-20,
  .my-sm-20 {
    margin-top: 20px;
  }
  .mr-sm-20,
  .mx-sm-20 {
    margin-right: 20px;
  }
  .mb-sm-20,
  .my-sm-20 {
    margin-bottom: 20px;
  }
  .ml-sm-20,
  .mx-sm-20 {
    margin-left: 20px;
  }
  .m-sm-15 {
    margin: 15px;
  }
  .mt-sm-15,
  .my-sm-15 {
    margin-top: 15px;
  }
  .mr-sm-15,
  .mx-sm-15 {
    margin-right: 15px;
  }
  .mb-sm-15,
  .my-sm-15 {
    margin-bottom: 15px;
  }
  .ml-sm-15,
  .mx-sm-15 {
    margin-left: 15px;
  }
  .m-sm-10 {
    margin: 10px;
  }
  .mt-sm-10,
  .my-sm-10 {
    margin-top: 10px;
  }
  .mr-sm-10,
  .mx-sm-10 {
    margin-right: 10px;
  }
  .mb-sm-10,
  .my-sm-10 {
    margin-bottom: 10px;
  }
  .ml-sm-10,
  .mx-sm-10 {
    margin-left: 10px;
  }
  .m-sm-5 {
    margin: 5px;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 5px;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 5px;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 5px;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 5px;
  }
  .m-sm-0 {
    margin: 0px;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0px;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0px;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0px;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0px;
  }
  .p-sm-300 {
    padding: 300px;
  }
  .pt-sm-300,
  .py-sm-300 {
    padding-top: 300px;
  }
  .pr-sm-300,
  .px-sm-300 {
    padding-right: 300px;
  }
  .pb-sm-300,
  .py-sm-300 {
    padding-bottom: 300px;
  }
  .pl-sm-300,
  .px-sm-300 {
    padding-left: 300px;
  }
  .p-sm-295 {
    padding: 295px;
  }
  .pt-sm-295,
  .py-sm-295 {
    padding-top: 295px;
  }
  .pr-sm-295,
  .px-sm-295 {
    padding-right: 295px;
  }
  .pb-sm-295,
  .py-sm-295 {
    padding-bottom: 295px;
  }
  .pl-sm-295,
  .px-sm-295 {
    padding-left: 295px;
  }
  .p-sm-290 {
    padding: 290px;
  }
  .pt-sm-290,
  .py-sm-290 {
    padding-top: 290px;
  }
  .pr-sm-290,
  .px-sm-290 {
    padding-right: 290px;
  }
  .pb-sm-290,
  .py-sm-290 {
    padding-bottom: 290px;
  }
  .pl-sm-290,
  .px-sm-290 {
    padding-left: 290px;
  }
  .p-sm-285 {
    padding: 285px;
  }
  .pt-sm-285,
  .py-sm-285 {
    padding-top: 285px;
  }
  .pr-sm-285,
  .px-sm-285 {
    padding-right: 285px;
  }
  .pb-sm-285,
  .py-sm-285 {
    padding-bottom: 285px;
  }
  .pl-sm-285,
  .px-sm-285 {
    padding-left: 285px;
  }
  .p-sm-280 {
    padding: 280px;
  }
  .pt-sm-280,
  .py-sm-280 {
    padding-top: 280px;
  }
  .pr-sm-280,
  .px-sm-280 {
    padding-right: 280px;
  }
  .pb-sm-280,
  .py-sm-280 {
    padding-bottom: 280px;
  }
  .pl-sm-280,
  .px-sm-280 {
    padding-left: 280px;
  }
  .p-sm-275 {
    padding: 275px;
  }
  .pt-sm-275,
  .py-sm-275 {
    padding-top: 275px;
  }
  .pr-sm-275,
  .px-sm-275 {
    padding-right: 275px;
  }
  .pb-sm-275,
  .py-sm-275 {
    padding-bottom: 275px;
  }
  .pl-sm-275,
  .px-sm-275 {
    padding-left: 275px;
  }
  .p-sm-270 {
    padding: 270px;
  }
  .pt-sm-270,
  .py-sm-270 {
    padding-top: 270px;
  }
  .pr-sm-270,
  .px-sm-270 {
    padding-right: 270px;
  }
  .pb-sm-270,
  .py-sm-270 {
    padding-bottom: 270px;
  }
  .pl-sm-270,
  .px-sm-270 {
    padding-left: 270px;
  }
  .p-sm-265 {
    padding: 265px;
  }
  .pt-sm-265,
  .py-sm-265 {
    padding-top: 265px;
  }
  .pr-sm-265,
  .px-sm-265 {
    padding-right: 265px;
  }
  .pb-sm-265,
  .py-sm-265 {
    padding-bottom: 265px;
  }
  .pl-sm-265,
  .px-sm-265 {
    padding-left: 265px;
  }
  .p-sm-260 {
    padding: 260px;
  }
  .pt-sm-260,
  .py-sm-260 {
    padding-top: 260px;
  }
  .pr-sm-260,
  .px-sm-260 {
    padding-right: 260px;
  }
  .pb-sm-260,
  .py-sm-260 {
    padding-bottom: 260px;
  }
  .pl-sm-260,
  .px-sm-260 {
    padding-left: 260px;
  }
  .p-sm-255 {
    padding: 255px;
  }
  .pt-sm-255,
  .py-sm-255 {
    padding-top: 255px;
  }
  .pr-sm-255,
  .px-sm-255 {
    padding-right: 255px;
  }
  .pb-sm-255,
  .py-sm-255 {
    padding-bottom: 255px;
  }
  .pl-sm-255,
  .px-sm-255 {
    padding-left: 255px;
  }
  .p-sm-250 {
    padding: 250px;
  }
  .pt-sm-250,
  .py-sm-250 {
    padding-top: 250px;
  }
  .pr-sm-250,
  .px-sm-250 {
    padding-right: 250px;
  }
  .pb-sm-250,
  .py-sm-250 {
    padding-bottom: 250px;
  }
  .pl-sm-250,
  .px-sm-250 {
    padding-left: 250px;
  }
  .p-sm-245 {
    padding: 245px;
  }
  .pt-sm-245,
  .py-sm-245 {
    padding-top: 245px;
  }
  .pr-sm-245,
  .px-sm-245 {
    padding-right: 245px;
  }
  .pb-sm-245,
  .py-sm-245 {
    padding-bottom: 245px;
  }
  .pl-sm-245,
  .px-sm-245 {
    padding-left: 245px;
  }
  .p-sm-240 {
    padding: 240px;
  }
  .pt-sm-240,
  .py-sm-240 {
    padding-top: 240px;
  }
  .pr-sm-240,
  .px-sm-240 {
    padding-right: 240px;
  }
  .pb-sm-240,
  .py-sm-240 {
    padding-bottom: 240px;
  }
  .pl-sm-240,
  .px-sm-240 {
    padding-left: 240px;
  }
  .p-sm-235 {
    padding: 235px;
  }
  .pt-sm-235,
  .py-sm-235 {
    padding-top: 235px;
  }
  .pr-sm-235,
  .px-sm-235 {
    padding-right: 235px;
  }
  .pb-sm-235,
  .py-sm-235 {
    padding-bottom: 235px;
  }
  .pl-sm-235,
  .px-sm-235 {
    padding-left: 235px;
  }
  .p-sm-230 {
    padding: 230px;
  }
  .pt-sm-230,
  .py-sm-230 {
    padding-top: 230px;
  }
  .pr-sm-230,
  .px-sm-230 {
    padding-right: 230px;
  }
  .pb-sm-230,
  .py-sm-230 {
    padding-bottom: 230px;
  }
  .pl-sm-230,
  .px-sm-230 {
    padding-left: 230px;
  }
  .p-sm-225 {
    padding: 225px;
  }
  .pt-sm-225,
  .py-sm-225 {
    padding-top: 225px;
  }
  .pr-sm-225,
  .px-sm-225 {
    padding-right: 225px;
  }
  .pb-sm-225,
  .py-sm-225 {
    padding-bottom: 225px;
  }
  .pl-sm-225,
  .px-sm-225 {
    padding-left: 225px;
  }
  .p-sm-220 {
    padding: 220px;
  }
  .pt-sm-220,
  .py-sm-220 {
    padding-top: 220px;
  }
  .pr-sm-220,
  .px-sm-220 {
    padding-right: 220px;
  }
  .pb-sm-220,
  .py-sm-220 {
    padding-bottom: 220px;
  }
  .pl-sm-220,
  .px-sm-220 {
    padding-left: 220px;
  }
  .p-sm-215 {
    padding: 215px;
  }
  .pt-sm-215,
  .py-sm-215 {
    padding-top: 215px;
  }
  .pr-sm-215,
  .px-sm-215 {
    padding-right: 215px;
  }
  .pb-sm-215,
  .py-sm-215 {
    padding-bottom: 215px;
  }
  .pl-sm-215,
  .px-sm-215 {
    padding-left: 215px;
  }
  .p-sm-210 {
    padding: 210px;
  }
  .pt-sm-210,
  .py-sm-210 {
    padding-top: 210px;
  }
  .pr-sm-210,
  .px-sm-210 {
    padding-right: 210px;
  }
  .pb-sm-210,
  .py-sm-210 {
    padding-bottom: 210px;
  }
  .pl-sm-210,
  .px-sm-210 {
    padding-left: 210px;
  }
  .p-sm-205 {
    padding: 205px;
  }
  .pt-sm-205,
  .py-sm-205 {
    padding-top: 205px;
  }
  .pr-sm-205,
  .px-sm-205 {
    padding-right: 205px;
  }
  .pb-sm-205,
  .py-sm-205 {
    padding-bottom: 205px;
  }
  .pl-sm-205,
  .px-sm-205 {
    padding-left: 205px;
  }
  .p-sm-200 {
    padding: 200px;
  }
  .pt-sm-200,
  .py-sm-200 {
    padding-top: 200px;
  }
  .pr-sm-200,
  .px-sm-200 {
    padding-right: 200px;
  }
  .pb-sm-200,
  .py-sm-200 {
    padding-bottom: 200px;
  }
  .pl-sm-200,
  .px-sm-200 {
    padding-left: 200px;
  }
  .p-sm-195 {
    padding: 195px;
  }
  .pt-sm-195,
  .py-sm-195 {
    padding-top: 195px;
  }
  .pr-sm-195,
  .px-sm-195 {
    padding-right: 195px;
  }
  .pb-sm-195,
  .py-sm-195 {
    padding-bottom: 195px;
  }
  .pl-sm-195,
  .px-sm-195 {
    padding-left: 195px;
  }
  .p-sm-190 {
    padding: 190px;
  }
  .pt-sm-190,
  .py-sm-190 {
    padding-top: 190px;
  }
  .pr-sm-190,
  .px-sm-190 {
    padding-right: 190px;
  }
  .pb-sm-190,
  .py-sm-190 {
    padding-bottom: 190px;
  }
  .pl-sm-190,
  .px-sm-190 {
    padding-left: 190px;
  }
  .p-sm-185 {
    padding: 185px;
  }
  .pt-sm-185,
  .py-sm-185 {
    padding-top: 185px;
  }
  .pr-sm-185,
  .px-sm-185 {
    padding-right: 185px;
  }
  .pb-sm-185,
  .py-sm-185 {
    padding-bottom: 185px;
  }
  .pl-sm-185,
  .px-sm-185 {
    padding-left: 185px;
  }
  .p-sm-180 {
    padding: 180px;
  }
  .pt-sm-180,
  .py-sm-180 {
    padding-top: 180px;
  }
  .pr-sm-180,
  .px-sm-180 {
    padding-right: 180px;
  }
  .pb-sm-180,
  .py-sm-180 {
    padding-bottom: 180px;
  }
  .pl-sm-180,
  .px-sm-180 {
    padding-left: 180px;
  }
  .p-sm-175 {
    padding: 175px;
  }
  .pt-sm-175,
  .py-sm-175 {
    padding-top: 175px;
  }
  .pr-sm-175,
  .px-sm-175 {
    padding-right: 175px;
  }
  .pb-sm-175,
  .py-sm-175 {
    padding-bottom: 175px;
  }
  .pl-sm-175,
  .px-sm-175 {
    padding-left: 175px;
  }
  .p-sm-170 {
    padding: 170px;
  }
  .pt-sm-170,
  .py-sm-170 {
    padding-top: 170px;
  }
  .pr-sm-170,
  .px-sm-170 {
    padding-right: 170px;
  }
  .pb-sm-170,
  .py-sm-170 {
    padding-bottom: 170px;
  }
  .pl-sm-170,
  .px-sm-170 {
    padding-left: 170px;
  }
  .p-sm-165 {
    padding: 165px;
  }
  .pt-sm-165,
  .py-sm-165 {
    padding-top: 165px;
  }
  .pr-sm-165,
  .px-sm-165 {
    padding-right: 165px;
  }
  .pb-sm-165,
  .py-sm-165 {
    padding-bottom: 165px;
  }
  .pl-sm-165,
  .px-sm-165 {
    padding-left: 165px;
  }
  .p-sm-160 {
    padding: 160px;
  }
  .pt-sm-160,
  .py-sm-160 {
    padding-top: 160px;
  }
  .pr-sm-160,
  .px-sm-160 {
    padding-right: 160px;
  }
  .pb-sm-160,
  .py-sm-160 {
    padding-bottom: 160px;
  }
  .pl-sm-160,
  .px-sm-160 {
    padding-left: 160px;
  }
  .p-sm-155 {
    padding: 155px;
  }
  .pt-sm-155,
  .py-sm-155 {
    padding-top: 155px;
  }
  .pr-sm-155,
  .px-sm-155 {
    padding-right: 155px;
  }
  .pb-sm-155,
  .py-sm-155 {
    padding-bottom: 155px;
  }
  .pl-sm-155,
  .px-sm-155 {
    padding-left: 155px;
  }
  .p-sm-150 {
    padding: 150px;
  }
  .pt-sm-150,
  .py-sm-150 {
    padding-top: 150px;
  }
  .pr-sm-150,
  .px-sm-150 {
    padding-right: 150px;
  }
  .pb-sm-150,
  .py-sm-150 {
    padding-bottom: 150px;
  }
  .pl-sm-150,
  .px-sm-150 {
    padding-left: 150px;
  }
  .p-sm-145 {
    padding: 145px;
  }
  .pt-sm-145,
  .py-sm-145 {
    padding-top: 145px;
  }
  .pr-sm-145,
  .px-sm-145 {
    padding-right: 145px;
  }
  .pb-sm-145,
  .py-sm-145 {
    padding-bottom: 145px;
  }
  .pl-sm-145,
  .px-sm-145 {
    padding-left: 145px;
  }
  .p-sm-140 {
    padding: 140px;
  }
  .pt-sm-140,
  .py-sm-140 {
    padding-top: 140px;
  }
  .pr-sm-140,
  .px-sm-140 {
    padding-right: 140px;
  }
  .pb-sm-140,
  .py-sm-140 {
    padding-bottom: 140px;
  }
  .pl-sm-140,
  .px-sm-140 {
    padding-left: 140px;
  }
  .p-sm-135 {
    padding: 135px;
  }
  .pt-sm-135,
  .py-sm-135 {
    padding-top: 135px;
  }
  .pr-sm-135,
  .px-sm-135 {
    padding-right: 135px;
  }
  .pb-sm-135,
  .py-sm-135 {
    padding-bottom: 135px;
  }
  .pl-sm-135,
  .px-sm-135 {
    padding-left: 135px;
  }
  .p-sm-130 {
    padding: 130px;
  }
  .pt-sm-130,
  .py-sm-130 {
    padding-top: 130px;
  }
  .pr-sm-130,
  .px-sm-130 {
    padding-right: 130px;
  }
  .pb-sm-130,
  .py-sm-130 {
    padding-bottom: 130px;
  }
  .pl-sm-130,
  .px-sm-130 {
    padding-left: 130px;
  }
  .p-sm-125 {
    padding: 125px;
  }
  .pt-sm-125,
  .py-sm-125 {
    padding-top: 125px;
  }
  .pr-sm-125,
  .px-sm-125 {
    padding-right: 125px;
  }
  .pb-sm-125,
  .py-sm-125 {
    padding-bottom: 125px;
  }
  .pl-sm-125,
  .px-sm-125 {
    padding-left: 125px;
  }
  .p-sm-120 {
    padding: 120px;
  }
  .pt-sm-120,
  .py-sm-120 {
    padding-top: 120px;
  }
  .pr-sm-120,
  .px-sm-120 {
    padding-right: 120px;
  }
  .pb-sm-120,
  .py-sm-120 {
    padding-bottom: 120px;
  }
  .pl-sm-120,
  .px-sm-120 {
    padding-left: 120px;
  }
  .p-sm-115 {
    padding: 115px;
  }
  .pt-sm-115,
  .py-sm-115 {
    padding-top: 115px;
  }
  .pr-sm-115,
  .px-sm-115 {
    padding-right: 115px;
  }
  .pb-sm-115,
  .py-sm-115 {
    padding-bottom: 115px;
  }
  .pl-sm-115,
  .px-sm-115 {
    padding-left: 115px;
  }
  .p-sm-110 {
    padding: 110px;
  }
  .pt-sm-110,
  .py-sm-110 {
    padding-top: 110px;
  }
  .pr-sm-110,
  .px-sm-110 {
    padding-right: 110px;
  }
  .pb-sm-110,
  .py-sm-110 {
    padding-bottom: 110px;
  }
  .pl-sm-110,
  .px-sm-110 {
    padding-left: 110px;
  }
  .p-sm-105 {
    padding: 105px;
  }
  .pt-sm-105,
  .py-sm-105 {
    padding-top: 105px;
  }
  .pr-sm-105,
  .px-sm-105 {
    padding-right: 105px;
  }
  .pb-sm-105,
  .py-sm-105 {
    padding-bottom: 105px;
  }
  .pl-sm-105,
  .px-sm-105 {
    padding-left: 105px;
  }
  .p-sm-100 {
    padding: 100px;
  }
  .pt-sm-100,
  .py-sm-100 {
    padding-top: 100px;
  }
  .pr-sm-100,
  .px-sm-100 {
    padding-right: 100px;
  }
  .pb-sm-100,
  .py-sm-100 {
    padding-bottom: 100px;
  }
  .pl-sm-100,
  .px-sm-100 {
    padding-left: 100px;
  }
  .p-sm-95 {
    padding: 95px;
  }
  .pt-sm-95,
  .py-sm-95 {
    padding-top: 95px;
  }
  .pr-sm-95,
  .px-sm-95 {
    padding-right: 95px;
  }
  .pb-sm-95,
  .py-sm-95 {
    padding-bottom: 95px;
  }
  .pl-sm-95,
  .px-sm-95 {
    padding-left: 95px;
  }
  .p-sm-90 {
    padding: 90px;
  }
  .pt-sm-90,
  .py-sm-90 {
    padding-top: 90px;
  }
  .pr-sm-90,
  .px-sm-90 {
    padding-right: 90px;
  }
  .pb-sm-90,
  .py-sm-90 {
    padding-bottom: 90px;
  }
  .pl-sm-90,
  .px-sm-90 {
    padding-left: 90px;
  }
  .p-sm-85 {
    padding: 85px;
  }
  .pt-sm-85,
  .py-sm-85 {
    padding-top: 85px;
  }
  .pr-sm-85,
  .px-sm-85 {
    padding-right: 85px;
  }
  .pb-sm-85,
  .py-sm-85 {
    padding-bottom: 85px;
  }
  .pl-sm-85,
  .px-sm-85 {
    padding-left: 85px;
  }
  .p-sm-80 {
    padding: 80px;
  }
  .pt-sm-80,
  .py-sm-80 {
    padding-top: 80px;
  }
  .pr-sm-80,
  .px-sm-80 {
    padding-right: 80px;
  }
  .pb-sm-80,
  .py-sm-80 {
    padding-bottom: 80px;
  }
  .pl-sm-80,
  .px-sm-80 {
    padding-left: 80px;
  }
  .p-sm-75 {
    padding: 75px;
  }
  .pt-sm-75,
  .py-sm-75 {
    padding-top: 75px;
  }
  .pr-sm-75,
  .px-sm-75 {
    padding-right: 75px;
  }
  .pb-sm-75,
  .py-sm-75 {
    padding-bottom: 75px;
  }
  .pl-sm-75,
  .px-sm-75 {
    padding-left: 75px;
  }
  .p-sm-70 {
    padding: 70px;
  }
  .pt-sm-70,
  .py-sm-70 {
    padding-top: 70px;
  }
  .pr-sm-70,
  .px-sm-70 {
    padding-right: 70px;
  }
  .pb-sm-70,
  .py-sm-70 {
    padding-bottom: 70px;
  }
  .pl-sm-70,
  .px-sm-70 {
    padding-left: 70px;
  }
  .p-sm-65 {
    padding: 65px;
  }
  .pt-sm-65,
  .py-sm-65 {
    padding-top: 65px;
  }
  .pr-sm-65,
  .px-sm-65 {
    padding-right: 65px;
  }
  .pb-sm-65,
  .py-sm-65 {
    padding-bottom: 65px;
  }
  .pl-sm-65,
  .px-sm-65 {
    padding-left: 65px;
  }
  .p-sm-60 {
    padding: 60px;
  }
  .pt-sm-60,
  .py-sm-60 {
    padding-top: 60px;
  }
  .pr-sm-60,
  .px-sm-60 {
    padding-right: 60px;
  }
  .pb-sm-60,
  .py-sm-60 {
    padding-bottom: 60px;
  }
  .pl-sm-60,
  .px-sm-60 {
    padding-left: 60px;
  }
  .p-sm-55 {
    padding: 55px;
  }
  .pt-sm-55,
  .py-sm-55 {
    padding-top: 55px;
  }
  .pr-sm-55,
  .px-sm-55 {
    padding-right: 55px;
  }
  .pb-sm-55,
  .py-sm-55 {
    padding-bottom: 55px;
  }
  .pl-sm-55,
  .px-sm-55 {
    padding-left: 55px;
  }
  .p-sm-50 {
    padding: 50px;
  }
  .pt-sm-50,
  .py-sm-50 {
    padding-top: 50px;
  }
  .pr-sm-50,
  .px-sm-50 {
    padding-right: 50px;
  }
  .pb-sm-50,
  .py-sm-50 {
    padding-bottom: 50px;
  }
  .pl-sm-50,
  .px-sm-50 {
    padding-left: 50px;
  }
  .p-sm-45 {
    padding: 45px;
  }
  .pt-sm-45,
  .py-sm-45 {
    padding-top: 45px;
  }
  .pr-sm-45,
  .px-sm-45 {
    padding-right: 45px;
  }
  .pb-sm-45,
  .py-sm-45 {
    padding-bottom: 45px;
  }
  .pl-sm-45,
  .px-sm-45 {
    padding-left: 45px;
  }
  .p-sm-40 {
    padding: 40px;
  }
  .pt-sm-40,
  .py-sm-40 {
    padding-top: 40px;
  }
  .pr-sm-40,
  .px-sm-40 {
    padding-right: 40px;
  }
  .pb-sm-40,
  .py-sm-40 {
    padding-bottom: 40px;
  }
  .pl-sm-40,
  .px-sm-40 {
    padding-left: 40px;
  }
  .p-sm-35 {
    padding: 35px;
  }
  .pt-sm-35,
  .py-sm-35 {
    padding-top: 35px;
  }
  .pr-sm-35,
  .px-sm-35 {
    padding-right: 35px;
  }
  .pb-sm-35,
  .py-sm-35 {
    padding-bottom: 35px;
  }
  .pl-sm-35,
  .px-sm-35 {
    padding-left: 35px;
  }
  .p-sm-30 {
    padding: 30px;
  }
  .pt-sm-30,
  .py-sm-30 {
    padding-top: 30px;
  }
  .pr-sm-30,
  .px-sm-30 {
    padding-right: 30px;
  }
  .pb-sm-30,
  .py-sm-30 {
    padding-bottom: 30px;
  }
  .pl-sm-30,
  .px-sm-30 {
    padding-left: 30px;
  }
  .p-sm-25 {
    padding: 25px;
  }
  .pt-sm-25,
  .py-sm-25 {
    padding-top: 25px;
  }
  .pr-sm-25,
  .px-sm-25 {
    padding-right: 25px;
  }
  .pb-sm-25,
  .py-sm-25 {
    padding-bottom: 25px;
  }
  .pl-sm-25,
  .px-sm-25 {
    padding-left: 25px;
  }
  .p-sm-20 {
    padding: 20px;
  }
  .pt-sm-20,
  .py-sm-20 {
    padding-top: 20px;
  }
  .pr-sm-20,
  .px-sm-20 {
    padding-right: 20px;
  }
  .pb-sm-20,
  .py-sm-20 {
    padding-bottom: 20px;
  }
  .pl-sm-20,
  .px-sm-20 {
    padding-left: 20px;
  }
  .p-sm-15 {
    padding: 15px;
  }
  .pt-sm-15,
  .py-sm-15 {
    padding-top: 15px;
  }
  .pr-sm-15,
  .px-sm-15 {
    padding-right: 15px;
  }
  .pb-sm-15,
  .py-sm-15 {
    padding-bottom: 15px;
  }
  .pl-sm-15,
  .px-sm-15 {
    padding-left: 15px;
  }
  .p-sm-10 {
    padding: 10px;
  }
  .pt-sm-10,
  .py-sm-10 {
    padding-top: 10px;
  }
  .pr-sm-10,
  .px-sm-10 {
    padding-right: 10px;
  }
  .pb-sm-10,
  .py-sm-10 {
    padding-bottom: 10px;
  }
  .pl-sm-10,
  .px-sm-10 {
    padding-left: 10px;
  }
  .p-sm-5 {
    padding: 5px;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 5px;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 5px;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 5px;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 5px;
  }
  .p-sm-0 {
    padding: 0px;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0px;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0px;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0px;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0px;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-300 {
    margin: 300px;
  }
  .mt-md-300,
  .my-md-300 {
    margin-top: 300px;
  }
  .mr-md-300,
  .mx-md-300 {
    margin-right: 300px;
  }
  .mb-md-300,
  .my-md-300 {
    margin-bottom: 300px;
  }
  .ml-md-300,
  .mx-md-300 {
    margin-left: 300px;
  }
  .m-md-295 {
    margin: 295px;
  }
  .mt-md-295,
  .my-md-295 {
    margin-top: 295px;
  }
  .mr-md-295,
  .mx-md-295 {
    margin-right: 295px;
  }
  .mb-md-295,
  .my-md-295 {
    margin-bottom: 295px;
  }
  .ml-md-295,
  .mx-md-295 {
    margin-left: 295px;
  }
  .m-md-290 {
    margin: 290px;
  }
  .mt-md-290,
  .my-md-290 {
    margin-top: 290px;
  }
  .mr-md-290,
  .mx-md-290 {
    margin-right: 290px;
  }
  .mb-md-290,
  .my-md-290 {
    margin-bottom: 290px;
  }
  .ml-md-290,
  .mx-md-290 {
    margin-left: 290px;
  }
  .m-md-285 {
    margin: 285px;
  }
  .mt-md-285,
  .my-md-285 {
    margin-top: 285px;
  }
  .mr-md-285,
  .mx-md-285 {
    margin-right: 285px;
  }
  .mb-md-285,
  .my-md-285 {
    margin-bottom: 285px;
  }
  .ml-md-285,
  .mx-md-285 {
    margin-left: 285px;
  }
  .m-md-280 {
    margin: 280px;
  }
  .mt-md-280,
  .my-md-280 {
    margin-top: 280px;
  }
  .mr-md-280,
  .mx-md-280 {
    margin-right: 280px;
  }
  .mb-md-280,
  .my-md-280 {
    margin-bottom: 280px;
  }
  .ml-md-280,
  .mx-md-280 {
    margin-left: 280px;
  }
  .m-md-275 {
    margin: 275px;
  }
  .mt-md-275,
  .my-md-275 {
    margin-top: 275px;
  }
  .mr-md-275,
  .mx-md-275 {
    margin-right: 275px;
  }
  .mb-md-275,
  .my-md-275 {
    margin-bottom: 275px;
  }
  .ml-md-275,
  .mx-md-275 {
    margin-left: 275px;
  }
  .m-md-270 {
    margin: 270px;
  }
  .mt-md-270,
  .my-md-270 {
    margin-top: 270px;
  }
  .mr-md-270,
  .mx-md-270 {
    margin-right: 270px;
  }
  .mb-md-270,
  .my-md-270 {
    margin-bottom: 270px;
  }
  .ml-md-270,
  .mx-md-270 {
    margin-left: 270px;
  }
  .m-md-265 {
    margin: 265px;
  }
  .mt-md-265,
  .my-md-265 {
    margin-top: 265px;
  }
  .mr-md-265,
  .mx-md-265 {
    margin-right: 265px;
  }
  .mb-md-265,
  .my-md-265 {
    margin-bottom: 265px;
  }
  .ml-md-265,
  .mx-md-265 {
    margin-left: 265px;
  }
  .m-md-260 {
    margin: 260px;
  }
  .mt-md-260,
  .my-md-260 {
    margin-top: 260px;
  }
  .mr-md-260,
  .mx-md-260 {
    margin-right: 260px;
  }
  .mb-md-260,
  .my-md-260 {
    margin-bottom: 260px;
  }
  .ml-md-260,
  .mx-md-260 {
    margin-left: 260px;
  }
  .m-md-255 {
    margin: 255px;
  }
  .mt-md-255,
  .my-md-255 {
    margin-top: 255px;
  }
  .mr-md-255,
  .mx-md-255 {
    margin-right: 255px;
  }
  .mb-md-255,
  .my-md-255 {
    margin-bottom: 255px;
  }
  .ml-md-255,
  .mx-md-255 {
    margin-left: 255px;
  }
  .m-md-250 {
    margin: 250px;
  }
  .mt-md-250,
  .my-md-250 {
    margin-top: 250px;
  }
  .mr-md-250,
  .mx-md-250 {
    margin-right: 250px;
  }
  .mb-md-250,
  .my-md-250 {
    margin-bottom: 250px;
  }
  .ml-md-250,
  .mx-md-250 {
    margin-left: 250px;
  }
  .m-md-245 {
    margin: 245px;
  }
  .mt-md-245,
  .my-md-245 {
    margin-top: 245px;
  }
  .mr-md-245,
  .mx-md-245 {
    margin-right: 245px;
  }
  .mb-md-245,
  .my-md-245 {
    margin-bottom: 245px;
  }
  .ml-md-245,
  .mx-md-245 {
    margin-left: 245px;
  }
  .m-md-240 {
    margin: 240px;
  }
  .mt-md-240,
  .my-md-240 {
    margin-top: 240px;
  }
  .mr-md-240,
  .mx-md-240 {
    margin-right: 240px;
  }
  .mb-md-240,
  .my-md-240 {
    margin-bottom: 240px;
  }
  .ml-md-240,
  .mx-md-240 {
    margin-left: 240px;
  }
  .m-md-235 {
    margin: 235px;
  }
  .mt-md-235,
  .my-md-235 {
    margin-top: 235px;
  }
  .mr-md-235,
  .mx-md-235 {
    margin-right: 235px;
  }
  .mb-md-235,
  .my-md-235 {
    margin-bottom: 235px;
  }
  .ml-md-235,
  .mx-md-235 {
    margin-left: 235px;
  }
  .m-md-230 {
    margin: 230px;
  }
  .mt-md-230,
  .my-md-230 {
    margin-top: 230px;
  }
  .mr-md-230,
  .mx-md-230 {
    margin-right: 230px;
  }
  .mb-md-230,
  .my-md-230 {
    margin-bottom: 230px;
  }
  .ml-md-230,
  .mx-md-230 {
    margin-left: 230px;
  }
  .m-md-225 {
    margin: 225px;
  }
  .mt-md-225,
  .my-md-225 {
    margin-top: 225px;
  }
  .mr-md-225,
  .mx-md-225 {
    margin-right: 225px;
  }
  .mb-md-225,
  .my-md-225 {
    margin-bottom: 225px;
  }
  .ml-md-225,
  .mx-md-225 {
    margin-left: 225px;
  }
  .m-md-220 {
    margin: 220px;
  }
  .mt-md-220,
  .my-md-220 {
    margin-top: 220px;
  }
  .mr-md-220,
  .mx-md-220 {
    margin-right: 220px;
  }
  .mb-md-220,
  .my-md-220 {
    margin-bottom: 220px;
  }
  .ml-md-220,
  .mx-md-220 {
    margin-left: 220px;
  }
  .m-md-215 {
    margin: 215px;
  }
  .mt-md-215,
  .my-md-215 {
    margin-top: 215px;
  }
  .mr-md-215,
  .mx-md-215 {
    margin-right: 215px;
  }
  .mb-md-215,
  .my-md-215 {
    margin-bottom: 215px;
  }
  .ml-md-215,
  .mx-md-215 {
    margin-left: 215px;
  }
  .m-md-210 {
    margin: 210px;
  }
  .mt-md-210,
  .my-md-210 {
    margin-top: 210px;
  }
  .mr-md-210,
  .mx-md-210 {
    margin-right: 210px;
  }
  .mb-md-210,
  .my-md-210 {
    margin-bottom: 210px;
  }
  .ml-md-210,
  .mx-md-210 {
    margin-left: 210px;
  }
  .m-md-205 {
    margin: 205px;
  }
  .mt-md-205,
  .my-md-205 {
    margin-top: 205px;
  }
  .mr-md-205,
  .mx-md-205 {
    margin-right: 205px;
  }
  .mb-md-205,
  .my-md-205 {
    margin-bottom: 205px;
  }
  .ml-md-205,
  .mx-md-205 {
    margin-left: 205px;
  }
  .m-md-200 {
    margin: 200px;
  }
  .mt-md-200,
  .my-md-200 {
    margin-top: 200px;
  }
  .mr-md-200,
  .mx-md-200 {
    margin-right: 200px;
  }
  .mb-md-200,
  .my-md-200 {
    margin-bottom: 200px;
  }
  .ml-md-200,
  .mx-md-200 {
    margin-left: 200px;
  }
  .m-md-195 {
    margin: 195px;
  }
  .mt-md-195,
  .my-md-195 {
    margin-top: 195px;
  }
  .mr-md-195,
  .mx-md-195 {
    margin-right: 195px;
  }
  .mb-md-195,
  .my-md-195 {
    margin-bottom: 195px;
  }
  .ml-md-195,
  .mx-md-195 {
    margin-left: 195px;
  }
  .m-md-190 {
    margin: 190px;
  }
  .mt-md-190,
  .my-md-190 {
    margin-top: 190px;
  }
  .mr-md-190,
  .mx-md-190 {
    margin-right: 190px;
  }
  .mb-md-190,
  .my-md-190 {
    margin-bottom: 190px;
  }
  .ml-md-190,
  .mx-md-190 {
    margin-left: 190px;
  }
  .m-md-185 {
    margin: 185px;
  }
  .mt-md-185,
  .my-md-185 {
    margin-top: 185px;
  }
  .mr-md-185,
  .mx-md-185 {
    margin-right: 185px;
  }
  .mb-md-185,
  .my-md-185 {
    margin-bottom: 185px;
  }
  .ml-md-185,
  .mx-md-185 {
    margin-left: 185px;
  }
  .m-md-180 {
    margin: 180px;
  }
  .mt-md-180,
  .my-md-180 {
    margin-top: 180px;
  }
  .mr-md-180,
  .mx-md-180 {
    margin-right: 180px;
  }
  .mb-md-180,
  .my-md-180 {
    margin-bottom: 180px;
  }
  .ml-md-180,
  .mx-md-180 {
    margin-left: 180px;
  }
  .m-md-175 {
    margin: 175px;
  }
  .mt-md-175,
  .my-md-175 {
    margin-top: 175px;
  }
  .mr-md-175,
  .mx-md-175 {
    margin-right: 175px;
  }
  .mb-md-175,
  .my-md-175 {
    margin-bottom: 175px;
  }
  .ml-md-175,
  .mx-md-175 {
    margin-left: 175px;
  }
  .m-md-170 {
    margin: 170px;
  }
  .mt-md-170,
  .my-md-170 {
    margin-top: 170px;
  }
  .mr-md-170,
  .mx-md-170 {
    margin-right: 170px;
  }
  .mb-md-170,
  .my-md-170 {
    margin-bottom: 170px;
  }
  .ml-md-170,
  .mx-md-170 {
    margin-left: 170px;
  }
  .m-md-165 {
    margin: 165px;
  }
  .mt-md-165,
  .my-md-165 {
    margin-top: 165px;
  }
  .mr-md-165,
  .mx-md-165 {
    margin-right: 165px;
  }
  .mb-md-165,
  .my-md-165 {
    margin-bottom: 165px;
  }
  .ml-md-165,
  .mx-md-165 {
    margin-left: 165px;
  }
  .m-md-160 {
    margin: 160px;
  }
  .mt-md-160,
  .my-md-160 {
    margin-top: 160px;
  }
  .mr-md-160,
  .mx-md-160 {
    margin-right: 160px;
  }
  .mb-md-160,
  .my-md-160 {
    margin-bottom: 160px;
  }
  .ml-md-160,
  .mx-md-160 {
    margin-left: 160px;
  }
  .m-md-155 {
    margin: 155px;
  }
  .mt-md-155,
  .my-md-155 {
    margin-top: 155px;
  }
  .mr-md-155,
  .mx-md-155 {
    margin-right: 155px;
  }
  .mb-md-155,
  .my-md-155 {
    margin-bottom: 155px;
  }
  .ml-md-155,
  .mx-md-155 {
    margin-left: 155px;
  }
  .m-md-150 {
    margin: 150px;
  }
  .mt-md-150,
  .my-md-150 {
    margin-top: 150px;
  }
  .mr-md-150,
  .mx-md-150 {
    margin-right: 150px;
  }
  .mb-md-150,
  .my-md-150 {
    margin-bottom: 150px;
  }
  .ml-md-150,
  .mx-md-150 {
    margin-left: 150px;
  }
  .m-md-145 {
    margin: 145px;
  }
  .mt-md-145,
  .my-md-145 {
    margin-top: 145px;
  }
  .mr-md-145,
  .mx-md-145 {
    margin-right: 145px;
  }
  .mb-md-145,
  .my-md-145 {
    margin-bottom: 145px;
  }
  .ml-md-145,
  .mx-md-145 {
    margin-left: 145px;
  }
  .m-md-140 {
    margin: 140px;
  }
  .mt-md-140,
  .my-md-140 {
    margin-top: 140px;
  }
  .mr-md-140,
  .mx-md-140 {
    margin-right: 140px;
  }
  .mb-md-140,
  .my-md-140 {
    margin-bottom: 140px;
  }
  .ml-md-140,
  .mx-md-140 {
    margin-left: 140px;
  }
  .m-md-135 {
    margin: 135px;
  }
  .mt-md-135,
  .my-md-135 {
    margin-top: 135px;
  }
  .mr-md-135,
  .mx-md-135 {
    margin-right: 135px;
  }
  .mb-md-135,
  .my-md-135 {
    margin-bottom: 135px;
  }
  .ml-md-135,
  .mx-md-135 {
    margin-left: 135px;
  }
  .m-md-130 {
    margin: 130px;
  }
  .mt-md-130,
  .my-md-130 {
    margin-top: 130px;
  }
  .mr-md-130,
  .mx-md-130 {
    margin-right: 130px;
  }
  .mb-md-130,
  .my-md-130 {
    margin-bottom: 130px;
  }
  .ml-md-130,
  .mx-md-130 {
    margin-left: 130px;
  }
  .m-md-125 {
    margin: 125px;
  }
  .mt-md-125,
  .my-md-125 {
    margin-top: 125px;
  }
  .mr-md-125,
  .mx-md-125 {
    margin-right: 125px;
  }
  .mb-md-125,
  .my-md-125 {
    margin-bottom: 125px;
  }
  .ml-md-125,
  .mx-md-125 {
    margin-left: 125px;
  }
  .m-md-120 {
    margin: 120px;
  }
  .mt-md-120,
  .my-md-120 {
    margin-top: 120px;
  }
  .mr-md-120,
  .mx-md-120 {
    margin-right: 120px;
  }
  .mb-md-120,
  .my-md-120 {
    margin-bottom: 120px;
  }
  .ml-md-120,
  .mx-md-120 {
    margin-left: 120px;
  }
  .m-md-115 {
    margin: 115px;
  }
  .mt-md-115,
  .my-md-115 {
    margin-top: 115px;
  }
  .mr-md-115,
  .mx-md-115 {
    margin-right: 115px;
  }
  .mb-md-115,
  .my-md-115 {
    margin-bottom: 115px;
  }
  .ml-md-115,
  .mx-md-115 {
    margin-left: 115px;
  }
  .m-md-110 {
    margin: 110px;
  }
  .mt-md-110,
  .my-md-110 {
    margin-top: 110px;
  }
  .mr-md-110,
  .mx-md-110 {
    margin-right: 110px;
  }
  .mb-md-110,
  .my-md-110 {
    margin-bottom: 110px;
  }
  .ml-md-110,
  .mx-md-110 {
    margin-left: 110px;
  }
  .m-md-105 {
    margin: 105px;
  }
  .mt-md-105,
  .my-md-105 {
    margin-top: 105px;
  }
  .mr-md-105,
  .mx-md-105 {
    margin-right: 105px;
  }
  .mb-md-105,
  .my-md-105 {
    margin-bottom: 105px;
  }
  .ml-md-105,
  .mx-md-105 {
    margin-left: 105px;
  }
  .m-md-100 {
    margin: 100px;
  }
  .mt-md-100,
  .my-md-100 {
    margin-top: 100px;
  }
  .mr-md-100,
  .mx-md-100 {
    margin-right: 100px;
  }
  .mb-md-100,
  .my-md-100 {
    margin-bottom: 100px;
  }
  .ml-md-100,
  .mx-md-100 {
    margin-left: 100px;
  }
  .m-md-95 {
    margin: 95px;
  }
  .mt-md-95,
  .my-md-95 {
    margin-top: 95px;
  }
  .mr-md-95,
  .mx-md-95 {
    margin-right: 95px;
  }
  .mb-md-95,
  .my-md-95 {
    margin-bottom: 95px;
  }
  .ml-md-95,
  .mx-md-95 {
    margin-left: 95px;
  }
  .m-md-90 {
    margin: 90px;
  }
  .mt-md-90,
  .my-md-90 {
    margin-top: 90px;
  }
  .mr-md-90,
  .mx-md-90 {
    margin-right: 90px;
  }
  .mb-md-90,
  .my-md-90 {
    margin-bottom: 90px;
  }
  .ml-md-90,
  .mx-md-90 {
    margin-left: 90px;
  }
  .m-md-85 {
    margin: 85px;
  }
  .mt-md-85,
  .my-md-85 {
    margin-top: 85px;
  }
  .mr-md-85,
  .mx-md-85 {
    margin-right: 85px;
  }
  .mb-md-85,
  .my-md-85 {
    margin-bottom: 85px;
  }
  .ml-md-85,
  .mx-md-85 {
    margin-left: 85px;
  }
  .m-md-80 {
    margin: 80px;
  }
  .mt-md-80,
  .my-md-80 {
    margin-top: 80px;
  }
  .mr-md-80,
  .mx-md-80 {
    margin-right: 80px;
  }
  .mb-md-80,
  .my-md-80 {
    margin-bottom: 80px;
  }
  .ml-md-80,
  .mx-md-80 {
    margin-left: 80px;
  }
  .m-md-75 {
    margin: 75px;
  }
  .mt-md-75,
  .my-md-75 {
    margin-top: 75px;
  }
  .mr-md-75,
  .mx-md-75 {
    margin-right: 75px;
  }
  .mb-md-75,
  .my-md-75 {
    margin-bottom: 75px;
  }
  .ml-md-75,
  .mx-md-75 {
    margin-left: 75px;
  }
  .m-md-70 {
    margin: 70px;
  }
  .mt-md-70,
  .my-md-70 {
    margin-top: 70px;
  }
  .mr-md-70,
  .mx-md-70 {
    margin-right: 70px;
  }
  .mb-md-70,
  .my-md-70 {
    margin-bottom: 70px;
  }
  .ml-md-70,
  .mx-md-70 {
    margin-left: 70px;
  }
  .m-md-65 {
    margin: 65px;
  }
  .mt-md-65,
  .my-md-65 {
    margin-top: 65px;
  }
  .mr-md-65,
  .mx-md-65 {
    margin-right: 65px;
  }
  .mb-md-65,
  .my-md-65 {
    margin-bottom: 65px;
  }
  .ml-md-65,
  .mx-md-65 {
    margin-left: 65px;
  }
  .m-md-60 {
    margin: 60px;
  }
  .mt-md-60,
  .my-md-60 {
    margin-top: 60px;
  }
  .mr-md-60,
  .mx-md-60 {
    margin-right: 60px;
  }
  .mb-md-60,
  .my-md-60 {
    margin-bottom: 60px;
  }
  .ml-md-60,
  .mx-md-60 {
    margin-left: 60px;
  }
  .m-md-55 {
    margin: 55px;
  }
  .mt-md-55,
  .my-md-55 {
    margin-top: 55px;
  }
  .mr-md-55,
  .mx-md-55 {
    margin-right: 55px;
  }
  .mb-md-55,
  .my-md-55 {
    margin-bottom: 55px;
  }
  .ml-md-55,
  .mx-md-55 {
    margin-left: 55px;
  }
  .m-md-50 {
    margin: 50px;
  }
  .mt-md-50,
  .my-md-50 {
    margin-top: 50px;
  }
  .mr-md-50,
  .mx-md-50 {
    margin-right: 50px;
  }
  .mb-md-50,
  .my-md-50 {
    margin-bottom: 50px;
  }
  .ml-md-50,
  .mx-md-50 {
    margin-left: 50px;
  }
  .m-md-45 {
    margin: 45px;
  }
  .mt-md-45,
  .my-md-45 {
    margin-top: 45px;
  }
  .mr-md-45,
  .mx-md-45 {
    margin-right: 45px;
  }
  .mb-md-45,
  .my-md-45 {
    margin-bottom: 45px;
  }
  .ml-md-45,
  .mx-md-45 {
    margin-left: 45px;
  }
  .m-md-40 {
    margin: 40px;
  }
  .mt-md-40,
  .my-md-40 {
    margin-top: 40px;
  }
  .mr-md-40,
  .mx-md-40 {
    margin-right: 40px;
  }
  .mb-md-40,
  .my-md-40 {
    margin-bottom: 40px;
  }
  .ml-md-40,
  .mx-md-40 {
    margin-left: 40px;
  }
  .m-md-35 {
    margin: 35px;
  }
  .mt-md-35,
  .my-md-35 {
    margin-top: 35px;
  }
  .mr-md-35,
  .mx-md-35 {
    margin-right: 35px;
  }
  .mb-md-35,
  .my-md-35 {
    margin-bottom: 35px;
  }
  .ml-md-35,
  .mx-md-35 {
    margin-left: 35px;
  }
  .m-md-30 {
    margin: 30px;
  }
  .mt-md-30,
  .my-md-30 {
    margin-top: 30px;
  }
  .mr-md-30,
  .mx-md-30 {
    margin-right: 30px;
  }
  .mb-md-30,
  .my-md-30 {
    margin-bottom: 30px;
  }
  .ml-md-30,
  .mx-md-30 {
    margin-left: 30px;
  }
  .m-md-25 {
    margin: 25px;
  }
  .mt-md-25,
  .my-md-25 {
    margin-top: 25px;
  }
  .mr-md-25,
  .mx-md-25 {
    margin-right: 25px;
  }
  .mb-md-25,
  .my-md-25 {
    margin-bottom: 25px;
  }
  .ml-md-25,
  .mx-md-25 {
    margin-left: 25px;
  }
  .m-md-20 {
    margin: 20px;
  }
  .mt-md-20,
  .my-md-20 {
    margin-top: 20px;
  }
  .mr-md-20,
  .mx-md-20 {
    margin-right: 20px;
  }
  .mb-md-20,
  .my-md-20 {
    margin-bottom: 20px;
  }
  .ml-md-20,
  .mx-md-20 {
    margin-left: 20px;
  }
  .m-md-15 {
    margin: 15px;
  }
  .mt-md-15,
  .my-md-15 {
    margin-top: 15px;
  }
  .mr-md-15,
  .mx-md-15 {
    margin-right: 15px;
  }
  .mb-md-15,
  .my-md-15 {
    margin-bottom: 15px;
  }
  .ml-md-15,
  .mx-md-15 {
    margin-left: 15px;
  }
  .m-md-10 {
    margin: 10px;
  }
  .mt-md-10,
  .my-md-10 {
    margin-top: 10px;
  }
  .mr-md-10,
  .mx-md-10 {
    margin-right: 10px;
  }
  .mb-md-10,
  .my-md-10 {
    margin-bottom: 10px;
  }
  .ml-md-10,
  .mx-md-10 {
    margin-left: 10px;
  }
  .m-md-5 {
    margin: 5px;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 5px;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 5px;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 5px;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 5px;
  }
  .m-md-0 {
    margin: 0px;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0px;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0px;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0px;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0px;
  }
  .p-md-300 {
    padding: 300px;
  }
  .pt-md-300,
  .py-md-300 {
    padding-top: 300px;
  }
  .pr-md-300,
  .px-md-300 {
    padding-right: 300px;
  }
  .pb-md-300,
  .py-md-300 {
    padding-bottom: 300px;
  }
  .pl-md-300,
  .px-md-300 {
    padding-left: 300px;
  }
  .p-md-295 {
    padding: 295px;
  }
  .pt-md-295,
  .py-md-295 {
    padding-top: 295px;
  }
  .pr-md-295,
  .px-md-295 {
    padding-right: 295px;
  }
  .pb-md-295,
  .py-md-295 {
    padding-bottom: 295px;
  }
  .pl-md-295,
  .px-md-295 {
    padding-left: 295px;
  }
  .p-md-290 {
    padding: 290px;
  }
  .pt-md-290,
  .py-md-290 {
    padding-top: 290px;
  }
  .pr-md-290,
  .px-md-290 {
    padding-right: 290px;
  }
  .pb-md-290,
  .py-md-290 {
    padding-bottom: 290px;
  }
  .pl-md-290,
  .px-md-290 {
    padding-left: 290px;
  }
  .p-md-285 {
    padding: 285px;
  }
  .pt-md-285,
  .py-md-285 {
    padding-top: 285px;
  }
  .pr-md-285,
  .px-md-285 {
    padding-right: 285px;
  }
  .pb-md-285,
  .py-md-285 {
    padding-bottom: 285px;
  }
  .pl-md-285,
  .px-md-285 {
    padding-left: 285px;
  }
  .p-md-280 {
    padding: 280px;
  }
  .pt-md-280,
  .py-md-280 {
    padding-top: 280px;
  }
  .pr-md-280,
  .px-md-280 {
    padding-right: 280px;
  }
  .pb-md-280,
  .py-md-280 {
    padding-bottom: 280px;
  }
  .pl-md-280,
  .px-md-280 {
    padding-left: 280px;
  }
  .p-md-275 {
    padding: 275px;
  }
  .pt-md-275,
  .py-md-275 {
    padding-top: 275px;
  }
  .pr-md-275,
  .px-md-275 {
    padding-right: 275px;
  }
  .pb-md-275,
  .py-md-275 {
    padding-bottom: 275px;
  }
  .pl-md-275,
  .px-md-275 {
    padding-left: 275px;
  }
  .p-md-270 {
    padding: 270px;
  }
  .pt-md-270,
  .py-md-270 {
    padding-top: 270px;
  }
  .pr-md-270,
  .px-md-270 {
    padding-right: 270px;
  }
  .pb-md-270,
  .py-md-270 {
    padding-bottom: 270px;
  }
  .pl-md-270,
  .px-md-270 {
    padding-left: 270px;
  }
  .p-md-265 {
    padding: 265px;
  }
  .pt-md-265,
  .py-md-265 {
    padding-top: 265px;
  }
  .pr-md-265,
  .px-md-265 {
    padding-right: 265px;
  }
  .pb-md-265,
  .py-md-265 {
    padding-bottom: 265px;
  }
  .pl-md-265,
  .px-md-265 {
    padding-left: 265px;
  }
  .p-md-260 {
    padding: 260px;
  }
  .pt-md-260,
  .py-md-260 {
    padding-top: 260px;
  }
  .pr-md-260,
  .px-md-260 {
    padding-right: 260px;
  }
  .pb-md-260,
  .py-md-260 {
    padding-bottom: 260px;
  }
  .pl-md-260,
  .px-md-260 {
    padding-left: 260px;
  }
  .p-md-255 {
    padding: 255px;
  }
  .pt-md-255,
  .py-md-255 {
    padding-top: 255px;
  }
  .pr-md-255,
  .px-md-255 {
    padding-right: 255px;
  }
  .pb-md-255,
  .py-md-255 {
    padding-bottom: 255px;
  }
  .pl-md-255,
  .px-md-255 {
    padding-left: 255px;
  }
  .p-md-250 {
    padding: 250px;
  }
  .pt-md-250,
  .py-md-250 {
    padding-top: 250px;
  }
  .pr-md-250,
  .px-md-250 {
    padding-right: 250px;
  }
  .pb-md-250,
  .py-md-250 {
    padding-bottom: 250px;
  }
  .pl-md-250,
  .px-md-250 {
    padding-left: 250px;
  }
  .p-md-245 {
    padding: 245px;
  }
  .pt-md-245,
  .py-md-245 {
    padding-top: 245px;
  }
  .pr-md-245,
  .px-md-245 {
    padding-right: 245px;
  }
  .pb-md-245,
  .py-md-245 {
    padding-bottom: 245px;
  }
  .pl-md-245,
  .px-md-245 {
    padding-left: 245px;
  }
  .p-md-240 {
    padding: 240px;
  }
  .pt-md-240,
  .py-md-240 {
    padding-top: 240px;
  }
  .pr-md-240,
  .px-md-240 {
    padding-right: 240px;
  }
  .pb-md-240,
  .py-md-240 {
    padding-bottom: 240px;
  }
  .pl-md-240,
  .px-md-240 {
    padding-left: 240px;
  }
  .p-md-235 {
    padding: 235px;
  }
  .pt-md-235,
  .py-md-235 {
    padding-top: 235px;
  }
  .pr-md-235,
  .px-md-235 {
    padding-right: 235px;
  }
  .pb-md-235,
  .py-md-235 {
    padding-bottom: 235px;
  }
  .pl-md-235,
  .px-md-235 {
    padding-left: 235px;
  }
  .p-md-230 {
    padding: 230px;
  }
  .pt-md-230,
  .py-md-230 {
    padding-top: 230px;
  }
  .pr-md-230,
  .px-md-230 {
    padding-right: 230px;
  }
  .pb-md-230,
  .py-md-230 {
    padding-bottom: 230px;
  }
  .pl-md-230,
  .px-md-230 {
    padding-left: 230px;
  }
  .p-md-225 {
    padding: 225px;
  }
  .pt-md-225,
  .py-md-225 {
    padding-top: 225px;
  }
  .pr-md-225,
  .px-md-225 {
    padding-right: 225px;
  }
  .pb-md-225,
  .py-md-225 {
    padding-bottom: 225px;
  }
  .pl-md-225,
  .px-md-225 {
    padding-left: 225px;
  }
  .p-md-220 {
    padding: 220px;
  }
  .pt-md-220,
  .py-md-220 {
    padding-top: 220px;
  }
  .pr-md-220,
  .px-md-220 {
    padding-right: 220px;
  }
  .pb-md-220,
  .py-md-220 {
    padding-bottom: 220px;
  }
  .pl-md-220,
  .px-md-220 {
    padding-left: 220px;
  }
  .p-md-215 {
    padding: 215px;
  }
  .pt-md-215,
  .py-md-215 {
    padding-top: 215px;
  }
  .pr-md-215,
  .px-md-215 {
    padding-right: 215px;
  }
  .pb-md-215,
  .py-md-215 {
    padding-bottom: 215px;
  }
  .pl-md-215,
  .px-md-215 {
    padding-left: 215px;
  }
  .p-md-210 {
    padding: 210px;
  }
  .pt-md-210,
  .py-md-210 {
    padding-top: 210px;
  }
  .pr-md-210,
  .px-md-210 {
    padding-right: 210px;
  }
  .pb-md-210,
  .py-md-210 {
    padding-bottom: 210px;
  }
  .pl-md-210,
  .px-md-210 {
    padding-left: 210px;
  }
  .p-md-205 {
    padding: 205px;
  }
  .pt-md-205,
  .py-md-205 {
    padding-top: 205px;
  }
  .pr-md-205,
  .px-md-205 {
    padding-right: 205px;
  }
  .pb-md-205,
  .py-md-205 {
    padding-bottom: 205px;
  }
  .pl-md-205,
  .px-md-205 {
    padding-left: 205px;
  }
  .p-md-200 {
    padding: 200px;
  }
  .pt-md-200,
  .py-md-200 {
    padding-top: 200px;
  }
  .pr-md-200,
  .px-md-200 {
    padding-right: 200px;
  }
  .pb-md-200,
  .py-md-200 {
    padding-bottom: 200px;
  }
  .pl-md-200,
  .px-md-200 {
    padding-left: 200px;
  }
  .p-md-195 {
    padding: 195px;
  }
  .pt-md-195,
  .py-md-195 {
    padding-top: 195px;
  }
  .pr-md-195,
  .px-md-195 {
    padding-right: 195px;
  }
  .pb-md-195,
  .py-md-195 {
    padding-bottom: 195px;
  }
  .pl-md-195,
  .px-md-195 {
    padding-left: 195px;
  }
  .p-md-190 {
    padding: 190px;
  }
  .pt-md-190,
  .py-md-190 {
    padding-top: 190px;
  }
  .pr-md-190,
  .px-md-190 {
    padding-right: 190px;
  }
  .pb-md-190,
  .py-md-190 {
    padding-bottom: 190px;
  }
  .pl-md-190,
  .px-md-190 {
    padding-left: 190px;
  }
  .p-md-185 {
    padding: 185px;
  }
  .pt-md-185,
  .py-md-185 {
    padding-top: 185px;
  }
  .pr-md-185,
  .px-md-185 {
    padding-right: 185px;
  }
  .pb-md-185,
  .py-md-185 {
    padding-bottom: 185px;
  }
  .pl-md-185,
  .px-md-185 {
    padding-left: 185px;
  }
  .p-md-180 {
    padding: 180px;
  }
  .pt-md-180,
  .py-md-180 {
    padding-top: 180px;
  }
  .pr-md-180,
  .px-md-180 {
    padding-right: 180px;
  }
  .pb-md-180,
  .py-md-180 {
    padding-bottom: 180px;
  }
  .pl-md-180,
  .px-md-180 {
    padding-left: 180px;
  }
  .p-md-175 {
    padding: 175px;
  }
  .pt-md-175,
  .py-md-175 {
    padding-top: 175px;
  }
  .pr-md-175,
  .px-md-175 {
    padding-right: 175px;
  }
  .pb-md-175,
  .py-md-175 {
    padding-bottom: 175px;
  }
  .pl-md-175,
  .px-md-175 {
    padding-left: 175px;
  }
  .p-md-170 {
    padding: 170px;
  }
  .pt-md-170,
  .py-md-170 {
    padding-top: 170px;
  }
  .pr-md-170,
  .px-md-170 {
    padding-right: 170px;
  }
  .pb-md-170,
  .py-md-170 {
    padding-bottom: 170px;
  }
  .pl-md-170,
  .px-md-170 {
    padding-left: 170px;
  }
  .p-md-165 {
    padding: 165px;
  }
  .pt-md-165,
  .py-md-165 {
    padding-top: 165px;
  }
  .pr-md-165,
  .px-md-165 {
    padding-right: 165px;
  }
  .pb-md-165,
  .py-md-165 {
    padding-bottom: 165px;
  }
  .pl-md-165,
  .px-md-165 {
    padding-left: 165px;
  }
  .p-md-160 {
    padding: 160px;
  }
  .pt-md-160,
  .py-md-160 {
    padding-top: 160px;
  }
  .pr-md-160,
  .px-md-160 {
    padding-right: 160px;
  }
  .pb-md-160,
  .py-md-160 {
    padding-bottom: 160px;
  }
  .pl-md-160,
  .px-md-160 {
    padding-left: 160px;
  }
  .p-md-155 {
    padding: 155px;
  }
  .pt-md-155,
  .py-md-155 {
    padding-top: 155px;
  }
  .pr-md-155,
  .px-md-155 {
    padding-right: 155px;
  }
  .pb-md-155,
  .py-md-155 {
    padding-bottom: 155px;
  }
  .pl-md-155,
  .px-md-155 {
    padding-left: 155px;
  }
  .p-md-150 {
    padding: 150px;
  }
  .pt-md-150,
  .py-md-150 {
    padding-top: 150px;
  }
  .pr-md-150,
  .px-md-150 {
    padding-right: 150px;
  }
  .pb-md-150,
  .py-md-150 {
    padding-bottom: 150px;
  }
  .pl-md-150,
  .px-md-150 {
    padding-left: 150px;
  }
  .p-md-145 {
    padding: 145px;
  }
  .pt-md-145,
  .py-md-145 {
    padding-top: 145px;
  }
  .pr-md-145,
  .px-md-145 {
    padding-right: 145px;
  }
  .pb-md-145,
  .py-md-145 {
    padding-bottom: 145px;
  }
  .pl-md-145,
  .px-md-145 {
    padding-left: 145px;
  }
  .p-md-140 {
    padding: 140px;
  }
  .pt-md-140,
  .py-md-140 {
    padding-top: 140px;
  }
  .pr-md-140,
  .px-md-140 {
    padding-right: 140px;
  }
  .pb-md-140,
  .py-md-140 {
    padding-bottom: 140px;
  }
  .pl-md-140,
  .px-md-140 {
    padding-left: 140px;
  }
  .p-md-135 {
    padding: 135px;
  }
  .pt-md-135,
  .py-md-135 {
    padding-top: 135px;
  }
  .pr-md-135,
  .px-md-135 {
    padding-right: 135px;
  }
  .pb-md-135,
  .py-md-135 {
    padding-bottom: 135px;
  }
  .pl-md-135,
  .px-md-135 {
    padding-left: 135px;
  }
  .p-md-130 {
    padding: 130px;
  }
  .pt-md-130,
  .py-md-130 {
    padding-top: 130px;
  }
  .pr-md-130,
  .px-md-130 {
    padding-right: 130px;
  }
  .pb-md-130,
  .py-md-130 {
    padding-bottom: 130px;
  }
  .pl-md-130,
  .px-md-130 {
    padding-left: 130px;
  }
  .p-md-125 {
    padding: 125px;
  }
  .pt-md-125,
  .py-md-125 {
    padding-top: 125px;
  }
  .pr-md-125,
  .px-md-125 {
    padding-right: 125px;
  }
  .pb-md-125,
  .py-md-125 {
    padding-bottom: 125px;
  }
  .pl-md-125,
  .px-md-125 {
    padding-left: 125px;
  }
  .p-md-120 {
    padding: 120px;
  }
  .pt-md-120,
  .py-md-120 {
    padding-top: 120px;
  }
  .pr-md-120,
  .px-md-120 {
    padding-right: 120px;
  }
  .pb-md-120,
  .py-md-120 {
    padding-bottom: 120px;
  }
  .pl-md-120,
  .px-md-120 {
    padding-left: 120px;
  }
  .p-md-115 {
    padding: 115px;
  }
  .pt-md-115,
  .py-md-115 {
    padding-top: 115px;
  }
  .pr-md-115,
  .px-md-115 {
    padding-right: 115px;
  }
  .pb-md-115,
  .py-md-115 {
    padding-bottom: 115px;
  }
  .pl-md-115,
  .px-md-115 {
    padding-left: 115px;
  }
  .p-md-110 {
    padding: 110px;
  }
  .pt-md-110,
  .py-md-110 {
    padding-top: 110px;
  }
  .pr-md-110,
  .px-md-110 {
    padding-right: 110px;
  }
  .pb-md-110,
  .py-md-110 {
    padding-bottom: 110px;
  }
  .pl-md-110,
  .px-md-110 {
    padding-left: 110px;
  }
  .p-md-105 {
    padding: 105px;
  }
  .pt-md-105,
  .py-md-105 {
    padding-top: 105px;
  }
  .pr-md-105,
  .px-md-105 {
    padding-right: 105px;
  }
  .pb-md-105,
  .py-md-105 {
    padding-bottom: 105px;
  }
  .pl-md-105,
  .px-md-105 {
    padding-left: 105px;
  }
  .p-md-100 {
    padding: 100px;
  }
  .pt-md-100,
  .py-md-100 {
    padding-top: 100px;
  }
  .pr-md-100,
  .px-md-100 {
    padding-right: 100px;
  }
  .pb-md-100,
  .py-md-100 {
    padding-bottom: 100px;
  }
  .pl-md-100,
  .px-md-100 {
    padding-left: 100px;
  }
  .p-md-95 {
    padding: 95px;
  }
  .pt-md-95,
  .py-md-95 {
    padding-top: 95px;
  }
  .pr-md-95,
  .px-md-95 {
    padding-right: 95px;
  }
  .pb-md-95,
  .py-md-95 {
    padding-bottom: 95px;
  }
  .pl-md-95,
  .px-md-95 {
    padding-left: 95px;
  }
  .p-md-90 {
    padding: 90px;
  }
  .pt-md-90,
  .py-md-90 {
    padding-top: 90px;
  }
  .pr-md-90,
  .px-md-90 {
    padding-right: 90px;
  }
  .pb-md-90,
  .py-md-90 {
    padding-bottom: 90px;
  }
  .pl-md-90,
  .px-md-90 {
    padding-left: 90px;
  }
  .p-md-85 {
    padding: 85px;
  }
  .pt-md-85,
  .py-md-85 {
    padding-top: 85px;
  }
  .pr-md-85,
  .px-md-85 {
    padding-right: 85px;
  }
  .pb-md-85,
  .py-md-85 {
    padding-bottom: 85px;
  }
  .pl-md-85,
  .px-md-85 {
    padding-left: 85px;
  }
  .p-md-80 {
    padding: 80px;
  }
  .pt-md-80,
  .py-md-80 {
    padding-top: 80px;
  }
  .pr-md-80,
  .px-md-80 {
    padding-right: 80px;
  }
  .pb-md-80,
  .py-md-80 {
    padding-bottom: 80px;
  }
  .pl-md-80,
  .px-md-80 {
    padding-left: 80px;
  }
  .p-md-75 {
    padding: 75px;
  }
  .pt-md-75,
  .py-md-75 {
    padding-top: 75px;
  }
  .pr-md-75,
  .px-md-75 {
    padding-right: 75px;
  }
  .pb-md-75,
  .py-md-75 {
    padding-bottom: 75px;
  }
  .pl-md-75,
  .px-md-75 {
    padding-left: 75px;
  }
  .p-md-70 {
    padding: 70px;
  }
  .pt-md-70,
  .py-md-70 {
    padding-top: 70px;
  }
  .pr-md-70,
  .px-md-70 {
    padding-right: 70px;
  }
  .pb-md-70,
  .py-md-70 {
    padding-bottom: 70px;
  }
  .pl-md-70,
  .px-md-70 {
    padding-left: 70px;
  }
  .p-md-65 {
    padding: 65px;
  }
  .pt-md-65,
  .py-md-65 {
    padding-top: 65px;
  }
  .pr-md-65,
  .px-md-65 {
    padding-right: 65px;
  }
  .pb-md-65,
  .py-md-65 {
    padding-bottom: 65px;
  }
  .pl-md-65,
  .px-md-65 {
    padding-left: 65px;
  }
  .p-md-60 {
    padding: 60px;
  }
  .pt-md-60,
  .py-md-60 {
    padding-top: 60px;
  }
  .pr-md-60,
  .px-md-60 {
    padding-right: 60px;
  }
  .pb-md-60,
  .py-md-60 {
    padding-bottom: 60px;
  }
  .pl-md-60,
  .px-md-60 {
    padding-left: 60px;
  }
  .p-md-55 {
    padding: 55px;
  }
  .pt-md-55,
  .py-md-55 {
    padding-top: 55px;
  }
  .pr-md-55,
  .px-md-55 {
    padding-right: 55px;
  }
  .pb-md-55,
  .py-md-55 {
    padding-bottom: 55px;
  }
  .pl-md-55,
  .px-md-55 {
    padding-left: 55px;
  }
  .p-md-50 {
    padding: 50px;
  }
  .pt-md-50,
  .py-md-50 {
    padding-top: 50px;
  }
  .pr-md-50,
  .px-md-50 {
    padding-right: 50px;
  }
  .pb-md-50,
  .py-md-50 {
    padding-bottom: 50px;
  }
  .pl-md-50,
  .px-md-50 {
    padding-left: 50px;
  }
  .p-md-45 {
    padding: 45px;
  }
  .pt-md-45,
  .py-md-45 {
    padding-top: 45px;
  }
  .pr-md-45,
  .px-md-45 {
    padding-right: 45px;
  }
  .pb-md-45,
  .py-md-45 {
    padding-bottom: 45px;
  }
  .pl-md-45,
  .px-md-45 {
    padding-left: 45px;
  }
  .p-md-40 {
    padding: 40px;
  }
  .pt-md-40,
  .py-md-40 {
    padding-top: 40px;
  }
  .pr-md-40,
  .px-md-40 {
    padding-right: 40px;
  }
  .pb-md-40,
  .py-md-40 {
    padding-bottom: 40px;
  }
  .pl-md-40,
  .px-md-40 {
    padding-left: 40px;
  }
  .p-md-35 {
    padding: 35px;
  }
  .pt-md-35,
  .py-md-35 {
    padding-top: 35px;
  }
  .pr-md-35,
  .px-md-35 {
    padding-right: 35px;
  }
  .pb-md-35,
  .py-md-35 {
    padding-bottom: 35px;
  }
  .pl-md-35,
  .px-md-35 {
    padding-left: 35px;
  }
  .p-md-30 {
    padding: 30px;
  }
  .pt-md-30,
  .py-md-30 {
    padding-top: 30px;
  }
  .pr-md-30,
  .px-md-30 {
    padding-right: 30px;
  }
  .pb-md-30,
  .py-md-30 {
    padding-bottom: 30px;
  }
  .pl-md-30,
  .px-md-30 {
    padding-left: 30px;
  }
  .p-md-25 {
    padding: 25px;
  }
  .pt-md-25,
  .py-md-25 {
    padding-top: 25px;
  }
  .pr-md-25,
  .px-md-25 {
    padding-right: 25px;
  }
  .pb-md-25,
  .py-md-25 {
    padding-bottom: 25px;
  }
  .pl-md-25,
  .px-md-25 {
    padding-left: 25px;
  }
  .p-md-20 {
    padding: 20px;
  }
  .pt-md-20,
  .py-md-20 {
    padding-top: 20px;
  }
  .pr-md-20,
  .px-md-20 {
    padding-right: 20px;
  }
  .pb-md-20,
  .py-md-20 {
    padding-bottom: 20px;
  }
  .pl-md-20,
  .px-md-20 {
    padding-left: 20px;
  }
  .p-md-15 {
    padding: 15px;
  }
  .pt-md-15,
  .py-md-15 {
    padding-top: 15px;
  }
  .pr-md-15,
  .px-md-15 {
    padding-right: 15px;
  }
  .pb-md-15,
  .py-md-15 {
    padding-bottom: 15px;
  }
  .pl-md-15,
  .px-md-15 {
    padding-left: 15px;
  }
  .p-md-10 {
    padding: 10px;
  }
  .pt-md-10,
  .py-md-10 {
    padding-top: 10px;
  }
  .pr-md-10,
  .px-md-10 {
    padding-right: 10px;
  }
  .pb-md-10,
  .py-md-10 {
    padding-bottom: 10px;
  }
  .pl-md-10,
  .px-md-10 {
    padding-left: 10px;
  }
  .p-md-5 {
    padding: 5px;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 5px;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 5px;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 5px;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 5px;
  }
  .p-md-0 {
    padding: 0px;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0px;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0px;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0px;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0px;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-300 {
    margin: 300px;
  }
  .mt-lg-300,
  .my-lg-300 {
    margin-top: 300px;
  }
  .mr-lg-300,
  .mx-lg-300 {
    margin-right: 300px;
  }
  .mb-lg-300,
  .my-lg-300 {
    margin-bottom: 300px;
  }
  .ml-lg-300,
  .mx-lg-300 {
    margin-left: 300px;
  }
  .m-lg-295 {
    margin: 295px;
  }
  .mt-lg-295,
  .my-lg-295 {
    margin-top: 295px;
  }
  .mr-lg-295,
  .mx-lg-295 {
    margin-right: 295px;
  }
  .mb-lg-295,
  .my-lg-295 {
    margin-bottom: 295px;
  }
  .ml-lg-295,
  .mx-lg-295 {
    margin-left: 295px;
  }
  .m-lg-290 {
    margin: 290px;
  }
  .mt-lg-290,
  .my-lg-290 {
    margin-top: 290px;
  }
  .mr-lg-290,
  .mx-lg-290 {
    margin-right: 290px;
  }
  .mb-lg-290,
  .my-lg-290 {
    margin-bottom: 290px;
  }
  .ml-lg-290,
  .mx-lg-290 {
    margin-left: 290px;
  }
  .m-lg-285 {
    margin: 285px;
  }
  .mt-lg-285,
  .my-lg-285 {
    margin-top: 285px;
  }
  .mr-lg-285,
  .mx-lg-285 {
    margin-right: 285px;
  }
  .mb-lg-285,
  .my-lg-285 {
    margin-bottom: 285px;
  }
  .ml-lg-285,
  .mx-lg-285 {
    margin-left: 285px;
  }
  .m-lg-280 {
    margin: 280px;
  }
  .mt-lg-280,
  .my-lg-280 {
    margin-top: 280px;
  }
  .mr-lg-280,
  .mx-lg-280 {
    margin-right: 280px;
  }
  .mb-lg-280,
  .my-lg-280 {
    margin-bottom: 280px;
  }
  .ml-lg-280,
  .mx-lg-280 {
    margin-left: 280px;
  }
  .m-lg-275 {
    margin: 275px;
  }
  .mt-lg-275,
  .my-lg-275 {
    margin-top: 275px;
  }
  .mr-lg-275,
  .mx-lg-275 {
    margin-right: 275px;
  }
  .mb-lg-275,
  .my-lg-275 {
    margin-bottom: 275px;
  }
  .ml-lg-275,
  .mx-lg-275 {
    margin-left: 275px;
  }
  .m-lg-270 {
    margin: 270px;
  }
  .mt-lg-270,
  .my-lg-270 {
    margin-top: 270px;
  }
  .mr-lg-270,
  .mx-lg-270 {
    margin-right: 270px;
  }
  .mb-lg-270,
  .my-lg-270 {
    margin-bottom: 270px;
  }
  .ml-lg-270,
  .mx-lg-270 {
    margin-left: 270px;
  }
  .m-lg-265 {
    margin: 265px;
  }
  .mt-lg-265,
  .my-lg-265 {
    margin-top: 265px;
  }
  .mr-lg-265,
  .mx-lg-265 {
    margin-right: 265px;
  }
  .mb-lg-265,
  .my-lg-265 {
    margin-bottom: 265px;
  }
  .ml-lg-265,
  .mx-lg-265 {
    margin-left: 265px;
  }
  .m-lg-260 {
    margin: 260px;
  }
  .mt-lg-260,
  .my-lg-260 {
    margin-top: 260px;
  }
  .mr-lg-260,
  .mx-lg-260 {
    margin-right: 260px;
  }
  .mb-lg-260,
  .my-lg-260 {
    margin-bottom: 260px;
  }
  .ml-lg-260,
  .mx-lg-260 {
    margin-left: 260px;
  }
  .m-lg-255 {
    margin: 255px;
  }
  .mt-lg-255,
  .my-lg-255 {
    margin-top: 255px;
  }
  .mr-lg-255,
  .mx-lg-255 {
    margin-right: 255px;
  }
  .mb-lg-255,
  .my-lg-255 {
    margin-bottom: 255px;
  }
  .ml-lg-255,
  .mx-lg-255 {
    margin-left: 255px;
  }
  .m-lg-250 {
    margin: 250px;
  }
  .mt-lg-250,
  .my-lg-250 {
    margin-top: 250px;
  }
  .mr-lg-250,
  .mx-lg-250 {
    margin-right: 250px;
  }
  .mb-lg-250,
  .my-lg-250 {
    margin-bottom: 250px;
  }
  .ml-lg-250,
  .mx-lg-250 {
    margin-left: 250px;
  }
  .m-lg-245 {
    margin: 245px;
  }
  .mt-lg-245,
  .my-lg-245 {
    margin-top: 245px;
  }
  .mr-lg-245,
  .mx-lg-245 {
    margin-right: 245px;
  }
  .mb-lg-245,
  .my-lg-245 {
    margin-bottom: 245px;
  }
  .ml-lg-245,
  .mx-lg-245 {
    margin-left: 245px;
  }
  .m-lg-240 {
    margin: 240px;
  }
  .mt-lg-240,
  .my-lg-240 {
    margin-top: 240px;
  }
  .mr-lg-240,
  .mx-lg-240 {
    margin-right: 240px;
  }
  .mb-lg-240,
  .my-lg-240 {
    margin-bottom: 240px;
  }
  .ml-lg-240,
  .mx-lg-240 {
    margin-left: 240px;
  }
  .m-lg-235 {
    margin: 235px;
  }
  .mt-lg-235,
  .my-lg-235 {
    margin-top: 235px;
  }
  .mr-lg-235,
  .mx-lg-235 {
    margin-right: 235px;
  }
  .mb-lg-235,
  .my-lg-235 {
    margin-bottom: 235px;
  }
  .ml-lg-235,
  .mx-lg-235 {
    margin-left: 235px;
  }
  .m-lg-230 {
    margin: 230px;
  }
  .mt-lg-230,
  .my-lg-230 {
    margin-top: 230px;
  }
  .mr-lg-230,
  .mx-lg-230 {
    margin-right: 230px;
  }
  .mb-lg-230,
  .my-lg-230 {
    margin-bottom: 230px;
  }
  .ml-lg-230,
  .mx-lg-230 {
    margin-left: 230px;
  }
  .m-lg-225 {
    margin: 225px;
  }
  .mt-lg-225,
  .my-lg-225 {
    margin-top: 225px;
  }
  .mr-lg-225,
  .mx-lg-225 {
    margin-right: 225px;
  }
  .mb-lg-225,
  .my-lg-225 {
    margin-bottom: 225px;
  }
  .ml-lg-225,
  .mx-lg-225 {
    margin-left: 225px;
  }
  .m-lg-220 {
    margin: 220px;
  }
  .mt-lg-220,
  .my-lg-220 {
    margin-top: 220px;
  }
  .mr-lg-220,
  .mx-lg-220 {
    margin-right: 220px;
  }
  .mb-lg-220,
  .my-lg-220 {
    margin-bottom: 220px;
  }
  .ml-lg-220,
  .mx-lg-220 {
    margin-left: 220px;
  }
  .m-lg-215 {
    margin: 215px;
  }
  .mt-lg-215,
  .my-lg-215 {
    margin-top: 215px;
  }
  .mr-lg-215,
  .mx-lg-215 {
    margin-right: 215px;
  }
  .mb-lg-215,
  .my-lg-215 {
    margin-bottom: 215px;
  }
  .ml-lg-215,
  .mx-lg-215 {
    margin-left: 215px;
  }
  .m-lg-210 {
    margin: 210px;
  }
  .mt-lg-210,
  .my-lg-210 {
    margin-top: 210px;
  }
  .mr-lg-210,
  .mx-lg-210 {
    margin-right: 210px;
  }
  .mb-lg-210,
  .my-lg-210 {
    margin-bottom: 210px;
  }
  .ml-lg-210,
  .mx-lg-210 {
    margin-left: 210px;
  }
  .m-lg-205 {
    margin: 205px;
  }
  .mt-lg-205,
  .my-lg-205 {
    margin-top: 205px;
  }
  .mr-lg-205,
  .mx-lg-205 {
    margin-right: 205px;
  }
  .mb-lg-205,
  .my-lg-205 {
    margin-bottom: 205px;
  }
  .ml-lg-205,
  .mx-lg-205 {
    margin-left: 205px;
  }
  .m-lg-200 {
    margin: 200px;
  }
  .mt-lg-200,
  .my-lg-200 {
    margin-top: 200px;
  }
  .mr-lg-200,
  .mx-lg-200 {
    margin-right: 200px;
  }
  .mb-lg-200,
  .my-lg-200 {
    margin-bottom: 200px;
  }
  .ml-lg-200,
  .mx-lg-200 {
    margin-left: 200px;
  }
  .m-lg-195 {
    margin: 195px;
  }
  .mt-lg-195,
  .my-lg-195 {
    margin-top: 195px;
  }
  .mr-lg-195,
  .mx-lg-195 {
    margin-right: 195px;
  }
  .mb-lg-195,
  .my-lg-195 {
    margin-bottom: 195px;
  }
  .ml-lg-195,
  .mx-lg-195 {
    margin-left: 195px;
  }
  .m-lg-190 {
    margin: 190px;
  }
  .mt-lg-190,
  .my-lg-190 {
    margin-top: 190px;
  }
  .mr-lg-190,
  .mx-lg-190 {
    margin-right: 190px;
  }
  .mb-lg-190,
  .my-lg-190 {
    margin-bottom: 190px;
  }
  .ml-lg-190,
  .mx-lg-190 {
    margin-left: 190px;
  }
  .m-lg-185 {
    margin: 185px;
  }
  .mt-lg-185,
  .my-lg-185 {
    margin-top: 185px;
  }
  .mr-lg-185,
  .mx-lg-185 {
    margin-right: 185px;
  }
  .mb-lg-185,
  .my-lg-185 {
    margin-bottom: 185px;
  }
  .ml-lg-185,
  .mx-lg-185 {
    margin-left: 185px;
  }
  .m-lg-180 {
    margin: 180px;
  }
  .mt-lg-180,
  .my-lg-180 {
    margin-top: 180px;
  }
  .mr-lg-180,
  .mx-lg-180 {
    margin-right: 180px;
  }
  .mb-lg-180,
  .my-lg-180 {
    margin-bottom: 180px;
  }
  .ml-lg-180,
  .mx-lg-180 {
    margin-left: 180px;
  }
  .m-lg-175 {
    margin: 175px;
  }
  .mt-lg-175,
  .my-lg-175 {
    margin-top: 175px;
  }
  .mr-lg-175,
  .mx-lg-175 {
    margin-right: 175px;
  }
  .mb-lg-175,
  .my-lg-175 {
    margin-bottom: 175px;
  }
  .ml-lg-175,
  .mx-lg-175 {
    margin-left: 175px;
  }
  .m-lg-170 {
    margin: 170px;
  }
  .mt-lg-170,
  .my-lg-170 {
    margin-top: 170px;
  }
  .mr-lg-170,
  .mx-lg-170 {
    margin-right: 170px;
  }
  .mb-lg-170,
  .my-lg-170 {
    margin-bottom: 170px;
  }
  .ml-lg-170,
  .mx-lg-170 {
    margin-left: 170px;
  }
  .m-lg-165 {
    margin: 165px;
  }
  .mt-lg-165,
  .my-lg-165 {
    margin-top: 165px;
  }
  .mr-lg-165,
  .mx-lg-165 {
    margin-right: 165px;
  }
  .mb-lg-165,
  .my-lg-165 {
    margin-bottom: 165px;
  }
  .ml-lg-165,
  .mx-lg-165 {
    margin-left: 165px;
  }
  .m-lg-160 {
    margin: 160px;
  }
  .mt-lg-160,
  .my-lg-160 {
    margin-top: 160px;
  }
  .mr-lg-160,
  .mx-lg-160 {
    margin-right: 160px;
  }
  .mb-lg-160,
  .my-lg-160 {
    margin-bottom: 160px;
  }
  .ml-lg-160,
  .mx-lg-160 {
    margin-left: 160px;
  }
  .m-lg-155 {
    margin: 155px;
  }
  .mt-lg-155,
  .my-lg-155 {
    margin-top: 155px;
  }
  .mr-lg-155,
  .mx-lg-155 {
    margin-right: 155px;
  }
  .mb-lg-155,
  .my-lg-155 {
    margin-bottom: 155px;
  }
  .ml-lg-155,
  .mx-lg-155 {
    margin-left: 155px;
  }
  .m-lg-150 {
    margin: 150px;
  }
  .mt-lg-150,
  .my-lg-150 {
    margin-top: 150px;
  }
  .mr-lg-150,
  .mx-lg-150 {
    margin-right: 150px;
  }
  .mb-lg-150,
  .my-lg-150 {
    margin-bottom: 150px;
  }
  .ml-lg-150,
  .mx-lg-150 {
    margin-left: 150px;
  }
  .m-lg-145 {
    margin: 145px;
  }
  .mt-lg-145,
  .my-lg-145 {
    margin-top: 145px;
  }
  .mr-lg-145,
  .mx-lg-145 {
    margin-right: 145px;
  }
  .mb-lg-145,
  .my-lg-145 {
    margin-bottom: 145px;
  }
  .ml-lg-145,
  .mx-lg-145 {
    margin-left: 145px;
  }
  .m-lg-140 {
    margin: 140px;
  }
  .mt-lg-140,
  .my-lg-140 {
    margin-top: 140px;
  }
  .mr-lg-140,
  .mx-lg-140 {
    margin-right: 140px;
  }
  .mb-lg-140,
  .my-lg-140 {
    margin-bottom: 140px;
  }
  .ml-lg-140,
  .mx-lg-140 {
    margin-left: 140px;
  }
  .m-lg-135 {
    margin: 135px;
  }
  .mt-lg-135,
  .my-lg-135 {
    margin-top: 135px;
  }
  .mr-lg-135,
  .mx-lg-135 {
    margin-right: 135px;
  }
  .mb-lg-135,
  .my-lg-135 {
    margin-bottom: 135px;
  }
  .ml-lg-135,
  .mx-lg-135 {
    margin-left: 135px;
  }
  .m-lg-130 {
    margin: 130px;
  }
  .mt-lg-130,
  .my-lg-130 {
    margin-top: 130px;
  }
  .mr-lg-130,
  .mx-lg-130 {
    margin-right: 130px;
  }
  .mb-lg-130,
  .my-lg-130 {
    margin-bottom: 130px;
  }
  .ml-lg-130,
  .mx-lg-130 {
    margin-left: 130px;
  }
  .m-lg-125 {
    margin: 125px;
  }
  .mt-lg-125,
  .my-lg-125 {
    margin-top: 125px;
  }
  .mr-lg-125,
  .mx-lg-125 {
    margin-right: 125px;
  }
  .mb-lg-125,
  .my-lg-125 {
    margin-bottom: 125px;
  }
  .ml-lg-125,
  .mx-lg-125 {
    margin-left: 125px;
  }
  .m-lg-120 {
    margin: 120px;
  }
  .mt-lg-120,
  .my-lg-120 {
    margin-top: 120px;
  }
  .mr-lg-120,
  .mx-lg-120 {
    margin-right: 120px;
  }
  .mb-lg-120,
  .my-lg-120 {
    margin-bottom: 120px;
  }
  .ml-lg-120,
  .mx-lg-120 {
    margin-left: 120px;
  }
  .m-lg-115 {
    margin: 115px;
  }
  .mt-lg-115,
  .my-lg-115 {
    margin-top: 115px;
  }
  .mr-lg-115,
  .mx-lg-115 {
    margin-right: 115px;
  }
  .mb-lg-115,
  .my-lg-115 {
    margin-bottom: 115px;
  }
  .ml-lg-115,
  .mx-lg-115 {
    margin-left: 115px;
  }
  .m-lg-110 {
    margin: 110px;
  }
  .mt-lg-110,
  .my-lg-110 {
    margin-top: 110px;
  }
  .mr-lg-110,
  .mx-lg-110 {
    margin-right: 110px;
  }
  .mb-lg-110,
  .my-lg-110 {
    margin-bottom: 110px;
  }
  .ml-lg-110,
  .mx-lg-110 {
    margin-left: 110px;
  }
  .m-lg-105 {
    margin: 105px;
  }
  .mt-lg-105,
  .my-lg-105 {
    margin-top: 105px;
  }
  .mr-lg-105,
  .mx-lg-105 {
    margin-right: 105px;
  }
  .mb-lg-105,
  .my-lg-105 {
    margin-bottom: 105px;
  }
  .ml-lg-105,
  .mx-lg-105 {
    margin-left: 105px;
  }
  .m-lg-100 {
    margin: 100px;
  }
  .mt-lg-100,
  .my-lg-100 {
    margin-top: 100px;
  }
  .mr-lg-100,
  .mx-lg-100 {
    margin-right: 100px;
  }
  .mb-lg-100,
  .my-lg-100 {
    margin-bottom: 100px;
  }
  .ml-lg-100,
  .mx-lg-100 {
    margin-left: 100px;
  }
  .m-lg-95 {
    margin: 95px;
  }
  .mt-lg-95,
  .my-lg-95 {
    margin-top: 95px;
  }
  .mr-lg-95,
  .mx-lg-95 {
    margin-right: 95px;
  }
  .mb-lg-95,
  .my-lg-95 {
    margin-bottom: 95px;
  }
  .ml-lg-95,
  .mx-lg-95 {
    margin-left: 95px;
  }
  .m-lg-90 {
    margin: 90px;
  }
  .mt-lg-90,
  .my-lg-90 {
    margin-top: 90px;
  }
  .mr-lg-90,
  .mx-lg-90 {
    margin-right: 90px;
  }
  .mb-lg-90,
  .my-lg-90 {
    margin-bottom: 90px;
  }
  .ml-lg-90,
  .mx-lg-90 {
    margin-left: 90px;
  }
  .m-lg-85 {
    margin: 85px;
  }
  .mt-lg-85,
  .my-lg-85 {
    margin-top: 85px;
  }
  .mr-lg-85,
  .mx-lg-85 {
    margin-right: 85px;
  }
  .mb-lg-85,
  .my-lg-85 {
    margin-bottom: 85px;
  }
  .ml-lg-85,
  .mx-lg-85 {
    margin-left: 85px;
  }
  .m-lg-80 {
    margin: 80px;
  }
  .mt-lg-80,
  .my-lg-80 {
    margin-top: 80px;
  }
  .mr-lg-80,
  .mx-lg-80 {
    margin-right: 80px;
  }
  .mb-lg-80,
  .my-lg-80 {
    margin-bottom: 80px;
  }
  .ml-lg-80,
  .mx-lg-80 {
    margin-left: 80px;
  }
  .m-lg-75 {
    margin: 75px;
  }
  .mt-lg-75,
  .my-lg-75 {
    margin-top: 75px;
  }
  .mr-lg-75,
  .mx-lg-75 {
    margin-right: 75px;
  }
  .mb-lg-75,
  .my-lg-75 {
    margin-bottom: 75px;
  }
  .ml-lg-75,
  .mx-lg-75 {
    margin-left: 75px;
  }
  .m-lg-70 {
    margin: 70px;
  }
  .mt-lg-70,
  .my-lg-70 {
    margin-top: 70px;
  }
  .mr-lg-70,
  .mx-lg-70 {
    margin-right: 70px;
  }
  .mb-lg-70,
  .my-lg-70 {
    margin-bottom: 70px;
  }
  .ml-lg-70,
  .mx-lg-70 {
    margin-left: 70px;
  }
  .m-lg-65 {
    margin: 65px;
  }
  .mt-lg-65,
  .my-lg-65 {
    margin-top: 65px;
  }
  .mr-lg-65,
  .mx-lg-65 {
    margin-right: 65px;
  }
  .mb-lg-65,
  .my-lg-65 {
    margin-bottom: 65px;
  }
  .ml-lg-65,
  .mx-lg-65 {
    margin-left: 65px;
  }
  .m-lg-60 {
    margin: 60px;
  }
  .mt-lg-60,
  .my-lg-60 {
    margin-top: 60px;
  }
  .mr-lg-60,
  .mx-lg-60 {
    margin-right: 60px;
  }
  .mb-lg-60,
  .my-lg-60 {
    margin-bottom: 60px;
  }
  .ml-lg-60,
  .mx-lg-60 {
    margin-left: 60px;
  }
  .m-lg-55 {
    margin: 55px;
  }
  .mt-lg-55,
  .my-lg-55 {
    margin-top: 55px;
  }
  .mr-lg-55,
  .mx-lg-55 {
    margin-right: 55px;
  }
  .mb-lg-55,
  .my-lg-55 {
    margin-bottom: 55px;
  }
  .ml-lg-55,
  .mx-lg-55 {
    margin-left: 55px;
  }
  .m-lg-50 {
    margin: 50px;
  }
  .mt-lg-50,
  .my-lg-50 {
    margin-top: 50px;
  }
  .mr-lg-50,
  .mx-lg-50 {
    margin-right: 50px;
  }
  .mb-lg-50,
  .my-lg-50 {
    margin-bottom: 50px;
  }
  .ml-lg-50,
  .mx-lg-50 {
    margin-left: 50px;
  }
  .m-lg-45 {
    margin: 45px;
  }
  .mt-lg-45,
  .my-lg-45 {
    margin-top: 45px;
  }
  .mr-lg-45,
  .mx-lg-45 {
    margin-right: 45px;
  }
  .mb-lg-45,
  .my-lg-45 {
    margin-bottom: 45px;
  }
  .ml-lg-45,
  .mx-lg-45 {
    margin-left: 45px;
  }
  .m-lg-40 {
    margin: 40px;
  }
  .mt-lg-40,
  .my-lg-40 {
    margin-top: 40px;
  }
  .mr-lg-40,
  .mx-lg-40 {
    margin-right: 40px;
  }
  .mb-lg-40,
  .my-lg-40 {
    margin-bottom: 40px;
  }
  .ml-lg-40,
  .mx-lg-40 {
    margin-left: 40px;
  }
  .m-lg-35 {
    margin: 35px;
  }
  .mt-lg-35,
  .my-lg-35 {
    margin-top: 35px;
  }
  .mr-lg-35,
  .mx-lg-35 {
    margin-right: 35px;
  }
  .mb-lg-35,
  .my-lg-35 {
    margin-bottom: 35px;
  }
  .ml-lg-35,
  .mx-lg-35 {
    margin-left: 35px;
  }
  .m-lg-30 {
    margin: 30px;
  }
  .mt-lg-30,
  .my-lg-30 {
    margin-top: 30px;
  }
  .mr-lg-30,
  .mx-lg-30 {
    margin-right: 30px;
  }
  .mb-lg-30,
  .my-lg-30 {
    margin-bottom: 30px;
  }
  .ml-lg-30,
  .mx-lg-30 {
    margin-left: 30px;
  }
  .m-lg-25 {
    margin: 25px;
  }
  .mt-lg-25,
  .my-lg-25 {
    margin-top: 25px;
  }
  .mr-lg-25,
  .mx-lg-25 {
    margin-right: 25px;
  }
  .mb-lg-25,
  .my-lg-25 {
    margin-bottom: 25px;
  }
  .ml-lg-25,
  .mx-lg-25 {
    margin-left: 25px;
  }
  .m-lg-20 {
    margin: 20px;
  }
  .mt-lg-20,
  .my-lg-20 {
    margin-top: 20px;
  }
  .mr-lg-20,
  .mx-lg-20 {
    margin-right: 20px;
  }
  .mb-lg-20,
  .my-lg-20 {
    margin-bottom: 20px;
  }
  .ml-lg-20,
  .mx-lg-20 {
    margin-left: 20px;
  }
  .m-lg-15 {
    margin: 15px;
  }
  .mt-lg-15,
  .my-lg-15 {
    margin-top: 15px;
  }
  .mr-lg-15,
  .mx-lg-15 {
    margin-right: 15px;
  }
  .mb-lg-15,
  .my-lg-15 {
    margin-bottom: 15px;
  }
  .ml-lg-15,
  .mx-lg-15 {
    margin-left: 15px;
  }
  .m-lg-10 {
    margin: 10px;
  }
  .mt-lg-10,
  .my-lg-10 {
    margin-top: 10px;
  }
  .mr-lg-10,
  .mx-lg-10 {
    margin-right: 10px;
  }
  .mb-lg-10,
  .my-lg-10 {
    margin-bottom: 10px;
  }
  .ml-lg-10,
  .mx-lg-10 {
    margin-left: 10px;
  }
  .m-lg-5 {
    margin: 5px;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 5px;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 5px;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 5px;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 5px;
  }
  .m-lg-0 {
    margin: 0px;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0px;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0px;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0px;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0px;
  }
  .p-lg-300 {
    padding: 300px;
  }
  .pt-lg-300,
  .py-lg-300 {
    padding-top: 300px;
  }
  .pr-lg-300,
  .px-lg-300 {
    padding-right: 300px;
  }
  .pb-lg-300,
  .py-lg-300 {
    padding-bottom: 300px;
  }
  .pl-lg-300,
  .px-lg-300 {
    padding-left: 300px;
  }
  .p-lg-295 {
    padding: 295px;
  }
  .pt-lg-295,
  .py-lg-295 {
    padding-top: 295px;
  }
  .pr-lg-295,
  .px-lg-295 {
    padding-right: 295px;
  }
  .pb-lg-295,
  .py-lg-295 {
    padding-bottom: 295px;
  }
  .pl-lg-295,
  .px-lg-295 {
    padding-left: 295px;
  }
  .p-lg-290 {
    padding: 290px;
  }
  .pt-lg-290,
  .py-lg-290 {
    padding-top: 290px;
  }
  .pr-lg-290,
  .px-lg-290 {
    padding-right: 290px;
  }
  .pb-lg-290,
  .py-lg-290 {
    padding-bottom: 290px;
  }
  .pl-lg-290,
  .px-lg-290 {
    padding-left: 290px;
  }
  .p-lg-285 {
    padding: 285px;
  }
  .pt-lg-285,
  .py-lg-285 {
    padding-top: 285px;
  }
  .pr-lg-285,
  .px-lg-285 {
    padding-right: 285px;
  }
  .pb-lg-285,
  .py-lg-285 {
    padding-bottom: 285px;
  }
  .pl-lg-285,
  .px-lg-285 {
    padding-left: 285px;
  }
  .p-lg-280 {
    padding: 280px;
  }
  .pt-lg-280,
  .py-lg-280 {
    padding-top: 280px;
  }
  .pr-lg-280,
  .px-lg-280 {
    padding-right: 280px;
  }
  .pb-lg-280,
  .py-lg-280 {
    padding-bottom: 280px;
  }
  .pl-lg-280,
  .px-lg-280 {
    padding-left: 280px;
  }
  .p-lg-275 {
    padding: 275px;
  }
  .pt-lg-275,
  .py-lg-275 {
    padding-top: 275px;
  }
  .pr-lg-275,
  .px-lg-275 {
    padding-right: 275px;
  }
  .pb-lg-275,
  .py-lg-275 {
    padding-bottom: 275px;
  }
  .pl-lg-275,
  .px-lg-275 {
    padding-left: 275px;
  }
  .p-lg-270 {
    padding: 270px;
  }
  .pt-lg-270,
  .py-lg-270 {
    padding-top: 270px;
  }
  .pr-lg-270,
  .px-lg-270 {
    padding-right: 270px;
  }
  .pb-lg-270,
  .py-lg-270 {
    padding-bottom: 270px;
  }
  .pl-lg-270,
  .px-lg-270 {
    padding-left: 270px;
  }
  .p-lg-265 {
    padding: 265px;
  }
  .pt-lg-265,
  .py-lg-265 {
    padding-top: 265px;
  }
  .pr-lg-265,
  .px-lg-265 {
    padding-right: 265px;
  }
  .pb-lg-265,
  .py-lg-265 {
    padding-bottom: 265px;
  }
  .pl-lg-265,
  .px-lg-265 {
    padding-left: 265px;
  }
  .p-lg-260 {
    padding: 260px;
  }
  .pt-lg-260,
  .py-lg-260 {
    padding-top: 260px;
  }
  .pr-lg-260,
  .px-lg-260 {
    padding-right: 260px;
  }
  .pb-lg-260,
  .py-lg-260 {
    padding-bottom: 260px;
  }
  .pl-lg-260,
  .px-lg-260 {
    padding-left: 260px;
  }
  .p-lg-255 {
    padding: 255px;
  }
  .pt-lg-255,
  .py-lg-255 {
    padding-top: 255px;
  }
  .pr-lg-255,
  .px-lg-255 {
    padding-right: 255px;
  }
  .pb-lg-255,
  .py-lg-255 {
    padding-bottom: 255px;
  }
  .pl-lg-255,
  .px-lg-255 {
    padding-left: 255px;
  }
  .p-lg-250 {
    padding: 250px;
  }
  .pt-lg-250,
  .py-lg-250 {
    padding-top: 250px;
  }
  .pr-lg-250,
  .px-lg-250 {
    padding-right: 250px;
  }
  .pb-lg-250,
  .py-lg-250 {
    padding-bottom: 250px;
  }
  .pl-lg-250,
  .px-lg-250 {
    padding-left: 250px;
  }
  .p-lg-245 {
    padding: 245px;
  }
  .pt-lg-245,
  .py-lg-245 {
    padding-top: 245px;
  }
  .pr-lg-245,
  .px-lg-245 {
    padding-right: 245px;
  }
  .pb-lg-245,
  .py-lg-245 {
    padding-bottom: 245px;
  }
  .pl-lg-245,
  .px-lg-245 {
    padding-left: 245px;
  }
  .p-lg-240 {
    padding: 240px;
  }
  .pt-lg-240,
  .py-lg-240 {
    padding-top: 240px;
  }
  .pr-lg-240,
  .px-lg-240 {
    padding-right: 240px;
  }
  .pb-lg-240,
  .py-lg-240 {
    padding-bottom: 240px;
  }
  .pl-lg-240,
  .px-lg-240 {
    padding-left: 240px;
  }
  .p-lg-235 {
    padding: 235px;
  }
  .pt-lg-235,
  .py-lg-235 {
    padding-top: 235px;
  }
  .pr-lg-235,
  .px-lg-235 {
    padding-right: 235px;
  }
  .pb-lg-235,
  .py-lg-235 {
    padding-bottom: 235px;
  }
  .pl-lg-235,
  .px-lg-235 {
    padding-left: 235px;
  }
  .p-lg-230 {
    padding: 230px;
  }
  .pt-lg-230,
  .py-lg-230 {
    padding-top: 230px;
  }
  .pr-lg-230,
  .px-lg-230 {
    padding-right: 230px;
  }
  .pb-lg-230,
  .py-lg-230 {
    padding-bottom: 230px;
  }
  .pl-lg-230,
  .px-lg-230 {
    padding-left: 230px;
  }
  .p-lg-225 {
    padding: 225px;
  }
  .pt-lg-225,
  .py-lg-225 {
    padding-top: 225px;
  }
  .pr-lg-225,
  .px-lg-225 {
    padding-right: 225px;
  }
  .pb-lg-225,
  .py-lg-225 {
    padding-bottom: 225px;
  }
  .pl-lg-225,
  .px-lg-225 {
    padding-left: 225px;
  }
  .p-lg-220 {
    padding: 220px;
  }
  .pt-lg-220,
  .py-lg-220 {
    padding-top: 220px;
  }
  .pr-lg-220,
  .px-lg-220 {
    padding-right: 220px;
  }
  .pb-lg-220,
  .py-lg-220 {
    padding-bottom: 220px;
  }
  .pl-lg-220,
  .px-lg-220 {
    padding-left: 220px;
  }
  .p-lg-215 {
    padding: 215px;
  }
  .pt-lg-215,
  .py-lg-215 {
    padding-top: 215px;
  }
  .pr-lg-215,
  .px-lg-215 {
    padding-right: 215px;
  }
  .pb-lg-215,
  .py-lg-215 {
    padding-bottom: 215px;
  }
  .pl-lg-215,
  .px-lg-215 {
    padding-left: 215px;
  }
  .p-lg-210 {
    padding: 210px;
  }
  .pt-lg-210,
  .py-lg-210 {
    padding-top: 210px;
  }
  .pr-lg-210,
  .px-lg-210 {
    padding-right: 210px;
  }
  .pb-lg-210,
  .py-lg-210 {
    padding-bottom: 210px;
  }
  .pl-lg-210,
  .px-lg-210 {
    padding-left: 210px;
  }
  .p-lg-205 {
    padding: 205px;
  }
  .pt-lg-205,
  .py-lg-205 {
    padding-top: 205px;
  }
  .pr-lg-205,
  .px-lg-205 {
    padding-right: 205px;
  }
  .pb-lg-205,
  .py-lg-205 {
    padding-bottom: 205px;
  }
  .pl-lg-205,
  .px-lg-205 {
    padding-left: 205px;
  }
  .p-lg-200 {
    padding: 200px;
  }
  .pt-lg-200,
  .py-lg-200 {
    padding-top: 200px;
  }
  .pr-lg-200,
  .px-lg-200 {
    padding-right: 200px;
  }
  .pb-lg-200,
  .py-lg-200 {
    padding-bottom: 200px;
  }
  .pl-lg-200,
  .px-lg-200 {
    padding-left: 200px;
  }
  .p-lg-195 {
    padding: 195px;
  }
  .pt-lg-195,
  .py-lg-195 {
    padding-top: 195px;
  }
  .pr-lg-195,
  .px-lg-195 {
    padding-right: 195px;
  }
  .pb-lg-195,
  .py-lg-195 {
    padding-bottom: 195px;
  }
  .pl-lg-195,
  .px-lg-195 {
    padding-left: 195px;
  }
  .p-lg-190 {
    padding: 190px;
  }
  .pt-lg-190,
  .py-lg-190 {
    padding-top: 190px;
  }
  .pr-lg-190,
  .px-lg-190 {
    padding-right: 190px;
  }
  .pb-lg-190,
  .py-lg-190 {
    padding-bottom: 190px;
  }
  .pl-lg-190,
  .px-lg-190 {
    padding-left: 190px;
  }
  .p-lg-185 {
    padding: 185px;
  }
  .pt-lg-185,
  .py-lg-185 {
    padding-top: 185px;
  }
  .pr-lg-185,
  .px-lg-185 {
    padding-right: 185px;
  }
  .pb-lg-185,
  .py-lg-185 {
    padding-bottom: 185px;
  }
  .pl-lg-185,
  .px-lg-185 {
    padding-left: 185px;
  }
  .p-lg-180 {
    padding: 180px;
  }
  .pt-lg-180,
  .py-lg-180 {
    padding-top: 180px;
  }
  .pr-lg-180,
  .px-lg-180 {
    padding-right: 180px;
  }
  .pb-lg-180,
  .py-lg-180 {
    padding-bottom: 180px;
  }
  .pl-lg-180,
  .px-lg-180 {
    padding-left: 180px;
  }
  .p-lg-175 {
    padding: 175px;
  }
  .pt-lg-175,
  .py-lg-175 {
    padding-top: 175px;
  }
  .pr-lg-175,
  .px-lg-175 {
    padding-right: 175px;
  }
  .pb-lg-175,
  .py-lg-175 {
    padding-bottom: 175px;
  }
  .pl-lg-175,
  .px-lg-175 {
    padding-left: 175px;
  }
  .p-lg-170 {
    padding: 170px;
  }
  .pt-lg-170,
  .py-lg-170 {
    padding-top: 170px;
  }
  .pr-lg-170,
  .px-lg-170 {
    padding-right: 170px;
  }
  .pb-lg-170,
  .py-lg-170 {
    padding-bottom: 170px;
  }
  .pl-lg-170,
  .px-lg-170 {
    padding-left: 170px;
  }
  .p-lg-165 {
    padding: 165px;
  }
  .pt-lg-165,
  .py-lg-165 {
    padding-top: 165px;
  }
  .pr-lg-165,
  .px-lg-165 {
    padding-right: 165px;
  }
  .pb-lg-165,
  .py-lg-165 {
    padding-bottom: 165px;
  }
  .pl-lg-165,
  .px-lg-165 {
    padding-left: 165px;
  }
  .p-lg-160 {
    padding: 160px;
  }
  .pt-lg-160,
  .py-lg-160 {
    padding-top: 160px;
  }
  .pr-lg-160,
  .px-lg-160 {
    padding-right: 160px;
  }
  .pb-lg-160,
  .py-lg-160 {
    padding-bottom: 160px;
  }
  .pl-lg-160,
  .px-lg-160 {
    padding-left: 160px;
  }
  .p-lg-155 {
    padding: 155px;
  }
  .pt-lg-155,
  .py-lg-155 {
    padding-top: 155px;
  }
  .pr-lg-155,
  .px-lg-155 {
    padding-right: 155px;
  }
  .pb-lg-155,
  .py-lg-155 {
    padding-bottom: 155px;
  }
  .pl-lg-155,
  .px-lg-155 {
    padding-left: 155px;
  }
  .p-lg-150 {
    padding: 150px;
  }
  .pt-lg-150,
  .py-lg-150 {
    padding-top: 150px;
  }
  .pr-lg-150,
  .px-lg-150 {
    padding-right: 150px;
  }
  .pb-lg-150,
  .py-lg-150 {
    padding-bottom: 150px;
  }
  .pl-lg-150,
  .px-lg-150 {
    padding-left: 150px;
  }
  .p-lg-145 {
    padding: 145px;
  }
  .pt-lg-145,
  .py-lg-145 {
    padding-top: 145px;
  }
  .pr-lg-145,
  .px-lg-145 {
    padding-right: 145px;
  }
  .pb-lg-145,
  .py-lg-145 {
    padding-bottom: 145px;
  }
  .pl-lg-145,
  .px-lg-145 {
    padding-left: 145px;
  }
  .p-lg-140 {
    padding: 140px;
  }
  .pt-lg-140,
  .py-lg-140 {
    padding-top: 140px;
  }
  .pr-lg-140,
  .px-lg-140 {
    padding-right: 140px;
  }
  .pb-lg-140,
  .py-lg-140 {
    padding-bottom: 140px;
  }
  .pl-lg-140,
  .px-lg-140 {
    padding-left: 140px;
  }
  .p-lg-135 {
    padding: 135px;
  }
  .pt-lg-135,
  .py-lg-135 {
    padding-top: 135px;
  }
  .pr-lg-135,
  .px-lg-135 {
    padding-right: 135px;
  }
  .pb-lg-135,
  .py-lg-135 {
    padding-bottom: 135px;
  }
  .pl-lg-135,
  .px-lg-135 {
    padding-left: 135px;
  }
  .p-lg-130 {
    padding: 130px;
  }
  .pt-lg-130,
  .py-lg-130 {
    padding-top: 130px;
  }
  .pr-lg-130,
  .px-lg-130 {
    padding-right: 130px;
  }
  .pb-lg-130,
  .py-lg-130 {
    padding-bottom: 130px;
  }
  .pl-lg-130,
  .px-lg-130 {
    padding-left: 130px;
  }
  .p-lg-125 {
    padding: 125px;
  }
  .pt-lg-125,
  .py-lg-125 {
    padding-top: 125px;
  }
  .pr-lg-125,
  .px-lg-125 {
    padding-right: 125px;
  }
  .pb-lg-125,
  .py-lg-125 {
    padding-bottom: 125px;
  }
  .pl-lg-125,
  .px-lg-125 {
    padding-left: 125px;
  }
  .p-lg-120 {
    padding: 120px;
  }
  .pt-lg-120,
  .py-lg-120 {
    padding-top: 120px;
  }
  .pr-lg-120,
  .px-lg-120 {
    padding-right: 120px;
  }
  .pb-lg-120,
  .py-lg-120 {
    padding-bottom: 120px;
  }
  .pl-lg-120,
  .px-lg-120 {
    padding-left: 120px;
  }
  .p-lg-115 {
    padding: 115px;
  }
  .pt-lg-115,
  .py-lg-115 {
    padding-top: 115px;
  }
  .pr-lg-115,
  .px-lg-115 {
    padding-right: 115px;
  }
  .pb-lg-115,
  .py-lg-115 {
    padding-bottom: 115px;
  }
  .pl-lg-115,
  .px-lg-115 {
    padding-left: 115px;
  }
  .p-lg-110 {
    padding: 110px;
  }
  .pt-lg-110,
  .py-lg-110 {
    padding-top: 110px;
  }
  .pr-lg-110,
  .px-lg-110 {
    padding-right: 110px;
  }
  .pb-lg-110,
  .py-lg-110 {
    padding-bottom: 110px;
  }
  .pl-lg-110,
  .px-lg-110 {
    padding-left: 110px;
  }
  .p-lg-105 {
    padding: 105px;
  }
  .pt-lg-105,
  .py-lg-105 {
    padding-top: 105px;
  }
  .pr-lg-105,
  .px-lg-105 {
    padding-right: 105px;
  }
  .pb-lg-105,
  .py-lg-105 {
    padding-bottom: 105px;
  }
  .pl-lg-105,
  .px-lg-105 {
    padding-left: 105px;
  }
  .p-lg-100 {
    padding: 100px;
  }
  .pt-lg-100,
  .py-lg-100 {
    padding-top: 100px;
  }
  .pr-lg-100,
  .px-lg-100 {
    padding-right: 100px;
  }
  .pb-lg-100,
  .py-lg-100 {
    padding-bottom: 100px;
  }
  .pl-lg-100,
  .px-lg-100 {
    padding-left: 100px;
  }
  .p-lg-95 {
    padding: 95px;
  }
  .pt-lg-95,
  .py-lg-95 {
    padding-top: 95px;
  }
  .pr-lg-95,
  .px-lg-95 {
    padding-right: 95px;
  }
  .pb-lg-95,
  .py-lg-95 {
    padding-bottom: 95px;
  }
  .pl-lg-95,
  .px-lg-95 {
    padding-left: 95px;
  }
  .p-lg-90 {
    padding: 90px;
  }
  .pt-lg-90,
  .py-lg-90 {
    padding-top: 90px;
  }
  .pr-lg-90,
  .px-lg-90 {
    padding-right: 90px;
  }
  .pb-lg-90,
  .py-lg-90 {
    padding-bottom: 90px;
  }
  .pl-lg-90,
  .px-lg-90 {
    padding-left: 90px;
  }
  .p-lg-85 {
    padding: 85px;
  }
  .pt-lg-85,
  .py-lg-85 {
    padding-top: 85px;
  }
  .pr-lg-85,
  .px-lg-85 {
    padding-right: 85px;
  }
  .pb-lg-85,
  .py-lg-85 {
    padding-bottom: 85px;
  }
  .pl-lg-85,
  .px-lg-85 {
    padding-left: 85px;
  }
  .p-lg-80 {
    padding: 80px;
  }
  .pt-lg-80,
  .py-lg-80 {
    padding-top: 80px;
  }
  .pr-lg-80,
  .px-lg-80 {
    padding-right: 80px;
  }
  .pb-lg-80,
  .py-lg-80 {
    padding-bottom: 80px;
  }
  .pl-lg-80,
  .px-lg-80 {
    padding-left: 80px;
  }
  .p-lg-75 {
    padding: 75px;
  }
  .pt-lg-75,
  .py-lg-75 {
    padding-top: 75px;
  }
  .pr-lg-75,
  .px-lg-75 {
    padding-right: 75px;
  }
  .pb-lg-75,
  .py-lg-75 {
    padding-bottom: 75px;
  }
  .pl-lg-75,
  .px-lg-75 {
    padding-left: 75px;
  }
  .p-lg-70 {
    padding: 70px;
  }
  .pt-lg-70,
  .py-lg-70 {
    padding-top: 70px;
  }
  .pr-lg-70,
  .px-lg-70 {
    padding-right: 70px;
  }
  .pb-lg-70,
  .py-lg-70 {
    padding-bottom: 70px;
  }
  .pl-lg-70,
  .px-lg-70 {
    padding-left: 70px;
  }
  .p-lg-65 {
    padding: 65px;
  }
  .pt-lg-65,
  .py-lg-65 {
    padding-top: 65px;
  }
  .pr-lg-65,
  .px-lg-65 {
    padding-right: 65px;
  }
  .pb-lg-65,
  .py-lg-65 {
    padding-bottom: 65px;
  }
  .pl-lg-65,
  .px-lg-65 {
    padding-left: 65px;
  }
  .p-lg-60 {
    padding: 60px;
  }
  .pt-lg-60,
  .py-lg-60 {
    padding-top: 60px;
  }
  .pr-lg-60,
  .px-lg-60 {
    padding-right: 60px;
  }
  .pb-lg-60,
  .py-lg-60 {
    padding-bottom: 60px;
  }
  .pl-lg-60,
  .px-lg-60 {
    padding-left: 60px;
  }
  .p-lg-55 {
    padding: 55px;
  }
  .pt-lg-55,
  .py-lg-55 {
    padding-top: 55px;
  }
  .pr-lg-55,
  .px-lg-55 {
    padding-right: 55px;
  }
  .pb-lg-55,
  .py-lg-55 {
    padding-bottom: 55px;
  }
  .pl-lg-55,
  .px-lg-55 {
    padding-left: 55px;
  }
  .p-lg-50 {
    padding: 50px;
  }
  .pt-lg-50,
  .py-lg-50 {
    padding-top: 50px;
  }
  .pr-lg-50,
  .px-lg-50 {
    padding-right: 50px;
  }
  .pb-lg-50,
  .py-lg-50 {
    padding-bottom: 50px;
  }
  .pl-lg-50,
  .px-lg-50 {
    padding-left: 50px;
  }
  .p-lg-45 {
    padding: 45px;
  }
  .pt-lg-45,
  .py-lg-45 {
    padding-top: 45px;
  }
  .pr-lg-45,
  .px-lg-45 {
    padding-right: 45px;
  }
  .pb-lg-45,
  .py-lg-45 {
    padding-bottom: 45px;
  }
  .pl-lg-45,
  .px-lg-45 {
    padding-left: 45px;
  }
  .p-lg-40 {
    padding: 40px;
  }
  .pt-lg-40,
  .py-lg-40 {
    padding-top: 40px;
  }
  .pr-lg-40,
  .px-lg-40 {
    padding-right: 40px;
  }
  .pb-lg-40,
  .py-lg-40 {
    padding-bottom: 40px;
  }
  .pl-lg-40,
  .px-lg-40 {
    padding-left: 40px;
  }
  .p-lg-35 {
    padding: 35px;
  }
  .pt-lg-35,
  .py-lg-35 {
    padding-top: 35px;
  }
  .pr-lg-35,
  .px-lg-35 {
    padding-right: 35px;
  }
  .pb-lg-35,
  .py-lg-35 {
    padding-bottom: 35px;
  }
  .pl-lg-35,
  .px-lg-35 {
    padding-left: 35px;
  }
  .p-lg-30 {
    padding: 30px;
  }
  .pt-lg-30,
  .py-lg-30 {
    padding-top: 30px;
  }
  .pr-lg-30,
  .px-lg-30 {
    padding-right: 30px;
  }
  .pb-lg-30,
  .py-lg-30 {
    padding-bottom: 30px;
  }
  .pl-lg-30,
  .px-lg-30 {
    padding-left: 30px;
  }
  .p-lg-25 {
    padding: 25px;
  }
  .pt-lg-25,
  .py-lg-25 {
    padding-top: 25px;
  }
  .pr-lg-25,
  .px-lg-25 {
    padding-right: 25px;
  }
  .pb-lg-25,
  .py-lg-25 {
    padding-bottom: 25px;
  }
  .pl-lg-25,
  .px-lg-25 {
    padding-left: 25px;
  }
  .p-lg-20 {
    padding: 20px;
  }
  .pt-lg-20,
  .py-lg-20 {
    padding-top: 20px;
  }
  .pr-lg-20,
  .px-lg-20 {
    padding-right: 20px;
  }
  .pb-lg-20,
  .py-lg-20 {
    padding-bottom: 20px;
  }
  .pl-lg-20,
  .px-lg-20 {
    padding-left: 20px;
  }
  .p-lg-15 {
    padding: 15px;
  }
  .pt-lg-15,
  .py-lg-15 {
    padding-top: 15px;
  }
  .pr-lg-15,
  .px-lg-15 {
    padding-right: 15px;
  }
  .pb-lg-15,
  .py-lg-15 {
    padding-bottom: 15px;
  }
  .pl-lg-15,
  .px-lg-15 {
    padding-left: 15px;
  }
  .p-lg-10 {
    padding: 10px;
  }
  .pt-lg-10,
  .py-lg-10 {
    padding-top: 10px;
  }
  .pr-lg-10,
  .px-lg-10 {
    padding-right: 10px;
  }
  .pb-lg-10,
  .py-lg-10 {
    padding-bottom: 10px;
  }
  .pl-lg-10,
  .px-lg-10 {
    padding-left: 10px;
  }
  .p-lg-5 {
    padding: 5px;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 5px;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 5px;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 5px;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 5px;
  }
  .p-lg-0 {
    padding: 0px;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0px;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0px;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0px;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0px;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1400px) {
  .m-xl-300 {
    margin: 300px;
  }
  .mt-xl-300,
  .my-xl-300 {
    margin-top: 300px;
  }
  .mr-xl-300,
  .mx-xl-300 {
    margin-right: 300px;
  }
  .mb-xl-300,
  .my-xl-300 {
    margin-bottom: 300px;
  }
  .ml-xl-300,
  .mx-xl-300 {
    margin-left: 300px;
  }
  .m-xl-295 {
    margin: 295px;
  }
  .mt-xl-295,
  .my-xl-295 {
    margin-top: 295px;
  }
  .mr-xl-295,
  .mx-xl-295 {
    margin-right: 295px;
  }
  .mb-xl-295,
  .my-xl-295 {
    margin-bottom: 295px;
  }
  .ml-xl-295,
  .mx-xl-295 {
    margin-left: 295px;
  }
  .m-xl-290 {
    margin: 290px;
  }
  .mt-xl-290,
  .my-xl-290 {
    margin-top: 290px;
  }
  .mr-xl-290,
  .mx-xl-290 {
    margin-right: 290px;
  }
  .mb-xl-290,
  .my-xl-290 {
    margin-bottom: 290px;
  }
  .ml-xl-290,
  .mx-xl-290 {
    margin-left: 290px;
  }
  .m-xl-285 {
    margin: 285px;
  }
  .mt-xl-285,
  .my-xl-285 {
    margin-top: 285px;
  }
  .mr-xl-285,
  .mx-xl-285 {
    margin-right: 285px;
  }
  .mb-xl-285,
  .my-xl-285 {
    margin-bottom: 285px;
  }
  .ml-xl-285,
  .mx-xl-285 {
    margin-left: 285px;
  }
  .m-xl-280 {
    margin: 280px;
  }
  .mt-xl-280,
  .my-xl-280 {
    margin-top: 280px;
  }
  .mr-xl-280,
  .mx-xl-280 {
    margin-right: 280px;
  }
  .mb-xl-280,
  .my-xl-280 {
    margin-bottom: 280px;
  }
  .ml-xl-280,
  .mx-xl-280 {
    margin-left: 280px;
  }
  .m-xl-275 {
    margin: 275px;
  }
  .mt-xl-275,
  .my-xl-275 {
    margin-top: 275px;
  }
  .mr-xl-275,
  .mx-xl-275 {
    margin-right: 275px;
  }
  .mb-xl-275,
  .my-xl-275 {
    margin-bottom: 275px;
  }
  .ml-xl-275,
  .mx-xl-275 {
    margin-left: 275px;
  }
  .m-xl-270 {
    margin: 270px;
  }
  .mt-xl-270,
  .my-xl-270 {
    margin-top: 270px;
  }
  .mr-xl-270,
  .mx-xl-270 {
    margin-right: 270px;
  }
  .mb-xl-270,
  .my-xl-270 {
    margin-bottom: 270px;
  }
  .ml-xl-270,
  .mx-xl-270 {
    margin-left: 270px;
  }
  .m-xl-265 {
    margin: 265px;
  }
  .mt-xl-265,
  .my-xl-265 {
    margin-top: 265px;
  }
  .mr-xl-265,
  .mx-xl-265 {
    margin-right: 265px;
  }
  .mb-xl-265,
  .my-xl-265 {
    margin-bottom: 265px;
  }
  .ml-xl-265,
  .mx-xl-265 {
    margin-left: 265px;
  }
  .m-xl-260 {
    margin: 260px;
  }
  .mt-xl-260,
  .my-xl-260 {
    margin-top: 260px;
  }
  .mr-xl-260,
  .mx-xl-260 {
    margin-right: 260px;
  }
  .mb-xl-260,
  .my-xl-260 {
    margin-bottom: 260px;
  }
  .ml-xl-260,
  .mx-xl-260 {
    margin-left: 260px;
  }
  .m-xl-255 {
    margin: 255px;
  }
  .mt-xl-255,
  .my-xl-255 {
    margin-top: 255px;
  }
  .mr-xl-255,
  .mx-xl-255 {
    margin-right: 255px;
  }
  .mb-xl-255,
  .my-xl-255 {
    margin-bottom: 255px;
  }
  .ml-xl-255,
  .mx-xl-255 {
    margin-left: 255px;
  }
  .m-xl-250 {
    margin: 250px;
  }
  .mt-xl-250,
  .my-xl-250 {
    margin-top: 250px;
  }
  .mr-xl-250,
  .mx-xl-250 {
    margin-right: 250px;
  }
  .mb-xl-250,
  .my-xl-250 {
    margin-bottom: 250px;
  }
  .ml-xl-250,
  .mx-xl-250 {
    margin-left: 250px;
  }
  .m-xl-245 {
    margin: 245px;
  }
  .mt-xl-245,
  .my-xl-245 {
    margin-top: 245px;
  }
  .mr-xl-245,
  .mx-xl-245 {
    margin-right: 245px;
  }
  .mb-xl-245,
  .my-xl-245 {
    margin-bottom: 245px;
  }
  .ml-xl-245,
  .mx-xl-245 {
    margin-left: 245px;
  }
  .m-xl-240 {
    margin: 240px;
  }
  .mt-xl-240,
  .my-xl-240 {
    margin-top: 240px;
  }
  .mr-xl-240,
  .mx-xl-240 {
    margin-right: 240px;
  }
  .mb-xl-240,
  .my-xl-240 {
    margin-bottom: 240px;
  }
  .ml-xl-240,
  .mx-xl-240 {
    margin-left: 240px;
  }
  .m-xl-235 {
    margin: 235px;
  }
  .mt-xl-235,
  .my-xl-235 {
    margin-top: 235px;
  }
  .mr-xl-235,
  .mx-xl-235 {
    margin-right: 235px;
  }
  .mb-xl-235,
  .my-xl-235 {
    margin-bottom: 235px;
  }
  .ml-xl-235,
  .mx-xl-235 {
    margin-left: 235px;
  }
  .m-xl-230 {
    margin: 230px;
  }
  .mt-xl-230,
  .my-xl-230 {
    margin-top: 230px;
  }
  .mr-xl-230,
  .mx-xl-230 {
    margin-right: 230px;
  }
  .mb-xl-230,
  .my-xl-230 {
    margin-bottom: 230px;
  }
  .ml-xl-230,
  .mx-xl-230 {
    margin-left: 230px;
  }
  .m-xl-225 {
    margin: 225px;
  }
  .mt-xl-225,
  .my-xl-225 {
    margin-top: 225px;
  }
  .mr-xl-225,
  .mx-xl-225 {
    margin-right: 225px;
  }
  .mb-xl-225,
  .my-xl-225 {
    margin-bottom: 225px;
  }
  .ml-xl-225,
  .mx-xl-225 {
    margin-left: 225px;
  }
  .m-xl-220 {
    margin: 220px;
  }
  .mt-xl-220,
  .my-xl-220 {
    margin-top: 220px;
  }
  .mr-xl-220,
  .mx-xl-220 {
    margin-right: 220px;
  }
  .mb-xl-220,
  .my-xl-220 {
    margin-bottom: 220px;
  }
  .ml-xl-220,
  .mx-xl-220 {
    margin-left: 220px;
  }
  .m-xl-215 {
    margin: 215px;
  }
  .mt-xl-215,
  .my-xl-215 {
    margin-top: 215px;
  }
  .mr-xl-215,
  .mx-xl-215 {
    margin-right: 215px;
  }
  .mb-xl-215,
  .my-xl-215 {
    margin-bottom: 215px;
  }
  .ml-xl-215,
  .mx-xl-215 {
    margin-left: 215px;
  }
  .m-xl-210 {
    margin: 210px;
  }
  .mt-xl-210,
  .my-xl-210 {
    margin-top: 210px;
  }
  .mr-xl-210,
  .mx-xl-210 {
    margin-right: 210px;
  }
  .mb-xl-210,
  .my-xl-210 {
    margin-bottom: 210px;
  }
  .ml-xl-210,
  .mx-xl-210 {
    margin-left: 210px;
  }
  .m-xl-205 {
    margin: 205px;
  }
  .mt-xl-205,
  .my-xl-205 {
    margin-top: 205px;
  }
  .mr-xl-205,
  .mx-xl-205 {
    margin-right: 205px;
  }
  .mb-xl-205,
  .my-xl-205 {
    margin-bottom: 205px;
  }
  .ml-xl-205,
  .mx-xl-205 {
    margin-left: 205px;
  }
  .m-xl-200 {
    margin: 200px;
  }
  .mt-xl-200,
  .my-xl-200 {
    margin-top: 200px;
  }
  .mr-xl-200,
  .mx-xl-200 {
    margin-right: 200px;
  }
  .mb-xl-200,
  .my-xl-200 {
    margin-bottom: 200px;
  }
  .ml-xl-200,
  .mx-xl-200 {
    margin-left: 200px;
  }
  .m-xl-195 {
    margin: 195px;
  }
  .mt-xl-195,
  .my-xl-195 {
    margin-top: 195px;
  }
  .mr-xl-195,
  .mx-xl-195 {
    margin-right: 195px;
  }
  .mb-xl-195,
  .my-xl-195 {
    margin-bottom: 195px;
  }
  .ml-xl-195,
  .mx-xl-195 {
    margin-left: 195px;
  }
  .m-xl-190 {
    margin: 190px;
  }
  .mt-xl-190,
  .my-xl-190 {
    margin-top: 190px;
  }
  .mr-xl-190,
  .mx-xl-190 {
    margin-right: 190px;
  }
  .mb-xl-190,
  .my-xl-190 {
    margin-bottom: 190px;
  }
  .ml-xl-190,
  .mx-xl-190 {
    margin-left: 190px;
  }
  .m-xl-185 {
    margin: 185px;
  }
  .mt-xl-185,
  .my-xl-185 {
    margin-top: 185px;
  }
  .mr-xl-185,
  .mx-xl-185 {
    margin-right: 185px;
  }
  .mb-xl-185,
  .my-xl-185 {
    margin-bottom: 185px;
  }
  .ml-xl-185,
  .mx-xl-185 {
    margin-left: 185px;
  }
  .m-xl-180 {
    margin: 180px;
  }
  .mt-xl-180,
  .my-xl-180 {
    margin-top: 180px;
  }
  .mr-xl-180,
  .mx-xl-180 {
    margin-right: 180px;
  }
  .mb-xl-180,
  .my-xl-180 {
    margin-bottom: 180px;
  }
  .ml-xl-180,
  .mx-xl-180 {
    margin-left: 180px;
  }
  .m-xl-175 {
    margin: 175px;
  }
  .mt-xl-175,
  .my-xl-175 {
    margin-top: 175px;
  }
  .mr-xl-175,
  .mx-xl-175 {
    margin-right: 175px;
  }
  .mb-xl-175,
  .my-xl-175 {
    margin-bottom: 175px;
  }
  .ml-xl-175,
  .mx-xl-175 {
    margin-left: 175px;
  }
  .m-xl-170 {
    margin: 170px;
  }
  .mt-xl-170,
  .my-xl-170 {
    margin-top: 170px;
  }
  .mr-xl-170,
  .mx-xl-170 {
    margin-right: 170px;
  }
  .mb-xl-170,
  .my-xl-170 {
    margin-bottom: 170px;
  }
  .ml-xl-170,
  .mx-xl-170 {
    margin-left: 170px;
  }
  .m-xl-165 {
    margin: 165px;
  }
  .mt-xl-165,
  .my-xl-165 {
    margin-top: 165px;
  }
  .mr-xl-165,
  .mx-xl-165 {
    margin-right: 165px;
  }
  .mb-xl-165,
  .my-xl-165 {
    margin-bottom: 165px;
  }
  .ml-xl-165,
  .mx-xl-165 {
    margin-left: 165px;
  }
  .m-xl-160 {
    margin: 160px;
  }
  .mt-xl-160,
  .my-xl-160 {
    margin-top: 160px;
  }
  .mr-xl-160,
  .mx-xl-160 {
    margin-right: 160px;
  }
  .mb-xl-160,
  .my-xl-160 {
    margin-bottom: 160px;
  }
  .ml-xl-160,
  .mx-xl-160 {
    margin-left: 160px;
  }
  .m-xl-155 {
    margin: 155px;
  }
  .mt-xl-155,
  .my-xl-155 {
    margin-top: 155px;
  }
  .mr-xl-155,
  .mx-xl-155 {
    margin-right: 155px;
  }
  .mb-xl-155,
  .my-xl-155 {
    margin-bottom: 155px;
  }
  .ml-xl-155,
  .mx-xl-155 {
    margin-left: 155px;
  }
  .m-xl-150 {
    margin: 150px;
  }
  .mt-xl-150,
  .my-xl-150 {
    margin-top: 150px;
  }
  .mr-xl-150,
  .mx-xl-150 {
    margin-right: 150px;
  }
  .mb-xl-150,
  .my-xl-150 {
    margin-bottom: 150px;
  }
  .ml-xl-150,
  .mx-xl-150 {
    margin-left: 150px;
  }
  .m-xl-145 {
    margin: 145px;
  }
  .mt-xl-145,
  .my-xl-145 {
    margin-top: 145px;
  }
  .mr-xl-145,
  .mx-xl-145 {
    margin-right: 145px;
  }
  .mb-xl-145,
  .my-xl-145 {
    margin-bottom: 145px;
  }
  .ml-xl-145,
  .mx-xl-145 {
    margin-left: 145px;
  }
  .m-xl-140 {
    margin: 140px;
  }
  .mt-xl-140,
  .my-xl-140 {
    margin-top: 140px;
  }
  .mr-xl-140,
  .mx-xl-140 {
    margin-right: 140px;
  }
  .mb-xl-140,
  .my-xl-140 {
    margin-bottom: 140px;
  }
  .ml-xl-140,
  .mx-xl-140 {
    margin-left: 140px;
  }
  .m-xl-135 {
    margin: 135px;
  }
  .mt-xl-135,
  .my-xl-135 {
    margin-top: 135px;
  }
  .mr-xl-135,
  .mx-xl-135 {
    margin-right: 135px;
  }
  .mb-xl-135,
  .my-xl-135 {
    margin-bottom: 135px;
  }
  .ml-xl-135,
  .mx-xl-135 {
    margin-left: 135px;
  }
  .m-xl-130 {
    margin: 130px;
  }
  .mt-xl-130,
  .my-xl-130 {
    margin-top: 130px;
  }
  .mr-xl-130,
  .mx-xl-130 {
    margin-right: 130px;
  }
  .mb-xl-130,
  .my-xl-130 {
    margin-bottom: 130px;
  }
  .ml-xl-130,
  .mx-xl-130 {
    margin-left: 130px;
  }
  .m-xl-125 {
    margin: 125px;
  }
  .mt-xl-125,
  .my-xl-125 {
    margin-top: 125px;
  }
  .mr-xl-125,
  .mx-xl-125 {
    margin-right: 125px;
  }
  .mb-xl-125,
  .my-xl-125 {
    margin-bottom: 125px;
  }
  .ml-xl-125,
  .mx-xl-125 {
    margin-left: 125px;
  }
  .m-xl-120 {
    margin: 120px;
  }
  .mt-xl-120,
  .my-xl-120 {
    margin-top: 120px;
  }
  .mr-xl-120,
  .mx-xl-120 {
    margin-right: 120px;
  }
  .mb-xl-120,
  .my-xl-120 {
    margin-bottom: 120px;
  }
  .ml-xl-120,
  .mx-xl-120 {
    margin-left: 120px;
  }
  .m-xl-115 {
    margin: 115px;
  }
  .mt-xl-115,
  .my-xl-115 {
    margin-top: 115px;
  }
  .mr-xl-115,
  .mx-xl-115 {
    margin-right: 115px;
  }
  .mb-xl-115,
  .my-xl-115 {
    margin-bottom: 115px;
  }
  .ml-xl-115,
  .mx-xl-115 {
    margin-left: 115px;
  }
  .m-xl-110 {
    margin: 110px;
  }
  .mt-xl-110,
  .my-xl-110 {
    margin-top: 110px;
  }
  .mr-xl-110,
  .mx-xl-110 {
    margin-right: 110px;
  }
  .mb-xl-110,
  .my-xl-110 {
    margin-bottom: 110px;
  }
  .ml-xl-110,
  .mx-xl-110 {
    margin-left: 110px;
  }
  .m-xl-105 {
    margin: 105px;
  }
  .mt-xl-105,
  .my-xl-105 {
    margin-top: 105px;
  }
  .mr-xl-105,
  .mx-xl-105 {
    margin-right: 105px;
  }
  .mb-xl-105,
  .my-xl-105 {
    margin-bottom: 105px;
  }
  .ml-xl-105,
  .mx-xl-105 {
    margin-left: 105px;
  }
  .m-xl-100 {
    margin: 100px;
  }
  .mt-xl-100,
  .my-xl-100 {
    margin-top: 100px;
  }
  .mr-xl-100,
  .mx-xl-100 {
    margin-right: 100px;
  }
  .mb-xl-100,
  .my-xl-100 {
    margin-bottom: 100px;
  }
  .ml-xl-100,
  .mx-xl-100 {
    margin-left: 100px;
  }
  .m-xl-95 {
    margin: 95px;
  }
  .mt-xl-95,
  .my-xl-95 {
    margin-top: 95px;
  }
  .mr-xl-95,
  .mx-xl-95 {
    margin-right: 95px;
  }
  .mb-xl-95,
  .my-xl-95 {
    margin-bottom: 95px;
  }
  .ml-xl-95,
  .mx-xl-95 {
    margin-left: 95px;
  }
  .m-xl-90 {
    margin: 90px;
  }
  .mt-xl-90,
  .my-xl-90 {
    margin-top: 90px;
  }
  .mr-xl-90,
  .mx-xl-90 {
    margin-right: 90px;
  }
  .mb-xl-90,
  .my-xl-90 {
    margin-bottom: 90px;
  }
  .ml-xl-90,
  .mx-xl-90 {
    margin-left: 90px;
  }
  .m-xl-85 {
    margin: 85px;
  }
  .mt-xl-85,
  .my-xl-85 {
    margin-top: 85px;
  }
  .mr-xl-85,
  .mx-xl-85 {
    margin-right: 85px;
  }
  .mb-xl-85,
  .my-xl-85 {
    margin-bottom: 85px;
  }
  .ml-xl-85,
  .mx-xl-85 {
    margin-left: 85px;
  }
  .m-xl-80 {
    margin: 80px;
  }
  .mt-xl-80,
  .my-xl-80 {
    margin-top: 80px;
  }
  .mr-xl-80,
  .mx-xl-80 {
    margin-right: 80px;
  }
  .mb-xl-80,
  .my-xl-80 {
    margin-bottom: 80px;
  }
  .ml-xl-80,
  .mx-xl-80 {
    margin-left: 80px;
  }
  .m-xl-75 {
    margin: 75px;
  }
  .mt-xl-75,
  .my-xl-75 {
    margin-top: 75px;
  }
  .mr-xl-75,
  .mx-xl-75 {
    margin-right: 75px;
  }
  .mb-xl-75,
  .my-xl-75 {
    margin-bottom: 75px;
  }
  .ml-xl-75,
  .mx-xl-75 {
    margin-left: 75px;
  }
  .m-xl-70 {
    margin: 70px;
  }
  .mt-xl-70,
  .my-xl-70 {
    margin-top: 70px;
  }
  .mr-xl-70,
  .mx-xl-70 {
    margin-right: 70px;
  }
  .mb-xl-70,
  .my-xl-70 {
    margin-bottom: 70px;
  }
  .ml-xl-70,
  .mx-xl-70 {
    margin-left: 70px;
  }
  .m-xl-65 {
    margin: 65px;
  }
  .mt-xl-65,
  .my-xl-65 {
    margin-top: 65px;
  }
  .mr-xl-65,
  .mx-xl-65 {
    margin-right: 65px;
  }
  .mb-xl-65,
  .my-xl-65 {
    margin-bottom: 65px;
  }
  .ml-xl-65,
  .mx-xl-65 {
    margin-left: 65px;
  }
  .m-xl-60 {
    margin: 60px;
  }
  .mt-xl-60,
  .my-xl-60 {
    margin-top: 60px;
  }
  .mr-xl-60,
  .mx-xl-60 {
    margin-right: 60px;
  }
  .mb-xl-60,
  .my-xl-60 {
    margin-bottom: 60px;
  }
  .ml-xl-60,
  .mx-xl-60 {
    margin-left: 60px;
  }
  .m-xl-55 {
    margin: 55px;
  }
  .mt-xl-55,
  .my-xl-55 {
    margin-top: 55px;
  }
  .mr-xl-55,
  .mx-xl-55 {
    margin-right: 55px;
  }
  .mb-xl-55,
  .my-xl-55 {
    margin-bottom: 55px;
  }
  .ml-xl-55,
  .mx-xl-55 {
    margin-left: 55px;
  }
  .m-xl-50 {
    margin: 50px;
  }
  .mt-xl-50,
  .my-xl-50 {
    margin-top: 50px;
  }
  .mr-xl-50,
  .mx-xl-50 {
    margin-right: 50px;
  }
  .mb-xl-50,
  .my-xl-50 {
    margin-bottom: 50px;
  }
  .ml-xl-50,
  .mx-xl-50 {
    margin-left: 50px;
  }
  .m-xl-45 {
    margin: 45px;
  }
  .mt-xl-45,
  .my-xl-45 {
    margin-top: 45px;
  }
  .mr-xl-45,
  .mx-xl-45 {
    margin-right: 45px;
  }
  .mb-xl-45,
  .my-xl-45 {
    margin-bottom: 45px;
  }
  .ml-xl-45,
  .mx-xl-45 {
    margin-left: 45px;
  }
  .m-xl-40 {
    margin: 40px;
  }
  .mt-xl-40,
  .my-xl-40 {
    margin-top: 40px;
  }
  .mr-xl-40,
  .mx-xl-40 {
    margin-right: 40px;
  }
  .mb-xl-40,
  .my-xl-40 {
    margin-bottom: 40px;
  }
  .ml-xl-40,
  .mx-xl-40 {
    margin-left: 40px;
  }
  .m-xl-35 {
    margin: 35px;
  }
  .mt-xl-35,
  .my-xl-35 {
    margin-top: 35px;
  }
  .mr-xl-35,
  .mx-xl-35 {
    margin-right: 35px;
  }
  .mb-xl-35,
  .my-xl-35 {
    margin-bottom: 35px;
  }
  .ml-xl-35,
  .mx-xl-35 {
    margin-left: 35px;
  }
  .m-xl-30 {
    margin: 30px;
  }
  .mt-xl-30,
  .my-xl-30 {
    margin-top: 30px;
  }
  .mr-xl-30,
  .mx-xl-30 {
    margin-right: 30px;
  }
  .mb-xl-30,
  .my-xl-30 {
    margin-bottom: 30px;
  }
  .ml-xl-30,
  .mx-xl-30 {
    margin-left: 30px;
  }
  .m-xl-25 {
    margin: 25px;
  }
  .mt-xl-25,
  .my-xl-25 {
    margin-top: 25px;
  }
  .mr-xl-25,
  .mx-xl-25 {
    margin-right: 25px;
  }
  .mb-xl-25,
  .my-xl-25 {
    margin-bottom: 25px;
  }
  .ml-xl-25,
  .mx-xl-25 {
    margin-left: 25px;
  }
  .m-xl-20 {
    margin: 20px;
  }
  .mt-xl-20,
  .my-xl-20 {
    margin-top: 20px;
  }
  .mr-xl-20,
  .mx-xl-20 {
    margin-right: 20px;
  }
  .mb-xl-20,
  .my-xl-20 {
    margin-bottom: 20px;
  }
  .ml-xl-20,
  .mx-xl-20 {
    margin-left: 20px;
  }
  .m-xl-15 {
    margin: 15px;
  }
  .mt-xl-15,
  .my-xl-15 {
    margin-top: 15px;
  }
  .mr-xl-15,
  .mx-xl-15 {
    margin-right: 15px;
  }
  .mb-xl-15,
  .my-xl-15 {
    margin-bottom: 15px;
  }
  .ml-xl-15,
  .mx-xl-15 {
    margin-left: 15px;
  }
  .m-xl-10 {
    margin: 10px;
  }
  .mt-xl-10,
  .my-xl-10 {
    margin-top: 10px;
  }
  .mr-xl-10,
  .mx-xl-10 {
    margin-right: 10px;
  }
  .mb-xl-10,
  .my-xl-10 {
    margin-bottom: 10px;
  }
  .ml-xl-10,
  .mx-xl-10 {
    margin-left: 10px;
  }
  .m-xl-5 {
    margin: 5px;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 5px;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 5px;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 5px;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 5px;
  }
  .m-xl-0 {
    margin: 0px;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0px;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0px;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0px;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0px;
  }
  .p-xl-300 {
    padding: 300px;
  }
  .pt-xl-300,
  .py-xl-300 {
    padding-top: 300px;
  }
  .pr-xl-300,
  .px-xl-300 {
    padding-right: 300px;
  }
  .pb-xl-300,
  .py-xl-300 {
    padding-bottom: 300px;
  }
  .pl-xl-300,
  .px-xl-300 {
    padding-left: 300px;
  }
  .p-xl-295 {
    padding: 295px;
  }
  .pt-xl-295,
  .py-xl-295 {
    padding-top: 295px;
  }
  .pr-xl-295,
  .px-xl-295 {
    padding-right: 295px;
  }
  .pb-xl-295,
  .py-xl-295 {
    padding-bottom: 295px;
  }
  .pl-xl-295,
  .px-xl-295 {
    padding-left: 295px;
  }
  .p-xl-290 {
    padding: 290px;
  }
  .pt-xl-290,
  .py-xl-290 {
    padding-top: 290px;
  }
  .pr-xl-290,
  .px-xl-290 {
    padding-right: 290px;
  }
  .pb-xl-290,
  .py-xl-290 {
    padding-bottom: 290px;
  }
  .pl-xl-290,
  .px-xl-290 {
    padding-left: 290px;
  }
  .p-xl-285 {
    padding: 285px;
  }
  .pt-xl-285,
  .py-xl-285 {
    padding-top: 285px;
  }
  .pr-xl-285,
  .px-xl-285 {
    padding-right: 285px;
  }
  .pb-xl-285,
  .py-xl-285 {
    padding-bottom: 285px;
  }
  .pl-xl-285,
  .px-xl-285 {
    padding-left: 285px;
  }
  .p-xl-280 {
    padding: 280px;
  }
  .pt-xl-280,
  .py-xl-280 {
    padding-top: 280px;
  }
  .pr-xl-280,
  .px-xl-280 {
    padding-right: 280px;
  }
  .pb-xl-280,
  .py-xl-280 {
    padding-bottom: 280px;
  }
  .pl-xl-280,
  .px-xl-280 {
    padding-left: 280px;
  }
  .p-xl-275 {
    padding: 275px;
  }
  .pt-xl-275,
  .py-xl-275 {
    padding-top: 275px;
  }
  .pr-xl-275,
  .px-xl-275 {
    padding-right: 275px;
  }
  .pb-xl-275,
  .py-xl-275 {
    padding-bottom: 275px;
  }
  .pl-xl-275,
  .px-xl-275 {
    padding-left: 275px;
  }
  .p-xl-270 {
    padding: 270px;
  }
  .pt-xl-270,
  .py-xl-270 {
    padding-top: 270px;
  }
  .pr-xl-270,
  .px-xl-270 {
    padding-right: 270px;
  }
  .pb-xl-270,
  .py-xl-270 {
    padding-bottom: 270px;
  }
  .pl-xl-270,
  .px-xl-270 {
    padding-left: 270px;
  }
  .p-xl-265 {
    padding: 265px;
  }
  .pt-xl-265,
  .py-xl-265 {
    padding-top: 265px;
  }
  .pr-xl-265,
  .px-xl-265 {
    padding-right: 265px;
  }
  .pb-xl-265,
  .py-xl-265 {
    padding-bottom: 265px;
  }
  .pl-xl-265,
  .px-xl-265 {
    padding-left: 265px;
  }
  .p-xl-260 {
    padding: 260px;
  }
  .pt-xl-260,
  .py-xl-260 {
    padding-top: 260px;
  }
  .pr-xl-260,
  .px-xl-260 {
    padding-right: 260px;
  }
  .pb-xl-260,
  .py-xl-260 {
    padding-bottom: 260px;
  }
  .pl-xl-260,
  .px-xl-260 {
    padding-left: 260px;
  }
  .p-xl-255 {
    padding: 255px;
  }
  .pt-xl-255,
  .py-xl-255 {
    padding-top: 255px;
  }
  .pr-xl-255,
  .px-xl-255 {
    padding-right: 255px;
  }
  .pb-xl-255,
  .py-xl-255 {
    padding-bottom: 255px;
  }
  .pl-xl-255,
  .px-xl-255 {
    padding-left: 255px;
  }
  .p-xl-250 {
    padding: 250px;
  }
  .pt-xl-250,
  .py-xl-250 {
    padding-top: 250px;
  }
  .pr-xl-250,
  .px-xl-250 {
    padding-right: 250px;
  }
  .pb-xl-250,
  .py-xl-250 {
    padding-bottom: 250px;
  }
  .pl-xl-250,
  .px-xl-250 {
    padding-left: 250px;
  }
  .p-xl-245 {
    padding: 245px;
  }
  .pt-xl-245,
  .py-xl-245 {
    padding-top: 245px;
  }
  .pr-xl-245,
  .px-xl-245 {
    padding-right: 245px;
  }
  .pb-xl-245,
  .py-xl-245 {
    padding-bottom: 245px;
  }
  .pl-xl-245,
  .px-xl-245 {
    padding-left: 245px;
  }
  .p-xl-240 {
    padding: 240px;
  }
  .pt-xl-240,
  .py-xl-240 {
    padding-top: 240px;
  }
  .pr-xl-240,
  .px-xl-240 {
    padding-right: 240px;
  }
  .pb-xl-240,
  .py-xl-240 {
    padding-bottom: 240px;
  }
  .pl-xl-240,
  .px-xl-240 {
    padding-left: 240px;
  }
  .p-xl-235 {
    padding: 235px;
  }
  .pt-xl-235,
  .py-xl-235 {
    padding-top: 235px;
  }
  .pr-xl-235,
  .px-xl-235 {
    padding-right: 235px;
  }
  .pb-xl-235,
  .py-xl-235 {
    padding-bottom: 235px;
  }
  .pl-xl-235,
  .px-xl-235 {
    padding-left: 235px;
  }
  .p-xl-230 {
    padding: 230px;
  }
  .pt-xl-230,
  .py-xl-230 {
    padding-top: 230px;
  }
  .pr-xl-230,
  .px-xl-230 {
    padding-right: 230px;
  }
  .pb-xl-230,
  .py-xl-230 {
    padding-bottom: 230px;
  }
  .pl-xl-230,
  .px-xl-230 {
    padding-left: 230px;
  }
  .p-xl-225 {
    padding: 225px;
  }
  .pt-xl-225,
  .py-xl-225 {
    padding-top: 225px;
  }
  .pr-xl-225,
  .px-xl-225 {
    padding-right: 225px;
  }
  .pb-xl-225,
  .py-xl-225 {
    padding-bottom: 225px;
  }
  .pl-xl-225,
  .px-xl-225 {
    padding-left: 225px;
  }
  .p-xl-220 {
    padding: 220px;
  }
  .pt-xl-220,
  .py-xl-220 {
    padding-top: 220px;
  }
  .pr-xl-220,
  .px-xl-220 {
    padding-right: 220px;
  }
  .pb-xl-220,
  .py-xl-220 {
    padding-bottom: 220px;
  }
  .pl-xl-220,
  .px-xl-220 {
    padding-left: 220px;
  }
  .p-xl-215 {
    padding: 215px;
  }
  .pt-xl-215,
  .py-xl-215 {
    padding-top: 215px;
  }
  .pr-xl-215,
  .px-xl-215 {
    padding-right: 215px;
  }
  .pb-xl-215,
  .py-xl-215 {
    padding-bottom: 215px;
  }
  .pl-xl-215,
  .px-xl-215 {
    padding-left: 215px;
  }
  .p-xl-210 {
    padding: 210px;
  }
  .pt-xl-210,
  .py-xl-210 {
    padding-top: 210px;
  }
  .pr-xl-210,
  .px-xl-210 {
    padding-right: 210px;
  }
  .pb-xl-210,
  .py-xl-210 {
    padding-bottom: 210px;
  }
  .pl-xl-210,
  .px-xl-210 {
    padding-left: 210px;
  }
  .p-xl-205 {
    padding: 205px;
  }
  .pt-xl-205,
  .py-xl-205 {
    padding-top: 205px;
  }
  .pr-xl-205,
  .px-xl-205 {
    padding-right: 205px;
  }
  .pb-xl-205,
  .py-xl-205 {
    padding-bottom: 205px;
  }
  .pl-xl-205,
  .px-xl-205 {
    padding-left: 205px;
  }
  .p-xl-200 {
    padding: 200px;
  }
  .pt-xl-200,
  .py-xl-200 {
    padding-top: 200px;
  }
  .pr-xl-200,
  .px-xl-200 {
    padding-right: 200px;
  }
  .pb-xl-200,
  .py-xl-200 {
    padding-bottom: 200px;
  }
  .pl-xl-200,
  .px-xl-200 {
    padding-left: 200px;
  }
  .p-xl-195 {
    padding: 195px;
  }
  .pt-xl-195,
  .py-xl-195 {
    padding-top: 195px;
  }
  .pr-xl-195,
  .px-xl-195 {
    padding-right: 195px;
  }
  .pb-xl-195,
  .py-xl-195 {
    padding-bottom: 195px;
  }
  .pl-xl-195,
  .px-xl-195 {
    padding-left: 195px;
  }
  .p-xl-190 {
    padding: 190px;
  }
  .pt-xl-190,
  .py-xl-190 {
    padding-top: 190px;
  }
  .pr-xl-190,
  .px-xl-190 {
    padding-right: 190px;
  }
  .pb-xl-190,
  .py-xl-190 {
    padding-bottom: 190px;
  }
  .pl-xl-190,
  .px-xl-190 {
    padding-left: 190px;
  }
  .p-xl-185 {
    padding: 185px;
  }
  .pt-xl-185,
  .py-xl-185 {
    padding-top: 185px;
  }
  .pr-xl-185,
  .px-xl-185 {
    padding-right: 185px;
  }
  .pb-xl-185,
  .py-xl-185 {
    padding-bottom: 185px;
  }
  .pl-xl-185,
  .px-xl-185 {
    padding-left: 185px;
  }
  .p-xl-180 {
    padding: 180px;
  }
  .pt-xl-180,
  .py-xl-180 {
    padding-top: 180px;
  }
  .pr-xl-180,
  .px-xl-180 {
    padding-right: 180px;
  }
  .pb-xl-180,
  .py-xl-180 {
    padding-bottom: 180px;
  }
  .pl-xl-180,
  .px-xl-180 {
    padding-left: 180px;
  }
  .p-xl-175 {
    padding: 175px;
  }
  .pt-xl-175,
  .py-xl-175 {
    padding-top: 175px;
  }
  .pr-xl-175,
  .px-xl-175 {
    padding-right: 175px;
  }
  .pb-xl-175,
  .py-xl-175 {
    padding-bottom: 175px;
  }
  .pl-xl-175,
  .px-xl-175 {
    padding-left: 175px;
  }
  .p-xl-170 {
    padding: 170px;
  }
  .pt-xl-170,
  .py-xl-170 {
    padding-top: 170px;
  }
  .pr-xl-170,
  .px-xl-170 {
    padding-right: 170px;
  }
  .pb-xl-170,
  .py-xl-170 {
    padding-bottom: 170px;
  }
  .pl-xl-170,
  .px-xl-170 {
    padding-left: 170px;
  }
  .p-xl-165 {
    padding: 165px;
  }
  .pt-xl-165,
  .py-xl-165 {
    padding-top: 165px;
  }
  .pr-xl-165,
  .px-xl-165 {
    padding-right: 165px;
  }
  .pb-xl-165,
  .py-xl-165 {
    padding-bottom: 165px;
  }
  .pl-xl-165,
  .px-xl-165 {
    padding-left: 165px;
  }
  .p-xl-160 {
    padding: 160px;
  }
  .pt-xl-160,
  .py-xl-160 {
    padding-top: 160px;
  }
  .pr-xl-160,
  .px-xl-160 {
    padding-right: 160px;
  }
  .pb-xl-160,
  .py-xl-160 {
    padding-bottom: 160px;
  }
  .pl-xl-160,
  .px-xl-160 {
    padding-left: 160px;
  }
  .p-xl-155 {
    padding: 155px;
  }
  .pt-xl-155,
  .py-xl-155 {
    padding-top: 155px;
  }
  .pr-xl-155,
  .px-xl-155 {
    padding-right: 155px;
  }
  .pb-xl-155,
  .py-xl-155 {
    padding-bottom: 155px;
  }
  .pl-xl-155,
  .px-xl-155 {
    padding-left: 155px;
  }
  .p-xl-150 {
    padding: 150px;
  }
  .pt-xl-150,
  .py-xl-150 {
    padding-top: 150px;
  }
  .pr-xl-150,
  .px-xl-150 {
    padding-right: 150px;
  }
  .pb-xl-150,
  .py-xl-150 {
    padding-bottom: 150px;
  }
  .pl-xl-150,
  .px-xl-150 {
    padding-left: 150px;
  }
  .p-xl-145 {
    padding: 145px;
  }
  .pt-xl-145,
  .py-xl-145 {
    padding-top: 145px;
  }
  .pr-xl-145,
  .px-xl-145 {
    padding-right: 145px;
  }
  .pb-xl-145,
  .py-xl-145 {
    padding-bottom: 145px;
  }
  .pl-xl-145,
  .px-xl-145 {
    padding-left: 145px;
  }
  .p-xl-140 {
    padding: 140px;
  }
  .pt-xl-140,
  .py-xl-140 {
    padding-top: 140px;
  }
  .pr-xl-140,
  .px-xl-140 {
    padding-right: 140px;
  }
  .pb-xl-140,
  .py-xl-140 {
    padding-bottom: 140px;
  }
  .pl-xl-140,
  .px-xl-140 {
    padding-left: 140px;
  }
  .p-xl-135 {
    padding: 135px;
  }
  .pt-xl-135,
  .py-xl-135 {
    padding-top: 135px;
  }
  .pr-xl-135,
  .px-xl-135 {
    padding-right: 135px;
  }
  .pb-xl-135,
  .py-xl-135 {
    padding-bottom: 135px;
  }
  .pl-xl-135,
  .px-xl-135 {
    padding-left: 135px;
  }
  .p-xl-130 {
    padding: 130px;
  }
  .pt-xl-130,
  .py-xl-130 {
    padding-top: 130px;
  }
  .pr-xl-130,
  .px-xl-130 {
    padding-right: 130px;
  }
  .pb-xl-130,
  .py-xl-130 {
    padding-bottom: 130px;
  }
  .pl-xl-130,
  .px-xl-130 {
    padding-left: 130px;
  }
  .p-xl-125 {
    padding: 125px;
  }
  .pt-xl-125,
  .py-xl-125 {
    padding-top: 125px;
  }
  .pr-xl-125,
  .px-xl-125 {
    padding-right: 125px;
  }
  .pb-xl-125,
  .py-xl-125 {
    padding-bottom: 125px;
  }
  .pl-xl-125,
  .px-xl-125 {
    padding-left: 125px;
  }
  .p-xl-120 {
    padding: 120px;
  }
  .pt-xl-120,
  .py-xl-120 {
    padding-top: 120px;
  }
  .pr-xl-120,
  .px-xl-120 {
    padding-right: 120px;
  }
  .pb-xl-120,
  .py-xl-120 {
    padding-bottom: 120px;
  }
  .pl-xl-120,
  .px-xl-120 {
    padding-left: 120px;
  }
  .p-xl-115 {
    padding: 115px;
  }
  .pt-xl-115,
  .py-xl-115 {
    padding-top: 115px;
  }
  .pr-xl-115,
  .px-xl-115 {
    padding-right: 115px;
  }
  .pb-xl-115,
  .py-xl-115 {
    padding-bottom: 115px;
  }
  .pl-xl-115,
  .px-xl-115 {
    padding-left: 115px;
  }
  .p-xl-110 {
    padding: 110px;
  }
  .pt-xl-110,
  .py-xl-110 {
    padding-top: 110px;
  }
  .pr-xl-110,
  .px-xl-110 {
    padding-right: 110px;
  }
  .pb-xl-110,
  .py-xl-110 {
    padding-bottom: 110px;
  }
  .pl-xl-110,
  .px-xl-110 {
    padding-left: 110px;
  }
  .p-xl-105 {
    padding: 105px;
  }
  .pt-xl-105,
  .py-xl-105 {
    padding-top: 105px;
  }
  .pr-xl-105,
  .px-xl-105 {
    padding-right: 105px;
  }
  .pb-xl-105,
  .py-xl-105 {
    padding-bottom: 105px;
  }
  .pl-xl-105,
  .px-xl-105 {
    padding-left: 105px;
  }
  .p-xl-100 {
    padding: 100px;
  }
  .pt-xl-100,
  .py-xl-100 {
    padding-top: 100px;
  }
  .pr-xl-100,
  .px-xl-100 {
    padding-right: 100px;
  }
  .pb-xl-100,
  .py-xl-100 {
    padding-bottom: 100px;
  }
  .pl-xl-100,
  .px-xl-100 {
    padding-left: 100px;
  }
  .p-xl-95 {
    padding: 95px;
  }
  .pt-xl-95,
  .py-xl-95 {
    padding-top: 95px;
  }
  .pr-xl-95,
  .px-xl-95 {
    padding-right: 95px;
  }
  .pb-xl-95,
  .py-xl-95 {
    padding-bottom: 95px;
  }
  .pl-xl-95,
  .px-xl-95 {
    padding-left: 95px;
  }
  .p-xl-90 {
    padding: 90px;
  }
  .pt-xl-90,
  .py-xl-90 {
    padding-top: 90px;
  }
  .pr-xl-90,
  .px-xl-90 {
    padding-right: 90px;
  }
  .pb-xl-90,
  .py-xl-90 {
    padding-bottom: 90px;
  }
  .pl-xl-90,
  .px-xl-90 {
    padding-left: 90px;
  }
  .p-xl-85 {
    padding: 85px;
  }
  .pt-xl-85,
  .py-xl-85 {
    padding-top: 85px;
  }
  .pr-xl-85,
  .px-xl-85 {
    padding-right: 85px;
  }
  .pb-xl-85,
  .py-xl-85 {
    padding-bottom: 85px;
  }
  .pl-xl-85,
  .px-xl-85 {
    padding-left: 85px;
  }
  .p-xl-80 {
    padding: 80px;
  }
  .pt-xl-80,
  .py-xl-80 {
    padding-top: 80px;
  }
  .pr-xl-80,
  .px-xl-80 {
    padding-right: 80px;
  }
  .pb-xl-80,
  .py-xl-80 {
    padding-bottom: 80px;
  }
  .pl-xl-80,
  .px-xl-80 {
    padding-left: 80px;
  }
  .p-xl-75 {
    padding: 75px;
  }
  .pt-xl-75,
  .py-xl-75 {
    padding-top: 75px;
  }
  .pr-xl-75,
  .px-xl-75 {
    padding-right: 75px;
  }
  .pb-xl-75,
  .py-xl-75 {
    padding-bottom: 75px;
  }
  .pl-xl-75,
  .px-xl-75 {
    padding-left: 75px;
  }
  .p-xl-70 {
    padding: 70px;
  }
  .pt-xl-70,
  .py-xl-70 {
    padding-top: 70px;
  }
  .pr-xl-70,
  .px-xl-70 {
    padding-right: 70px;
  }
  .pb-xl-70,
  .py-xl-70 {
    padding-bottom: 70px;
  }
  .pl-xl-70,
  .px-xl-70 {
    padding-left: 70px;
  }
  .p-xl-65 {
    padding: 65px;
  }
  .pt-xl-65,
  .py-xl-65 {
    padding-top: 65px;
  }
  .pr-xl-65,
  .px-xl-65 {
    padding-right: 65px;
  }
  .pb-xl-65,
  .py-xl-65 {
    padding-bottom: 65px;
  }
  .pl-xl-65,
  .px-xl-65 {
    padding-left: 65px;
  }
  .p-xl-60 {
    padding: 60px;
  }
  .pt-xl-60,
  .py-xl-60 {
    padding-top: 60px;
  }
  .pr-xl-60,
  .px-xl-60 {
    padding-right: 60px;
  }
  .pb-xl-60,
  .py-xl-60 {
    padding-bottom: 60px;
  }
  .pl-xl-60,
  .px-xl-60 {
    padding-left: 60px;
  }
  .p-xl-55 {
    padding: 55px;
  }
  .pt-xl-55,
  .py-xl-55 {
    padding-top: 55px;
  }
  .pr-xl-55,
  .px-xl-55 {
    padding-right: 55px;
  }
  .pb-xl-55,
  .py-xl-55 {
    padding-bottom: 55px;
  }
  .pl-xl-55,
  .px-xl-55 {
    padding-left: 55px;
  }
  .p-xl-50 {
    padding: 50px;
  }
  .pt-xl-50,
  .py-xl-50 {
    padding-top: 50px;
  }
  .pr-xl-50,
  .px-xl-50 {
    padding-right: 50px;
  }
  .pb-xl-50,
  .py-xl-50 {
    padding-bottom: 50px;
  }
  .pl-xl-50,
  .px-xl-50 {
    padding-left: 50px;
  }
  .p-xl-45 {
    padding: 45px;
  }
  .pt-xl-45,
  .py-xl-45 {
    padding-top: 45px;
  }
  .pr-xl-45,
  .px-xl-45 {
    padding-right: 45px;
  }
  .pb-xl-45,
  .py-xl-45 {
    padding-bottom: 45px;
  }
  .pl-xl-45,
  .px-xl-45 {
    padding-left: 45px;
  }
  .p-xl-40 {
    padding: 40px;
  }
  .pt-xl-40,
  .py-xl-40 {
    padding-top: 40px;
  }
  .pr-xl-40,
  .px-xl-40 {
    padding-right: 40px;
  }
  .pb-xl-40,
  .py-xl-40 {
    padding-bottom: 40px;
  }
  .pl-xl-40,
  .px-xl-40 {
    padding-left: 40px;
  }
  .p-xl-35 {
    padding: 35px;
  }
  .pt-xl-35,
  .py-xl-35 {
    padding-top: 35px;
  }
  .pr-xl-35,
  .px-xl-35 {
    padding-right: 35px;
  }
  .pb-xl-35,
  .py-xl-35 {
    padding-bottom: 35px;
  }
  .pl-xl-35,
  .px-xl-35 {
    padding-left: 35px;
  }
  .p-xl-30 {
    padding: 30px;
  }
  .pt-xl-30,
  .py-xl-30 {
    padding-top: 30px;
  }
  .pr-xl-30,
  .px-xl-30 {
    padding-right: 30px;
  }
  .pb-xl-30,
  .py-xl-30 {
    padding-bottom: 30px;
  }
  .pl-xl-30,
  .px-xl-30 {
    padding-left: 30px;
  }
  .p-xl-25 {
    padding: 25px;
  }
  .pt-xl-25,
  .py-xl-25 {
    padding-top: 25px;
  }
  .pr-xl-25,
  .px-xl-25 {
    padding-right: 25px;
  }
  .pb-xl-25,
  .py-xl-25 {
    padding-bottom: 25px;
  }
  .pl-xl-25,
  .px-xl-25 {
    padding-left: 25px;
  }
  .p-xl-20 {
    padding: 20px;
  }
  .pt-xl-20,
  .py-xl-20 {
    padding-top: 20px;
  }
  .pr-xl-20,
  .px-xl-20 {
    padding-right: 20px;
  }
  .pb-xl-20,
  .py-xl-20 {
    padding-bottom: 20px;
  }
  .pl-xl-20,
  .px-xl-20 {
    padding-left: 20px;
  }
  .p-xl-15 {
    padding: 15px;
  }
  .pt-xl-15,
  .py-xl-15 {
    padding-top: 15px;
  }
  .pr-xl-15,
  .px-xl-15 {
    padding-right: 15px;
  }
  .pb-xl-15,
  .py-xl-15 {
    padding-bottom: 15px;
  }
  .pl-xl-15,
  .px-xl-15 {
    padding-left: 15px;
  }
  .p-xl-10 {
    padding: 10px;
  }
  .pt-xl-10,
  .py-xl-10 {
    padding-top: 10px;
  }
  .pr-xl-10,
  .px-xl-10 {
    padding-right: 10px;
  }
  .pb-xl-10,
  .py-xl-10 {
    padding-bottom: 10px;
  }
  .pl-xl-10,
  .px-xl-10 {
    padding-left: 10px;
  }
  .p-xl-5 {
    padding: 5px;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 5px;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 5px;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 5px;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 5px;
  }
  .p-xl-0 {
    padding: 0px;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0px;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0px;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0px;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0px;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1800px) {
  .m-xxl-300 {
    margin: 300px;
  }
  .mt-xxl-300,
  .my-xxl-300 {
    margin-top: 300px;
  }
  .mr-xxl-300,
  .mx-xxl-300 {
    margin-right: 300px;
  }
  .mb-xxl-300,
  .my-xxl-300 {
    margin-bottom: 300px;
  }
  .ml-xxl-300,
  .mx-xxl-300 {
    margin-left: 300px;
  }
  .m-xxl-295 {
    margin: 295px;
  }
  .mt-xxl-295,
  .my-xxl-295 {
    margin-top: 295px;
  }
  .mr-xxl-295,
  .mx-xxl-295 {
    margin-right: 295px;
  }
  .mb-xxl-295,
  .my-xxl-295 {
    margin-bottom: 295px;
  }
  .ml-xxl-295,
  .mx-xxl-295 {
    margin-left: 295px;
  }
  .m-xxl-290 {
    margin: 290px;
  }
  .mt-xxl-290,
  .my-xxl-290 {
    margin-top: 290px;
  }
  .mr-xxl-290,
  .mx-xxl-290 {
    margin-right: 290px;
  }
  .mb-xxl-290,
  .my-xxl-290 {
    margin-bottom: 290px;
  }
  .ml-xxl-290,
  .mx-xxl-290 {
    margin-left: 290px;
  }
  .m-xxl-285 {
    margin: 285px;
  }
  .mt-xxl-285,
  .my-xxl-285 {
    margin-top: 285px;
  }
  .mr-xxl-285,
  .mx-xxl-285 {
    margin-right: 285px;
  }
  .mb-xxl-285,
  .my-xxl-285 {
    margin-bottom: 285px;
  }
  .ml-xxl-285,
  .mx-xxl-285 {
    margin-left: 285px;
  }
  .m-xxl-280 {
    margin: 280px;
  }
  .mt-xxl-280,
  .my-xxl-280 {
    margin-top: 280px;
  }
  .mr-xxl-280,
  .mx-xxl-280 {
    margin-right: 280px;
  }
  .mb-xxl-280,
  .my-xxl-280 {
    margin-bottom: 280px;
  }
  .ml-xxl-280,
  .mx-xxl-280 {
    margin-left: 280px;
  }
  .m-xxl-275 {
    margin: 275px;
  }
  .mt-xxl-275,
  .my-xxl-275 {
    margin-top: 275px;
  }
  .mr-xxl-275,
  .mx-xxl-275 {
    margin-right: 275px;
  }
  .mb-xxl-275,
  .my-xxl-275 {
    margin-bottom: 275px;
  }
  .ml-xxl-275,
  .mx-xxl-275 {
    margin-left: 275px;
  }
  .m-xxl-270 {
    margin: 270px;
  }
  .mt-xxl-270,
  .my-xxl-270 {
    margin-top: 270px;
  }
  .mr-xxl-270,
  .mx-xxl-270 {
    margin-right: 270px;
  }
  .mb-xxl-270,
  .my-xxl-270 {
    margin-bottom: 270px;
  }
  .ml-xxl-270,
  .mx-xxl-270 {
    margin-left: 270px;
  }
  .m-xxl-265 {
    margin: 265px;
  }
  .mt-xxl-265,
  .my-xxl-265 {
    margin-top: 265px;
  }
  .mr-xxl-265,
  .mx-xxl-265 {
    margin-right: 265px;
  }
  .mb-xxl-265,
  .my-xxl-265 {
    margin-bottom: 265px;
  }
  .ml-xxl-265,
  .mx-xxl-265 {
    margin-left: 265px;
  }
  .m-xxl-260 {
    margin: 260px;
  }
  .mt-xxl-260,
  .my-xxl-260 {
    margin-top: 260px;
  }
  .mr-xxl-260,
  .mx-xxl-260 {
    margin-right: 260px;
  }
  .mb-xxl-260,
  .my-xxl-260 {
    margin-bottom: 260px;
  }
  .ml-xxl-260,
  .mx-xxl-260 {
    margin-left: 260px;
  }
  .m-xxl-255 {
    margin: 255px;
  }
  .mt-xxl-255,
  .my-xxl-255 {
    margin-top: 255px;
  }
  .mr-xxl-255,
  .mx-xxl-255 {
    margin-right: 255px;
  }
  .mb-xxl-255,
  .my-xxl-255 {
    margin-bottom: 255px;
  }
  .ml-xxl-255,
  .mx-xxl-255 {
    margin-left: 255px;
  }
  .m-xxl-250 {
    margin: 250px;
  }
  .mt-xxl-250,
  .my-xxl-250 {
    margin-top: 250px;
  }
  .mr-xxl-250,
  .mx-xxl-250 {
    margin-right: 250px;
  }
  .mb-xxl-250,
  .my-xxl-250 {
    margin-bottom: 250px;
  }
  .ml-xxl-250,
  .mx-xxl-250 {
    margin-left: 250px;
  }
  .m-xxl-245 {
    margin: 245px;
  }
  .mt-xxl-245,
  .my-xxl-245 {
    margin-top: 245px;
  }
  .mr-xxl-245,
  .mx-xxl-245 {
    margin-right: 245px;
  }
  .mb-xxl-245,
  .my-xxl-245 {
    margin-bottom: 245px;
  }
  .ml-xxl-245,
  .mx-xxl-245 {
    margin-left: 245px;
  }
  .m-xxl-240 {
    margin: 240px;
  }
  .mt-xxl-240,
  .my-xxl-240 {
    margin-top: 240px;
  }
  .mr-xxl-240,
  .mx-xxl-240 {
    margin-right: 240px;
  }
  .mb-xxl-240,
  .my-xxl-240 {
    margin-bottom: 240px;
  }
  .ml-xxl-240,
  .mx-xxl-240 {
    margin-left: 240px;
  }
  .m-xxl-235 {
    margin: 235px;
  }
  .mt-xxl-235,
  .my-xxl-235 {
    margin-top: 235px;
  }
  .mr-xxl-235,
  .mx-xxl-235 {
    margin-right: 235px;
  }
  .mb-xxl-235,
  .my-xxl-235 {
    margin-bottom: 235px;
  }
  .ml-xxl-235,
  .mx-xxl-235 {
    margin-left: 235px;
  }
  .m-xxl-230 {
    margin: 230px;
  }
  .mt-xxl-230,
  .my-xxl-230 {
    margin-top: 230px;
  }
  .mr-xxl-230,
  .mx-xxl-230 {
    margin-right: 230px;
  }
  .mb-xxl-230,
  .my-xxl-230 {
    margin-bottom: 230px;
  }
  .ml-xxl-230,
  .mx-xxl-230 {
    margin-left: 230px;
  }
  .m-xxl-225 {
    margin: 225px;
  }
  .mt-xxl-225,
  .my-xxl-225 {
    margin-top: 225px;
  }
  .mr-xxl-225,
  .mx-xxl-225 {
    margin-right: 225px;
  }
  .mb-xxl-225,
  .my-xxl-225 {
    margin-bottom: 225px;
  }
  .ml-xxl-225,
  .mx-xxl-225 {
    margin-left: 225px;
  }
  .m-xxl-220 {
    margin: 220px;
  }
  .mt-xxl-220,
  .my-xxl-220 {
    margin-top: 220px;
  }
  .mr-xxl-220,
  .mx-xxl-220 {
    margin-right: 220px;
  }
  .mb-xxl-220,
  .my-xxl-220 {
    margin-bottom: 220px;
  }
  .ml-xxl-220,
  .mx-xxl-220 {
    margin-left: 220px;
  }
  .m-xxl-215 {
    margin: 215px;
  }
  .mt-xxl-215,
  .my-xxl-215 {
    margin-top: 215px;
  }
  .mr-xxl-215,
  .mx-xxl-215 {
    margin-right: 215px;
  }
  .mb-xxl-215,
  .my-xxl-215 {
    margin-bottom: 215px;
  }
  .ml-xxl-215,
  .mx-xxl-215 {
    margin-left: 215px;
  }
  .m-xxl-210 {
    margin: 210px;
  }
  .mt-xxl-210,
  .my-xxl-210 {
    margin-top: 210px;
  }
  .mr-xxl-210,
  .mx-xxl-210 {
    margin-right: 210px;
  }
  .mb-xxl-210,
  .my-xxl-210 {
    margin-bottom: 210px;
  }
  .ml-xxl-210,
  .mx-xxl-210 {
    margin-left: 210px;
  }
  .m-xxl-205 {
    margin: 205px;
  }
  .mt-xxl-205,
  .my-xxl-205 {
    margin-top: 205px;
  }
  .mr-xxl-205,
  .mx-xxl-205 {
    margin-right: 205px;
  }
  .mb-xxl-205,
  .my-xxl-205 {
    margin-bottom: 205px;
  }
  .ml-xxl-205,
  .mx-xxl-205 {
    margin-left: 205px;
  }
  .m-xxl-200 {
    margin: 200px;
  }
  .mt-xxl-200,
  .my-xxl-200 {
    margin-top: 200px;
  }
  .mr-xxl-200,
  .mx-xxl-200 {
    margin-right: 200px;
  }
  .mb-xxl-200,
  .my-xxl-200 {
    margin-bottom: 200px;
  }
  .ml-xxl-200,
  .mx-xxl-200 {
    margin-left: 200px;
  }
  .m-xxl-195 {
    margin: 195px;
  }
  .mt-xxl-195,
  .my-xxl-195 {
    margin-top: 195px;
  }
  .mr-xxl-195,
  .mx-xxl-195 {
    margin-right: 195px;
  }
  .mb-xxl-195,
  .my-xxl-195 {
    margin-bottom: 195px;
  }
  .ml-xxl-195,
  .mx-xxl-195 {
    margin-left: 195px;
  }
  .m-xxl-190 {
    margin: 190px;
  }
  .mt-xxl-190,
  .my-xxl-190 {
    margin-top: 190px;
  }
  .mr-xxl-190,
  .mx-xxl-190 {
    margin-right: 190px;
  }
  .mb-xxl-190,
  .my-xxl-190 {
    margin-bottom: 190px;
  }
  .ml-xxl-190,
  .mx-xxl-190 {
    margin-left: 190px;
  }
  .m-xxl-185 {
    margin: 185px;
  }
  .mt-xxl-185,
  .my-xxl-185 {
    margin-top: 185px;
  }
  .mr-xxl-185,
  .mx-xxl-185 {
    margin-right: 185px;
  }
  .mb-xxl-185,
  .my-xxl-185 {
    margin-bottom: 185px;
  }
  .ml-xxl-185,
  .mx-xxl-185 {
    margin-left: 185px;
  }
  .m-xxl-180 {
    margin: 180px;
  }
  .mt-xxl-180,
  .my-xxl-180 {
    margin-top: 180px;
  }
  .mr-xxl-180,
  .mx-xxl-180 {
    margin-right: 180px;
  }
  .mb-xxl-180,
  .my-xxl-180 {
    margin-bottom: 180px;
  }
  .ml-xxl-180,
  .mx-xxl-180 {
    margin-left: 180px;
  }
  .m-xxl-175 {
    margin: 175px;
  }
  .mt-xxl-175,
  .my-xxl-175 {
    margin-top: 175px;
  }
  .mr-xxl-175,
  .mx-xxl-175 {
    margin-right: 175px;
  }
  .mb-xxl-175,
  .my-xxl-175 {
    margin-bottom: 175px;
  }
  .ml-xxl-175,
  .mx-xxl-175 {
    margin-left: 175px;
  }
  .m-xxl-170 {
    margin: 170px;
  }
  .mt-xxl-170,
  .my-xxl-170 {
    margin-top: 170px;
  }
  .mr-xxl-170,
  .mx-xxl-170 {
    margin-right: 170px;
  }
  .mb-xxl-170,
  .my-xxl-170 {
    margin-bottom: 170px;
  }
  .ml-xxl-170,
  .mx-xxl-170 {
    margin-left: 170px;
  }
  .m-xxl-165 {
    margin: 165px;
  }
  .mt-xxl-165,
  .my-xxl-165 {
    margin-top: 165px;
  }
  .mr-xxl-165,
  .mx-xxl-165 {
    margin-right: 165px;
  }
  .mb-xxl-165,
  .my-xxl-165 {
    margin-bottom: 165px;
  }
  .ml-xxl-165,
  .mx-xxl-165 {
    margin-left: 165px;
  }
  .m-xxl-160 {
    margin: 160px;
  }
  .mt-xxl-160,
  .my-xxl-160 {
    margin-top: 160px;
  }
  .mr-xxl-160,
  .mx-xxl-160 {
    margin-right: 160px;
  }
  .mb-xxl-160,
  .my-xxl-160 {
    margin-bottom: 160px;
  }
  .ml-xxl-160,
  .mx-xxl-160 {
    margin-left: 160px;
  }
  .m-xxl-155 {
    margin: 155px;
  }
  .mt-xxl-155,
  .my-xxl-155 {
    margin-top: 155px;
  }
  .mr-xxl-155,
  .mx-xxl-155 {
    margin-right: 155px;
  }
  .mb-xxl-155,
  .my-xxl-155 {
    margin-bottom: 155px;
  }
  .ml-xxl-155,
  .mx-xxl-155 {
    margin-left: 155px;
  }
  .m-xxl-150 {
    margin: 150px;
  }
  .mt-xxl-150,
  .my-xxl-150 {
    margin-top: 150px;
  }
  .mr-xxl-150,
  .mx-xxl-150 {
    margin-right: 150px;
  }
  .mb-xxl-150,
  .my-xxl-150 {
    margin-bottom: 150px;
  }
  .ml-xxl-150,
  .mx-xxl-150 {
    margin-left: 150px;
  }
  .m-xxl-145 {
    margin: 145px;
  }
  .mt-xxl-145,
  .my-xxl-145 {
    margin-top: 145px;
  }
  .mr-xxl-145,
  .mx-xxl-145 {
    margin-right: 145px;
  }
  .mb-xxl-145,
  .my-xxl-145 {
    margin-bottom: 145px;
  }
  .ml-xxl-145,
  .mx-xxl-145 {
    margin-left: 145px;
  }
  .m-xxl-140 {
    margin: 140px;
  }
  .mt-xxl-140,
  .my-xxl-140 {
    margin-top: 140px;
  }
  .mr-xxl-140,
  .mx-xxl-140 {
    margin-right: 140px;
  }
  .mb-xxl-140,
  .my-xxl-140 {
    margin-bottom: 140px;
  }
  .ml-xxl-140,
  .mx-xxl-140 {
    margin-left: 140px;
  }
  .m-xxl-135 {
    margin: 135px;
  }
  .mt-xxl-135,
  .my-xxl-135 {
    margin-top: 135px;
  }
  .mr-xxl-135,
  .mx-xxl-135 {
    margin-right: 135px;
  }
  .mb-xxl-135,
  .my-xxl-135 {
    margin-bottom: 135px;
  }
  .ml-xxl-135,
  .mx-xxl-135 {
    margin-left: 135px;
  }
  .m-xxl-130 {
    margin: 130px;
  }
  .mt-xxl-130,
  .my-xxl-130 {
    margin-top: 130px;
  }
  .mr-xxl-130,
  .mx-xxl-130 {
    margin-right: 130px;
  }
  .mb-xxl-130,
  .my-xxl-130 {
    margin-bottom: 130px;
  }
  .ml-xxl-130,
  .mx-xxl-130 {
    margin-left: 130px;
  }
  .m-xxl-125 {
    margin: 125px;
  }
  .mt-xxl-125,
  .my-xxl-125 {
    margin-top: 125px;
  }
  .mr-xxl-125,
  .mx-xxl-125 {
    margin-right: 125px;
  }
  .mb-xxl-125,
  .my-xxl-125 {
    margin-bottom: 125px;
  }
  .ml-xxl-125,
  .mx-xxl-125 {
    margin-left: 125px;
  }
  .m-xxl-120 {
    margin: 120px;
  }
  .mt-xxl-120,
  .my-xxl-120 {
    margin-top: 120px;
  }
  .mr-xxl-120,
  .mx-xxl-120 {
    margin-right: 120px;
  }
  .mb-xxl-120,
  .my-xxl-120 {
    margin-bottom: 120px;
  }
  .ml-xxl-120,
  .mx-xxl-120 {
    margin-left: 120px;
  }
  .m-xxl-115 {
    margin: 115px;
  }
  .mt-xxl-115,
  .my-xxl-115 {
    margin-top: 115px;
  }
  .mr-xxl-115,
  .mx-xxl-115 {
    margin-right: 115px;
  }
  .mb-xxl-115,
  .my-xxl-115 {
    margin-bottom: 115px;
  }
  .ml-xxl-115,
  .mx-xxl-115 {
    margin-left: 115px;
  }
  .m-xxl-110 {
    margin: 110px;
  }
  .mt-xxl-110,
  .my-xxl-110 {
    margin-top: 110px;
  }
  .mr-xxl-110,
  .mx-xxl-110 {
    margin-right: 110px;
  }
  .mb-xxl-110,
  .my-xxl-110 {
    margin-bottom: 110px;
  }
  .ml-xxl-110,
  .mx-xxl-110 {
    margin-left: 110px;
  }
  .m-xxl-105 {
    margin: 105px;
  }
  .mt-xxl-105,
  .my-xxl-105 {
    margin-top: 105px;
  }
  .mr-xxl-105,
  .mx-xxl-105 {
    margin-right: 105px;
  }
  .mb-xxl-105,
  .my-xxl-105 {
    margin-bottom: 105px;
  }
  .ml-xxl-105,
  .mx-xxl-105 {
    margin-left: 105px;
  }
  .m-xxl-100 {
    margin: 100px;
  }
  .mt-xxl-100,
  .my-xxl-100 {
    margin-top: 100px;
  }
  .mr-xxl-100,
  .mx-xxl-100 {
    margin-right: 100px;
  }
  .mb-xxl-100,
  .my-xxl-100 {
    margin-bottom: 100px;
  }
  .ml-xxl-100,
  .mx-xxl-100 {
    margin-left: 100px;
  }
  .m-xxl-95 {
    margin: 95px;
  }
  .mt-xxl-95,
  .my-xxl-95 {
    margin-top: 95px;
  }
  .mr-xxl-95,
  .mx-xxl-95 {
    margin-right: 95px;
  }
  .mb-xxl-95,
  .my-xxl-95 {
    margin-bottom: 95px;
  }
  .ml-xxl-95,
  .mx-xxl-95 {
    margin-left: 95px;
  }
  .m-xxl-90 {
    margin: 90px;
  }
  .mt-xxl-90,
  .my-xxl-90 {
    margin-top: 90px;
  }
  .mr-xxl-90,
  .mx-xxl-90 {
    margin-right: 90px;
  }
  .mb-xxl-90,
  .my-xxl-90 {
    margin-bottom: 90px;
  }
  .ml-xxl-90,
  .mx-xxl-90 {
    margin-left: 90px;
  }
  .m-xxl-85 {
    margin: 85px;
  }
  .mt-xxl-85,
  .my-xxl-85 {
    margin-top: 85px;
  }
  .mr-xxl-85,
  .mx-xxl-85 {
    margin-right: 85px;
  }
  .mb-xxl-85,
  .my-xxl-85 {
    margin-bottom: 85px;
  }
  .ml-xxl-85,
  .mx-xxl-85 {
    margin-left: 85px;
  }
  .m-xxl-80 {
    margin: 80px;
  }
  .mt-xxl-80,
  .my-xxl-80 {
    margin-top: 80px;
  }
  .mr-xxl-80,
  .mx-xxl-80 {
    margin-right: 80px;
  }
  .mb-xxl-80,
  .my-xxl-80 {
    margin-bottom: 80px;
  }
  .ml-xxl-80,
  .mx-xxl-80 {
    margin-left: 80px;
  }
  .m-xxl-75 {
    margin: 75px;
  }
  .mt-xxl-75,
  .my-xxl-75 {
    margin-top: 75px;
  }
  .mr-xxl-75,
  .mx-xxl-75 {
    margin-right: 75px;
  }
  .mb-xxl-75,
  .my-xxl-75 {
    margin-bottom: 75px;
  }
  .ml-xxl-75,
  .mx-xxl-75 {
    margin-left: 75px;
  }
  .m-xxl-70 {
    margin: 70px;
  }
  .mt-xxl-70,
  .my-xxl-70 {
    margin-top: 70px;
  }
  .mr-xxl-70,
  .mx-xxl-70 {
    margin-right: 70px;
  }
  .mb-xxl-70,
  .my-xxl-70 {
    margin-bottom: 70px;
  }
  .ml-xxl-70,
  .mx-xxl-70 {
    margin-left: 70px;
  }
  .m-xxl-65 {
    margin: 65px;
  }
  .mt-xxl-65,
  .my-xxl-65 {
    margin-top: 65px;
  }
  .mr-xxl-65,
  .mx-xxl-65 {
    margin-right: 65px;
  }
  .mb-xxl-65,
  .my-xxl-65 {
    margin-bottom: 65px;
  }
  .ml-xxl-65,
  .mx-xxl-65 {
    margin-left: 65px;
  }
  .m-xxl-60 {
    margin: 60px;
  }
  .mt-xxl-60,
  .my-xxl-60 {
    margin-top: 60px;
  }
  .mr-xxl-60,
  .mx-xxl-60 {
    margin-right: 60px;
  }
  .mb-xxl-60,
  .my-xxl-60 {
    margin-bottom: 60px;
  }
  .ml-xxl-60,
  .mx-xxl-60 {
    margin-left: 60px;
  }
  .m-xxl-55 {
    margin: 55px;
  }
  .mt-xxl-55,
  .my-xxl-55 {
    margin-top: 55px;
  }
  .mr-xxl-55,
  .mx-xxl-55 {
    margin-right: 55px;
  }
  .mb-xxl-55,
  .my-xxl-55 {
    margin-bottom: 55px;
  }
  .ml-xxl-55,
  .mx-xxl-55 {
    margin-left: 55px;
  }
  .m-xxl-50 {
    margin: 50px;
  }
  .mt-xxl-50,
  .my-xxl-50 {
    margin-top: 50px;
  }
  .mr-xxl-50,
  .mx-xxl-50 {
    margin-right: 50px;
  }
  .mb-xxl-50,
  .my-xxl-50 {
    margin-bottom: 50px;
  }
  .ml-xxl-50,
  .mx-xxl-50 {
    margin-left: 50px;
  }
  .m-xxl-45 {
    margin: 45px;
  }
  .mt-xxl-45,
  .my-xxl-45 {
    margin-top: 45px;
  }
  .mr-xxl-45,
  .mx-xxl-45 {
    margin-right: 45px;
  }
  .mb-xxl-45,
  .my-xxl-45 {
    margin-bottom: 45px;
  }
  .ml-xxl-45,
  .mx-xxl-45 {
    margin-left: 45px;
  }
  .m-xxl-40 {
    margin: 40px;
  }
  .mt-xxl-40,
  .my-xxl-40 {
    margin-top: 40px;
  }
  .mr-xxl-40,
  .mx-xxl-40 {
    margin-right: 40px;
  }
  .mb-xxl-40,
  .my-xxl-40 {
    margin-bottom: 40px;
  }
  .ml-xxl-40,
  .mx-xxl-40 {
    margin-left: 40px;
  }
  .m-xxl-35 {
    margin: 35px;
  }
  .mt-xxl-35,
  .my-xxl-35 {
    margin-top: 35px;
  }
  .mr-xxl-35,
  .mx-xxl-35 {
    margin-right: 35px;
  }
  .mb-xxl-35,
  .my-xxl-35 {
    margin-bottom: 35px;
  }
  .ml-xxl-35,
  .mx-xxl-35 {
    margin-left: 35px;
  }
  .m-xxl-30 {
    margin: 30px;
  }
  .mt-xxl-30,
  .my-xxl-30 {
    margin-top: 30px;
  }
  .mr-xxl-30,
  .mx-xxl-30 {
    margin-right: 30px;
  }
  .mb-xxl-30,
  .my-xxl-30 {
    margin-bottom: 30px;
  }
  .ml-xxl-30,
  .mx-xxl-30 {
    margin-left: 30px;
  }
  .m-xxl-25 {
    margin: 25px;
  }
  .mt-xxl-25,
  .my-xxl-25 {
    margin-top: 25px;
  }
  .mr-xxl-25,
  .mx-xxl-25 {
    margin-right: 25px;
  }
  .mb-xxl-25,
  .my-xxl-25 {
    margin-bottom: 25px;
  }
  .ml-xxl-25,
  .mx-xxl-25 {
    margin-left: 25px;
  }
  .m-xxl-20 {
    margin: 20px;
  }
  .mt-xxl-20,
  .my-xxl-20 {
    margin-top: 20px;
  }
  .mr-xxl-20,
  .mx-xxl-20 {
    margin-right: 20px;
  }
  .mb-xxl-20,
  .my-xxl-20 {
    margin-bottom: 20px;
  }
  .ml-xxl-20,
  .mx-xxl-20 {
    margin-left: 20px;
  }
  .m-xxl-15 {
    margin: 15px;
  }
  .mt-xxl-15,
  .my-xxl-15 {
    margin-top: 15px;
  }
  .mr-xxl-15,
  .mx-xxl-15 {
    margin-right: 15px;
  }
  .mb-xxl-15,
  .my-xxl-15 {
    margin-bottom: 15px;
  }
  .ml-xxl-15,
  .mx-xxl-15 {
    margin-left: 15px;
  }
  .m-xxl-10 {
    margin: 10px;
  }
  .mt-xxl-10,
  .my-xxl-10 {
    margin-top: 10px;
  }
  .mr-xxl-10,
  .mx-xxl-10 {
    margin-right: 10px;
  }
  .mb-xxl-10,
  .my-xxl-10 {
    margin-bottom: 10px;
  }
  .ml-xxl-10,
  .mx-xxl-10 {
    margin-left: 10px;
  }
  .m-xxl-5 {
    margin: 5px;
  }
  .mt-xxl-5,
  .my-xxl-5 {
    margin-top: 5px;
  }
  .mr-xxl-5,
  .mx-xxl-5 {
    margin-right: 5px;
  }
  .mb-xxl-5,
  .my-xxl-5 {
    margin-bottom: 5px;
  }
  .ml-xxl-5,
  .mx-xxl-5 {
    margin-left: 5px;
  }
  .m-xxl-0 {
    margin: 0px;
  }
  .mt-xxl-0,
  .my-xxl-0 {
    margin-top: 0px;
  }
  .mr-xxl-0,
  .mx-xxl-0 {
    margin-right: 0px;
  }
  .mb-xxl-0,
  .my-xxl-0 {
    margin-bottom: 0px;
  }
  .ml-xxl-0,
  .mx-xxl-0 {
    margin-left: 0px;
  }
  .p-xxl-300 {
    padding: 300px;
  }
  .pt-xxl-300,
  .py-xxl-300 {
    padding-top: 300px;
  }
  .pr-xxl-300,
  .px-xxl-300 {
    padding-right: 300px;
  }
  .pb-xxl-300,
  .py-xxl-300 {
    padding-bottom: 300px;
  }
  .pl-xxl-300,
  .px-xxl-300 {
    padding-left: 300px;
  }
  .p-xxl-295 {
    padding: 295px;
  }
  .pt-xxl-295,
  .py-xxl-295 {
    padding-top: 295px;
  }
  .pr-xxl-295,
  .px-xxl-295 {
    padding-right: 295px;
  }
  .pb-xxl-295,
  .py-xxl-295 {
    padding-bottom: 295px;
  }
  .pl-xxl-295,
  .px-xxl-295 {
    padding-left: 295px;
  }
  .p-xxl-290 {
    padding: 290px;
  }
  .pt-xxl-290,
  .py-xxl-290 {
    padding-top: 290px;
  }
  .pr-xxl-290,
  .px-xxl-290 {
    padding-right: 290px;
  }
  .pb-xxl-290,
  .py-xxl-290 {
    padding-bottom: 290px;
  }
  .pl-xxl-290,
  .px-xxl-290 {
    padding-left: 290px;
  }
  .p-xxl-285 {
    padding: 285px;
  }
  .pt-xxl-285,
  .py-xxl-285 {
    padding-top: 285px;
  }
  .pr-xxl-285,
  .px-xxl-285 {
    padding-right: 285px;
  }
  .pb-xxl-285,
  .py-xxl-285 {
    padding-bottom: 285px;
  }
  .pl-xxl-285,
  .px-xxl-285 {
    padding-left: 285px;
  }
  .p-xxl-280 {
    padding: 280px;
  }
  .pt-xxl-280,
  .py-xxl-280 {
    padding-top: 280px;
  }
  .pr-xxl-280,
  .px-xxl-280 {
    padding-right: 280px;
  }
  .pb-xxl-280,
  .py-xxl-280 {
    padding-bottom: 280px;
  }
  .pl-xxl-280,
  .px-xxl-280 {
    padding-left: 280px;
  }
  .p-xxl-275 {
    padding: 275px;
  }
  .pt-xxl-275,
  .py-xxl-275 {
    padding-top: 275px;
  }
  .pr-xxl-275,
  .px-xxl-275 {
    padding-right: 275px;
  }
  .pb-xxl-275,
  .py-xxl-275 {
    padding-bottom: 275px;
  }
  .pl-xxl-275,
  .px-xxl-275 {
    padding-left: 275px;
  }
  .p-xxl-270 {
    padding: 270px;
  }
  .pt-xxl-270,
  .py-xxl-270 {
    padding-top: 270px;
  }
  .pr-xxl-270,
  .px-xxl-270 {
    padding-right: 270px;
  }
  .pb-xxl-270,
  .py-xxl-270 {
    padding-bottom: 270px;
  }
  .pl-xxl-270,
  .px-xxl-270 {
    padding-left: 270px;
  }
  .p-xxl-265 {
    padding: 265px;
  }
  .pt-xxl-265,
  .py-xxl-265 {
    padding-top: 265px;
  }
  .pr-xxl-265,
  .px-xxl-265 {
    padding-right: 265px;
  }
  .pb-xxl-265,
  .py-xxl-265 {
    padding-bottom: 265px;
  }
  .pl-xxl-265,
  .px-xxl-265 {
    padding-left: 265px;
  }
  .p-xxl-260 {
    padding: 260px;
  }
  .pt-xxl-260,
  .py-xxl-260 {
    padding-top: 260px;
  }
  .pr-xxl-260,
  .px-xxl-260 {
    padding-right: 260px;
  }
  .pb-xxl-260,
  .py-xxl-260 {
    padding-bottom: 260px;
  }
  .pl-xxl-260,
  .px-xxl-260 {
    padding-left: 260px;
  }
  .p-xxl-255 {
    padding: 255px;
  }
  .pt-xxl-255,
  .py-xxl-255 {
    padding-top: 255px;
  }
  .pr-xxl-255,
  .px-xxl-255 {
    padding-right: 255px;
  }
  .pb-xxl-255,
  .py-xxl-255 {
    padding-bottom: 255px;
  }
  .pl-xxl-255,
  .px-xxl-255 {
    padding-left: 255px;
  }
  .p-xxl-250 {
    padding: 250px;
  }
  .pt-xxl-250,
  .py-xxl-250 {
    padding-top: 250px;
  }
  .pr-xxl-250,
  .px-xxl-250 {
    padding-right: 250px;
  }
  .pb-xxl-250,
  .py-xxl-250 {
    padding-bottom: 250px;
  }
  .pl-xxl-250,
  .px-xxl-250 {
    padding-left: 250px;
  }
  .p-xxl-245 {
    padding: 245px;
  }
  .pt-xxl-245,
  .py-xxl-245 {
    padding-top: 245px;
  }
  .pr-xxl-245,
  .px-xxl-245 {
    padding-right: 245px;
  }
  .pb-xxl-245,
  .py-xxl-245 {
    padding-bottom: 245px;
  }
  .pl-xxl-245,
  .px-xxl-245 {
    padding-left: 245px;
  }
  .p-xxl-240 {
    padding: 240px;
  }
  .pt-xxl-240,
  .py-xxl-240 {
    padding-top: 240px;
  }
  .pr-xxl-240,
  .px-xxl-240 {
    padding-right: 240px;
  }
  .pb-xxl-240,
  .py-xxl-240 {
    padding-bottom: 240px;
  }
  .pl-xxl-240,
  .px-xxl-240 {
    padding-left: 240px;
  }
  .p-xxl-235 {
    padding: 235px;
  }
  .pt-xxl-235,
  .py-xxl-235 {
    padding-top: 235px;
  }
  .pr-xxl-235,
  .px-xxl-235 {
    padding-right: 235px;
  }
  .pb-xxl-235,
  .py-xxl-235 {
    padding-bottom: 235px;
  }
  .pl-xxl-235,
  .px-xxl-235 {
    padding-left: 235px;
  }
  .p-xxl-230 {
    padding: 230px;
  }
  .pt-xxl-230,
  .py-xxl-230 {
    padding-top: 230px;
  }
  .pr-xxl-230,
  .px-xxl-230 {
    padding-right: 230px;
  }
  .pb-xxl-230,
  .py-xxl-230 {
    padding-bottom: 230px;
  }
  .pl-xxl-230,
  .px-xxl-230 {
    padding-left: 230px;
  }
  .p-xxl-225 {
    padding: 225px;
  }
  .pt-xxl-225,
  .py-xxl-225 {
    padding-top: 225px;
  }
  .pr-xxl-225,
  .px-xxl-225 {
    padding-right: 225px;
  }
  .pb-xxl-225,
  .py-xxl-225 {
    padding-bottom: 225px;
  }
  .pl-xxl-225,
  .px-xxl-225 {
    padding-left: 225px;
  }
  .p-xxl-220 {
    padding: 220px;
  }
  .pt-xxl-220,
  .py-xxl-220 {
    padding-top: 220px;
  }
  .pr-xxl-220,
  .px-xxl-220 {
    padding-right: 220px;
  }
  .pb-xxl-220,
  .py-xxl-220 {
    padding-bottom: 220px;
  }
  .pl-xxl-220,
  .px-xxl-220 {
    padding-left: 220px;
  }
  .p-xxl-215 {
    padding: 215px;
  }
  .pt-xxl-215,
  .py-xxl-215 {
    padding-top: 215px;
  }
  .pr-xxl-215,
  .px-xxl-215 {
    padding-right: 215px;
  }
  .pb-xxl-215,
  .py-xxl-215 {
    padding-bottom: 215px;
  }
  .pl-xxl-215,
  .px-xxl-215 {
    padding-left: 215px;
  }
  .p-xxl-210 {
    padding: 210px;
  }
  .pt-xxl-210,
  .py-xxl-210 {
    padding-top: 210px;
  }
  .pr-xxl-210,
  .px-xxl-210 {
    padding-right: 210px;
  }
  .pb-xxl-210,
  .py-xxl-210 {
    padding-bottom: 210px;
  }
  .pl-xxl-210,
  .px-xxl-210 {
    padding-left: 210px;
  }
  .p-xxl-205 {
    padding: 205px;
  }
  .pt-xxl-205,
  .py-xxl-205 {
    padding-top: 205px;
  }
  .pr-xxl-205,
  .px-xxl-205 {
    padding-right: 205px;
  }
  .pb-xxl-205,
  .py-xxl-205 {
    padding-bottom: 205px;
  }
  .pl-xxl-205,
  .px-xxl-205 {
    padding-left: 205px;
  }
  .p-xxl-200 {
    padding: 200px;
  }
  .pt-xxl-200,
  .py-xxl-200 {
    padding-top: 200px;
  }
  .pr-xxl-200,
  .px-xxl-200 {
    padding-right: 200px;
  }
  .pb-xxl-200,
  .py-xxl-200 {
    padding-bottom: 200px;
  }
  .pl-xxl-200,
  .px-xxl-200 {
    padding-left: 200px;
  }
  .p-xxl-195 {
    padding: 195px;
  }
  .pt-xxl-195,
  .py-xxl-195 {
    padding-top: 195px;
  }
  .pr-xxl-195,
  .px-xxl-195 {
    padding-right: 195px;
  }
  .pb-xxl-195,
  .py-xxl-195 {
    padding-bottom: 195px;
  }
  .pl-xxl-195,
  .px-xxl-195 {
    padding-left: 195px;
  }
  .p-xxl-190 {
    padding: 190px;
  }
  .pt-xxl-190,
  .py-xxl-190 {
    padding-top: 190px;
  }
  .pr-xxl-190,
  .px-xxl-190 {
    padding-right: 190px;
  }
  .pb-xxl-190,
  .py-xxl-190 {
    padding-bottom: 190px;
  }
  .pl-xxl-190,
  .px-xxl-190 {
    padding-left: 190px;
  }
  .p-xxl-185 {
    padding: 185px;
  }
  .pt-xxl-185,
  .py-xxl-185 {
    padding-top: 185px;
  }
  .pr-xxl-185,
  .px-xxl-185 {
    padding-right: 185px;
  }
  .pb-xxl-185,
  .py-xxl-185 {
    padding-bottom: 185px;
  }
  .pl-xxl-185,
  .px-xxl-185 {
    padding-left: 185px;
  }
  .p-xxl-180 {
    padding: 180px;
  }
  .pt-xxl-180,
  .py-xxl-180 {
    padding-top: 180px;
  }
  .pr-xxl-180,
  .px-xxl-180 {
    padding-right: 180px;
  }
  .pb-xxl-180,
  .py-xxl-180 {
    padding-bottom: 180px;
  }
  .pl-xxl-180,
  .px-xxl-180 {
    padding-left: 180px;
  }
  .p-xxl-175 {
    padding: 175px;
  }
  .pt-xxl-175,
  .py-xxl-175 {
    padding-top: 175px;
  }
  .pr-xxl-175,
  .px-xxl-175 {
    padding-right: 175px;
  }
  .pb-xxl-175,
  .py-xxl-175 {
    padding-bottom: 175px;
  }
  .pl-xxl-175,
  .px-xxl-175 {
    padding-left: 175px;
  }
  .p-xxl-170 {
    padding: 170px;
  }
  .pt-xxl-170,
  .py-xxl-170 {
    padding-top: 170px;
  }
  .pr-xxl-170,
  .px-xxl-170 {
    padding-right: 170px;
  }
  .pb-xxl-170,
  .py-xxl-170 {
    padding-bottom: 170px;
  }
  .pl-xxl-170,
  .px-xxl-170 {
    padding-left: 170px;
  }
  .p-xxl-165 {
    padding: 165px;
  }
  .pt-xxl-165,
  .py-xxl-165 {
    padding-top: 165px;
  }
  .pr-xxl-165,
  .px-xxl-165 {
    padding-right: 165px;
  }
  .pb-xxl-165,
  .py-xxl-165 {
    padding-bottom: 165px;
  }
  .pl-xxl-165,
  .px-xxl-165 {
    padding-left: 165px;
  }
  .p-xxl-160 {
    padding: 160px;
  }
  .pt-xxl-160,
  .py-xxl-160 {
    padding-top: 160px;
  }
  .pr-xxl-160,
  .px-xxl-160 {
    padding-right: 160px;
  }
  .pb-xxl-160,
  .py-xxl-160 {
    padding-bottom: 160px;
  }
  .pl-xxl-160,
  .px-xxl-160 {
    padding-left: 160px;
  }
  .p-xxl-155 {
    padding: 155px;
  }
  .pt-xxl-155,
  .py-xxl-155 {
    padding-top: 155px;
  }
  .pr-xxl-155,
  .px-xxl-155 {
    padding-right: 155px;
  }
  .pb-xxl-155,
  .py-xxl-155 {
    padding-bottom: 155px;
  }
  .pl-xxl-155,
  .px-xxl-155 {
    padding-left: 155px;
  }
  .p-xxl-150 {
    padding: 150px;
  }
  .pt-xxl-150,
  .py-xxl-150 {
    padding-top: 150px;
  }
  .pr-xxl-150,
  .px-xxl-150 {
    padding-right: 150px;
  }
  .pb-xxl-150,
  .py-xxl-150 {
    padding-bottom: 150px;
  }
  .pl-xxl-150,
  .px-xxl-150 {
    padding-left: 150px;
  }
  .p-xxl-145 {
    padding: 145px;
  }
  .pt-xxl-145,
  .py-xxl-145 {
    padding-top: 145px;
  }
  .pr-xxl-145,
  .px-xxl-145 {
    padding-right: 145px;
  }
  .pb-xxl-145,
  .py-xxl-145 {
    padding-bottom: 145px;
  }
  .pl-xxl-145,
  .px-xxl-145 {
    padding-left: 145px;
  }
  .p-xxl-140 {
    padding: 140px;
  }
  .pt-xxl-140,
  .py-xxl-140 {
    padding-top: 140px;
  }
  .pr-xxl-140,
  .px-xxl-140 {
    padding-right: 140px;
  }
  .pb-xxl-140,
  .py-xxl-140 {
    padding-bottom: 140px;
  }
  .pl-xxl-140,
  .px-xxl-140 {
    padding-left: 140px;
  }
  .p-xxl-135 {
    padding: 135px;
  }
  .pt-xxl-135,
  .py-xxl-135 {
    padding-top: 135px;
  }
  .pr-xxl-135,
  .px-xxl-135 {
    padding-right: 135px;
  }
  .pb-xxl-135,
  .py-xxl-135 {
    padding-bottom: 135px;
  }
  .pl-xxl-135,
  .px-xxl-135 {
    padding-left: 135px;
  }
  .p-xxl-130 {
    padding: 130px;
  }
  .pt-xxl-130,
  .py-xxl-130 {
    padding-top: 130px;
  }
  .pr-xxl-130,
  .px-xxl-130 {
    padding-right: 130px;
  }
  .pb-xxl-130,
  .py-xxl-130 {
    padding-bottom: 130px;
  }
  .pl-xxl-130,
  .px-xxl-130 {
    padding-left: 130px;
  }
  .p-xxl-125 {
    padding: 125px;
  }
  .pt-xxl-125,
  .py-xxl-125 {
    padding-top: 125px;
  }
  .pr-xxl-125,
  .px-xxl-125 {
    padding-right: 125px;
  }
  .pb-xxl-125,
  .py-xxl-125 {
    padding-bottom: 125px;
  }
  .pl-xxl-125,
  .px-xxl-125 {
    padding-left: 125px;
  }
  .p-xxl-120 {
    padding: 120px;
  }
  .pt-xxl-120,
  .py-xxl-120 {
    padding-top: 120px;
  }
  .pr-xxl-120,
  .px-xxl-120 {
    padding-right: 120px;
  }
  .pb-xxl-120,
  .py-xxl-120 {
    padding-bottom: 120px;
  }
  .pl-xxl-120,
  .px-xxl-120 {
    padding-left: 120px;
  }
  .p-xxl-115 {
    padding: 115px;
  }
  .pt-xxl-115,
  .py-xxl-115 {
    padding-top: 115px;
  }
  .pr-xxl-115,
  .px-xxl-115 {
    padding-right: 115px;
  }
  .pb-xxl-115,
  .py-xxl-115 {
    padding-bottom: 115px;
  }
  .pl-xxl-115,
  .px-xxl-115 {
    padding-left: 115px;
  }
  .p-xxl-110 {
    padding: 110px;
  }
  .pt-xxl-110,
  .py-xxl-110 {
    padding-top: 110px;
  }
  .pr-xxl-110,
  .px-xxl-110 {
    padding-right: 110px;
  }
  .pb-xxl-110,
  .py-xxl-110 {
    padding-bottom: 110px;
  }
  .pl-xxl-110,
  .px-xxl-110 {
    padding-left: 110px;
  }
  .p-xxl-105 {
    padding: 105px;
  }
  .pt-xxl-105,
  .py-xxl-105 {
    padding-top: 105px;
  }
  .pr-xxl-105,
  .px-xxl-105 {
    padding-right: 105px;
  }
  .pb-xxl-105,
  .py-xxl-105 {
    padding-bottom: 105px;
  }
  .pl-xxl-105,
  .px-xxl-105 {
    padding-left: 105px;
  }
  .p-xxl-100 {
    padding: 100px;
  }
  .pt-xxl-100,
  .py-xxl-100 {
    padding-top: 100px;
  }
  .pr-xxl-100,
  .px-xxl-100 {
    padding-right: 100px;
  }
  .pb-xxl-100,
  .py-xxl-100 {
    padding-bottom: 100px;
  }
  .pl-xxl-100,
  .px-xxl-100 {
    padding-left: 100px;
  }
  .p-xxl-95 {
    padding: 95px;
  }
  .pt-xxl-95,
  .py-xxl-95 {
    padding-top: 95px;
  }
  .pr-xxl-95,
  .px-xxl-95 {
    padding-right: 95px;
  }
  .pb-xxl-95,
  .py-xxl-95 {
    padding-bottom: 95px;
  }
  .pl-xxl-95,
  .px-xxl-95 {
    padding-left: 95px;
  }
  .p-xxl-90 {
    padding: 90px;
  }
  .pt-xxl-90,
  .py-xxl-90 {
    padding-top: 90px;
  }
  .pr-xxl-90,
  .px-xxl-90 {
    padding-right: 90px;
  }
  .pb-xxl-90,
  .py-xxl-90 {
    padding-bottom: 90px;
  }
  .pl-xxl-90,
  .px-xxl-90 {
    padding-left: 90px;
  }
  .p-xxl-85 {
    padding: 85px;
  }
  .pt-xxl-85,
  .py-xxl-85 {
    padding-top: 85px;
  }
  .pr-xxl-85,
  .px-xxl-85 {
    padding-right: 85px;
  }
  .pb-xxl-85,
  .py-xxl-85 {
    padding-bottom: 85px;
  }
  .pl-xxl-85,
  .px-xxl-85 {
    padding-left: 85px;
  }
  .p-xxl-80 {
    padding: 80px;
  }
  .pt-xxl-80,
  .py-xxl-80 {
    padding-top: 80px;
  }
  .pr-xxl-80,
  .px-xxl-80 {
    padding-right: 80px;
  }
  .pb-xxl-80,
  .py-xxl-80 {
    padding-bottom: 80px;
  }
  .pl-xxl-80,
  .px-xxl-80 {
    padding-left: 80px;
  }
  .p-xxl-75 {
    padding: 75px;
  }
  .pt-xxl-75,
  .py-xxl-75 {
    padding-top: 75px;
  }
  .pr-xxl-75,
  .px-xxl-75 {
    padding-right: 75px;
  }
  .pb-xxl-75,
  .py-xxl-75 {
    padding-bottom: 75px;
  }
  .pl-xxl-75,
  .px-xxl-75 {
    padding-left: 75px;
  }
  .p-xxl-70 {
    padding: 70px;
  }
  .pt-xxl-70,
  .py-xxl-70 {
    padding-top: 70px;
  }
  .pr-xxl-70,
  .px-xxl-70 {
    padding-right: 70px;
  }
  .pb-xxl-70,
  .py-xxl-70 {
    padding-bottom: 70px;
  }
  .pl-xxl-70,
  .px-xxl-70 {
    padding-left: 70px;
  }
  .p-xxl-65 {
    padding: 65px;
  }
  .pt-xxl-65,
  .py-xxl-65 {
    padding-top: 65px;
  }
  .pr-xxl-65,
  .px-xxl-65 {
    padding-right: 65px;
  }
  .pb-xxl-65,
  .py-xxl-65 {
    padding-bottom: 65px;
  }
  .pl-xxl-65,
  .px-xxl-65 {
    padding-left: 65px;
  }
  .p-xxl-60 {
    padding: 60px;
  }
  .pt-xxl-60,
  .py-xxl-60 {
    padding-top: 60px;
  }
  .pr-xxl-60,
  .px-xxl-60 {
    padding-right: 60px;
  }
  .pb-xxl-60,
  .py-xxl-60 {
    padding-bottom: 60px;
  }
  .pl-xxl-60,
  .px-xxl-60 {
    padding-left: 60px;
  }
  .p-xxl-55 {
    padding: 55px;
  }
  .pt-xxl-55,
  .py-xxl-55 {
    padding-top: 55px;
  }
  .pr-xxl-55,
  .px-xxl-55 {
    padding-right: 55px;
  }
  .pb-xxl-55,
  .py-xxl-55 {
    padding-bottom: 55px;
  }
  .pl-xxl-55,
  .px-xxl-55 {
    padding-left: 55px;
  }
  .p-xxl-50 {
    padding: 50px;
  }
  .pt-xxl-50,
  .py-xxl-50 {
    padding-top: 50px;
  }
  .pr-xxl-50,
  .px-xxl-50 {
    padding-right: 50px;
  }
  .pb-xxl-50,
  .py-xxl-50 {
    padding-bottom: 50px;
  }
  .pl-xxl-50,
  .px-xxl-50 {
    padding-left: 50px;
  }
  .p-xxl-45 {
    padding: 45px;
  }
  .pt-xxl-45,
  .py-xxl-45 {
    padding-top: 45px;
  }
  .pr-xxl-45,
  .px-xxl-45 {
    padding-right: 45px;
  }
  .pb-xxl-45,
  .py-xxl-45 {
    padding-bottom: 45px;
  }
  .pl-xxl-45,
  .px-xxl-45 {
    padding-left: 45px;
  }
  .p-xxl-40 {
    padding: 40px;
  }
  .pt-xxl-40,
  .py-xxl-40 {
    padding-top: 40px;
  }
  .pr-xxl-40,
  .px-xxl-40 {
    padding-right: 40px;
  }
  .pb-xxl-40,
  .py-xxl-40 {
    padding-bottom: 40px;
  }
  .pl-xxl-40,
  .px-xxl-40 {
    padding-left: 40px;
  }
  .p-xxl-35 {
    padding: 35px;
  }
  .pt-xxl-35,
  .py-xxl-35 {
    padding-top: 35px;
  }
  .pr-xxl-35,
  .px-xxl-35 {
    padding-right: 35px;
  }
  .pb-xxl-35,
  .py-xxl-35 {
    padding-bottom: 35px;
  }
  .pl-xxl-35,
  .px-xxl-35 {
    padding-left: 35px;
  }
  .p-xxl-30 {
    padding: 30px;
  }
  .pt-xxl-30,
  .py-xxl-30 {
    padding-top: 30px;
  }
  .pr-xxl-30,
  .px-xxl-30 {
    padding-right: 30px;
  }
  .pb-xxl-30,
  .py-xxl-30 {
    padding-bottom: 30px;
  }
  .pl-xxl-30,
  .px-xxl-30 {
    padding-left: 30px;
  }
  .p-xxl-25 {
    padding: 25px;
  }
  .pt-xxl-25,
  .py-xxl-25 {
    padding-top: 25px;
  }
  .pr-xxl-25,
  .px-xxl-25 {
    padding-right: 25px;
  }
  .pb-xxl-25,
  .py-xxl-25 {
    padding-bottom: 25px;
  }
  .pl-xxl-25,
  .px-xxl-25 {
    padding-left: 25px;
  }
  .p-xxl-20 {
    padding: 20px;
  }
  .pt-xxl-20,
  .py-xxl-20 {
    padding-top: 20px;
  }
  .pr-xxl-20,
  .px-xxl-20 {
    padding-right: 20px;
  }
  .pb-xxl-20,
  .py-xxl-20 {
    padding-bottom: 20px;
  }
  .pl-xxl-20,
  .px-xxl-20 {
    padding-left: 20px;
  }
  .p-xxl-15 {
    padding: 15px;
  }
  .pt-xxl-15,
  .py-xxl-15 {
    padding-top: 15px;
  }
  .pr-xxl-15,
  .px-xxl-15 {
    padding-right: 15px;
  }
  .pb-xxl-15,
  .py-xxl-15 {
    padding-bottom: 15px;
  }
  .pl-xxl-15,
  .px-xxl-15 {
    padding-left: 15px;
  }
  .p-xxl-10 {
    padding: 10px;
  }
  .pt-xxl-10,
  .py-xxl-10 {
    padding-top: 10px;
  }
  .pr-xxl-10,
  .px-xxl-10 {
    padding-right: 10px;
  }
  .pb-xxl-10,
  .py-xxl-10 {
    padding-bottom: 10px;
  }
  .pl-xxl-10,
  .px-xxl-10 {
    padding-left: 10px;
  }
  .p-xxl-5 {
    padding: 5px;
  }
  .pt-xxl-5,
  .py-xxl-5 {
    padding-top: 5px;
  }
  .pr-xxl-5,
  .px-xxl-5 {
    padding-right: 5px;
  }
  .pb-xxl-5,
  .py-xxl-5 {
    padding-bottom: 5px;
  }
  .pl-xxl-5,
  .px-xxl-5 {
    padding-left: 5px;
  }
  .p-xxl-0 {
    padding: 0px;
  }
  .pt-xxl-0,
  .py-xxl-0 {
    padding-top: 0px;
  }
  .pr-xxl-0,
  .px-xxl-0 {
    padding-right: 0px;
  }
  .pb-xxl-0,
  .py-xxl-0 {
    padding-bottom: 0px;
  }
  .pl-xxl-0,
  .px-xxl-0 {
    padding-left: 0px;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mt-xxl-auto,
  .my-xxl-auto {
    margin-top: auto !important;
  }
  .mr-xxl-auto,
  .mx-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-auto,
  .my-xxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxl-auto,
  .mx-xxl-auto {
    margin-left: auto !important;
  }
}
@font-face {
  font-family: "Causten-Regular";
  src: url("assets/fonts/Causten-Regular.woff2") format("woff2"), url("assets/fonts/Causten-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ChronicleDisplay-Italic";
  src: url("assets/fonts/ChronicleDisplay-Italic.woff2") format("woff2"), url("assets/fonts/ChronicleDisplay-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "ChronicleText-Roman";
  src: url("assets/fonts/ChronicleTextG1-Roman.woff2") format("woff2"), url("assets/fonts/ChronicleTextG1-Roman.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* 
 * Anagrama [root] 2021
 * https://www.anagrama.com/
 */
/* ===== [ I.NDEX ] ======
 * i. 1. Normalize
 * i. 2. General
 * i. 3. Pages
 *    -- 3.1 Page Home
 *    -- 3.2 Page Amenidades
 *    -- 3.3 Page Colaboradores
 *    -- 3.4 Page Masterplan
 */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  background-color: #FFFFFF;
}

body {
  font-family: "ChronicleText-Roman";
  font-size: 14px;
  line-height: 23px;
  letter-spacing: -0.01em;
  font-weight: 400;
  background: #FFFFFF;
  color: #785146;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 992px) {
  body {
    font-size: 16px;
    line-height: 28px;
  }
}

img {
  width: 100%;
  height: auto;
}

main {
  opacity: 0;
}

.body-no-scroll {
  overflow: hidden;
}

a:not([href]):not([tabindex]) {
  cursor: pointer;
}

a {
  text-decoration: none;
}

input {
  appearance: none;
  background-color: transparent;
  outline: none;
  border: none;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  font-family: "Causten-Regular";
  line-height: 18px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.marcas-container {
  display: flex;
  width: 100%;
  gap: 20px;
}
@media (min-width: 768px) {
  .marcas-container {
    gap: 30px;
  }
}
@media (min-width: 992px) {
  .marcas-container {
    gap: 40px;
  }
}
.marcas-container .marca {
  width: 100%;
  height: 100%;
}
.marcas-container .divider-v {
  height: 40px;
}
@media (min-width: 768px) {
  .marcas-container .divider-v {
    height: 50px;
  }
}
.marcas-container .divider-v:last-of-type {
  display: none;
}

.numeralia-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-top: 31px;
}
@media (min-width: 768px) {
  .numeralia-container {
    padding-top: 30px;
    gap: 30px;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .numeralia-container {
    padding-left: 95px;
    padding-right: 95px;
    gap: 0px;
  }
}
.numeralia-container .numeralia {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
@media (min-width: 768px) {
  .numeralia-container .numeralia {
    flex-direction: row;
    gap: 10px;
    align-items: end;
  }
}
@media (min-width: 992px) {
  .numeralia-container .numeralia {
    gap: 20px;
  }
  .numeralia-container .numeralia:nth-of-type(2) {
    padding-right: 30px;
  }
}
.numeralia-container .numeralia .divider {
  width: 100%;
  height: 1px;
  background-color: rgba(120, 81, 70, 0.8);
}
@media (min-width: 768px) {
  .numeralia-container .numeralia .divider {
    width: 1px;
    height: calc(100% - 17px);
    transform: translateY(-8%);
    flex: none;
  }
}
@media (min-width: 992px) {
  .numeralia-container .numeralia .divider {
    height: calc(100% - 26px);
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .numeralia-container .numeralia .num {
    padding-bottom: 6px;
  }
}

@media (max-width: 767.98px) {
  #home-colab .colab_image_vertical {
    aspect-ratio: 0.8425/1;
  }
}

@media (max-width: 767.98px) {
  #home-amenidades .amenidades_image_horizontal {
    aspect-ratio: 63/40;
  }
}

@media (max-width: 767.98px) {
  .grid_horizontal {
    aspect-ratio: 63/45.6;
  }
}

@media (max-width: 767.98px) {
  .grid_vertical {
    aspect-ratio: 1/1.41;
  }
}

.amenidades-title {
  background-color: #F7F3F2;
  height: 100%;
  border-radius: 5px 5px 0 0;
}
@media (min-width: 992px) {
  .amenidades-title {
    border-radius: 5px 0 0 5px;
    margin-right: -15px;
  }
}
@media (min-width: 992px) {
  .amenidades-title .amen-link:hover {
    opacity: 0.7;
  }
}
.amenidades-title .amen-link.active {
  opacity: 0.7;
  pointer-events: none;
}
.amenidades-title .amen-buttons {
  display: none;
  gap: 15px;
  justify-content: center;
}
@media (min-width: 768px) {
  .amenidades-title .amen-buttons {
    display: flex;
  }
}
@media (min-width: 992px) {
  .amenidades-title .amen-buttons {
    flex-direction: column;
  }
}
.amenidades-title .amen-buttons .btn {
  color: rgba(120, 81, 70, 0.7);
  border-color: rgba(120, 81, 70, 0.7);
}
@media (min-width: 992px) {
  .amenidades-title .amen-buttons .btn:hover {
    color: #FFFFFF;
  }
}
.amenidades-title .amen-buttons .btn.active {
  background-color: #785146;
  color: #FFFFFF;
}

.mapa-amenidades {
  position: relative;
  overflow: clip;
  z-index: 10;
}
@media (min-width: 992px) {
  .mapa-amenidades {
    border-radius: 0 5px 5px 0;
    height: 100%;
  }
}
.mapa-amenidades .container-cards {
  position: absolute;
  z-index: 1;
  top: 15px;
  right: 15px;
  width: 39.13%;
  display: none;
  pointer-events: none;
  z-index: 3;
}
@media (min-width: 768px) {
  .mapa-amenidades .container-cards {
    display: block;
  }
}
@media (min-width: 992px) {
  .mapa-amenidades .container-cards {
    width: 33.58%;
    height: 96%;
  }
}
.mapa-amenidades .container-cards .card-amenidad {
  background-color: #FCF6E0;
  border-radius: 5px;
  width: 100%;
  opacity: 0;
  position: sticky;
  top: 10px;
  right: 0;
  padding: 15px 15px 10px;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.mapa-amenidades .container-cards .card-amenidad.active {
  opacity: 1;
  pointer-events: all;
}

.amenidades-mobile {
  width: 100%;
  background-color: #F7F3F2;
  border-radius: 0 0 5px 5px;
}
@media (min-width: 992px) {
  .amenidades-mobile {
    display: none;
  }
}

.container-modal-amenidades {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  padding: 0 30px;
  transition: opacity 0.5s ease;
  overflow: hidden;
}
@media (min-width: 768px) {
  .container-modal-amenidades {
    display: none;
  }
}
.container-modal-amenidades .modal-amenidades {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #FCF6E0;
  border-radius: 5px 5px 0 0;
  padding: 15px 15px 10px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.container-modal-amenidades.active {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.3s ease;
}
.container-modal-amenidades.active .modal-amenidades {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .container-modal-amenidades {
    display: none;
  }
}

.dropdown-amenidades .dropdown-toggle {
  background-color: #FFFFFF;
  border: 1px solid #785146;
  border-radius: 5px;
  font-family: "Causten-Regular";
  line-height: 18px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-transform: uppercase;
  color: #785146;
  height: 33px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
}
.dropdown-amenidades .dropdown-toggle::after {
  content: "";
  margin: 0;
  width: 17px;
  height: 9px;
  border: none;
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='9' viewBox='0 0 17 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L8.49822 8.10526L16 1' stroke='%23785146'/%3E%3C/svg%3E%0A");
}
.dropdown-amenidades .dropdown-toggle.show::after {
  transform: rotate(180deg);
}
.dropdown-amenidades .dropdown-menu {
  padding: 0;
  width: 100%;
  border-radius: 5px;
  top: calc(100% - 1px) !important;
  left: 0;
  transform: none !important;
  font-family: "Causten-Regular";
  line-height: 18px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-transform: uppercase;
  border: 1px solid #785146;
  color: #785146;
  background-color: #FFFFFF;
}
.dropdown-amenidades .dropdown-menu .container-link {
  padding: 0 12px;
  display: block;
}
.dropdown-amenidades .dropdown-menu .container-link:last-child .divider-v {
  display: none;
}
.dropdown-amenidades .dropdown-menu .container-link.active {
  display: none;
}
.dropdown-amenidades .dropdown-menu .dropdown-item {
  color: #785146;
  padding: 10px 0;
}
.dropdown-amenidades .dropdown-menu .dropdown-item:hover {
  background-color: #FFFFFF;
}

.collab-container .marca-colab {
  object-fit: contain;
  width: 115px;
}
@media (min-width: 768px) {
  .collab-container .marca-colab {
    width: 155px;
  }
}
@media (min-width: 992px) {
  .collab-container .marca-colab {
    width: 172px;
  }
}
@media (min-width: 768px) {
  .collab-container:nth-child(2) .marca-colab {
    width: 151px;
  }
}
.collab-container:nth-child(3) .marca-colab {
  width: 90px;
}
@media (min-width: 768px) {
  .collab-container:nth-child(3) .marca-colab {
    width: 131px;
  }
}

.master-buttons {
  flex-wrap: wrap;
  justify-content: center;
  gap: 9.5px;
  display: none;
}
@media (min-width: 768px) {
  .master-buttons {
    display: flex;
  }
}
.master-buttons .btn {
  padding-left: 39px;
  padding-right: 39px;
  color: rgba(120, 81, 70, 0.7);
  background-color: #F7F3F2;
}
.master-buttons .btn.active {
  background-color: #785146;
  color: #FFFFFF;
}

.list-dibujo {
  padding: 0;
  margin: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: row;
  list-style: none;
  column-gap: 30px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .list-dibujo {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 992px) {
  .list-dibujo {
    column-gap: 13px;
  }
}
.list-dibujo li {
  display: flex;
  align-items: center;
}
.list-dibujo li::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #785146;
  border-radius: 8px;
  position: relative;
  margin-left: 8px;
  margin-right: 10px;
  margin-top: 3px;
  display: inline-block;
}

@media (max-width: 767.98px) {
  .grid_horizontal_master {
    aspect-ratio: 1.57/1;
  }
}

#legal-content h3, #legal-content h2, #legal-content h1 {
  padding-bottom: 16px;
}
@media (min-width: 768px) {
  #legal-content h3, #legal-content h2, #legal-content h1 {
    padding-bottom: 17px;
  }
}
@media (min-width: 992px) {
  #legal-content h3, #legal-content h2, #legal-content h1 {
    padding-bottom: 7px;
  }
}
#legal-content p {
  padding-bottom: 20px;
}
#legal-content p + h3, #legal-content p + h2, #legal-content p + h1 {
  padding-top: 5px;
}
@media (min-width: 768px) {
  #legal-content p {
    padding-bottom: 22px;
  }
  #legal-content p + h3, #legal-content p + h2, #legal-content p + h1 {
    padding-top: 12px;
  }
}
@media (min-width: 992px) {
  #legal-content p {
    padding-bottom: 24px;
  }
  #legal-content p + h3, #legal-content p + h2, #legal-content p + h1 {
    padding-top: 17px;
  }
}
#legal-content a {
  text-decoration: underline;
}

.container-404 {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.container-404 .container-txt-404 {
  position: absolute;
  top: 49.3%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}
@media (min-width: 768px) {
  .container-404 .container-txt-404 {
    top: 49.5%;
  }
}
@media (min-width: 992px) {
  .container-404 .container-txt-404 {
    top: 49.3%;
  }
  .container-404 .container-txt-404 h1 {
    margin-top: -5px;
  }
}

.anim-image {
  width: 100%;
  height: auto;
  transform: scale(1.05);
  transition: transform 0.8s ease-in-out 0.4s; /* Smooth transition for the scale */
}

.in-view {
  transform: scale(1); /* Final state when image is in viewport */
}

.fade-on-scroll,
.animate-on-scroll {
  opacity: 0;
  will-change: scroll-position;
}

.stagger-on-scroll .stagger-child {
  opacity: 0;
  transform: translateY(20px);
  will-change: scroll-position;
}
.stagger-on-scroll.animate .stagger-child {
  animation-name: d;
  animation-fill-mode: forwards;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-duration: 1s;
}
@media (max-width: 991.98px) {
  .stagger-on-scroll.animate .stagger-child {
    animation-duration: 0.8s;
  }
}

.fade-on-scroll.animate {
  animation-name: d;
  animation-fill-mode: forwards;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-duration: 1s;
}
@media (max-width: 991.98px) {
  .fade-on-scroll.animate {
    animation-duration: 0.8s;
  }
}

.animate-on-scroll.animate {
  animation-name: a;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 991.98px) {
  .animate-on-scroll.animate {
    animation-duration: 0.8s;
  }
}

.line-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  flex-direction: column;
  align-items: start;
  display: none;
}
.line-container .overflow-wrapper {
  overflow: hidden;
  display: inline-block;
}
.line-container .overflow-wrapper .line {
  display: inline-flex;
  white-space: nowrap;
  color: #000;
  transform: translateY(100%);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 991.98px) {
  .line-container .overflow-wrapper .line {
    transition-duration: 0.8s;
  }
}

.text-up {
  display: inline-block;
  position: relative;
  width: 100%;
  color: transparent;
  opacity: 0;
  will-change: transform;
}
.text-up .line-container {
  display: flex;
}
.text-up.animate {
  opacity: 1;
}
.text-up.animate .line {
  transform: translateY(0);
}

@keyframes a {
  0% {
    opacity: 0;
    -webkit-backface-visibility: hidden;
  }
  to {
    opacity: 1;
    -webkit-backface-visibility: hidden;
  }
}
@keyframes d {
  0% {
    opacity: 0;
    transform: translateY(20px);
    -webkit-backface-visibility: hidden;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-backface-visibility: hidden;
  }
}
svg:not(:root) {
  overflow: hidden;
}

svg[role=icon] {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  vertical-align: middle;
}

.icon-caret {
  width: 11px;
  height: 6px;
}

[aria-expanded=true] .drop-icon {
  transform: rotate(180deg);
}

.num-circle {
  background-color: #785146;
  width: 23px;
  height: 23px;
  border-radius: 23px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0 !important;
  font-family: "Causten-Regular";
  line-height: 18px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.num-c-white {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 38px;
  height: 38px;
  cursor: default;
}
@media (min-width: 768px) {
  .num-c-white {
    width: 50px;
    height: 50px;
  }
}
.num-c-white .num-word {
  pointer-events: none;
  background-color: #FFFFFF;
  color: #785146;
  border: 1px solid #785146;
  width: 22px;
  height: 22px;
  border-radius: 49px;
  letter-spacing: 0 !important;
  font-family: "Causten-Regular";
  line-height: 18px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .num-c-white .num-word {
    width: 40px;
    height: 40px;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  }
}
@media (min-width: 992px) {
  .num-c-white .num-word {
    width: 49px;
    height: 49px;
  }
}
@media (min-width: 992px) {
  .num-c-white:hover .num-word {
    background-color: #B56042;
    color: #FFFFFF;
    border: 1px solid #B56042;
  }
}
.num-c-white.active {
  pointer-events: none;
}
.num-c-white.active .num-word {
  background-color: #B56042;
  color: #FFFFFF;
  border: 1px solid #B56042;
}

.bar-modal {
  width: 80px;
  height: 3px;
  background-color: #785146;
  border-radius: 40px;
  opacity: 0.7;
}

.visibility-hidden {
  visibility: hidden;
  position: absolute;
}

.divider-abs {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: transparent;
  bottom: 0;
  left: 0;
  transition: background-color 0.25s ease;
}

.bg-brown {
  background-color: #785146;
}

.bg-wordmark {
  background-color: #F7F3F2;
}

.c-white {
  color: #FFFFFF;
}

.w-fit {
  width: fit-content;
}

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

.order-6 {
  order: 6;
}

.cover {
  object-fit: cover;
}

.cursor-pointer {
  cursor: pointer;
}

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

.z-index-1 {
  z-index: 1;
  position: relative;
}

.gap-10 {
  gap: 10px;
}

.gap-30 {
  gap: 30px;
}

@media (min-width: 992px) {
  .gap-lg-30 {
    gap: 30px;
  }
}

.gap-40 {
  gap: 40px;
}

@media (min-width: 768px) {
  .r-md-gap-50 {
    row-gap: 50px;
  }
}

@media (min-width: 992px) {
  .r-lg-gap-60 {
    row-gap: 60px;
  }
}

.r-gap-5 {
  row-gap: 5px;
}

.r-gap-contact {
  row-gap: 13px;
}
@media (min-width: 768px) {
  .r-gap-contact {
    row-gap: 17px;
  }
}

.r-gap-30 {
  row-gap: 30px;
}

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

.flex-1 {
  flex: 1;
}

@media (max-width: 767.98px) {
  .flex-sm-1 {
    flex: 1;
  }
}

.divider-v {
  width: 1px;
  align-self: stretch;
  background-color: rgba(120, 81, 70, 0.1);
  flex: none;
}

.divider-v-2 {
  height: 1px;
  background-color: rgba(120, 81, 70, 0.8);
  align-self: stretch;
  flex: none;
}

.px-28p5 {
  padding-left: 28.5px;
  padding-right: 28.5px;
}

@media (min-width: 768px) {
  .px-md-0i {
    padding-left: 0;
    padding-right: 0;
  }
}

.pt-6 {
  padding-top: 6px;
}

.pt-8 {
  padding-top: 8px;
}

@media (min-width: 992px) {
  .pt-lg-2 {
    padding-top: 2px;
  }
}

@media (min-width: 992px) {
  .pt-lg-5 {
    padding-top: 5px;
  }
}

@media (max-width: 767.98px) {
  .pt-32 {
    padding-top: 32px;
  }
}

@media (max-width: 767.98px) {
  .pt-52 {
    padding-top: 52px;
  }
}

@media (max-width: 767.98px) {
  .pt-83 {
    padding-top: 83px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .pt-md-42 {
    padding-top: 42px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .pt-md-44 {
    padding-top: 44px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .pt-md-92 {
    padding-top: 92px;
  }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
  .pt-lg-2 {
    padding-top: 2px;
  }
}

@media (min-width: 992px) {
  .pt-lg-22 {
    padding-top: 22px !important;
  }
}

@media (max-width: 767.98px) {
  .pt-23 {
    padding-top: 23px;
  }
}

@media (max-width: 767.98px) {
  .pt-28 {
    padding-top: 28px;
  }
}

@media (min-width: 992px) {
  .pt-lg-23 {
    padding-top: 23px !important;
  }
}

@media (min-width: 992px) {
  .pt-lg-44 {
    padding-top: 44px !important;
  }
}

@media (min-width: 992px) {
  .pt-lg-107 {
    padding-top: 107px !important;
  }
}

@media (min-width: 992px) {
  .pt-lg-113 {
    padding-top: 113px !important;
  }
}

@media (min-width: 992px) {
  .pt-lg-177 {
    padding-top: 177px !important;
  }
}

.pt-7p5 {
  padding-top: 7.5px;
}

@media (min-width: 992px) {
  .pt-lg-5i {
    padding-top: 5px;
  }
}

@media (min-width: 768px) {
  .pb-33p {
    padding-bottom: 33%;
  }
}

.img-wrapper {
  display: flex;
  width: 100%;
  height: auto;
  border-radius: 5px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .col-lg-70 {
    width: 71.4%;
  }
}

@media (min-width: 1400px) {
  .col-xl-70 {
    width: 71.4%;
  }
}

.srow {
  margin: 0 -15px;
  width: auto;
}

@media (max-width: 767.98px) {
  .col-sm-160 {
    width: 160%;
  }
}

@media (min-width: 992px) {
  .m-min-left-30 {
    margin-left: -30px;
  }
}

@media (min-width: 992px) {
  .m-min-right-15 {
    margin-right: -15px;
  }
}

.border-r-left {
  border-radius: 5px 0 0 5px;
}

.border-r-right {
  border-radius: 0 5px 5px 0;
}

.divider-h {
  width: 100%;
  height: 1px;
  background-color: rgba(120, 81, 70, 0.15);
}

@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 100px;
  }
}

@media (min-width: 992px) {
  .col-term {
    width: 80%;
  }
}

@media (min-width: 992px) {
  .col-term-2 {
    width: 85.7%;
  }
}

footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .hover-footer {
  display: inline-block;
  position: relative;
}
footer .hover-footer::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #FFFFFF;
  transition: width 0.25s ease-out;
}
footer .hover-footer:hover::before {
  width: 100%;
}
footer .footer-logo {
  width: 200px;
  height: auto;
}
@media (min-width: 768px) {
  footer .footer-logo {
    width: 155px;
    height: 43px;
  }
}
@media (min-width: 992px) {
  footer .footer-logo {
    width: 300px;
    height: 81px;
  }
}
footer .menu-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  padding-top: 21px;
}
@media (min-width: 768px) {
  footer .menu-footer {
    align-items: flex-start;
  }
}
footer .menu-footer a {
  display: inline-block;
  position: relative;
  color: #FFFFFF;
}
footer .menu-footer a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #FFFFFF;
  transition: width 0.25s ease-out;
}
footer .menu-footer a:hover::before {
  width: 100%;
}
footer .menu-contact {
  padding-top: 20px;
}
@media (min-width: 768px) {
  footer .menu-contact {
    padding-top: 21px;
  }
}

header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  transition: transform 0.4s ease;
}
header .container-header {
  transition: background-color 1s ease;
  z-index: 3;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 12px;
}
@media (min-width: 768px) {
  header .container-header {
    padding-top: 30px;
    padding-bottom: 24px;
  }
}
@media (min-width: 992px) {
  header .container-header {
    padding-top: 20px;
  }
}
header .container-header .btn-contact {
  margin-top: 3px;
}
header .nav-bar {
  display: flex;
  gap: 30px;
}
header .nav-link {
  padding: 7.5px 0;
  transition: color 0.25s ease;
  position: relative;
}
@media (min-width: 992px) {
  header .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(100% - 5px);
    width: 0;
    height: 1px;
    transition: width 0.25s ease-out;
  }
  header .nav-link:hover::before {
    width: 100%;
  }
}
@media (min-width: 992px) {
  header .link-text {
    transition: color 0.25s ease;
    position: relative;
    display: inline-flex;
    width: fit-content;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  header .link-text::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    transition: width 0.25s ease-out;
  }
  header .link-text:hover::before {
    width: 100%;
  }
}
header .logo {
  transition: color 0.25s ease, height 0.25s ease 0.25s, width 0.25s ease 0.1s;
  width: 143px;
  height: 38px;
}
@media (min-width: 768px) {
  header .logo {
    width: auto;
    height: 58px;
  }
}
@media (min-width: 992px) {
  header .logo {
    height: 48px;
  }
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  header .logo {
    transform: translateX(6px);
  }
}
@media (min-width: 1400px) {
  header .logo {
    height: 80px;
  }
}
header .language-drop .language-link {
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
  gap: 2.5px;
  padding: 7.5px 0;
}
@media (min-width: 992px) {
  header .language-drop .language-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(100% - 5px);
    width: 0;
    height: 1px;
    transition: width 0.25s ease-out;
  }
  header .language-drop .language-link:hover::before {
    width: 100%;
  }
}
header .language-drop .language-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: calc(100% - 5px);
  left: 0;
  transition: opacity 0.2s ease;
  opacity: 0;
}
header .language-drop .language-link.show::after {
  opacity: 1;
}
header .language-drop .dropdown-menu {
  background-color: transparent;
  padding: 0;
  border: none;
  min-width: 75px;
  flex-direction: column;
  gap: 5px;
}
header .language-drop .dropdown-menu.show {
  display: flex;
  padding-top: 10px;
}
header.hero-header .container-header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
}
header.hero-header .nav-bar {
  color: #FFFFFF;
}
header.hero-header .nav-bar .nav-link {
  color: #FFFFFF;
}
header.hero-header .nav-bar .nav-link::before {
  background-color: #FFFFFF;
}
header.hero-header .logo {
  color: #FFFFFF;
}
header.hero-header .language-drop .language-link {
  color: #FFFFFF;
}
header.hero-header .language-drop .language-link::before, header.hero-header .language-drop .language-link::after {
  background-color: #FFFFFF;
}
header.hero-header .language-drop .dropdown-menu {
  color: #FFFFFF;
}
header.hero-header .language-drop .dropdown-menu .link-text::before, header.hero-header .language-drop .dropdown-menu .link-text::after {
  background-color: #FFFFFF;
}
header.hero-header .btn-contact {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
header.hero-header .btn-contact:hover {
  background-color: #FFFFFF;
  color: #785146;
}
header.hero-header .burger-menu span {
  background-color: #FFFFFF;
}
header:not(.hero-header) .nav-bar {
  color: #785146;
}
header:not(.hero-header) .nav-bar .nav-link {
  color: #785146;
}
header:not(.hero-header) .nav-bar .nav-link::before {
  background-color: #785146;
}
header:not(.hero-header) .logo {
  color: #785146;
}
header:not(.hero-header) .language-drop .language-link {
  color: #785146;
}
header:not(.hero-header) .language-drop .language-link::before, header:not(.hero-header) .language-drop .language-link::after {
  background-color: #785146;
}
header:not(.hero-header) .language-drop .dropdown-menu {
  color: #785146;
  background-color: #FFFFFF;
  padding: 5px 10px;
  border: 1px solid #785146;
  transform: translate3d(-8px, 43px, 0px) !important;
}
header:not(.hero-header) .language-drop .dropdown-menu .link-text::before, header:not(.hero-header) .language-drop .dropdown-menu .link-text::after {
  background-color: #785146;
}
header:not(.hero-header) .btn-contact {
  border-color: #785146;
  color: #785146;
}
@media (min-width: 992px) {
  header:not(.hero-header) .btn-contact:hover {
    background-color: #785146;
    color: #FFFFFF;
  }
}
header:not(.hero-header) .burger-menu {
  border-color: #785146;
}
header:not(.hero-header) .burger-menu span {
  background-color: #785146;
}
header .burger-container {
  position: relative;
  height: 26px;
  width: 100%;
  pointer-events: none;
}
@media (min-width: 768px) {
  header .burger-container {
    height: 30px;
    transform: translateY(-14px);
  }
}
@media (min-width: 992px) {
  header .burger-container {
    display: none;
  }
}
header .container-header-2 {
  z-index: 3;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 12px;
  background-color: #FFFFFF;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
@media (min-width: 768px) {
  header .container-header-2 {
    padding-top: 23px;
    padding-bottom: 24px;
  }
}
@media (min-width: 992px) {
  header .container-header-2 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media (min-width: 768px) {
  header .container-header-2 .logo {
    height: auto;
    width: 154px;
  }
}
@media (min-width: 992px) {
  header .container-header-2 .logo {
    width: 147px;
  }
}
header .container-header-2 .nav-bar {
  color: #785146;
}
header .container-header-2 .nav-bar .nav-link {
  color: #785146;
}
header .container-header-2 .nav-bar .nav-link::before {
  background-color: #785146;
}
header .container-header-2 .logo {
  color: #785146;
}
header .container-header-2 .language-drop .language-link {
  color: #785146;
}
header .container-header-2 .language-drop .language-link::before, header .container-header-2 .language-drop .language-link::after {
  background-color: #785146;
}
header .container-header-2 .language-drop .dropdown-menu {
  color: #785146;
  background-color: #FFFFFF;
  padding: 5px 10px;
  border: 1px solid #785146;
  transform: translate3d(-8px, 43px, 0px) !important;
}
header .container-header-2 .language-drop .dropdown-menu .link-text::before, header .container-header-2 .language-drop .dropdown-menu .link-text::after {
  background-color: #785146;
}
header .container-header-2 .btn-contact {
  border-color: #785146;
  color: #785146;
}
@media (min-width: 992px) {
  header .container-header-2 .btn-contact:hover {
    background-color: #785146;
    color: #FFFFFF;
  }
}
header .container-header-2 .burger-menu {
  border-color: #785146;
}
header .container-header-2 .burger-menu span {
  background-color: #785146;
}
header.headroom--not-top .container-header-2 {
  opacity: 1;
  pointer-events: all;
}
header.headroom--not-top.headroom--pinned .container-header-2 {
  opacity: 1;
  pointer-events: all;
}
header.headroom--not-top.headroom--pinned .burger-container, header.headroom--not-top.headroom--pinned .btn-contact {
  transform: translateY(0);
}
header.show .nav-bar {
  color: #785146;
}
header.show .nav-bar .nav-link {
  color: #785146;
}
header.show .nav-bar .nav-link::before {
  background-color: #785146;
}
header.show .logo {
  color: #785146;
}
header.show .language-drop .language-link {
  color: #785146;
}
header.show .language-drop .language-link::before, header.show .language-drop .language-link::after {
  background-color: #785146;
}
header.show .language-drop .dropdown-menu {
  color: #785146;
  background-color: #FFFFFF;
  padding: 5px 10px;
  border: 1px solid #785146;
  transform: translate3d(-8px, 43px, 0px) !important;
}
header.show .language-drop .dropdown-menu .link-text::before, header.show .language-drop .dropdown-menu .link-text::after {
  background-color: #785146;
}
header.show .btn-contact {
  border-color: #785146;
  color: #785146;
}
@media (min-width: 992px) {
  header.show .btn-contact:hover {
    background-color: #785146;
    color: #FFFFFF;
  }
}
header.show .burger-menu {
  border-color: #785146;
}
header.show .burger-menu span {
  background-color: #785146;
}
header.show .container-header {
  background: #FFFFFF;
}
header.show .container-header .divider-abs {
  background-color: rgba(120, 81, 70, 0.1);
}
@media (min-width: 768px) {
  header.show .logo {
    height: 42px;
  }
}
header.show .burger-menu {
  height: 32px;
}
header.show .burger-menu span {
  background-color: #785146;
}
header.show .burger-menu span:nth-of-type(1) {
  transform: translateY(-50%) scaleX(0);
}
header.show .burger-menu span:nth-of-type(4) {
  transform: translateY(50%) scaleX(0);
}
header.show .burger-menu span:nth-of-type(2) {
  transform: rotate(-45deg);
}
header.show .burger-menu span:nth-of-type(3) {
  transform: rotate(45deg);
}

.burger-menu {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: all;
  border: 1px solid #FFFFFF;
  border-radius: 3px;
  z-index: 99;
  cursor: pointer;
  padding: 8px;
  width: 32px;
  height: 26px;
}
@media (min-width: 768px) {
  .burger-menu {
    width: 36px;
    height: 30px;
    padding: 9px 10px 10px;
  }
}
.burger-menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #0b0b0b;
  transform-origin: center;
  transition: background-color 0.4s ease, transform 0.4s ease;
}
.burger-menu span:nth-of-type(1) {
  top: 0;
  transform: translateY(-50%) scaleX(1);
}
.burger-menu span:nth-of-type(4) {
  top: 100%;
  transform: translateY(50%) scaleX(1);
}
.burger-menu span:nth-of-type(2), .burger-menu span:nth-of-type(3) {
  top: 50%;
}
@media (min-width: 992px) {
  .burger-menu {
    display: none;
  }
}

.header-menu {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  color: #785146;
  width: 100%;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  padding: 89px 30px 9px;
  height: 100dvh;
  border-top: 1px solid rgba(120, 81, 70, 0.1);
}
@media (min-width: 768px) {
  .header-menu {
    z-index: 2;
    padding: 22px 30px 50px;
    height: auto;
  }
}
@media (min-width: 992px) {
  .header-menu {
    display: none;
  }
}
.header-menu.show {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .header-menu.show {
    transform: translateY(89px);
  }
}
.header-menu .link-text {
  color: #785146;
}
.header-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
.header-menu ul li {
  border-bottom: 1px solid rgba(120, 81, 70, 0.1);
}
.header-menu ul li a {
  display: block;
  padding: 22px 0;
}
@media (min-width: 768px) {
  .header-menu ul li a {
    padding: 22px 0 20px;
  }
}

.menu-toggle {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  display: none;
}
@media (min-width: 768px) {
  .menu-toggle {
    display: block;
  }
}
@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle.show {
  opacity: 1;
  pointer-events: all;
}

.loader-component {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #FFFFFF;
  left: 0;
  top: 0;
  z-index: 2090;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

form .input-group {
  display: flex;
}
form .input-group .input-label {
  display: none;
}
form .input-group .input {
  width: 100%;
  height: 41px;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid #785146;
  color: #785146;
  padding: 0;
}
form .input-group .input::placeholder {
  opacity: 0.5;
}
form .input-group .txtarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #785146;
  padding: 0;
  color: #785146;
  outline: none;
  height: 108px;
}
@media (min-width: 768px) {
  form .input-group .txtarea {
    height: 77px;
  }
}
@media (min-width: 992px) {
  form .input-group .txtarea {
    height: 80px;
  }
}
form .input-group .txtarea::placeholder {
  opacity: 0.6;
}
form .input-group .selectize-control {
  position: relative;
  cursor: pointer;
  width: 100%;
}
form .input-group .selectize-control .selectize-input {
  width: 100%;
  height: 41px;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid #785146;
  color: #785146;
  padding: 0;
  position: relative;
}
form .input-group .selectize-control .selectize-input input {
  opacity: 0.6 !important;
  caret-color: transparent;
  pointer-events: none;
}
form .input-group .selectize-control .selectize-input::after {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='9' viewBox='0 0 17 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L8.49822 8.10526L16 1' stroke='%23785146'/%3E%3C/svg%3E%0A");
  width: 17px;
  height: 9px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
form .input-group .selectize-control .selectize-input.dropdown-active::after {
  transform: translateY(-50%) rotate(180deg);
}
form .input-group .selectize-control .selectize-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 10px) !important;
  border: 1px solid #785146;
  border-radius: 3px;
  background-color: #FFFFFF;
  z-index: 10;
}
form .input-group .selectize-control .selectize-dropdown .option {
  position: relative;
  padding: 4px 15px 8.5px;
  cursor: pointer;
}
form .input-group .selectize-control .selectize-dropdown .option::after {
  content: "";
  position: absolute;
  width: calc(100% - 30px);
  height: 1px;
  background-color: rgba(120, 81, 70, 0.15);
  bottom: 0;
  left: 15px;
}
form .input-group .selectize-control .selectize-dropdown .option:last-child::after {
  display: none;
}
form .input-group .selectize-control .item {
  user-select: none;
}

@media (min-width: 992px) {
  .wpcf7-form {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-textarea {
  min-height: 70px;
}

#form-submitted {
  position: fixed;
  z-index: 1051;
  left: 5%;
  top: 90%;
  padding: 17px 30px 14px 30px;
  border-radius: 50px;
  background-color: #785146;
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media (min-width: 768px) {
  #form-submitted {
    left: 30px;
    top: 100px;
  }
}
@media (min-width: 992px) {
  #form-submitted {
    top: auto;
    bottom: 30px;
  }
}
#form-submitted.show {
  opacity: 1;
}

.wpcf7-not-valid-tip {
  margin-top: 8px;
}

.wpcf7-response-output {
  font-family: "ChronicleText-Roman";
  font-size: 14px;
  line-height: 23px;
  letter-spacing: -0.01em;
  font-weight: 400;
  border-radius: 100px;
  background-color: #785146;
  border-color: #785146 !important;
  margin: 2em 0 !important;
  color: #FFFFFF;
  width: fit-content !important;
}
@media (min-width: 768px) {
  .wpcf7-response-output {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 992px) {
  .wpcf7-response-output {
    font-size: 16px;
    line-height: 28px;
  }
}

.wpcf7 form.invalid .wpcf7-response-output {
  font-family: "ChronicleText-Roman";
  font-size: 14px;
  line-height: 23px;
  letter-spacing: -0.01em;
  font-weight: 400;
  background-color: transparent !important;
  border-radius: 100px;
  color: #785146;
  border-color: #785146;
  border: 1px solid !important;
}
@media (min-width: 768px) {
  .wpcf7 form.invalid .wpcf7-response-output {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 992px) {
  .wpcf7 form.invalid .wpcf7-response-output {
    font-size: 16px;
    line-height: 28px;
  }
}

.btn {
  font-family: "Causten-Regular";
  line-height: 18px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6.5px 28px 6.5px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #785146;
  color: #785146;
  background-color: transparent;
  transition: background-color 0.25s ease, color 0.25s ease;
}
@media (min-width: 992px) {
  .btn {
    padding: 6.5px 39px 6.5px;
  }
}
@media (min-width: 992px) {
  .btn:hover {
    background-color: #785146;
    color: #FFFFFF;
  }
}
.btn.fill {
  background-color: #785146;
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .btn.fill:hover {
    background-color: #FFFFFF;
    color: #785146;
  }
}
.btn.fill.lang {
  opacity: 1;
}
.btn.white {
  background-color: #FFFFFF;
  color: #785146;
  border: 1px solid transparent;
}
@media (min-width: 992px) {
  .btn.white:hover {
    background-color: #785146;
    color: #FFFFFF;
  }
}
.btn.lang {
  opacity: 0.7;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .btn.lang {
    padding: 6.5px 29px;
  }
}

.btn-contact {
  padding: 4.5px 9px;
  border: 1px solid #785146;
  border-radius: 3px;
  background-color: transparent;
  color: #785146;
  font-family: "Causten-Regular";
  line-height: 18px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .btn-contact {
    transform: translateY(-14px);
  }
}
@media (min-width: 992px) {
  .btn-contact:hover {
    background-color: #785146;
    color: #FFFFFF;
  }
}

.hero {
  position: relative;
  height: 600px;
}
@media (min-width: 992px) {
  .hero {
    height: 720px;
  }
}
.hero .text-container {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 52px;
}
@media (min-width: 768px) {
  .hero .text-container {
    bottom: 60px;
  }
}
@media (min-width: 992px) {
  .hero .text-container {
    bottom: 68px;
  }
}
.hero-overlay img {
  filter: brightness(0.85);
}

.wordmark {
  position: absolute;
}
.wordmark-1 {
  top: 0;
  left: -17px;
}
.wordmark-1 svg {
  width: 115px;
  height: auto;
}
.wordmark-1 svg path {
  stroke-width: 1px;
}
@media (min-width: 768px) {
  .wordmark-1 {
    left: -30px;
  }
  .wordmark-1 svg {
    width: 216px;
  }
}
@media (min-width: 1400px) {
  .wordmark-1 {
    left: -57px;
  }
  .wordmark-1 svg {
    width: 405px;
  }
}
.wordmark-2 {
  bottom: 0;
  right: -17px;
}
.wordmark-2 svg {
  height: auto;
  width: 118px;
}
@media (min-width: 768px) {
  .wordmark-2 {
    right: -32px;
  }
  .wordmark-2 svg {
    width: 217px;
  }
}
@media (min-width: 1400px) {
  .wordmark-2 {
    right: -60px;
  }
  .wordmark-2 svg {
    width: 405px;
  }
}
.wordmark-3 {
  bottom: -45px;
  right: 0;
}
.wordmark-3 img {
  height: auto;
  width: 128px;
}
@media (min-width: 768px) {
  .wordmark-3 {
    bottom: -60px;
  }
  .wordmark-3 img {
    width: 220px;
  }
}
@media (min-width: 1400px) {
  .wordmark-3 img {
    width: 403px;
  }
}
.wordmark-4 {
  top: 100%;
  left: -30px;
  transform: translateY(-40%);
}
@media (min-width: 768px) {
  .wordmark-4 {
    transform: translateY(-45%);
  }
}
@media (min-width: 1400px) {
  .wordmark-4 {
    left: -42px;
    transform: translateY(-33.33%);
  }
}
.wordmark-4 svg {
  height: auto;
  width: 75px;
}
@media (min-width: 768px) {
  .wordmark-4 svg {
    width: 155px;
  }
}
@media (min-width: 1400px) {
  .wordmark-4 svg {
    width: 290px;
  }
}
.wordmark-5 {
  top: 0;
  left: -35px;
}
@media (min-width: 768px) {
  .wordmark-5 {
    left: -65px;
  }
}
@media (min-width: 1400px) {
  .wordmark-5 {
    left: -132px;
  }
}
.wordmark-5 svg {
  height: auto;
  width: 120px;
}
@media (min-width: 768px) {
  .wordmark-5 svg {
    width: 225px;
  }
}
@media (min-width: 1400px) {
  .wordmark-5 svg {
    width: 405px;
  }
}
.wordmark-6 {
  right: -48px;
  top: -46px;
}
.wordmark-6 svg {
  height: auto;
  width: 136px;
}
@media (min-width: 768px) {
  .wordmark-6 svg {
    width: 259px;
  }
}
@media (min-width: 1400px) {
  .wordmark-6 svg {
    width: 461px;
  }
}
@media (min-width: 768px) {
  .wordmark-6 {
    right: -92px;
    top: -44px;
  }
}
@media (min-width: 1400px) {
  .wordmark-6 {
    top: -137px;
    right: -85px;
  }
}
.wordmark-7 {
  opacity: 0;
}
@media (min-width: 768px) {
  .wordmark-7 {
    opacity: 1;
    top: 26px;
    left: -16px;
  }
}
@media (min-width: 1400px) {
  .wordmark-7 {
    left: -26px;
    top: 62px;
  }
}
.wordmark-7 svg {
  height: auto;
  width: 120px;
}
@media (min-width: 768px) {
  .wordmark-7 svg {
    width: 226px;
  }
}
@media (min-width: 1400px) {
  .wordmark-7 svg {
    width: 345px;
  }
}
.wordmark-8 {
  right: -48px;
  bottom: 0;
}
.wordmark-8 svg {
  height: auto;
  width: 136px;
}
@media (min-width: 768px) {
  .wordmark-8 svg {
    width: 259px;
  }
}
@media (min-width: 1400px) {
  .wordmark-8 svg {
    width: 461px;
  }
}
@media (min-width: 768px) {
  .wordmark-8 {
    right: -66px;
  }
}
@media (min-width: 1400px) {
  .wordmark-8 {
    right: -40px;
  }
}
.wordmark-9 {
  top: 100%;
  left: -20px;
  transform: translateY(-40%);
  opacity: 0;
}
@media (min-width: 768px) {
  .wordmark-9 {
    opacity: 1;
    left: -34px;
    transform: translateY(-60%);
  }
}
@media (min-width: 1400px) {
  .wordmark-9 {
    left: -42px;
    transform: translateY(-66.33%);
  }
}
.wordmark-9 svg {
  height: auto;
  width: 75px;
}
@media (min-width: 768px) {
  .wordmark-9 svg {
    width: 160px;
  }
}
@media (min-width: 1400px) {
  .wordmark-9 svg {
    width: 290px;
  }
}
@media (min-width: 1800px) {
  .wordmark-9 svg {
    width: 348px;
  }
}
.wordmark-10 {
  top: 100%;
  right: -20px;
  transform: translateY(-40%);
  opacity: 0;
}
@media (min-width: 768px) {
  .wordmark-10 {
    opacity: 1;
    right: -62px;
    transform: translateY(-66%);
  }
}
@media (min-width: 1400px) {
  .wordmark-10 {
    right: -83px;
    transform: translateY(-60.33%);
  }
}
.wordmark-10 svg {
  height: auto;
  width: 75px;
}
@media (min-width: 768px) {
  .wordmark-10 svg {
    width: 160px;
  }
}
@media (min-width: 1400px) {
  .wordmark-10 svg {
    width: 290px;
  }
}
@media (min-width: 1800px) {
  .wordmark-10 svg {
    width: 348px;
  }
}
.wordmark-11 {
  top: 100%;
  right: -20px;
  transform: translateY(-40%);
  opacity: 0;
}
@media (min-width: 768px) {
  .wordmark-11 {
    opacity: 1;
    right: -62px;
    transform: translateY(-66%);
  }
}
@media (min-width: 1400px) {
  .wordmark-11 {
    right: 0px;
    transform: translateY(-74.33%);
  }
}
.wordmark-11 svg {
  height: auto;
  width: 75px;
}
@media (min-width: 768px) {
  .wordmark-11 svg {
    width: 160px;
  }
}
@media (min-width: 1400px) {
  .wordmark-11 svg {
    width: 290px;
  }
}
@media (min-width: 1800px) {
  .wordmark-11 svg {
    width: 348px;
  }
}
.wordmark-12 {
  top: 100%;
  left: 0px;
  transform: translateY(0%);
}
@media (min-width: 768px) {
  .wordmark-12 {
    left: -10px;
    transform: translateY(-1%);
  }
}
@media (min-width: 1400px) {
  .wordmark-12 {
    left: 0px;
    transform: translateY(-1%);
  }
}
.wordmark-12 svg {
  height: auto;
  width: 75px;
}
@media (min-width: 768px) {
  .wordmark-12 svg {
    width: 130px;
  }
}
@media (min-width: 1400px) {
  .wordmark-12 svg {
    width: 250px;
  }
}
.wordmark-13 {
  top: 0%;
  right: -15px;
  transform: translateY(-721%);
}
@media (min-width: 768px) {
  .wordmark-13 {
    right: -15px;
    transform: translateY(-53%);
  }
}
@media (min-width: 1400px) {
  .wordmark-13 {
    right: -24px;
    transform: translateY(-40.33%);
  }
}
.wordmark-13 svg {
  height: auto;
  width: 125px;
}
@media (min-width: 768px) {
  .wordmark-13 svg {
    width: 185px;
  }
}
@media (min-width: 1400px) {
  .wordmark-13 svg {
    width: 290px;
  }
}
.wordmark-14 {
  top: 0%;
  right: -15px;
  transform: translateY(-67%);
}
@media (min-width: 768px) {
  .wordmark-14 {
    right: -15px;
    transform: translateY(-32%);
  }
}
@media (min-width: 1400px) {
  .wordmark-14 {
    right: -25px;
    transform: translateY(-53.33%);
  }
}
.wordmark-14 svg {
  height: auto;
  width: 115px;
}
@media (min-width: 768px) {
  .wordmark-14 svg {
    width: 220px;
  }
}
@media (min-width: 1400px) {
  .wordmark-14 svg {
    width: 390px;
  }
}
.wordmark-15 {
  top: 0%;
  left: -20px;
  transform: translateY(-40%);
  opacity: 0;
}
@media (min-width: 768px) {
  .wordmark-15 {
    opacity: 1;
    left: -15px;
    transform: translateY(34%);
  }
}
@media (min-width: 1400px) {
  .wordmark-15 {
    left: -25px;
    transform: translateY(29.33%);
  }
}
.wordmark-15 svg {
  height: auto;
  width: 75px;
}
@media (min-width: 768px) {
  .wordmark-15 svg {
    width: 160px;
  }
}
@media (min-width: 1400px) {
  .wordmark-15 svg {
    width: 280px;
  }
}
.wordmark-16 {
  top: 0%;
  right: 0px;
  transform: translateY(0%);
}
@media (min-width: 768px) {
  .wordmark-16 {
    right: 0px;
  }
}
@media (min-width: 1400px) {
  .wordmark-16 {
    right: 0px;
    transform: translateY(-53.33%);
  }
}
.wordmark-16 svg {
  height: auto;
  width: 95px;
}
@media (min-width: 768px) {
  .wordmark-16 svg {
    width: 160px;
  }
}
@media (min-width: 1400px) {
  .wordmark-16 svg {
    width: 280px;
  }
}
.wordmark-footer {
  left: 0;
  top: -51px;
}
@media (min-width: 768px) {
  .wordmark-footer {
    top: -97px;
  }
}
@media (min-width: 1400px) {
  .wordmark-footer {
    top: -172px;
  }
}
.wordmark-footer img {
  height: auto;
  width: 103px;
}
@media (min-width: 768px) {
  .wordmark-footer img {
    width: 196px;
  }
}
@media (min-width: 1400px) {
  .wordmark-footer img {
    width: 348px;
  }
}
.wordmark-footer2 {
  bottom: -26px;
  right: -54px;
}
@media (min-width: 768px) {
  .wordmark-footer2 {
    bottom: -47px;
    right: -99px;
  }
}
@media (min-width: 1400px) {
  .wordmark-footer2 {
    bottom: -86px;
    right: -174px;
  }
}
.wordmark-footer2 svg {
  height: auto;
  width: 142px;
}
@media (min-width: 768px) {
  .wordmark-footer2 svg {
    width: 262px;
  }
}
@media (min-width: 1400px) {
  .wordmark-footer2 svg {
    width: 461px;
  }
}
.wordmark.amen-1 {
  top: -77px;
  right: 0;
}
.wordmark.amen-1 img {
  height: auto;
  width: 103px;
}
@media (min-width: 768px) {
  .wordmark.amen-1 img {
    width: 194px;
  }
}
@media (min-width: 1400px) {
  .wordmark.amen-1 img {
    width: 347px;
  }
}
@media (min-width: 768px) {
  .wordmark.amen-1 {
    top: -145px;
  }
}
@media (min-width: 1400px) {
  .wordmark.amen-1 {
    top: -260px;
  }
}
.wordmark.amen-2 {
  top: -24px;
  left: 0;
}
.wordmark.amen-2 img {
  height: auto;
  width: 49px;
}
@media (min-width: 768px) {
  .wordmark.amen-2 img {
    width: 97px;
  }
}
@media (min-width: 1400px) {
  .wordmark.amen-2 img {
    width: 174px;
  }
}
@media (min-width: 768px) {
  .wordmark.amen-2 {
    top: -48px;
  }
}
@media (min-width: 1400px) {
  .wordmark.amen-2 {
    top: -85px;
  }
}
.wordmark.amen-3 {
  bottom: -51px;
  left: 0;
}
.wordmark.amen-3 img {
  width: 70px;
}
@media (min-width: 768px) {
  .wordmark.amen-3 img {
    width: 130px;
  }
}
@media (min-width: 1400px) {
  .wordmark.amen-3 img {
    width: 230px;
  }
}
@media (min-width: 768px) {
  .wordmark.amen-3 {
    bottom: -95px;
  }
}
@media (min-width: 1400px) {
  .wordmark.amen-3 {
    bottom: -170px;
  }
}
.wordmark.amen-4 {
  bottom: -25px;
  right: 0;
}
.wordmark.amen-4 img {
  width: 53px;
}
@media (min-width: 768px) {
  .wordmark.amen-4 img {
    width: 102px;
  }
}
@media (min-width: 1400px) {
  .wordmark.amen-4 img {
    width: 173px;
  }
}
@media (min-width: 768px) {
  .wordmark.amen-4 {
    bottom: -50px;
  }
}
@media (min-width: 1400px) {
  .wordmark.amen-4 {
    bottom: -86px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .swiper-home-master .swiper-wrapper {
    max-height: 396px;
  }
}

@media (min-width: 992px) {
  #swiper-amenidades {
    height: 100%;
  }
}

.container-swiper-buttons {
  position: absolute;
  display: flex;
  pointer-events: none;
  top: 50%;
  transform: translateY(31%);
  z-index: 1;
  width: 100%;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .container-swiper-buttons {
    transform: translateY(-50%);
    width: auto;
    justify-content: start;
    transform: none;
    top: auto;
    bottom: 30px;
    gap: 10px;
    right: 0;
  }
}

.swiper-button-prev, .swiper-button-next {
  margin: 0;
  pointer-events: all;
  background-image: none;
  background-color: #785146;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  top: auto;
  bottom: auto;
  color: #FFFFFF;
  border: 1px solid #785146;
  width: 34px;
  height: 34px;
  transition: background-color 0.25s ease, color 0.25s ease;
}
@media (min-width: 992px) {
  .swiper-button-prev, .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
  background-color: transparent;
  color: #785146;
  opacity: 1;
}
@media (min-width: 992px) {
  .swiper-button-prev:hover, .swiper-button-next:hover {
    background-color: #FFFFFF;
    color: #785146;
  }
}
.swiper-button-prev {
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .swiper-button-prev {
    transform: none;
  }
}
.swiper-button-next {
  transform: translateX(50%);
}
@media (min-width: 768px) {
  .swiper-button-next {
    transform: none;
  }
}

html, body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mx-reset {
  margin: 0;
}

.btn,
button:focus {
  outline: 0;
  appearance: none;
}

.ul-reset {
  list-style: none;
  padding: 0;
}
.ul-reset * {
  text-decoration: none !important;
}

input.text,
input[type=text],
input[type=date],
input[type=tel],
input[type=email],
input[type=button],
input[type=submit],
.input-checkbox,
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

[class^=col] img {
  max-width: 100%;
}

::placeholder {
  color: #785146;
}

.h1,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  margin-bottom: 0;
}

#__bs_notify__ {
  top: 95% !important;
  right: 10px !important;
  border-radius: 15px !important;
  height: 60px !important;
}

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

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