@charset "UTF-8";
*, *::before, *::after {
  margin: 0;
  padding: 0;
  color: inherit;
  border: 0;
  font-size: inherit;
  font-style: normal;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
  background: none;
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: baseline;
}
*:not(:is(:focus-visible)), :not(:is(:focus-visible))::before, :not(:is(:focus-visible))::after {
  outline-style: none;
}

html, body, textarea {
  width: 100%;
}

html {
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

ul, li {
  list-style-type: none;
  list-style-position: inside;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th, caption {
  text-align: left;
}

a, button, input[type=button], input[type=submit], select {
  pointer-events: all;
  cursor: pointer;
}

input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  font-size: inherit;
  font-family: inherit;
}

input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  font-size: inherit;
  font-family: inherit;
}

input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-size: inherit;
  font-family: inherit;
}

input::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  font-size: inherit;
  font-family: inherit;
}

input::placeholder, select::placeholder, textarea::placeholder {
  font-size: inherit;
  font-family: inherit;
}

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

img, svg, video, iframe {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

[disabled] {
  pointer-events: none;
  cursor: not-allowed;
}

sub, sup {
  font-size: 0.75em;
}

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

hr {
  border-style: solid;
  border-top-width: 2px;
  display: block;
}

form {
  width: 100%;
}

dialog {
  max-width: initial;
  max-height: initial;
  inset-inline-start: unset;
  inset-inline-end: unset;
  inset-block-start: unset;
  inset-block-end: unset;
}
dialog::-ms-backdrop {
  background-color: rgba(0, 0, 0, 0.25);
}
dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.25);
}

figure {
  margin: 0;
}

/* ブレイクポイント */
/* メディアクエリ */
/* CSS変数でrgbaを設定できるようにする */
:root {
  --fontFamily: "M PLUS 1p", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "YuGothic", "Yu Gothic", "Arial", "Meiryo", sans-serif;
  --fontFamily-an: "Exo 2", var(--fontFamily);
  --fontWeight: 500;
  --lineHeight: 1.7;
  --outline-color: var(--color-nv);
  --outline-offset: 0.15em;
  --outline-width: 2px;
  --container: 1100px;
  --container-lg: 1440px;
  --space: 15px;
}
@media (width > 375px) {
  :root {
    --space: 20px;
  }
}
@media (width > 768px) {
  :root {
    --space: 40px;
  }
}
:root {
  --fontSize-md: 14px;
}
@media (width > 768px) {
  :root {
    --fontSize-md: 16px;
  }
}
:root {
  --header-height: 70px;
}
@media (width > 1024px) {
  :root {
    --header-height: calc(68px + 68px);
  }
}
:root {
  --color-text: #000000;
  --color-bg: #FFFFFF;
  --color-wt: #FFFFFF;
  --color-bk: #000000;
  --color-nv: #003B79;
  --color-bl: #0064DA;
  --color-cy20: #278EDB;
  --color-cy: #80CEF3;
  --color-cy90: #DFF5FF;
  --color-ye: #FFEF65;
  --color-rd: #d51111;
  --color-gr: #0b8a3c;
  --color-gy: #6e6e6e;
  --color-gy90: #dddddd;
  --color-gy95: #eeeeee;
}

html {
  scrollbar-gutter: stable;
}
html:not(.is-fixed) {
  scroll-behavior: smooth;
}
html.is-fixed {
  overflow: hidden;
}

body {
  color: var(--color-text);
  font-size: var(--fontSize-md);
  font-family: var(--fontFamily);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  background-color: var(--color-bg);
  accent-color: var(--color-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
  position: relative;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body *::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
body *::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
}
body *::-webkit-scrollbar-track {
  background-color: var(--color-gy90);
}
body:not(.is-dialog) {
  scroll-behavior: smooth;
}

* {
  outline-color: var(--outline-color);
  outline-offset: var(--outline-offset);
  outline-width: var(--outline-width);
  text-decoration-thickness: 0.05em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 0.2em;
}

h1,
h2,
h3,
h4,
h5,
h6,
th {
  font-weight: 700;
}

@media (any-hover: hover) {
  a:is(:focus-visible),
  button:is(:focus-visible),
  input[type=button]:is(:focus-visible),
  input[type=submit]:is(:focus-visible),
  select:is(:focus-visible) {
    outline-style: solid;
  }
}

details summary {
  list-style: none;
  outline-style: none;
  cursor: pointer;
}
details summary::-webkit-details-marker {
  display: none;
}
details:has(summary:focus-visible) {
  outline: var(--outline-color) solid var(--outline-width);
  outline-offset: var(--outline-offset);
}

.c-button {
  --button_color: var(--color-wt);
  --button_bg-color: var(--color-nv);
  --button_border-color: var(--color-wt);
  --button_shadow-color: var(--color-cy);
  --button_shadow-alpha: 50%;
  width: auto;
  min-height: 50px;
  padding: 10px;
  color: var(--button_color);
  font-weight: 700;
  line-height: 1.2;
  border-right: 3px dashed var(--button_border-color);
  border-bottom: 3px dashed var(--button_border-color);
  background-color: var(--button_bg-color);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: relative;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-transform: skewX(-12deg);
          transform: skewX(-12deg);
  -webkit-transition: background-color 0.2s, translate 0.2s, -webkit-box-shadow 0.2s;
  transition: background-color 0.2s, translate 0.2s, -webkit-box-shadow 0.2s;
  transition: background-color 0.2s, box-shadow 0.2s, translate 0.2s;
  transition: background-color 0.2s, box-shadow 0.2s, translate 0.2s, -webkit-box-shadow 0.2s;
}
@media (width <= 768px) {
  .c-button {
    min-height: 40px;
    font-size: 12px;
  }
}
.c-button:not(:is(a, button, input[type=button])) {
  pointer-events: none;
}
.c-button[target=_blank] {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-button[target=_blank]::after {
  content: "";
  width: 1em;
  height: 1em;
  background-image: url("../img/ico_new-tab.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}
.c-button--wt {
  --button_shadow-color: var(--color-cy);
  --button_shadow-alpha: 50%;
  --button_color: var(--color-nv);
  --button_bg-color: var(--color-wt);
  --button_border-color: var(--color-nv);
}
.c-button--ye {
  --button_shadow-color: var(--color-wt);
  --button_shadow-alpha: 50%;
  --button_color: var(--color-nv);
  --button_bg-color: var(--color-ye);
  --button_border-color: var(--color-nv);
}
@media (any-hover: hover) {
  .c-button:hover {
    -webkit-box-shadow: 4px 4px 6px 0 color-mix(in srgb, var(--button_shadow-color) var(--button_shadow-alpha), transparent);
            box-shadow: 4px 4px 6px 0 color-mix(in srgb, var(--button_shadow-color) var(--button_shadow-alpha), transparent);
    translate: 0 -2px;
    --button_color: var(--color-nv);
    --button_bg-color: var(--color-ye);
  }
}

.c-button-lang {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 3px;
  border-radius: 4px;
  background-color: var(--color-cy90);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-button-lang__item {
  width: 38px;
  height: 24px;
  font-size: 13px;
  font-family: var(--fontFamily-an);
  font-weight: 700;
  background-color: var(--color-cy90);
  border-radius: 4px;
  display: grid;
  place-content: center;
  overflow: hidden;
  -webkit-transition: -webkit-filter 0.2s;
  transition: -webkit-filter 0.2s;
  transition: filter 0.2s;
  transition: filter 0.2s, -webkit-filter 0.2s;
}
.c-button-lang__item.is-current {
  color: var(--color-wt);
  background-color: var(--color-nv);
  pointer-events: none;
}
@media (any-hover: hover) {
  .c-button-lang__item:hover {
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
}

.c-edit {
  font-size: initial;
  font-weight: 400;
  line-height: 2;
}
@media (width <= 768px) {
  .c-edit {
    line-height: 1.6;
  }
}
.c-edit > img {
  margin-inline: auto;
  display: block;
}
.c-edit > *:not(:last-child) {
  margin-bottom: 1em;
}
.c-edit a:not([class*=c-button]) {
  color: var(--color-bl);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
@media (any-hover: hover) {
  .c-edit a:not([class*=c-button]):hover {
    -webkit-filter: brightness(0.6);
            filter: brightness(0.6);
  }
}
.c-edit :is(ul, ol) {
  counter-reset: num 0;
  line-height: 1.5;
}
.c-edit :is(ul, ol) li:not(:last-child) {
  margin-bottom: 1em;
}
.c-edit :is(ul, ol) li:is(ul > *) {
  padding-left: 1em;
  position: relative;
}
.c-edit :is(ul, ol) li:is(ul > *)::before {
  content: "";
  width: 0.5em;
  aspect-ratio: 1/1;
  background-color: var(--color-cy);
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 0.5em;
  left: 0;
}
.c-edit :is(ul, ol) li:is(ol > *) {
  padding-left: 1em;
  position: relative;
  counter-increment: num;
}
.c-edit :is(ul, ol) li:is(ol > *)::before {
  content: counter(num);
  width: 1em;
  aspect-ratio: 1/1;
  color: var(--color-cy);
  font-weight: 900;
  font-family: var(--fontFamily-an);
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
@media (width <= 768px) {
  .c-edit table {
    font-family: var(--fontSize-md);
  }
}
.c-edit table thead :is(th, td) {
  padding: 1em;
  font-weight: 700;
  background-color: var(--color-gy90);
}
.c-edit table tbody :is(th, td) {
  padding: 1.25em 1em;
  border-bottom: 1px solid var(--color-gy95);
}
.c-edit table tbody th {
  white-space: nowrap;
}
.c-edit h2 {
  padding-bottom: 0.25em;
  font-size: 32px;
  color: var(--color-nv);
  font-weight: 800;
  line-height: 1.3;
  border-bottom: 1px dashed;
  -webkit-transform: skewX(-12deg);
          transform: skewX(-12deg);
}
@media (width <= 768px) {
  .c-edit h2 {
    font-size: 26px;
  }
}
.c-edit h3 {
  font-size: 24px;
  color: var(--color-nv);
  font-weight: 800;
  line-height: 1.3;
  -webkit-transform: skewX(-12deg);
          transform: skewX(-12deg);
  position: relative;
}
@media (width <= 768px) {
  .c-edit h3 {
    font-size: 18px;
  }
}
.c-edit h4 {
  padding-left: 0.75em;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}
.c-edit h4::before {
  content: "";
  width: 4px;
  height: 100%;
  background-color: var(--color-nv);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
.c-edit mark {
  padding-inline: 0.2em;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, color-mix(in srgb, var(--color-ye) 50%, transparent)), color-stop(50%, color-mix(in srgb, var(--color-ye) 50%, transparent)), color-stop(50%, transparent), to(transparent));
  background-image: linear-gradient(to top, color-mix(in srgb, var(--color-ye) 50%, transparent) 0, color-mix(in srgb, var(--color-ye) 50%, transparent) 50%, transparent 50%, transparent 100%);
}
.c-edit strong {
  font-weight: 700;
}
.c-edit i {
  font-style: italic;
  padding-right: 0.25em;
}
.c-edit small {
  font-size: 0.8em;
}
.c-edit blockquote {
  padding: 20px 20px 20px 40px;
  background-color: var(--color-gy90);
  position: relative;
  z-index: 0;
}
.c-edit blockquote:has(+ cite) {
  margin-bottom: 0 !important;
}
.c-edit blockquote::before {
  content: "“";
  font-size: 60px;
  font-family: var(--fontFamily-an);
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 10px;
}
.c-edit cite {
  font-size: 13px;
  text-align: right;
  display: block;
}
@media (width <= 768px) {
  .c-edit cite {
    font-size: 11px;
  }
}

.c-modal {
  width: 100%;
  height: 100svh;
  padding-block: 3%;
  overflow: auto;
}
.c-modal::-ms-backdrop {
  background-color: color-mix(in srgb, var(--color-bk) 60%, transparent);
}
.c-modal::backdrop {
  background-color: color-mix(in srgb, var(--color-bk) 60%, transparent);
}
.c-modal::-webkit-scrollbar {
  display: none;
}
.c-modal__inner {
  width: 100%;
  height: 100%;
  margin-inline: auto;
  position: relative;
}
@media (width > 500px) {
  .c-modal__inner {
    width: 90%;
    max-width: 159.993vh;
  }
}
.c-modal__video-wrap {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-modal__close {
  --close_size: 60px;
  width: var(--close_size);
  position: absolute;
  top: 0;
  right: calc(-1 * var(--close_size));
  background-color: var(--color-nv);
}
@media (width <= 768px) {
  .c-modal__close {
    --close_size: 40px;
  }
}
@media (any-hover: hover) {
  .c-modal__close:hover {
    -webkit-transition: scale 0.7s var(--ease-bounce);
    transition: scale 0.7s var(--ease-bounce);
  }
}
.c-modal__close img {
  width: 100%;
  padding: 30%;
}

.c-title {
  --_color: var(--color-nv);
  --_border-img: url("../img/img_title-border.svg");
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--_color);
  text-align: center;
  position: relative;
}
@media (width <= 768px) {
  .c-title {
    font-size: var(--fontSize-md);
  }
}
.c-title[data-slug]::before {
  content: attr(data-slug);
  margin-bottom: 0.2em;
  padding-bottom: 0.2em;
  font-size: 1.833em;
  font-family: var(--fontFamily-an);
  font-weight: 700;
  font-style: italic;
  display: block;
  background-image: var(--_border-img);
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media (width <= 768px) {
  .c-title[data-slug]::before {
    font-size: 2.285em;
  }
}
.c-title--color-wt {
  --_color: var(--color-wt);
  --_border-img: url("../img/img_title-border_wt.svg");
}

.c-title-heading01 {
  padding-bottom: 0.25em;
  font-size: 32px;
  color: var(--color-nv);
  font-weight: 800;
  line-height: 1.3;
  border-bottom: 1px dashed;
  -webkit-transform: skewX(-12deg);
          transform: skewX(-12deg);
}
@media (width <= 768px) {
  .c-title-heading01 {
    font-size: 26px;
  }
}

.c-title-heading02 {
  font-size: 24px;
  color: var(--color-nv);
  font-weight: 800;
  line-height: 1.3;
  -webkit-transform: skewX(-12deg);
          transform: skewX(-12deg);
  position: relative;
}
@media (width <= 768px) {
  .c-title-heading02 {
    font-size: 18px;
  }
}

.c-title-heading03 {
  padding-left: 0.75em;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}
.c-title-heading03::before {
  content: "";
  width: 4px;
  height: 100%;
  background-color: var(--color-nv);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.c-video {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.c-video iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-header {
  width: 100%;
  height: 90px;
  padding: 19px var(--space);
  position: relative;
  z-index: 5;
}
@media (width <= 768px) {
  .l-header {
    height: 80px;
  }
}
.l-header:is(body[data-page=top] *) {
  padding: 20px;
  width: min(100%, var(--container-lg));
  margin-inline: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media (width <= 768px) {
  .l-header:is(body[data-page=top] *) {
    height: 60px;
    padding: 20px 10px 0;
  }
}
.l-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-header__logo {
  width: 238px;
}
@media (width <= 768px) {
  .l-header__logo {
    width: 200px;
  }
}
.l-header__logo:is(body[data-page=top] *) {
  display: none;
}
@media (width <= 768px) {
  .l-header__lang {
    display: none;
  }
}
.l-header__toggle {
  --gmane-toggle_color: var(--color-nv);
}
.l-header__toggle:is(body[data-page=top] *):not([aria-expanded=true]) {
  --gmane-toggle_color: var(--color-wt);
}
.l-header__toggle:is(#gmenu *) {
  position: absolute;
  top: 20px;
  right: 10px;
}
@media (width > 768px) {
  .l-header__toggle {
    display: none;
  }
}
.l-header__toggle-icon {
  --gmane-toggle-line_height: 4px;
  width: 32px;
  height: var(--gmane-toggle-line_height);
  margin: calc(var(--gmane-toggle-line_height) + 5px) auto;
  display: block;
  background-color: var(--gmane-toggle_color);
  position: relative;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.l-header__toggle-icon::before, .l-header__toggle-icon::after {
  content: "";
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: var(--gmane-toggle_color);
  display: inline-block;
  position: absolute;
  top: calc(var(--gmane-toggle-line_height) + 5px);
  left: 0;
  right: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: top 0.3s 0.3s, rotate 0.3s, background-color 0.3s;
  transition: top 0.3s 0.3s, rotate 0.3s, background-color 0.3s;
}
.l-header__toggle-icon::before {
  top: calc(-1 * (var(--gmane-toggle-line_height) + 5px));
}
.l-header__toggle-icon:is(button[aria-expanded=true] *) {
  background-color: transparent;
}
.l-header__toggle-icon:is(button[aria-expanded=true] *)::before, .l-header__toggle-icon:is(button[aria-expanded=true] *)::after {
  top: 0;
  -webkit-transition: top 0.3s, rotate 0.3s 0.3s, background-color 0.3s;
  transition: top 0.3s, rotate 0.3s 0.3s, background-color 0.3s;
}
.l-header__toggle-icon:is(button[aria-expanded=true] *)::before {
  rotate: 45deg;
}
.l-header__toggle-icon:is(button[aria-expanded=true] *)::after {
  rotate: -45deg;
}
.l-header__toggle-text {
  font-size: 13px;
  color: var(--gmane-toggle_color);
  font-family: var(--fontFamily-an);
  font-weight: 700;
  text-align: center;
  display: block;
}
.l-header__menu {
  --head-height: 70px;
  width: 100%;
  padding: 40px 32px 40px 33px;
  margin-left: auto;
  background-color: var(--color-wt);
  background-image: -webkit-gradient(linear, left bottom, left top, from(color-mix(in srgb, var(--color-wt) 60%, transparent)), to(color-mix(in srgb, var(--color-wt) 60%, transparent))), url("../img/img_top-mv-bg.webp");
  background-image: linear-gradient(0deg, color-mix(in srgb, var(--color-wt) 60%, transparent) 0%, color-mix(in srgb, var(--color-wt) 60%, transparent) 100%), url("../img/img_top-mv-bg.webp");
  background-size: cover;
  background-position: center bottom;
  -webkit-transition: opacity 0.5s, overlay 0.5s allow-discrete, display 0.5s allow-discrete;
  transition: opacity 0.5s, overlay 0.5s allow-discrete, display 0.5s allow-discrete;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 9;
  scrollbar-width: none;
}
.l-header__menu::-webkit-scrollbar {
  display: none;
}
.l-header__menu::-ms-backdrop {
  background-color: color-mix(in srgb, var(--color-bk) 0%, transparent);
  -ms-transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}
.l-header__menu::backdrop {
  background-color: color-mix(in srgb, var(--color-bk) 0%, transparent);
  -webkit-transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}
.l-header__menu[open]::-ms-backdrop {
  background-color: color-mix(in srgb, var(--color-bk) 60%, transparent);
}
.l-header__menu[open]::backdrop {
  background-color: color-mix(in srgb, var(--color-bk) 60%, transparent);
}
@starting-style {
  .l-header__menu[open]::-ms-backdrop {
    background-color: color-mix(in srgb, var(--color-bk) 0%, transparent);
  }
  .l-header__menu[open]::backdrop {
    background-color: color-mix(in srgb, var(--color-bk) 0%, transparent);
  }
}
.l-header__menu[open] {
  opacity: 1;
}
@starting-style {
  .l-header__menu[open] {
    opacity: 0;
  }
}
.l-header__menu-inner {
  height: calc(100% - var(--head-height));
  overflow-y: auto;
  scrollbar-width: none;
}
.l-header__menu-inner::-webkit-scrollbar {
  display: none;
}
.l-header__menu-logo {
  margin-bottom: 40px;
  display: block;
}
.l-header__menu-logo img {
  width: min(100%, 270px);
  vertical-align: middle;
}
.l-header__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
}
.l-header__menu-item {
  text-align: center;
}
.l-header__menu-item a {
  width: min(100%, 160px);
  margin-inline: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-header__menu-lang {
  margin-top: 40px;
  margin-inline: auto;
}

.l-main {
  overflow: hidden;
}

.l-container {
  --_max-width: var(--container);
  width: min(100% - var(--space) * 2, var(--_max-width));
  margin-inline: auto;
}
.l-container--lg {
  --_max-width: var(--container-lg);
}

@media (width > 768px) {
  .md\:l-container {
    --_max-width: var(--container);
    width: min(100% - var(--space) * 2, var(--_max-width));
    margin-inline: auto;
  }
  .md\:l-container--lg {
    --_max-width: var(--container-lg);
  }
}

.l-footer {
  background-color: var(--color-wt);
}

.l-footer-sns {
  padding-block: 100px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(color-mix(in srgb, var(--color-cy90) 50%, transparent)), to(var(--color-cy90)));
  background-image: linear-gradient(180deg, color-mix(in srgb, var(--color-cy90) 50%, transparent) 0%, var(--color-cy90) 100%);
}
.l-footer-sns__title {
  margin-bottom: 40px;
}
.l-footer-sns__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 30px;
}
@media (width <= 768px) {
  .l-footer-sns__list {
    gap: 10px 16px;
  }
}
.l-footer-sns__item {
  width: calc((100% - 120px) / 5);
  max-width: 75px;
}
@media (width <= 768px) {
  .l-footer-sns__item {
    max-width: 55px;
    width: calc((100% - 64px) / 5);
  }
}
.l-footer-sns__button {
  --_color-bg: var(--color-wt);
  width: 100%;
  aspect-ratio: 1/1;
  padding: 15%;
  border-radius: 50%;
  background-color: var(--_color-bg);
  display: grid;
  place-content: center;
}
@media (width <= 768px) {
  .l-footer-sns__button {
    padding: 5%;
  }
}
.l-footer-sns__button[data-name=tiktok] {
  --_color-bg: var(--color-bk);
}
.l-footer-sns__button[data-name=instagram] {
  background-image: url("../img/bg_instagram.png");
  background-size: cover;
}
.l-footer-sns__button[data-name=facebook] {
  --_color-bg: #1A77F2;
}
.l-footer-sns__button img {
  max-width: 75%;
  max-height: 75%;
  margin: auto;
}
@media (any-hover: hover) {
  .l-footer-sns__button {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-footer-sns__button:hover {
    -webkit-box-shadow: 0 2px 8px 2px color-mix(in srgb, var(--color-cy) 50%, transparent);
            box-shadow: 0 2px 8px 2px color-mix(in srgb, var(--color-cy) 50%, transparent);
    translate: 0 -2px;
  }
}

.l-footer-copys {
  padding: 50px var(--space);
  color: var(--color-wt);
  background-color: var(--color-nv);
}
.l-footer-copys__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (width <= 500px) {
  .l-footer-copys__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer-copys__copy {
  font-size: 12px;
  font-weight: 400;
}

.l-totop {
  padding: 5px;
  margin-bottom: 30px;
  color: var(--color-wt);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--fontFamily-an);
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: fixed;
  right: 20px;
  bottom: 0;
  z-index: 50;
  mix-blend-mode: difference;
}
.l-totop__arrow {
  rotate: -90deg;
  margin-inline: auto;
}
@media (any-hover: hover) {
  .l-totop:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-filter: brightness(0.9);
            filter: brightness(0.9);
  }
}

@media (width > 1280px) {
  .xl\:show {
    display: none !important;
  }
}

@media (width <= 1280px) {
  .xl\:hidden {
    display: none !important;
  }
}

@media (width > 1024px) {
  .lg\:show {
    display: none !important;
  }
}

@media (width <= 1024px) {
  .lg\:hidden {
    display: none !important;
  }
}

@media (width > 768px) {
  .md\:show {
    display: none !important;
  }
}

@media (width <= 768px) {
  .md\:hidden {
    display: none !important;
  }
}

@media (width > 500px) {
  .sm\:show {
    display: none !important;
  }
}

@media (width <= 500px) {
  .sm\:hidden {
    display: none !important;
  }
}

@media (width > 375px) {
  .xs\:show {
    display: none !important;
  }
}

@media (width <= 375px) {
  .xs\:hidden {
    display: none !important;
  }
}

.block {
  display: block !important;
}

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

.inline {
  display: inline !important;
}

.hidden {
  display: none !important;
}

.italic {
  font-style: italic;
}

.fw-ini {
  font-weight: initial;
}

.fw-inh {
  font-weight: inherit;
}

.serif {
  font-family: var(--fontFamily-serif);
}

.an {
  font-family: var(--fontFamily-an);
}

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

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

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

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

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

.m0 {
  margin: 0px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.m5 {
  margin: 5px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.m10 {
  margin: 10px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.m15 {
  margin: 15px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.m20 {
  margin: 20px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.m25 {
  margin: 25px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.m30 {
  margin: 30px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.m35 {
  margin: 35px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.m40 {
  margin: 40px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.m45 {
  margin: 45px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.m50 {
  margin: 50px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.m55 {
  margin: 55px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.m60 {
  margin: 60px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.m65 {
  margin: 65px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.m70 {
  margin: 70px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.m75 {
  margin: 75px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.m80 {
  margin: 80px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.m85 {
  margin: 85px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.m90 {
  margin: 90px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.m95 {
  margin: 95px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.ml95 {
  margin-left: 95px !important;
}

.m100 {
  margin: 100px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.m0-25e {
  margin: 0.25em !important;
}

.mt0-25e {
  margin-top: 0.25em !important;
}

.mr0-25e {
  margin-right: 0.25em !important;
}

.mb0-25e {
  margin-bottom: 0.25em !important;
}

.ml0-25e {
  margin-left: 0.25em !important;
}

.m0-5e {
  margin: 0.5em !important;
}

.mt0-5e {
  margin-top: 0.5em !important;
}

.mr0-5e {
  margin-right: 0.5em !important;
}

.mb0-5e {
  margin-bottom: 0.5em !important;
}

.ml0-5e {
  margin-left: 0.5em !important;
}

.m0-75e {
  margin: 0.75em !important;
}

.mt0-75e {
  margin-top: 0.75em !important;
}

.mr0-75e {
  margin-right: 0.75em !important;
}

.mb0-75e {
  margin-bottom: 0.75em !important;
}

.ml0-75e {
  margin-left: 0.75em !important;
}

.m1e {
  margin: 1em !important;
}

.mt1e {
  margin-top: 1em !important;
}

.mr1e {
  margin-right: 1em !important;
}

.mb1e {
  margin-bottom: 1em !important;
}

.ml1e {
  margin-left: 1em !important;
}

.m1-25e {
  margin: 1.25em !important;
}

.mt1-25e {
  margin-top: 1.25em !important;
}

.mr1-25e {
  margin-right: 1.25em !important;
}

.mb1-25e {
  margin-bottom: 1.25em !important;
}

.ml1-25e {
  margin-left: 1.25em !important;
}

.m1-5e {
  margin: 1.5em !important;
}

.mt1-5e {
  margin-top: 1.5em !important;
}

.mr1-5e {
  margin-right: 1.5em !important;
}

.mb1-5e {
  margin-bottom: 1.5em !important;
}

.ml1-5e {
  margin-left: 1.5em !important;
}

.m1-75e {
  margin: 1.75em !important;
}

.mt1-75e {
  margin-top: 1.75em !important;
}

.mr1-75e {
  margin-right: 1.75em !important;
}

.mb1-75e {
  margin-bottom: 1.75em !important;
}

.ml1-75e {
  margin-left: 1.75em !important;
}

.m2e {
  margin: 2em !important;
}

.mt2e {
  margin-top: 2em !important;
}

.mr2e {
  margin-right: 2em !important;
}

.mb2e {
  margin-bottom: 2em !important;
}

.ml2e {
  margin-left: 2em !important;
}

.m2-25e {
  margin: 2.25em !important;
}

.mt2-25e {
  margin-top: 2.25em !important;
}

.mr2-25e {
  margin-right: 2.25em !important;
}

.mb2-25e {
  margin-bottom: 2.25em !important;
}

.ml2-25e {
  margin-left: 2.25em !important;
}

.m2-5e {
  margin: 2.5em !important;
}

.mt2-5e {
  margin-top: 2.5em !important;
}

.mr2-5e {
  margin-right: 2.5em !important;
}

.mb2-5e {
  margin-bottom: 2.5em !important;
}

.ml2-5e {
  margin-left: 2.5em !important;
}

.m2-75e {
  margin: 2.75em !important;
}

.mt2-75e {
  margin-top: 2.75em !important;
}

.mr2-75e {
  margin-right: 2.75em !important;
}

.mb2-75e {
  margin-bottom: 2.75em !important;
}

.ml2-75e {
  margin-left: 2.75em !important;
}

.m3e {
  margin: 3em !important;
}

.mt3e {
  margin-top: 3em !important;
}

.mr3e {
  margin-right: 3em !important;
}

.mb3e {
  margin-bottom: 3em !important;
}

.ml3e {
  margin-left: 3em !important;
}

.m3-25e {
  margin: 3.25em !important;
}

.mt3-25e {
  margin-top: 3.25em !important;
}

.mr3-25e {
  margin-right: 3.25em !important;
}

.mb3-25e {
  margin-bottom: 3.25em !important;
}

.ml3-25e {
  margin-left: 3.25em !important;
}

.m3-5e {
  margin: 3.5em !important;
}

.mt3-5e {
  margin-top: 3.5em !important;
}

.mr3-5e {
  margin-right: 3.5em !important;
}

.mb3-5e {
  margin-bottom: 3.5em !important;
}

.ml3-5e {
  margin-left: 3.5em !important;
}

.m3-75e {
  margin: 3.75em !important;
}

.mt3-75e {
  margin-top: 3.75em !important;
}

.mr3-75e {
  margin-right: 3.75em !important;
}

.mb3-75e {
  margin-bottom: 3.75em !important;
}

.ml3-75e {
  margin-left: 3.75em !important;
}

.m4e {
  margin: 4em !important;
}

.mt4e {
  margin-top: 4em !important;
}

.mr4e {
  margin-right: 4em !important;
}

.mb4e {
  margin-bottom: 4em !important;
}

.ml4e {
  margin-left: 4em !important;
}

.m4-25e {
  margin: 4.25em !important;
}

.mt4-25e {
  margin-top: 4.25em !important;
}

.mr4-25e {
  margin-right: 4.25em !important;
}

.mb4-25e {
  margin-bottom: 4.25em !important;
}

.ml4-25e {
  margin-left: 4.25em !important;
}

.m4-5e {
  margin: 4.5em !important;
}

.mt4-5e {
  margin-top: 4.5em !important;
}

.mr4-5e {
  margin-right: 4.5em !important;
}

.mb4-5e {
  margin-bottom: 4.5em !important;
}

.ml4-5e {
  margin-left: 4.5em !important;
}

.m4-75e {
  margin: 4.75em !important;
}

.mt4-75e {
  margin-top: 4.75em !important;
}

.mr4-75e {
  margin-right: 4.75em !important;
}

.mb4-75e {
  margin-bottom: 4.75em !important;
}

.ml4-75e {
  margin-left: 4.75em !important;
}

.m5e {
  margin: 5em !important;
}

.mt5e {
  margin-top: 5em !important;
}

.mr5e {
  margin-right: 5em !important;
}

.mb5e {
  margin-bottom: 5em !important;
}

.ml5e {
  margin-left: 5em !important;
}

.m5-25e {
  margin: 5.25em !important;
}

.mt5-25e {
  margin-top: 5.25em !important;
}

.mr5-25e {
  margin-right: 5.25em !important;
}

.mb5-25e {
  margin-bottom: 5.25em !important;
}

.ml5-25e {
  margin-left: 5.25em !important;
}

.m5-5e {
  margin: 5.5em !important;
}

.mt5-5e {
  margin-top: 5.5em !important;
}

.mr5-5e {
  margin-right: 5.5em !important;
}

.mb5-5e {
  margin-bottom: 5.5em !important;
}

.ml5-5e {
  margin-left: 5.5em !important;
}

.m5-75e {
  margin: 5.75em !important;
}

.mt5-75e {
  margin-top: 5.75em !important;
}

.mr5-75e {
  margin-right: 5.75em !important;
}

.mb5-75e {
  margin-bottom: 5.75em !important;
}

.ml5-75e {
  margin-left: 5.75em !important;
}

.m6e {
  margin: 6em !important;
}

.mt6e {
  margin-top: 6em !important;
}

.mr6e {
  margin-right: 6em !important;
}

.mb6e {
  margin-bottom: 6em !important;
}

.ml6e {
  margin-left: 6em !important;
}

.m6-25e {
  margin: 6.25em !important;
}

.mt6-25e {
  margin-top: 6.25em !important;
}

.mr6-25e {
  margin-right: 6.25em !important;
}

.mb6-25e {
  margin-bottom: 6.25em !important;
}

.ml6-25e {
  margin-left: 6.25em !important;
}

.m6-5e {
  margin: 6.5em !important;
}

.mt6-5e {
  margin-top: 6.5em !important;
}

.mr6-5e {
  margin-right: 6.5em !important;
}

.mb6-5e {
  margin-bottom: 6.5em !important;
}

.ml6-5e {
  margin-left: 6.5em !important;
}

.m6-75e {
  margin: 6.75em !important;
}

.mt6-75e {
  margin-top: 6.75em !important;
}

.mr6-75e {
  margin-right: 6.75em !important;
}

.mb6-75e {
  margin-bottom: 6.75em !important;
}

.ml6-75e {
  margin-left: 6.75em !important;
}

.m7e {
  margin: 7em !important;
}

.mt7e {
  margin-top: 7em !important;
}

.mr7e {
  margin-right: 7em !important;
}

.mb7e {
  margin-bottom: 7em !important;
}

.ml7e {
  margin-left: 7em !important;
}

.m7-25e {
  margin: 7.25em !important;
}

.mt7-25e {
  margin-top: 7.25em !important;
}

.mr7-25e {
  margin-right: 7.25em !important;
}

.mb7-25e {
  margin-bottom: 7.25em !important;
}

.ml7-25e {
  margin-left: 7.25em !important;
}

.m7-5e {
  margin: 7.5em !important;
}

.mt7-5e {
  margin-top: 7.5em !important;
}

.mr7-5e {
  margin-right: 7.5em !important;
}

.mb7-5e {
  margin-bottom: 7.5em !important;
}

.ml7-5e {
  margin-left: 7.5em !important;
}

.m7-75e {
  margin: 7.75em !important;
}

.mt7-75e {
  margin-top: 7.75em !important;
}

.mr7-75e {
  margin-right: 7.75em !important;
}

.mb7-75e {
  margin-bottom: 7.75em !important;
}

.ml7-75e {
  margin-left: 7.75em !important;
}

.m8e {
  margin: 8em !important;
}

.mt8e {
  margin-top: 8em !important;
}

.mr8e {
  margin-right: 8em !important;
}

.mb8e {
  margin-bottom: 8em !important;
}

.ml8e {
  margin-left: 8em !important;
}

.m8-25e {
  margin: 8.25em !important;
}

.mt8-25e {
  margin-top: 8.25em !important;
}

.mr8-25e {
  margin-right: 8.25em !important;
}

.mb8-25e {
  margin-bottom: 8.25em !important;
}

.ml8-25e {
  margin-left: 8.25em !important;
}

.m8-5e {
  margin: 8.5em !important;
}

.mt8-5e {
  margin-top: 8.5em !important;
}

.mr8-5e {
  margin-right: 8.5em !important;
}

.mb8-5e {
  margin-bottom: 8.5em !important;
}

.ml8-5e {
  margin-left: 8.5em !important;
}

.m8-75e {
  margin: 8.75em !important;
}

.mt8-75e {
  margin-top: 8.75em !important;
}

.mr8-75e {
  margin-right: 8.75em !important;
}

.mb8-75e {
  margin-bottom: 8.75em !important;
}

.ml8-75e {
  margin-left: 8.75em !important;
}

.m9e {
  margin: 9em !important;
}

.mt9e {
  margin-top: 9em !important;
}

.mr9e {
  margin-right: 9em !important;
}

.mb9e {
  margin-bottom: 9em !important;
}

.ml9e {
  margin-left: 9em !important;
}

.m9-25e {
  margin: 9.25em !important;
}

.mt9-25e {
  margin-top: 9.25em !important;
}

.mr9-25e {
  margin-right: 9.25em !important;
}

.mb9-25e {
  margin-bottom: 9.25em !important;
}

.ml9-25e {
  margin-left: 9.25em !important;
}

.m9-5e {
  margin: 9.5em !important;
}

.mt9-5e {
  margin-top: 9.5em !important;
}

.mr9-5e {
  margin-right: 9.5em !important;
}

.mb9-5e {
  margin-bottom: 9.5em !important;
}

.ml9-5e {
  margin-left: 9.5em !important;
}

.m9-75e {
  margin: 9.75em !important;
}

.mt9-75e {
  margin-top: 9.75em !important;
}

.mr9-75e {
  margin-right: 9.75em !important;
}

.mb9-75e {
  margin-bottom: 9.75em !important;
}

.ml9-75e {
  margin-left: 9.75em !important;
}

.m10e {
  margin: 10em !important;
}

.mt10e {
  margin-top: 10em !important;
}

.mr10e {
  margin-right: 10em !important;
}

.mb10e {
  margin-bottom: 10em !important;
}

.ml10e {
  margin-left: 10em !important;
}

.m10-25e {
  margin: 10.25em !important;
}

.mt10-25e {
  margin-top: 10.25em !important;
}

.mr10-25e {
  margin-right: 10.25em !important;
}

.mb10-25e {
  margin-bottom: 10.25em !important;
}

.ml10-25e {
  margin-left: 10.25em !important;
}

.m10-5e {
  margin: 10.5em !important;
}

.mt10-5e {
  margin-top: 10.5em !important;
}

.mr10-5e {
  margin-right: 10.5em !important;
}

.mb10-5e {
  margin-bottom: 10.5em !important;
}

.ml10-5e {
  margin-left: 10.5em !important;
}

.m10-75e {
  margin: 10.75em !important;
}

.mt10-75e {
  margin-top: 10.75em !important;
}

.mr10-75e {
  margin-right: 10.75em !important;
}

.mb10-75e {
  margin-bottom: 10.75em !important;
}

.ml10-75e {
  margin-left: 10.75em !important;
}

.m11e {
  margin: 11em !important;
}

.mt11e {
  margin-top: 11em !important;
}

.mr11e {
  margin-right: 11em !important;
}

.mb11e {
  margin-bottom: 11em !important;
}

.ml11e {
  margin-left: 11em !important;
}

.m11-25e {
  margin: 11.25em !important;
}

.mt11-25e {
  margin-top: 11.25em !important;
}

.mr11-25e {
  margin-right: 11.25em !important;
}

.mb11-25e {
  margin-bottom: 11.25em !important;
}

.ml11-25e {
  margin-left: 11.25em !important;
}

.m11-5e {
  margin: 11.5em !important;
}

.mt11-5e {
  margin-top: 11.5em !important;
}

.mr11-5e {
  margin-right: 11.5em !important;
}

.mb11-5e {
  margin-bottom: 11.5em !important;
}

.ml11-5e {
  margin-left: 11.5em !important;
}

.m11-75e {
  margin: 11.75em !important;
}

.mt11-75e {
  margin-top: 11.75em !important;
}

.mr11-75e {
  margin-right: 11.75em !important;
}

.mb11-75e {
  margin-bottom: 11.75em !important;
}

.ml11-75e {
  margin-left: 11.75em !important;
}

.m12e {
  margin: 12em !important;
}

.mt12e {
  margin-top: 12em !important;
}

.mr12e {
  margin-right: 12em !important;
}

.mb12e {
  margin-bottom: 12em !important;
}

.ml12e {
  margin-left: 12em !important;
}

.m12-25e {
  margin: 12.25em !important;
}

.mt12-25e {
  margin-top: 12.25em !important;
}

.mr12-25e {
  margin-right: 12.25em !important;
}

.mb12-25e {
  margin-bottom: 12.25em !important;
}

.ml12-25e {
  margin-left: 12.25em !important;
}

.m12-5e {
  margin: 12.5em !important;
}

.mt12-5e {
  margin-top: 12.5em !important;
}

.mr12-5e {
  margin-right: 12.5em !important;
}

.mb12-5e {
  margin-bottom: 12.5em !important;
}

.ml12-5e {
  margin-left: 12.5em !important;
}

.m12-75e {
  margin: 12.75em !important;
}

.mt12-75e {
  margin-top: 12.75em !important;
}

.mr12-75e {
  margin-right: 12.75em !important;
}

.mb12-75e {
  margin-bottom: 12.75em !important;
}

.ml12-75e {
  margin-left: 12.75em !important;
}

.m13e {
  margin: 13em !important;
}

.mt13e {
  margin-top: 13em !important;
}

.mr13e {
  margin-right: 13em !important;
}

.mb13e {
  margin-bottom: 13em !important;
}

.ml13e {
  margin-left: 13em !important;
}

.m13-25e {
  margin: 13.25em !important;
}

.mt13-25e {
  margin-top: 13.25em !important;
}

.mr13-25e {
  margin-right: 13.25em !important;
}

.mb13-25e {
  margin-bottom: 13.25em !important;
}

.ml13-25e {
  margin-left: 13.25em !important;
}

.m13-5e {
  margin: 13.5em !important;
}

.mt13-5e {
  margin-top: 13.5em !important;
}

.mr13-5e {
  margin-right: 13.5em !important;
}

.mb13-5e {
  margin-bottom: 13.5em !important;
}

.ml13-5e {
  margin-left: 13.5em !important;
}

.m13-75e {
  margin: 13.75em !important;
}

.mt13-75e {
  margin-top: 13.75em !important;
}

.mr13-75e {
  margin-right: 13.75em !important;
}

.mb13-75e {
  margin-bottom: 13.75em !important;
}

.ml13-75e {
  margin-left: 13.75em !important;
}

.m14e {
  margin: 14em !important;
}

.mt14e {
  margin-top: 14em !important;
}

.mr14e {
  margin-right: 14em !important;
}

.mb14e {
  margin-bottom: 14em !important;
}

.ml14e {
  margin-left: 14em !important;
}

.m14-25e {
  margin: 14.25em !important;
}

.mt14-25e {
  margin-top: 14.25em !important;
}

.mr14-25e {
  margin-right: 14.25em !important;
}

.mb14-25e {
  margin-bottom: 14.25em !important;
}

.ml14-25e {
  margin-left: 14.25em !important;
}

.m14-5e {
  margin: 14.5em !important;
}

.mt14-5e {
  margin-top: 14.5em !important;
}

.mr14-5e {
  margin-right: 14.5em !important;
}

.mb14-5e {
  margin-bottom: 14.5em !important;
}

.ml14-5e {
  margin-left: 14.5em !important;
}

.m14-75e {
  margin: 14.75em !important;
}

.mt14-75e {
  margin-top: 14.75em !important;
}

.mr14-75e {
  margin-right: 14.75em !important;
}

.mb14-75e {
  margin-bottom: 14.75em !important;
}

.ml14-75e {
  margin-left: 14.75em !important;
}

.m15e {
  margin: 15em !important;
}

.mt15e {
  margin-top: 15em !important;
}

.mr15e {
  margin-right: 15em !important;
}

.mb15e {
  margin-bottom: 15em !important;
}

.ml15e {
  margin-left: 15em !important;
}

.m15-25e {
  margin: 15.25em !important;
}

.mt15-25e {
  margin-top: 15.25em !important;
}

.mr15-25e {
  margin-right: 15.25em !important;
}

.mb15-25e {
  margin-bottom: 15.25em !important;
}

.ml15-25e {
  margin-left: 15.25em !important;
}

.m15-5e {
  margin: 15.5em !important;
}

.mt15-5e {
  margin-top: 15.5em !important;
}

.mr15-5e {
  margin-right: 15.5em !important;
}

.mb15-5e {
  margin-bottom: 15.5em !important;
}

.ml15-5e {
  margin-left: 15.5em !important;
}

.m15-75e {
  margin: 15.75em !important;
}

.mt15-75e {
  margin-top: 15.75em !important;
}

.mr15-75e {
  margin-right: 15.75em !important;
}

.mb15-75e {
  margin-bottom: 15.75em !important;
}

.ml15-75e {
  margin-left: 15.75em !important;
}

.m16e {
  margin: 16em !important;
}

.mt16e {
  margin-top: 16em !important;
}

.mr16e {
  margin-right: 16em !important;
}

.mb16e {
  margin-bottom: 16em !important;
}

.ml16e {
  margin-left: 16em !important;
}

.m16-25e {
  margin: 16.25em !important;
}

.mt16-25e {
  margin-top: 16.25em !important;
}

.mr16-25e {
  margin-right: 16.25em !important;
}

.mb16-25e {
  margin-bottom: 16.25em !important;
}

.ml16-25e {
  margin-left: 16.25em !important;
}

.m16-5e {
  margin: 16.5em !important;
}

.mt16-5e {
  margin-top: 16.5em !important;
}

.mr16-5e {
  margin-right: 16.5em !important;
}

.mb16-5e {
  margin-bottom: 16.5em !important;
}

.ml16-5e {
  margin-left: 16.5em !important;
}

.m16-75e {
  margin: 16.75em !important;
}

.mt16-75e {
  margin-top: 16.75em !important;
}

.mr16-75e {
  margin-right: 16.75em !important;
}

.mb16-75e {
  margin-bottom: 16.75em !important;
}

.ml16-75e {
  margin-left: 16.75em !important;
}

.m17e {
  margin: 17em !important;
}

.mt17e {
  margin-top: 17em !important;
}

.mr17e {
  margin-right: 17em !important;
}

.mb17e {
  margin-bottom: 17em !important;
}

.ml17e {
  margin-left: 17em !important;
}

.m17-25e {
  margin: 17.25em !important;
}

.mt17-25e {
  margin-top: 17.25em !important;
}

.mr17-25e {
  margin-right: 17.25em !important;
}

.mb17-25e {
  margin-bottom: 17.25em !important;
}

.ml17-25e {
  margin-left: 17.25em !important;
}

.m17-5e {
  margin: 17.5em !important;
}

.mt17-5e {
  margin-top: 17.5em !important;
}

.mr17-5e {
  margin-right: 17.5em !important;
}

.mb17-5e {
  margin-bottom: 17.5em !important;
}

.ml17-5e {
  margin-left: 17.5em !important;
}

.m17-75e {
  margin: 17.75em !important;
}

.mt17-75e {
  margin-top: 17.75em !important;
}

.mr17-75e {
  margin-right: 17.75em !important;
}

.mb17-75e {
  margin-bottom: 17.75em !important;
}

.ml17-75e {
  margin-left: 17.75em !important;
}

.m18e {
  margin: 18em !important;
}

.mt18e {
  margin-top: 18em !important;
}

.mr18e {
  margin-right: 18em !important;
}

.mb18e {
  margin-bottom: 18em !important;
}

.ml18e {
  margin-left: 18em !important;
}

.m18-25e {
  margin: 18.25em !important;
}

.mt18-25e {
  margin-top: 18.25em !important;
}

.mr18-25e {
  margin-right: 18.25em !important;
}

.mb18-25e {
  margin-bottom: 18.25em !important;
}

.ml18-25e {
  margin-left: 18.25em !important;
}

.m18-5e {
  margin: 18.5em !important;
}

.mt18-5e {
  margin-top: 18.5em !important;
}

.mr18-5e {
  margin-right: 18.5em !important;
}

.mb18-5e {
  margin-bottom: 18.5em !important;
}

.ml18-5e {
  margin-left: 18.5em !important;
}

.m18-75e {
  margin: 18.75em !important;
}

.mt18-75e {
  margin-top: 18.75em !important;
}

.mr18-75e {
  margin-right: 18.75em !important;
}

.mb18-75e {
  margin-bottom: 18.75em !important;
}

.ml18-75e {
  margin-left: 18.75em !important;
}

.m19e {
  margin: 19em !important;
}

.mt19e {
  margin-top: 19em !important;
}

.mr19e {
  margin-right: 19em !important;
}

.mb19e {
  margin-bottom: 19em !important;
}

.ml19e {
  margin-left: 19em !important;
}

.m19-25e {
  margin: 19.25em !important;
}

.mt19-25e {
  margin-top: 19.25em !important;
}

.mr19-25e {
  margin-right: 19.25em !important;
}

.mb19-25e {
  margin-bottom: 19.25em !important;
}

.ml19-25e {
  margin-left: 19.25em !important;
}

.m19-5e {
  margin: 19.5em !important;
}

.mt19-5e {
  margin-top: 19.5em !important;
}

.mr19-5e {
  margin-right: 19.5em !important;
}

.mb19-5e {
  margin-bottom: 19.5em !important;
}

.ml19-5e {
  margin-left: 19.5em !important;
}

.m19-75e {
  margin: 19.75em !important;
}

.mt19-75e {
  margin-top: 19.75em !important;
}

.mr19-75e {
  margin-right: 19.75em !important;
}

.mb19-75e {
  margin-bottom: 19.75em !important;
}

.ml19-75e {
  margin-left: 19.75em !important;
}

.m20e {
  margin: 20em !important;
}

.mt20e {
  margin-top: 20em !important;
}

.mr20e {
  margin-right: 20em !important;
}

.mb20e {
  margin-bottom: 20em !important;
}

.ml20e {
  margin-left: 20em !important;
}

@media (width > 768px) {
  .md\:m0 {
    margin: 0px !important;
  }
  .md\:mt0 {
    margin-top: 0px !important;
  }
  .md\:mr0 {
    margin-right: 0px !important;
  }
  .md\:mb0 {
    margin-bottom: 0px !important;
  }
  .lg\:ml0 {
    margin-left: 0px !important;
  }
  .md\:m5 {
    margin: 5px !important;
  }
  .md\:mt5 {
    margin-top: 5px !important;
  }
  .md\:mr5 {
    margin-right: 5px !important;
  }
  .md\:mb5 {
    margin-bottom: 5px !important;
  }
  .lg\:ml5 {
    margin-left: 5px !important;
  }
  .md\:m10 {
    margin: 10px !important;
  }
  .md\:mt10 {
    margin-top: 10px !important;
  }
  .md\:mr10 {
    margin-right: 10px !important;
  }
  .md\:mb10 {
    margin-bottom: 10px !important;
  }
  .lg\:ml10 {
    margin-left: 10px !important;
  }
  .md\:m15 {
    margin: 15px !important;
  }
  .md\:mt15 {
    margin-top: 15px !important;
  }
  .md\:mr15 {
    margin-right: 15px !important;
  }
  .md\:mb15 {
    margin-bottom: 15px !important;
  }
  .lg\:ml15 {
    margin-left: 15px !important;
  }
  .md\:m20 {
    margin: 20px !important;
  }
  .md\:mt20 {
    margin-top: 20px !important;
  }
  .md\:mr20 {
    margin-right: 20px !important;
  }
  .md\:mb20 {
    margin-bottom: 20px !important;
  }
  .lg\:ml20 {
    margin-left: 20px !important;
  }
  .md\:m25 {
    margin: 25px !important;
  }
  .md\:mt25 {
    margin-top: 25px !important;
  }
  .md\:mr25 {
    margin-right: 25px !important;
  }
  .md\:mb25 {
    margin-bottom: 25px !important;
  }
  .lg\:ml25 {
    margin-left: 25px !important;
  }
  .md\:m30 {
    margin: 30px !important;
  }
  .md\:mt30 {
    margin-top: 30px !important;
  }
  .md\:mr30 {
    margin-right: 30px !important;
  }
  .md\:mb30 {
    margin-bottom: 30px !important;
  }
  .lg\:ml30 {
    margin-left: 30px !important;
  }
  .md\:m35 {
    margin: 35px !important;
  }
  .md\:mt35 {
    margin-top: 35px !important;
  }
  .md\:mr35 {
    margin-right: 35px !important;
  }
  .md\:mb35 {
    margin-bottom: 35px !important;
  }
  .lg\:ml35 {
    margin-left: 35px !important;
  }
  .md\:m40 {
    margin: 40px !important;
  }
  .md\:mt40 {
    margin-top: 40px !important;
  }
  .md\:mr40 {
    margin-right: 40px !important;
  }
  .md\:mb40 {
    margin-bottom: 40px !important;
  }
  .lg\:ml40 {
    margin-left: 40px !important;
  }
  .md\:m45 {
    margin: 45px !important;
  }
  .md\:mt45 {
    margin-top: 45px !important;
  }
  .md\:mr45 {
    margin-right: 45px !important;
  }
  .md\:mb45 {
    margin-bottom: 45px !important;
  }
  .lg\:ml45 {
    margin-left: 45px !important;
  }
  .md\:m50 {
    margin: 50px !important;
  }
  .md\:mt50 {
    margin-top: 50px !important;
  }
  .md\:mr50 {
    margin-right: 50px !important;
  }
  .md\:mb50 {
    margin-bottom: 50px !important;
  }
  .lg\:ml50 {
    margin-left: 50px !important;
  }
  .md\:m55 {
    margin: 55px !important;
  }
  .md\:mt55 {
    margin-top: 55px !important;
  }
  .md\:mr55 {
    margin-right: 55px !important;
  }
  .md\:mb55 {
    margin-bottom: 55px !important;
  }
  .lg\:ml55 {
    margin-left: 55px !important;
  }
  .md\:m60 {
    margin: 60px !important;
  }
  .md\:mt60 {
    margin-top: 60px !important;
  }
  .md\:mr60 {
    margin-right: 60px !important;
  }
  .md\:mb60 {
    margin-bottom: 60px !important;
  }
  .lg\:ml60 {
    margin-left: 60px !important;
  }
  .md\:m65 {
    margin: 65px !important;
  }
  .md\:mt65 {
    margin-top: 65px !important;
  }
  .md\:mr65 {
    margin-right: 65px !important;
  }
  .md\:mb65 {
    margin-bottom: 65px !important;
  }
  .lg\:ml65 {
    margin-left: 65px !important;
  }
  .md\:m70 {
    margin: 70px !important;
  }
  .md\:mt70 {
    margin-top: 70px !important;
  }
  .md\:mr70 {
    margin-right: 70px !important;
  }
  .md\:mb70 {
    margin-bottom: 70px !important;
  }
  .lg\:ml70 {
    margin-left: 70px !important;
  }
  .md\:m75 {
    margin: 75px !important;
  }
  .md\:mt75 {
    margin-top: 75px !important;
  }
  .md\:mr75 {
    margin-right: 75px !important;
  }
  .md\:mb75 {
    margin-bottom: 75px !important;
  }
  .lg\:ml75 {
    margin-left: 75px !important;
  }
  .md\:m80 {
    margin: 80px !important;
  }
  .md\:mt80 {
    margin-top: 80px !important;
  }
  .md\:mr80 {
    margin-right: 80px !important;
  }
  .md\:mb80 {
    margin-bottom: 80px !important;
  }
  .lg\:ml80 {
    margin-left: 80px !important;
  }
  .md\:m85 {
    margin: 85px !important;
  }
  .md\:mt85 {
    margin-top: 85px !important;
  }
  .md\:mr85 {
    margin-right: 85px !important;
  }
  .md\:mb85 {
    margin-bottom: 85px !important;
  }
  .lg\:ml85 {
    margin-left: 85px !important;
  }
  .md\:m90 {
    margin: 90px !important;
  }
  .md\:mt90 {
    margin-top: 90px !important;
  }
  .md\:mr90 {
    margin-right: 90px !important;
  }
  .md\:mb90 {
    margin-bottom: 90px !important;
  }
  .lg\:ml90 {
    margin-left: 90px !important;
  }
  .md\:m95 {
    margin: 95px !important;
  }
  .md\:mt95 {
    margin-top: 95px !important;
  }
  .md\:mr95 {
    margin-right: 95px !important;
  }
  .md\:mb95 {
    margin-bottom: 95px !important;
  }
  .lg\:ml95 {
    margin-left: 95px !important;
  }
  .md\:m100 {
    margin: 100px !important;
  }
  .md\:mt100 {
    margin-top: 100px !important;
  }
  .md\:mr100 {
    margin-right: 100px !important;
  }
  .md\:mb100 {
    margin-bottom: 100px !important;
  }
  .lg\:ml100 {
    margin-left: 100px !important;
  }
  .md\:m0-25e {
    margin: 0.25em !important;
  }
  .md\:mt0-25e {
    margin-top: 0.25em !important;
  }
  .md\:mr0-25e {
    margin-right: 0.25em !important;
  }
  .md\:mb0-25e {
    margin-bottom: 0.25em !important;
  }
  .md\:ml0-25e {
    margin-left: 0.25em !important;
  }
  .md\:m0-5e {
    margin: 0.5em !important;
  }
  .md\:mt0-5e {
    margin-top: 0.5em !important;
  }
  .md\:mr0-5e {
    margin-right: 0.5em !important;
  }
  .md\:mb0-5e {
    margin-bottom: 0.5em !important;
  }
  .md\:ml0-5e {
    margin-left: 0.5em !important;
  }
  .md\:m0-75e {
    margin: 0.75em !important;
  }
  .md\:mt0-75e {
    margin-top: 0.75em !important;
  }
  .md\:mr0-75e {
    margin-right: 0.75em !important;
  }
  .md\:mb0-75e {
    margin-bottom: 0.75em !important;
  }
  .md\:ml0-75e {
    margin-left: 0.75em !important;
  }
  .md\:m1e {
    margin: 1em !important;
  }
  .md\:mt1e {
    margin-top: 1em !important;
  }
  .md\:mr1e {
    margin-right: 1em !important;
  }
  .md\:mb1e {
    margin-bottom: 1em !important;
  }
  .md\:ml1e {
    margin-left: 1em !important;
  }
  .md\:m1-25e {
    margin: 1.25em !important;
  }
  .md\:mt1-25e {
    margin-top: 1.25em !important;
  }
  .md\:mr1-25e {
    margin-right: 1.25em !important;
  }
  .md\:mb1-25e {
    margin-bottom: 1.25em !important;
  }
  .md\:ml1-25e {
    margin-left: 1.25em !important;
  }
  .md\:m1-5e {
    margin: 1.5em !important;
  }
  .md\:mt1-5e {
    margin-top: 1.5em !important;
  }
  .md\:mr1-5e {
    margin-right: 1.5em !important;
  }
  .md\:mb1-5e {
    margin-bottom: 1.5em !important;
  }
  .md\:ml1-5e {
    margin-left: 1.5em !important;
  }
  .md\:m1-75e {
    margin: 1.75em !important;
  }
  .md\:mt1-75e {
    margin-top: 1.75em !important;
  }
  .md\:mr1-75e {
    margin-right: 1.75em !important;
  }
  .md\:mb1-75e {
    margin-bottom: 1.75em !important;
  }
  .md\:ml1-75e {
    margin-left: 1.75em !important;
  }
  .md\:m2e {
    margin: 2em !important;
  }
  .md\:mt2e {
    margin-top: 2em !important;
  }
  .md\:mr2e {
    margin-right: 2em !important;
  }
  .md\:mb2e {
    margin-bottom: 2em !important;
  }
  .md\:ml2e {
    margin-left: 2em !important;
  }
  .md\:m2-25e {
    margin: 2.25em !important;
  }
  .md\:mt2-25e {
    margin-top: 2.25em !important;
  }
  .md\:mr2-25e {
    margin-right: 2.25em !important;
  }
  .md\:mb2-25e {
    margin-bottom: 2.25em !important;
  }
  .md\:ml2-25e {
    margin-left: 2.25em !important;
  }
  .md\:m2-5e {
    margin: 2.5em !important;
  }
  .md\:mt2-5e {
    margin-top: 2.5em !important;
  }
  .md\:mr2-5e {
    margin-right: 2.5em !important;
  }
  .md\:mb2-5e {
    margin-bottom: 2.5em !important;
  }
  .md\:ml2-5e {
    margin-left: 2.5em !important;
  }
  .md\:m2-75e {
    margin: 2.75em !important;
  }
  .md\:mt2-75e {
    margin-top: 2.75em !important;
  }
  .md\:mr2-75e {
    margin-right: 2.75em !important;
  }
  .md\:mb2-75e {
    margin-bottom: 2.75em !important;
  }
  .md\:ml2-75e {
    margin-left: 2.75em !important;
  }
  .md\:m3e {
    margin: 3em !important;
  }
  .md\:mt3e {
    margin-top: 3em !important;
  }
  .md\:mr3e {
    margin-right: 3em !important;
  }
  .md\:mb3e {
    margin-bottom: 3em !important;
  }
  .md\:ml3e {
    margin-left: 3em !important;
  }
  .md\:m3-25e {
    margin: 3.25em !important;
  }
  .md\:mt3-25e {
    margin-top: 3.25em !important;
  }
  .md\:mr3-25e {
    margin-right: 3.25em !important;
  }
  .md\:mb3-25e {
    margin-bottom: 3.25em !important;
  }
  .md\:ml3-25e {
    margin-left: 3.25em !important;
  }
  .md\:m3-5e {
    margin: 3.5em !important;
  }
  .md\:mt3-5e {
    margin-top: 3.5em !important;
  }
  .md\:mr3-5e {
    margin-right: 3.5em !important;
  }
  .md\:mb3-5e {
    margin-bottom: 3.5em !important;
  }
  .md\:ml3-5e {
    margin-left: 3.5em !important;
  }
  .md\:m3-75e {
    margin: 3.75em !important;
  }
  .md\:mt3-75e {
    margin-top: 3.75em !important;
  }
  .md\:mr3-75e {
    margin-right: 3.75em !important;
  }
  .md\:mb3-75e {
    margin-bottom: 3.75em !important;
  }
  .md\:ml3-75e {
    margin-left: 3.75em !important;
  }
  .md\:m4e {
    margin: 4em !important;
  }
  .md\:mt4e {
    margin-top: 4em !important;
  }
  .md\:mr4e {
    margin-right: 4em !important;
  }
  .md\:mb4e {
    margin-bottom: 4em !important;
  }
  .md\:ml4e {
    margin-left: 4em !important;
  }
  .md\:m4-25e {
    margin: 4.25em !important;
  }
  .md\:mt4-25e {
    margin-top: 4.25em !important;
  }
  .md\:mr4-25e {
    margin-right: 4.25em !important;
  }
  .md\:mb4-25e {
    margin-bottom: 4.25em !important;
  }
  .md\:ml4-25e {
    margin-left: 4.25em !important;
  }
  .md\:m4-5e {
    margin: 4.5em !important;
  }
  .md\:mt4-5e {
    margin-top: 4.5em !important;
  }
  .md\:mr4-5e {
    margin-right: 4.5em !important;
  }
  .md\:mb4-5e {
    margin-bottom: 4.5em !important;
  }
  .md\:ml4-5e {
    margin-left: 4.5em !important;
  }
  .md\:m4-75e {
    margin: 4.75em !important;
  }
  .md\:mt4-75e {
    margin-top: 4.75em !important;
  }
  .md\:mr4-75e {
    margin-right: 4.75em !important;
  }
  .md\:mb4-75e {
    margin-bottom: 4.75em !important;
  }
  .md\:ml4-75e {
    margin-left: 4.75em !important;
  }
  .md\:m5e {
    margin: 5em !important;
  }
  .md\:mt5e {
    margin-top: 5em !important;
  }
  .md\:mr5e {
    margin-right: 5em !important;
  }
  .md\:mb5e {
    margin-bottom: 5em !important;
  }
  .md\:ml5e {
    margin-left: 5em !important;
  }
  .md\:m5-25e {
    margin: 5.25em !important;
  }
  .md\:mt5-25e {
    margin-top: 5.25em !important;
  }
  .md\:mr5-25e {
    margin-right: 5.25em !important;
  }
  .md\:mb5-25e {
    margin-bottom: 5.25em !important;
  }
  .md\:ml5-25e {
    margin-left: 5.25em !important;
  }
  .md\:m5-5e {
    margin: 5.5em !important;
  }
  .md\:mt5-5e {
    margin-top: 5.5em !important;
  }
  .md\:mr5-5e {
    margin-right: 5.5em !important;
  }
  .md\:mb5-5e {
    margin-bottom: 5.5em !important;
  }
  .md\:ml5-5e {
    margin-left: 5.5em !important;
  }
  .md\:m5-75e {
    margin: 5.75em !important;
  }
  .md\:mt5-75e {
    margin-top: 5.75em !important;
  }
  .md\:mr5-75e {
    margin-right: 5.75em !important;
  }
  .md\:mb5-75e {
    margin-bottom: 5.75em !important;
  }
  .md\:ml5-75e {
    margin-left: 5.75em !important;
  }
  .md\:m6e {
    margin: 6em !important;
  }
  .md\:mt6e {
    margin-top: 6em !important;
  }
  .md\:mr6e {
    margin-right: 6em !important;
  }
  .md\:mb6e {
    margin-bottom: 6em !important;
  }
  .md\:ml6e {
    margin-left: 6em !important;
  }
  .md\:m6-25e {
    margin: 6.25em !important;
  }
  .md\:mt6-25e {
    margin-top: 6.25em !important;
  }
  .md\:mr6-25e {
    margin-right: 6.25em !important;
  }
  .md\:mb6-25e {
    margin-bottom: 6.25em !important;
  }
  .md\:ml6-25e {
    margin-left: 6.25em !important;
  }
  .md\:m6-5e {
    margin: 6.5em !important;
  }
  .md\:mt6-5e {
    margin-top: 6.5em !important;
  }
  .md\:mr6-5e {
    margin-right: 6.5em !important;
  }
  .md\:mb6-5e {
    margin-bottom: 6.5em !important;
  }
  .md\:ml6-5e {
    margin-left: 6.5em !important;
  }
  .md\:m6-75e {
    margin: 6.75em !important;
  }
  .md\:mt6-75e {
    margin-top: 6.75em !important;
  }
  .md\:mr6-75e {
    margin-right: 6.75em !important;
  }
  .md\:mb6-75e {
    margin-bottom: 6.75em !important;
  }
  .md\:ml6-75e {
    margin-left: 6.75em !important;
  }
  .md\:m7e {
    margin: 7em !important;
  }
  .md\:mt7e {
    margin-top: 7em !important;
  }
  .md\:mr7e {
    margin-right: 7em !important;
  }
  .md\:mb7e {
    margin-bottom: 7em !important;
  }
  .md\:ml7e {
    margin-left: 7em !important;
  }
  .md\:m7-25e {
    margin: 7.25em !important;
  }
  .md\:mt7-25e {
    margin-top: 7.25em !important;
  }
  .md\:mr7-25e {
    margin-right: 7.25em !important;
  }
  .md\:mb7-25e {
    margin-bottom: 7.25em !important;
  }
  .md\:ml7-25e {
    margin-left: 7.25em !important;
  }
  .md\:m7-5e {
    margin: 7.5em !important;
  }
  .md\:mt7-5e {
    margin-top: 7.5em !important;
  }
  .md\:mr7-5e {
    margin-right: 7.5em !important;
  }
  .md\:mb7-5e {
    margin-bottom: 7.5em !important;
  }
  .md\:ml7-5e {
    margin-left: 7.5em !important;
  }
  .md\:m7-75e {
    margin: 7.75em !important;
  }
  .md\:mt7-75e {
    margin-top: 7.75em !important;
  }
  .md\:mr7-75e {
    margin-right: 7.75em !important;
  }
  .md\:mb7-75e {
    margin-bottom: 7.75em !important;
  }
  .md\:ml7-75e {
    margin-left: 7.75em !important;
  }
  .md\:m8e {
    margin: 8em !important;
  }
  .md\:mt8e {
    margin-top: 8em !important;
  }
  .md\:mr8e {
    margin-right: 8em !important;
  }
  .md\:mb8e {
    margin-bottom: 8em !important;
  }
  .md\:ml8e {
    margin-left: 8em !important;
  }
  .md\:m8-25e {
    margin: 8.25em !important;
  }
  .md\:mt8-25e {
    margin-top: 8.25em !important;
  }
  .md\:mr8-25e {
    margin-right: 8.25em !important;
  }
  .md\:mb8-25e {
    margin-bottom: 8.25em !important;
  }
  .md\:ml8-25e {
    margin-left: 8.25em !important;
  }
  .md\:m8-5e {
    margin: 8.5em !important;
  }
  .md\:mt8-5e {
    margin-top: 8.5em !important;
  }
  .md\:mr8-5e {
    margin-right: 8.5em !important;
  }
  .md\:mb8-5e {
    margin-bottom: 8.5em !important;
  }
  .md\:ml8-5e {
    margin-left: 8.5em !important;
  }
  .md\:m8-75e {
    margin: 8.75em !important;
  }
  .md\:mt8-75e {
    margin-top: 8.75em !important;
  }
  .md\:mr8-75e {
    margin-right: 8.75em !important;
  }
  .md\:mb8-75e {
    margin-bottom: 8.75em !important;
  }
  .md\:ml8-75e {
    margin-left: 8.75em !important;
  }
  .md\:m9e {
    margin: 9em !important;
  }
  .md\:mt9e {
    margin-top: 9em !important;
  }
  .md\:mr9e {
    margin-right: 9em !important;
  }
  .md\:mb9e {
    margin-bottom: 9em !important;
  }
  .md\:ml9e {
    margin-left: 9em !important;
  }
  .md\:m9-25e {
    margin: 9.25em !important;
  }
  .md\:mt9-25e {
    margin-top: 9.25em !important;
  }
  .md\:mr9-25e {
    margin-right: 9.25em !important;
  }
  .md\:mb9-25e {
    margin-bottom: 9.25em !important;
  }
  .md\:ml9-25e {
    margin-left: 9.25em !important;
  }
  .md\:m9-5e {
    margin: 9.5em !important;
  }
  .md\:mt9-5e {
    margin-top: 9.5em !important;
  }
  .md\:mr9-5e {
    margin-right: 9.5em !important;
  }
  .md\:mb9-5e {
    margin-bottom: 9.5em !important;
  }
  .md\:ml9-5e {
    margin-left: 9.5em !important;
  }
  .md\:m9-75e {
    margin: 9.75em !important;
  }
  .md\:mt9-75e {
    margin-top: 9.75em !important;
  }
  .md\:mr9-75e {
    margin-right: 9.75em !important;
  }
  .md\:mb9-75e {
    margin-bottom: 9.75em !important;
  }
  .md\:ml9-75e {
    margin-left: 9.75em !important;
  }
  .md\:m10e {
    margin: 10em !important;
  }
  .md\:mt10e {
    margin-top: 10em !important;
  }
  .md\:mr10e {
    margin-right: 10em !important;
  }
  .md\:mb10e {
    margin-bottom: 10em !important;
  }
  .md\:ml10e {
    margin-left: 10em !important;
  }
  .md\:m10-25e {
    margin: 10.25em !important;
  }
  .md\:mt10-25e {
    margin-top: 10.25em !important;
  }
  .md\:mr10-25e {
    margin-right: 10.25em !important;
  }
  .md\:mb10-25e {
    margin-bottom: 10.25em !important;
  }
  .md\:ml10-25e {
    margin-left: 10.25em !important;
  }
  .md\:m10-5e {
    margin: 10.5em !important;
  }
  .md\:mt10-5e {
    margin-top: 10.5em !important;
  }
  .md\:mr10-5e {
    margin-right: 10.5em !important;
  }
  .md\:mb10-5e {
    margin-bottom: 10.5em !important;
  }
  .md\:ml10-5e {
    margin-left: 10.5em !important;
  }
  .md\:m10-75e {
    margin: 10.75em !important;
  }
  .md\:mt10-75e {
    margin-top: 10.75em !important;
  }
  .md\:mr10-75e {
    margin-right: 10.75em !important;
  }
  .md\:mb10-75e {
    margin-bottom: 10.75em !important;
  }
  .md\:ml10-75e {
    margin-left: 10.75em !important;
  }
  .md\:m11e {
    margin: 11em !important;
  }
  .md\:mt11e {
    margin-top: 11em !important;
  }
  .md\:mr11e {
    margin-right: 11em !important;
  }
  .md\:mb11e {
    margin-bottom: 11em !important;
  }
  .md\:ml11e {
    margin-left: 11em !important;
  }
  .md\:m11-25e {
    margin: 11.25em !important;
  }
  .md\:mt11-25e {
    margin-top: 11.25em !important;
  }
  .md\:mr11-25e {
    margin-right: 11.25em !important;
  }
  .md\:mb11-25e {
    margin-bottom: 11.25em !important;
  }
  .md\:ml11-25e {
    margin-left: 11.25em !important;
  }
  .md\:m11-5e {
    margin: 11.5em !important;
  }
  .md\:mt11-5e {
    margin-top: 11.5em !important;
  }
  .md\:mr11-5e {
    margin-right: 11.5em !important;
  }
  .md\:mb11-5e {
    margin-bottom: 11.5em !important;
  }
  .md\:ml11-5e {
    margin-left: 11.5em !important;
  }
  .md\:m11-75e {
    margin: 11.75em !important;
  }
  .md\:mt11-75e {
    margin-top: 11.75em !important;
  }
  .md\:mr11-75e {
    margin-right: 11.75em !important;
  }
  .md\:mb11-75e {
    margin-bottom: 11.75em !important;
  }
  .md\:ml11-75e {
    margin-left: 11.75em !important;
  }
  .md\:m12e {
    margin: 12em !important;
  }
  .md\:mt12e {
    margin-top: 12em !important;
  }
  .md\:mr12e {
    margin-right: 12em !important;
  }
  .md\:mb12e {
    margin-bottom: 12em !important;
  }
  .md\:ml12e {
    margin-left: 12em !important;
  }
  .md\:m12-25e {
    margin: 12.25em !important;
  }
  .md\:mt12-25e {
    margin-top: 12.25em !important;
  }
  .md\:mr12-25e {
    margin-right: 12.25em !important;
  }
  .md\:mb12-25e {
    margin-bottom: 12.25em !important;
  }
  .md\:ml12-25e {
    margin-left: 12.25em !important;
  }
  .md\:m12-5e {
    margin: 12.5em !important;
  }
  .md\:mt12-5e {
    margin-top: 12.5em !important;
  }
  .md\:mr12-5e {
    margin-right: 12.5em !important;
  }
  .md\:mb12-5e {
    margin-bottom: 12.5em !important;
  }
  .md\:ml12-5e {
    margin-left: 12.5em !important;
  }
  .md\:m12-75e {
    margin: 12.75em !important;
  }
  .md\:mt12-75e {
    margin-top: 12.75em !important;
  }
  .md\:mr12-75e {
    margin-right: 12.75em !important;
  }
  .md\:mb12-75e {
    margin-bottom: 12.75em !important;
  }
  .md\:ml12-75e {
    margin-left: 12.75em !important;
  }
  .md\:m13e {
    margin: 13em !important;
  }
  .md\:mt13e {
    margin-top: 13em !important;
  }
  .md\:mr13e {
    margin-right: 13em !important;
  }
  .md\:mb13e {
    margin-bottom: 13em !important;
  }
  .md\:ml13e {
    margin-left: 13em !important;
  }
  .md\:m13-25e {
    margin: 13.25em !important;
  }
  .md\:mt13-25e {
    margin-top: 13.25em !important;
  }
  .md\:mr13-25e {
    margin-right: 13.25em !important;
  }
  .md\:mb13-25e {
    margin-bottom: 13.25em !important;
  }
  .md\:ml13-25e {
    margin-left: 13.25em !important;
  }
  .md\:m13-5e {
    margin: 13.5em !important;
  }
  .md\:mt13-5e {
    margin-top: 13.5em !important;
  }
  .md\:mr13-5e {
    margin-right: 13.5em !important;
  }
  .md\:mb13-5e {
    margin-bottom: 13.5em !important;
  }
  .md\:ml13-5e {
    margin-left: 13.5em !important;
  }
  .md\:m13-75e {
    margin: 13.75em !important;
  }
  .md\:mt13-75e {
    margin-top: 13.75em !important;
  }
  .md\:mr13-75e {
    margin-right: 13.75em !important;
  }
  .md\:mb13-75e {
    margin-bottom: 13.75em !important;
  }
  .md\:ml13-75e {
    margin-left: 13.75em !important;
  }
  .md\:m14e {
    margin: 14em !important;
  }
  .md\:mt14e {
    margin-top: 14em !important;
  }
  .md\:mr14e {
    margin-right: 14em !important;
  }
  .md\:mb14e {
    margin-bottom: 14em !important;
  }
  .md\:ml14e {
    margin-left: 14em !important;
  }
  .md\:m14-25e {
    margin: 14.25em !important;
  }
  .md\:mt14-25e {
    margin-top: 14.25em !important;
  }
  .md\:mr14-25e {
    margin-right: 14.25em !important;
  }
  .md\:mb14-25e {
    margin-bottom: 14.25em !important;
  }
  .md\:ml14-25e {
    margin-left: 14.25em !important;
  }
  .md\:m14-5e {
    margin: 14.5em !important;
  }
  .md\:mt14-5e {
    margin-top: 14.5em !important;
  }
  .md\:mr14-5e {
    margin-right: 14.5em !important;
  }
  .md\:mb14-5e {
    margin-bottom: 14.5em !important;
  }
  .md\:ml14-5e {
    margin-left: 14.5em !important;
  }
  .md\:m14-75e {
    margin: 14.75em !important;
  }
  .md\:mt14-75e {
    margin-top: 14.75em !important;
  }
  .md\:mr14-75e {
    margin-right: 14.75em !important;
  }
  .md\:mb14-75e {
    margin-bottom: 14.75em !important;
  }
  .md\:ml14-75e {
    margin-left: 14.75em !important;
  }
  .md\:m15e {
    margin: 15em !important;
  }
  .md\:mt15e {
    margin-top: 15em !important;
  }
  .md\:mr15e {
    margin-right: 15em !important;
  }
  .md\:mb15e {
    margin-bottom: 15em !important;
  }
  .md\:ml15e {
    margin-left: 15em !important;
  }
  .md\:m15-25e {
    margin: 15.25em !important;
  }
  .md\:mt15-25e {
    margin-top: 15.25em !important;
  }
  .md\:mr15-25e {
    margin-right: 15.25em !important;
  }
  .md\:mb15-25e {
    margin-bottom: 15.25em !important;
  }
  .md\:ml15-25e {
    margin-left: 15.25em !important;
  }
  .md\:m15-5e {
    margin: 15.5em !important;
  }
  .md\:mt15-5e {
    margin-top: 15.5em !important;
  }
  .md\:mr15-5e {
    margin-right: 15.5em !important;
  }
  .md\:mb15-5e {
    margin-bottom: 15.5em !important;
  }
  .md\:ml15-5e {
    margin-left: 15.5em !important;
  }
  .md\:m15-75e {
    margin: 15.75em !important;
  }
  .md\:mt15-75e {
    margin-top: 15.75em !important;
  }
  .md\:mr15-75e {
    margin-right: 15.75em !important;
  }
  .md\:mb15-75e {
    margin-bottom: 15.75em !important;
  }
  .md\:ml15-75e {
    margin-left: 15.75em !important;
  }
  .md\:m16e {
    margin: 16em !important;
  }
  .md\:mt16e {
    margin-top: 16em !important;
  }
  .md\:mr16e {
    margin-right: 16em !important;
  }
  .md\:mb16e {
    margin-bottom: 16em !important;
  }
  .md\:ml16e {
    margin-left: 16em !important;
  }
  .md\:m16-25e {
    margin: 16.25em !important;
  }
  .md\:mt16-25e {
    margin-top: 16.25em !important;
  }
  .md\:mr16-25e {
    margin-right: 16.25em !important;
  }
  .md\:mb16-25e {
    margin-bottom: 16.25em !important;
  }
  .md\:ml16-25e {
    margin-left: 16.25em !important;
  }
  .md\:m16-5e {
    margin: 16.5em !important;
  }
  .md\:mt16-5e {
    margin-top: 16.5em !important;
  }
  .md\:mr16-5e {
    margin-right: 16.5em !important;
  }
  .md\:mb16-5e {
    margin-bottom: 16.5em !important;
  }
  .md\:ml16-5e {
    margin-left: 16.5em !important;
  }
  .md\:m16-75e {
    margin: 16.75em !important;
  }
  .md\:mt16-75e {
    margin-top: 16.75em !important;
  }
  .md\:mr16-75e {
    margin-right: 16.75em !important;
  }
  .md\:mb16-75e {
    margin-bottom: 16.75em !important;
  }
  .md\:ml16-75e {
    margin-left: 16.75em !important;
  }
  .md\:m17e {
    margin: 17em !important;
  }
  .md\:mt17e {
    margin-top: 17em !important;
  }
  .md\:mr17e {
    margin-right: 17em !important;
  }
  .md\:mb17e {
    margin-bottom: 17em !important;
  }
  .md\:ml17e {
    margin-left: 17em !important;
  }
  .md\:m17-25e {
    margin: 17.25em !important;
  }
  .md\:mt17-25e {
    margin-top: 17.25em !important;
  }
  .md\:mr17-25e {
    margin-right: 17.25em !important;
  }
  .md\:mb17-25e {
    margin-bottom: 17.25em !important;
  }
  .md\:ml17-25e {
    margin-left: 17.25em !important;
  }
  .md\:m17-5e {
    margin: 17.5em !important;
  }
  .md\:mt17-5e {
    margin-top: 17.5em !important;
  }
  .md\:mr17-5e {
    margin-right: 17.5em !important;
  }
  .md\:mb17-5e {
    margin-bottom: 17.5em !important;
  }
  .md\:ml17-5e {
    margin-left: 17.5em !important;
  }
  .md\:m17-75e {
    margin: 17.75em !important;
  }
  .md\:mt17-75e {
    margin-top: 17.75em !important;
  }
  .md\:mr17-75e {
    margin-right: 17.75em !important;
  }
  .md\:mb17-75e {
    margin-bottom: 17.75em !important;
  }
  .md\:ml17-75e {
    margin-left: 17.75em !important;
  }
  .md\:m18e {
    margin: 18em !important;
  }
  .md\:mt18e {
    margin-top: 18em !important;
  }
  .md\:mr18e {
    margin-right: 18em !important;
  }
  .md\:mb18e {
    margin-bottom: 18em !important;
  }
  .md\:ml18e {
    margin-left: 18em !important;
  }
  .md\:m18-25e {
    margin: 18.25em !important;
  }
  .md\:mt18-25e {
    margin-top: 18.25em !important;
  }
  .md\:mr18-25e {
    margin-right: 18.25em !important;
  }
  .md\:mb18-25e {
    margin-bottom: 18.25em !important;
  }
  .md\:ml18-25e {
    margin-left: 18.25em !important;
  }
  .md\:m18-5e {
    margin: 18.5em !important;
  }
  .md\:mt18-5e {
    margin-top: 18.5em !important;
  }
  .md\:mr18-5e {
    margin-right: 18.5em !important;
  }
  .md\:mb18-5e {
    margin-bottom: 18.5em !important;
  }
  .md\:ml18-5e {
    margin-left: 18.5em !important;
  }
  .md\:m18-75e {
    margin: 18.75em !important;
  }
  .md\:mt18-75e {
    margin-top: 18.75em !important;
  }
  .md\:mr18-75e {
    margin-right: 18.75em !important;
  }
  .md\:mb18-75e {
    margin-bottom: 18.75em !important;
  }
  .md\:ml18-75e {
    margin-left: 18.75em !important;
  }
  .md\:m19e {
    margin: 19em !important;
  }
  .md\:mt19e {
    margin-top: 19em !important;
  }
  .md\:mr19e {
    margin-right: 19em !important;
  }
  .md\:mb19e {
    margin-bottom: 19em !important;
  }
  .md\:ml19e {
    margin-left: 19em !important;
  }
  .md\:m19-25e {
    margin: 19.25em !important;
  }
  .md\:mt19-25e {
    margin-top: 19.25em !important;
  }
  .md\:mr19-25e {
    margin-right: 19.25em !important;
  }
  .md\:mb19-25e {
    margin-bottom: 19.25em !important;
  }
  .md\:ml19-25e {
    margin-left: 19.25em !important;
  }
  .md\:m19-5e {
    margin: 19.5em !important;
  }
  .md\:mt19-5e {
    margin-top: 19.5em !important;
  }
  .md\:mr19-5e {
    margin-right: 19.5em !important;
  }
  .md\:mb19-5e {
    margin-bottom: 19.5em !important;
  }
  .md\:ml19-5e {
    margin-left: 19.5em !important;
  }
  .md\:m19-75e {
    margin: 19.75em !important;
  }
  .md\:mt19-75e {
    margin-top: 19.75em !important;
  }
  .md\:mr19-75e {
    margin-right: 19.75em !important;
  }
  .md\:mb19-75e {
    margin-bottom: 19.75em !important;
  }
  .md\:ml19-75e {
    margin-left: 19.75em !important;
  }
  .md\:m20e {
    margin: 20em !important;
  }
  .md\:mt20e {
    margin-top: 20em !important;
  }
  .md\:mr20e {
    margin-right: 20em !important;
  }
  .md\:mb20e {
    margin-bottom: 20em !important;
  }
  .md\:ml20e {
    margin-left: 20em !important;
  }
}
@media (width > 1024px) {
  .lg\:m0 {
    margin: 0px !important;
  }
  .lg\:mt0 {
    margin-top: 0px !important;
  }
  .lg\:mr0 {
    margin-right: 0px !important;
  }
  .lg\:mb0 {
    margin-bottom: 0px !important;
  }
  .lg\:ml0 {
    margin-left: 0px !important;
  }
  .lg\:m5 {
    margin: 5px !important;
  }
  .lg\:mt5 {
    margin-top: 5px !important;
  }
  .lg\:mr5 {
    margin-right: 5px !important;
  }
  .lg\:mb5 {
    margin-bottom: 5px !important;
  }
  .lg\:ml5 {
    margin-left: 5px !important;
  }
  .lg\:m10 {
    margin: 10px !important;
  }
  .lg\:mt10 {
    margin-top: 10px !important;
  }
  .lg\:mr10 {
    margin-right: 10px !important;
  }
  .lg\:mb10 {
    margin-bottom: 10px !important;
  }
  .lg\:ml10 {
    margin-left: 10px !important;
  }
  .lg\:m15 {
    margin: 15px !important;
  }
  .lg\:mt15 {
    margin-top: 15px !important;
  }
  .lg\:mr15 {
    margin-right: 15px !important;
  }
  .lg\:mb15 {
    margin-bottom: 15px !important;
  }
  .lg\:ml15 {
    margin-left: 15px !important;
  }
  .lg\:m20 {
    margin: 20px !important;
  }
  .lg\:mt20 {
    margin-top: 20px !important;
  }
  .lg\:mr20 {
    margin-right: 20px !important;
  }
  .lg\:mb20 {
    margin-bottom: 20px !important;
  }
  .lg\:ml20 {
    margin-left: 20px !important;
  }
  .lg\:m25 {
    margin: 25px !important;
  }
  .lg\:mt25 {
    margin-top: 25px !important;
  }
  .lg\:mr25 {
    margin-right: 25px !important;
  }
  .lg\:mb25 {
    margin-bottom: 25px !important;
  }
  .lg\:ml25 {
    margin-left: 25px !important;
  }
  .lg\:m30 {
    margin: 30px !important;
  }
  .lg\:mt30 {
    margin-top: 30px !important;
  }
  .lg\:mr30 {
    margin-right: 30px !important;
  }
  .lg\:mb30 {
    margin-bottom: 30px !important;
  }
  .lg\:ml30 {
    margin-left: 30px !important;
  }
  .lg\:m35 {
    margin: 35px !important;
  }
  .lg\:mt35 {
    margin-top: 35px !important;
  }
  .lg\:mr35 {
    margin-right: 35px !important;
  }
  .lg\:mb35 {
    margin-bottom: 35px !important;
  }
  .lg\:ml35 {
    margin-left: 35px !important;
  }
  .lg\:m40 {
    margin: 40px !important;
  }
  .lg\:mt40 {
    margin-top: 40px !important;
  }
  .lg\:mr40 {
    margin-right: 40px !important;
  }
  .lg\:mb40 {
    margin-bottom: 40px !important;
  }
  .lg\:ml40 {
    margin-left: 40px !important;
  }
  .lg\:m45 {
    margin: 45px !important;
  }
  .lg\:mt45 {
    margin-top: 45px !important;
  }
  .lg\:mr45 {
    margin-right: 45px !important;
  }
  .lg\:mb45 {
    margin-bottom: 45px !important;
  }
  .lg\:ml45 {
    margin-left: 45px !important;
  }
  .lg\:m50 {
    margin: 50px !important;
  }
  .lg\:mt50 {
    margin-top: 50px !important;
  }
  .lg\:mr50 {
    margin-right: 50px !important;
  }
  .lg\:mb50 {
    margin-bottom: 50px !important;
  }
  .lg\:ml50 {
    margin-left: 50px !important;
  }
  .lg\:m55 {
    margin: 55px !important;
  }
  .lg\:mt55 {
    margin-top: 55px !important;
  }
  .lg\:mr55 {
    margin-right: 55px !important;
  }
  .lg\:mb55 {
    margin-bottom: 55px !important;
  }
  .lg\:ml55 {
    margin-left: 55px !important;
  }
  .lg\:m60 {
    margin: 60px !important;
  }
  .lg\:mt60 {
    margin-top: 60px !important;
  }
  .lg\:mr60 {
    margin-right: 60px !important;
  }
  .lg\:mb60 {
    margin-bottom: 60px !important;
  }
  .lg\:ml60 {
    margin-left: 60px !important;
  }
  .lg\:m65 {
    margin: 65px !important;
  }
  .lg\:mt65 {
    margin-top: 65px !important;
  }
  .lg\:mr65 {
    margin-right: 65px !important;
  }
  .lg\:mb65 {
    margin-bottom: 65px !important;
  }
  .lg\:ml65 {
    margin-left: 65px !important;
  }
  .lg\:m70 {
    margin: 70px !important;
  }
  .lg\:mt70 {
    margin-top: 70px !important;
  }
  .lg\:mr70 {
    margin-right: 70px !important;
  }
  .lg\:mb70 {
    margin-bottom: 70px !important;
  }
  .lg\:ml70 {
    margin-left: 70px !important;
  }
  .lg\:m75 {
    margin: 75px !important;
  }
  .lg\:mt75 {
    margin-top: 75px !important;
  }
  .lg\:mr75 {
    margin-right: 75px !important;
  }
  .lg\:mb75 {
    margin-bottom: 75px !important;
  }
  .lg\:ml75 {
    margin-left: 75px !important;
  }
  .lg\:m80 {
    margin: 80px !important;
  }
  .lg\:mt80 {
    margin-top: 80px !important;
  }
  .lg\:mr80 {
    margin-right: 80px !important;
  }
  .lg\:mb80 {
    margin-bottom: 80px !important;
  }
  .lg\:ml80 {
    margin-left: 80px !important;
  }
  .lg\:m85 {
    margin: 85px !important;
  }
  .lg\:mt85 {
    margin-top: 85px !important;
  }
  .lg\:mr85 {
    margin-right: 85px !important;
  }
  .lg\:mb85 {
    margin-bottom: 85px !important;
  }
  .lg\:ml85 {
    margin-left: 85px !important;
  }
  .lg\:m90 {
    margin: 90px !important;
  }
  .lg\:mt90 {
    margin-top: 90px !important;
  }
  .lg\:mr90 {
    margin-right: 90px !important;
  }
  .lg\:mb90 {
    margin-bottom: 90px !important;
  }
  .lg\:ml90 {
    margin-left: 90px !important;
  }
  .lg\:m95 {
    margin: 95px !important;
  }
  .lg\:mt95 {
    margin-top: 95px !important;
  }
  .lg\:mr95 {
    margin-right: 95px !important;
  }
  .lg\:mb95 {
    margin-bottom: 95px !important;
  }
  .lg\:ml95 {
    margin-left: 95px !important;
  }
  .lg\:m100 {
    margin: 100px !important;
  }
  .lg\:mt100 {
    margin-top: 100px !important;
  }
  .lg\:mr100 {
    margin-right: 100px !important;
  }
  .lg\:mb100 {
    margin-bottom: 100px !important;
  }
  .lg\:ml100 {
    margin-left: 100px !important;
  }
  .lg\:m0-25e {
    margin: 0.25em !important;
  }
  .lg\:mt0-25e {
    margin-top: 0.25em !important;
  }
  .lg\:mr0-25e {
    margin-right: 0.25em !important;
  }
  .lg\:mb0-25e {
    margin-bottom: 0.25em !important;
  }
  .lg\:ml0-25e {
    margin-left: 0.25em !important;
  }
  .lg\:m0-5e {
    margin: 0.5em !important;
  }
  .lg\:mt0-5e {
    margin-top: 0.5em !important;
  }
  .lg\:mr0-5e {
    margin-right: 0.5em !important;
  }
  .lg\:mb0-5e {
    margin-bottom: 0.5em !important;
  }
  .lg\:ml0-5e {
    margin-left: 0.5em !important;
  }
  .lg\:m0-75e {
    margin: 0.75em !important;
  }
  .lg\:mt0-75e {
    margin-top: 0.75em !important;
  }
  .lg\:mr0-75e {
    margin-right: 0.75em !important;
  }
  .lg\:mb0-75e {
    margin-bottom: 0.75em !important;
  }
  .lg\:ml0-75e {
    margin-left: 0.75em !important;
  }
  .lg\:m1e {
    margin: 1em !important;
  }
  .lg\:mt1e {
    margin-top: 1em !important;
  }
  .lg\:mr1e {
    margin-right: 1em !important;
  }
  .lg\:mb1e {
    margin-bottom: 1em !important;
  }
  .lg\:ml1e {
    margin-left: 1em !important;
  }
  .lg\:m1-25e {
    margin: 1.25em !important;
  }
  .lg\:mt1-25e {
    margin-top: 1.25em !important;
  }
  .lg\:mr1-25e {
    margin-right: 1.25em !important;
  }
  .lg\:mb1-25e {
    margin-bottom: 1.25em !important;
  }
  .lg\:ml1-25e {
    margin-left: 1.25em !important;
  }
  .lg\:m1-5e {
    margin: 1.5em !important;
  }
  .lg\:mt1-5e {
    margin-top: 1.5em !important;
  }
  .lg\:mr1-5e {
    margin-right: 1.5em !important;
  }
  .lg\:mb1-5e {
    margin-bottom: 1.5em !important;
  }
  .lg\:ml1-5e {
    margin-left: 1.5em !important;
  }
  .lg\:m1-75e {
    margin: 1.75em !important;
  }
  .lg\:mt1-75e {
    margin-top: 1.75em !important;
  }
  .lg\:mr1-75e {
    margin-right: 1.75em !important;
  }
  .lg\:mb1-75e {
    margin-bottom: 1.75em !important;
  }
  .lg\:ml1-75e {
    margin-left: 1.75em !important;
  }
  .lg\:m2e {
    margin: 2em !important;
  }
  .lg\:mt2e {
    margin-top: 2em !important;
  }
  .lg\:mr2e {
    margin-right: 2em !important;
  }
  .lg\:mb2e {
    margin-bottom: 2em !important;
  }
  .lg\:ml2e {
    margin-left: 2em !important;
  }
  .lg\:m2-25e {
    margin: 2.25em !important;
  }
  .lg\:mt2-25e {
    margin-top: 2.25em !important;
  }
  .lg\:mr2-25e {
    margin-right: 2.25em !important;
  }
  .lg\:mb2-25e {
    margin-bottom: 2.25em !important;
  }
  .lg\:ml2-25e {
    margin-left: 2.25em !important;
  }
  .lg\:m2-5e {
    margin: 2.5em !important;
  }
  .lg\:mt2-5e {
    margin-top: 2.5em !important;
  }
  .lg\:mr2-5e {
    margin-right: 2.5em !important;
  }
  .lg\:mb2-5e {
    margin-bottom: 2.5em !important;
  }
  .lg\:ml2-5e {
    margin-left: 2.5em !important;
  }
  .lg\:m2-75e {
    margin: 2.75em !important;
  }
  .lg\:mt2-75e {
    margin-top: 2.75em !important;
  }
  .lg\:mr2-75e {
    margin-right: 2.75em !important;
  }
  .lg\:mb2-75e {
    margin-bottom: 2.75em !important;
  }
  .lg\:ml2-75e {
    margin-left: 2.75em !important;
  }
  .lg\:m3e {
    margin: 3em !important;
  }
  .lg\:mt3e {
    margin-top: 3em !important;
  }
  .lg\:mr3e {
    margin-right: 3em !important;
  }
  .lg\:mb3e {
    margin-bottom: 3em !important;
  }
  .lg\:ml3e {
    margin-left: 3em !important;
  }
  .lg\:m3-25e {
    margin: 3.25em !important;
  }
  .lg\:mt3-25e {
    margin-top: 3.25em !important;
  }
  .lg\:mr3-25e {
    margin-right: 3.25em !important;
  }
  .lg\:mb3-25e {
    margin-bottom: 3.25em !important;
  }
  .lg\:ml3-25e {
    margin-left: 3.25em !important;
  }
  .lg\:m3-5e {
    margin: 3.5em !important;
  }
  .lg\:mt3-5e {
    margin-top: 3.5em !important;
  }
  .lg\:mr3-5e {
    margin-right: 3.5em !important;
  }
  .lg\:mb3-5e {
    margin-bottom: 3.5em !important;
  }
  .lg\:ml3-5e {
    margin-left: 3.5em !important;
  }
  .lg\:m3-75e {
    margin: 3.75em !important;
  }
  .lg\:mt3-75e {
    margin-top: 3.75em !important;
  }
  .lg\:mr3-75e {
    margin-right: 3.75em !important;
  }
  .lg\:mb3-75e {
    margin-bottom: 3.75em !important;
  }
  .lg\:ml3-75e {
    margin-left: 3.75em !important;
  }
  .lg\:m4e {
    margin: 4em !important;
  }
  .lg\:mt4e {
    margin-top: 4em !important;
  }
  .lg\:mr4e {
    margin-right: 4em !important;
  }
  .lg\:mb4e {
    margin-bottom: 4em !important;
  }
  .lg\:ml4e {
    margin-left: 4em !important;
  }
  .lg\:m4-25e {
    margin: 4.25em !important;
  }
  .lg\:mt4-25e {
    margin-top: 4.25em !important;
  }
  .lg\:mr4-25e {
    margin-right: 4.25em !important;
  }
  .lg\:mb4-25e {
    margin-bottom: 4.25em !important;
  }
  .lg\:ml4-25e {
    margin-left: 4.25em !important;
  }
  .lg\:m4-5e {
    margin: 4.5em !important;
  }
  .lg\:mt4-5e {
    margin-top: 4.5em !important;
  }
  .lg\:mr4-5e {
    margin-right: 4.5em !important;
  }
  .lg\:mb4-5e {
    margin-bottom: 4.5em !important;
  }
  .lg\:ml4-5e {
    margin-left: 4.5em !important;
  }
  .lg\:m4-75e {
    margin: 4.75em !important;
  }
  .lg\:mt4-75e {
    margin-top: 4.75em !important;
  }
  .lg\:mr4-75e {
    margin-right: 4.75em !important;
  }
  .lg\:mb4-75e {
    margin-bottom: 4.75em !important;
  }
  .lg\:ml4-75e {
    margin-left: 4.75em !important;
  }
  .lg\:m5e {
    margin: 5em !important;
  }
  .lg\:mt5e {
    margin-top: 5em !important;
  }
  .lg\:mr5e {
    margin-right: 5em !important;
  }
  .lg\:mb5e {
    margin-bottom: 5em !important;
  }
  .lg\:ml5e {
    margin-left: 5em !important;
  }
  .lg\:m5-25e {
    margin: 5.25em !important;
  }
  .lg\:mt5-25e {
    margin-top: 5.25em !important;
  }
  .lg\:mr5-25e {
    margin-right: 5.25em !important;
  }
  .lg\:mb5-25e {
    margin-bottom: 5.25em !important;
  }
  .lg\:ml5-25e {
    margin-left: 5.25em !important;
  }
  .lg\:m5-5e {
    margin: 5.5em !important;
  }
  .lg\:mt5-5e {
    margin-top: 5.5em !important;
  }
  .lg\:mr5-5e {
    margin-right: 5.5em !important;
  }
  .lg\:mb5-5e {
    margin-bottom: 5.5em !important;
  }
  .lg\:ml5-5e {
    margin-left: 5.5em !important;
  }
  .lg\:m5-75e {
    margin: 5.75em !important;
  }
  .lg\:mt5-75e {
    margin-top: 5.75em !important;
  }
  .lg\:mr5-75e {
    margin-right: 5.75em !important;
  }
  .lg\:mb5-75e {
    margin-bottom: 5.75em !important;
  }
  .lg\:ml5-75e {
    margin-left: 5.75em !important;
  }
  .lg\:m6e {
    margin: 6em !important;
  }
  .lg\:mt6e {
    margin-top: 6em !important;
  }
  .lg\:mr6e {
    margin-right: 6em !important;
  }
  .lg\:mb6e {
    margin-bottom: 6em !important;
  }
  .lg\:ml6e {
    margin-left: 6em !important;
  }
  .lg\:m6-25e {
    margin: 6.25em !important;
  }
  .lg\:mt6-25e {
    margin-top: 6.25em !important;
  }
  .lg\:mr6-25e {
    margin-right: 6.25em !important;
  }
  .lg\:mb6-25e {
    margin-bottom: 6.25em !important;
  }
  .lg\:ml6-25e {
    margin-left: 6.25em !important;
  }
  .lg\:m6-5e {
    margin: 6.5em !important;
  }
  .lg\:mt6-5e {
    margin-top: 6.5em !important;
  }
  .lg\:mr6-5e {
    margin-right: 6.5em !important;
  }
  .lg\:mb6-5e {
    margin-bottom: 6.5em !important;
  }
  .lg\:ml6-5e {
    margin-left: 6.5em !important;
  }
  .lg\:m6-75e {
    margin: 6.75em !important;
  }
  .lg\:mt6-75e {
    margin-top: 6.75em !important;
  }
  .lg\:mr6-75e {
    margin-right: 6.75em !important;
  }
  .lg\:mb6-75e {
    margin-bottom: 6.75em !important;
  }
  .lg\:ml6-75e {
    margin-left: 6.75em !important;
  }
  .lg\:m7e {
    margin: 7em !important;
  }
  .lg\:mt7e {
    margin-top: 7em !important;
  }
  .lg\:mr7e {
    margin-right: 7em !important;
  }
  .lg\:mb7e {
    margin-bottom: 7em !important;
  }
  .lg\:ml7e {
    margin-left: 7em !important;
  }
  .lg\:m7-25e {
    margin: 7.25em !important;
  }
  .lg\:mt7-25e {
    margin-top: 7.25em !important;
  }
  .lg\:mr7-25e {
    margin-right: 7.25em !important;
  }
  .lg\:mb7-25e {
    margin-bottom: 7.25em !important;
  }
  .lg\:ml7-25e {
    margin-left: 7.25em !important;
  }
  .lg\:m7-5e {
    margin: 7.5em !important;
  }
  .lg\:mt7-5e {
    margin-top: 7.5em !important;
  }
  .lg\:mr7-5e {
    margin-right: 7.5em !important;
  }
  .lg\:mb7-5e {
    margin-bottom: 7.5em !important;
  }
  .lg\:ml7-5e {
    margin-left: 7.5em !important;
  }
  .lg\:m7-75e {
    margin: 7.75em !important;
  }
  .lg\:mt7-75e {
    margin-top: 7.75em !important;
  }
  .lg\:mr7-75e {
    margin-right: 7.75em !important;
  }
  .lg\:mb7-75e {
    margin-bottom: 7.75em !important;
  }
  .lg\:ml7-75e {
    margin-left: 7.75em !important;
  }
  .lg\:m8e {
    margin: 8em !important;
  }
  .lg\:mt8e {
    margin-top: 8em !important;
  }
  .lg\:mr8e {
    margin-right: 8em !important;
  }
  .lg\:mb8e {
    margin-bottom: 8em !important;
  }
  .lg\:ml8e {
    margin-left: 8em !important;
  }
  .lg\:m8-25e {
    margin: 8.25em !important;
  }
  .lg\:mt8-25e {
    margin-top: 8.25em !important;
  }
  .lg\:mr8-25e {
    margin-right: 8.25em !important;
  }
  .lg\:mb8-25e {
    margin-bottom: 8.25em !important;
  }
  .lg\:ml8-25e {
    margin-left: 8.25em !important;
  }
  .lg\:m8-5e {
    margin: 8.5em !important;
  }
  .lg\:mt8-5e {
    margin-top: 8.5em !important;
  }
  .lg\:mr8-5e {
    margin-right: 8.5em !important;
  }
  .lg\:mb8-5e {
    margin-bottom: 8.5em !important;
  }
  .lg\:ml8-5e {
    margin-left: 8.5em !important;
  }
  .lg\:m8-75e {
    margin: 8.75em !important;
  }
  .lg\:mt8-75e {
    margin-top: 8.75em !important;
  }
  .lg\:mr8-75e {
    margin-right: 8.75em !important;
  }
  .lg\:mb8-75e {
    margin-bottom: 8.75em !important;
  }
  .lg\:ml8-75e {
    margin-left: 8.75em !important;
  }
  .lg\:m9e {
    margin: 9em !important;
  }
  .lg\:mt9e {
    margin-top: 9em !important;
  }
  .lg\:mr9e {
    margin-right: 9em !important;
  }
  .lg\:mb9e {
    margin-bottom: 9em !important;
  }
  .lg\:ml9e {
    margin-left: 9em !important;
  }
  .lg\:m9-25e {
    margin: 9.25em !important;
  }
  .lg\:mt9-25e {
    margin-top: 9.25em !important;
  }
  .lg\:mr9-25e {
    margin-right: 9.25em !important;
  }
  .lg\:mb9-25e {
    margin-bottom: 9.25em !important;
  }
  .lg\:ml9-25e {
    margin-left: 9.25em !important;
  }
  .lg\:m9-5e {
    margin: 9.5em !important;
  }
  .lg\:mt9-5e {
    margin-top: 9.5em !important;
  }
  .lg\:mr9-5e {
    margin-right: 9.5em !important;
  }
  .lg\:mb9-5e {
    margin-bottom: 9.5em !important;
  }
  .lg\:ml9-5e {
    margin-left: 9.5em !important;
  }
  .lg\:m9-75e {
    margin: 9.75em !important;
  }
  .lg\:mt9-75e {
    margin-top: 9.75em !important;
  }
  .lg\:mr9-75e {
    margin-right: 9.75em !important;
  }
  .lg\:mb9-75e {
    margin-bottom: 9.75em !important;
  }
  .lg\:ml9-75e {
    margin-left: 9.75em !important;
  }
  .lg\:m10e {
    margin: 10em !important;
  }
  .lg\:mt10e {
    margin-top: 10em !important;
  }
  .lg\:mr10e {
    margin-right: 10em !important;
  }
  .lg\:mb10e {
    margin-bottom: 10em !important;
  }
  .lg\:ml10e {
    margin-left: 10em !important;
  }
  .lg\:m10-25e {
    margin: 10.25em !important;
  }
  .lg\:mt10-25e {
    margin-top: 10.25em !important;
  }
  .lg\:mr10-25e {
    margin-right: 10.25em !important;
  }
  .lg\:mb10-25e {
    margin-bottom: 10.25em !important;
  }
  .lg\:ml10-25e {
    margin-left: 10.25em !important;
  }
  .lg\:m10-5e {
    margin: 10.5em !important;
  }
  .lg\:mt10-5e {
    margin-top: 10.5em !important;
  }
  .lg\:mr10-5e {
    margin-right: 10.5em !important;
  }
  .lg\:mb10-5e {
    margin-bottom: 10.5em !important;
  }
  .lg\:ml10-5e {
    margin-left: 10.5em !important;
  }
  .lg\:m10-75e {
    margin: 10.75em !important;
  }
  .lg\:mt10-75e {
    margin-top: 10.75em !important;
  }
  .lg\:mr10-75e {
    margin-right: 10.75em !important;
  }
  .lg\:mb10-75e {
    margin-bottom: 10.75em !important;
  }
  .lg\:ml10-75e {
    margin-left: 10.75em !important;
  }
  .lg\:m11e {
    margin: 11em !important;
  }
  .lg\:mt11e {
    margin-top: 11em !important;
  }
  .lg\:mr11e {
    margin-right: 11em !important;
  }
  .lg\:mb11e {
    margin-bottom: 11em !important;
  }
  .lg\:ml11e {
    margin-left: 11em !important;
  }
  .lg\:m11-25e {
    margin: 11.25em !important;
  }
  .lg\:mt11-25e {
    margin-top: 11.25em !important;
  }
  .lg\:mr11-25e {
    margin-right: 11.25em !important;
  }
  .lg\:mb11-25e {
    margin-bottom: 11.25em !important;
  }
  .lg\:ml11-25e {
    margin-left: 11.25em !important;
  }
  .lg\:m11-5e {
    margin: 11.5em !important;
  }
  .lg\:mt11-5e {
    margin-top: 11.5em !important;
  }
  .lg\:mr11-5e {
    margin-right: 11.5em !important;
  }
  .lg\:mb11-5e {
    margin-bottom: 11.5em !important;
  }
  .lg\:ml11-5e {
    margin-left: 11.5em !important;
  }
  .lg\:m11-75e {
    margin: 11.75em !important;
  }
  .lg\:mt11-75e {
    margin-top: 11.75em !important;
  }
  .lg\:mr11-75e {
    margin-right: 11.75em !important;
  }
  .lg\:mb11-75e {
    margin-bottom: 11.75em !important;
  }
  .lg\:ml11-75e {
    margin-left: 11.75em !important;
  }
  .lg\:m12e {
    margin: 12em !important;
  }
  .lg\:mt12e {
    margin-top: 12em !important;
  }
  .lg\:mr12e {
    margin-right: 12em !important;
  }
  .lg\:mb12e {
    margin-bottom: 12em !important;
  }
  .lg\:ml12e {
    margin-left: 12em !important;
  }
  .lg\:m12-25e {
    margin: 12.25em !important;
  }
  .lg\:mt12-25e {
    margin-top: 12.25em !important;
  }
  .lg\:mr12-25e {
    margin-right: 12.25em !important;
  }
  .lg\:mb12-25e {
    margin-bottom: 12.25em !important;
  }
  .lg\:ml12-25e {
    margin-left: 12.25em !important;
  }
  .lg\:m12-5e {
    margin: 12.5em !important;
  }
  .lg\:mt12-5e {
    margin-top: 12.5em !important;
  }
  .lg\:mr12-5e {
    margin-right: 12.5em !important;
  }
  .lg\:mb12-5e {
    margin-bottom: 12.5em !important;
  }
  .lg\:ml12-5e {
    margin-left: 12.5em !important;
  }
  .lg\:m12-75e {
    margin: 12.75em !important;
  }
  .lg\:mt12-75e {
    margin-top: 12.75em !important;
  }
  .lg\:mr12-75e {
    margin-right: 12.75em !important;
  }
  .lg\:mb12-75e {
    margin-bottom: 12.75em !important;
  }
  .lg\:ml12-75e {
    margin-left: 12.75em !important;
  }
  .lg\:m13e {
    margin: 13em !important;
  }
  .lg\:mt13e {
    margin-top: 13em !important;
  }
  .lg\:mr13e {
    margin-right: 13em !important;
  }
  .lg\:mb13e {
    margin-bottom: 13em !important;
  }
  .lg\:ml13e {
    margin-left: 13em !important;
  }
  .lg\:m13-25e {
    margin: 13.25em !important;
  }
  .lg\:mt13-25e {
    margin-top: 13.25em !important;
  }
  .lg\:mr13-25e {
    margin-right: 13.25em !important;
  }
  .lg\:mb13-25e {
    margin-bottom: 13.25em !important;
  }
  .lg\:ml13-25e {
    margin-left: 13.25em !important;
  }
  .lg\:m13-5e {
    margin: 13.5em !important;
  }
  .lg\:mt13-5e {
    margin-top: 13.5em !important;
  }
  .lg\:mr13-5e {
    margin-right: 13.5em !important;
  }
  .lg\:mb13-5e {
    margin-bottom: 13.5em !important;
  }
  .lg\:ml13-5e {
    margin-left: 13.5em !important;
  }
  .lg\:m13-75e {
    margin: 13.75em !important;
  }
  .lg\:mt13-75e {
    margin-top: 13.75em !important;
  }
  .lg\:mr13-75e {
    margin-right: 13.75em !important;
  }
  .lg\:mb13-75e {
    margin-bottom: 13.75em !important;
  }
  .lg\:ml13-75e {
    margin-left: 13.75em !important;
  }
  .lg\:m14e {
    margin: 14em !important;
  }
  .lg\:mt14e {
    margin-top: 14em !important;
  }
  .lg\:mr14e {
    margin-right: 14em !important;
  }
  .lg\:mb14e {
    margin-bottom: 14em !important;
  }
  .lg\:ml14e {
    margin-left: 14em !important;
  }
  .lg\:m14-25e {
    margin: 14.25em !important;
  }
  .lg\:mt14-25e {
    margin-top: 14.25em !important;
  }
  .lg\:mr14-25e {
    margin-right: 14.25em !important;
  }
  .lg\:mb14-25e {
    margin-bottom: 14.25em !important;
  }
  .lg\:ml14-25e {
    margin-left: 14.25em !important;
  }
  .lg\:m14-5e {
    margin: 14.5em !important;
  }
  .lg\:mt14-5e {
    margin-top: 14.5em !important;
  }
  .lg\:mr14-5e {
    margin-right: 14.5em !important;
  }
  .lg\:mb14-5e {
    margin-bottom: 14.5em !important;
  }
  .lg\:ml14-5e {
    margin-left: 14.5em !important;
  }
  .lg\:m14-75e {
    margin: 14.75em !important;
  }
  .lg\:mt14-75e {
    margin-top: 14.75em !important;
  }
  .lg\:mr14-75e {
    margin-right: 14.75em !important;
  }
  .lg\:mb14-75e {
    margin-bottom: 14.75em !important;
  }
  .lg\:ml14-75e {
    margin-left: 14.75em !important;
  }
  .lg\:m15e {
    margin: 15em !important;
  }
  .lg\:mt15e {
    margin-top: 15em !important;
  }
  .lg\:mr15e {
    margin-right: 15em !important;
  }
  .lg\:mb15e {
    margin-bottom: 15em !important;
  }
  .lg\:ml15e {
    margin-left: 15em !important;
  }
  .lg\:m15-25e {
    margin: 15.25em !important;
  }
  .lg\:mt15-25e {
    margin-top: 15.25em !important;
  }
  .lg\:mr15-25e {
    margin-right: 15.25em !important;
  }
  .lg\:mb15-25e {
    margin-bottom: 15.25em !important;
  }
  .lg\:ml15-25e {
    margin-left: 15.25em !important;
  }
  .lg\:m15-5e {
    margin: 15.5em !important;
  }
  .lg\:mt15-5e {
    margin-top: 15.5em !important;
  }
  .lg\:mr15-5e {
    margin-right: 15.5em !important;
  }
  .lg\:mb15-5e {
    margin-bottom: 15.5em !important;
  }
  .lg\:ml15-5e {
    margin-left: 15.5em !important;
  }
  .lg\:m15-75e {
    margin: 15.75em !important;
  }
  .lg\:mt15-75e {
    margin-top: 15.75em !important;
  }
  .lg\:mr15-75e {
    margin-right: 15.75em !important;
  }
  .lg\:mb15-75e {
    margin-bottom: 15.75em !important;
  }
  .lg\:ml15-75e {
    margin-left: 15.75em !important;
  }
  .lg\:m16e {
    margin: 16em !important;
  }
  .lg\:mt16e {
    margin-top: 16em !important;
  }
  .lg\:mr16e {
    margin-right: 16em !important;
  }
  .lg\:mb16e {
    margin-bottom: 16em !important;
  }
  .lg\:ml16e {
    margin-left: 16em !important;
  }
  .lg\:m16-25e {
    margin: 16.25em !important;
  }
  .lg\:mt16-25e {
    margin-top: 16.25em !important;
  }
  .lg\:mr16-25e {
    margin-right: 16.25em !important;
  }
  .lg\:mb16-25e {
    margin-bottom: 16.25em !important;
  }
  .lg\:ml16-25e {
    margin-left: 16.25em !important;
  }
  .lg\:m16-5e {
    margin: 16.5em !important;
  }
  .lg\:mt16-5e {
    margin-top: 16.5em !important;
  }
  .lg\:mr16-5e {
    margin-right: 16.5em !important;
  }
  .lg\:mb16-5e {
    margin-bottom: 16.5em !important;
  }
  .lg\:ml16-5e {
    margin-left: 16.5em !important;
  }
  .lg\:m16-75e {
    margin: 16.75em !important;
  }
  .lg\:mt16-75e {
    margin-top: 16.75em !important;
  }
  .lg\:mr16-75e {
    margin-right: 16.75em !important;
  }
  .lg\:mb16-75e {
    margin-bottom: 16.75em !important;
  }
  .lg\:ml16-75e {
    margin-left: 16.75em !important;
  }
  .lg\:m17e {
    margin: 17em !important;
  }
  .lg\:mt17e {
    margin-top: 17em !important;
  }
  .lg\:mr17e {
    margin-right: 17em !important;
  }
  .lg\:mb17e {
    margin-bottom: 17em !important;
  }
  .lg\:ml17e {
    margin-left: 17em !important;
  }
  .lg\:m17-25e {
    margin: 17.25em !important;
  }
  .lg\:mt17-25e {
    margin-top: 17.25em !important;
  }
  .lg\:mr17-25e {
    margin-right: 17.25em !important;
  }
  .lg\:mb17-25e {
    margin-bottom: 17.25em !important;
  }
  .lg\:ml17-25e {
    margin-left: 17.25em !important;
  }
  .lg\:m17-5e {
    margin: 17.5em !important;
  }
  .lg\:mt17-5e {
    margin-top: 17.5em !important;
  }
  .lg\:mr17-5e {
    margin-right: 17.5em !important;
  }
  .lg\:mb17-5e {
    margin-bottom: 17.5em !important;
  }
  .lg\:ml17-5e {
    margin-left: 17.5em !important;
  }
  .lg\:m17-75e {
    margin: 17.75em !important;
  }
  .lg\:mt17-75e {
    margin-top: 17.75em !important;
  }
  .lg\:mr17-75e {
    margin-right: 17.75em !important;
  }
  .lg\:mb17-75e {
    margin-bottom: 17.75em !important;
  }
  .lg\:ml17-75e {
    margin-left: 17.75em !important;
  }
  .lg\:m18e {
    margin: 18em !important;
  }
  .lg\:mt18e {
    margin-top: 18em !important;
  }
  .lg\:mr18e {
    margin-right: 18em !important;
  }
  .lg\:mb18e {
    margin-bottom: 18em !important;
  }
  .lg\:ml18e {
    margin-left: 18em !important;
  }
  .lg\:m18-25e {
    margin: 18.25em !important;
  }
  .lg\:mt18-25e {
    margin-top: 18.25em !important;
  }
  .lg\:mr18-25e {
    margin-right: 18.25em !important;
  }
  .lg\:mb18-25e {
    margin-bottom: 18.25em !important;
  }
  .lg\:ml18-25e {
    margin-left: 18.25em !important;
  }
  .lg\:m18-5e {
    margin: 18.5em !important;
  }
  .lg\:mt18-5e {
    margin-top: 18.5em !important;
  }
  .lg\:mr18-5e {
    margin-right: 18.5em !important;
  }
  .lg\:mb18-5e {
    margin-bottom: 18.5em !important;
  }
  .lg\:ml18-5e {
    margin-left: 18.5em !important;
  }
  .lg\:m18-75e {
    margin: 18.75em !important;
  }
  .lg\:mt18-75e {
    margin-top: 18.75em !important;
  }
  .lg\:mr18-75e {
    margin-right: 18.75em !important;
  }
  .lg\:mb18-75e {
    margin-bottom: 18.75em !important;
  }
  .lg\:ml18-75e {
    margin-left: 18.75em !important;
  }
  .lg\:m19e {
    margin: 19em !important;
  }
  .lg\:mt19e {
    margin-top: 19em !important;
  }
  .lg\:mr19e {
    margin-right: 19em !important;
  }
  .lg\:mb19e {
    margin-bottom: 19em !important;
  }
  .lg\:ml19e {
    margin-left: 19em !important;
  }
  .lg\:m19-25e {
    margin: 19.25em !important;
  }
  .lg\:mt19-25e {
    margin-top: 19.25em !important;
  }
  .lg\:mr19-25e {
    margin-right: 19.25em !important;
  }
  .lg\:mb19-25e {
    margin-bottom: 19.25em !important;
  }
  .lg\:ml19-25e {
    margin-left: 19.25em !important;
  }
  .lg\:m19-5e {
    margin: 19.5em !important;
  }
  .lg\:mt19-5e {
    margin-top: 19.5em !important;
  }
  .lg\:mr19-5e {
    margin-right: 19.5em !important;
  }
  .lg\:mb19-5e {
    margin-bottom: 19.5em !important;
  }
  .lg\:ml19-5e {
    margin-left: 19.5em !important;
  }
  .lg\:m19-75e {
    margin: 19.75em !important;
  }
  .lg\:mt19-75e {
    margin-top: 19.75em !important;
  }
  .lg\:mr19-75e {
    margin-right: 19.75em !important;
  }
  .lg\:mb19-75e {
    margin-bottom: 19.75em !important;
  }
  .lg\:ml19-75e {
    margin-left: 19.75em !important;
  }
  .lg\:m20e {
    margin: 20em !important;
  }
  .lg\:mt20e {
    margin-top: 20em !important;
  }
  .lg\:mr20e {
    margin-right: 20em !important;
  }
  .lg\:mb20e {
    margin-bottom: 20em !important;
  }
  .lg\:ml20e {
    margin-left: 20em !important;
  }
}
.p0 {
  padding: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

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

.pb0 {
  padding-bottom: 0px !important;
}

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

.p5 {
  padding: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.p10 {
  padding: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.p15 {
  padding: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.p20 {
  padding: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.p25 {
  padding: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.p30 {
  padding: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.p35 {
  padding: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.p40 {
  padding: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.p45 {
  padding: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.p50 {
  padding: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.p55 {
  padding: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.p60 {
  padding: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.p65 {
  padding: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.p70 {
  padding: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.p75 {
  padding: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.p80 {
  padding: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.p85 {
  padding: 85px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.p90 {
  padding: 90px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.p95 {
  padding: 95px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pr95 {
  padding-right: 95px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.pl95 {
  padding-left: 95px !important;
}

.p100 {
  padding: 100px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.p0-25e {
  padding: 0.25em !important;
}

.pt0-25e {
  padding-top: 0.25em !important;
}

.pr0-25e {
  padding-right: 0.25em !important;
}

.pb0-25e {
  padding-bottom: 0.25em !important;
}

.pl0-25e {
  padding-left: 0.25em !important;
}

.p0-5e {
  padding: 0.5em !important;
}

.pt0-5e {
  padding-top: 0.5em !important;
}

.pr0-5e {
  padding-right: 0.5em !important;
}

.pb0-5e {
  padding-bottom: 0.5em !important;
}

.pl0-5e {
  padding-left: 0.5em !important;
}

.p0-75e {
  padding: 0.75em !important;
}

.pt0-75e {
  padding-top: 0.75em !important;
}

.pr0-75e {
  padding-right: 0.75em !important;
}

.pb0-75e {
  padding-bottom: 0.75em !important;
}

.pl0-75e {
  padding-left: 0.75em !important;
}

.p1e {
  padding: 1em !important;
}

.pt1e {
  padding-top: 1em !important;
}

.pr1e {
  padding-right: 1em !important;
}

.pb1e {
  padding-bottom: 1em !important;
}

.pl1e {
  padding-left: 1em !important;
}

.p1-25e {
  padding: 1.25em !important;
}

.pt1-25e {
  padding-top: 1.25em !important;
}

.pr1-25e {
  padding-right: 1.25em !important;
}

.pb1-25e {
  padding-bottom: 1.25em !important;
}

.pl1-25e {
  padding-left: 1.25em !important;
}

.p1-5e {
  padding: 1.5em !important;
}

.pt1-5e {
  padding-top: 1.5em !important;
}

.pr1-5e {
  padding-right: 1.5em !important;
}

.pb1-5e {
  padding-bottom: 1.5em !important;
}

.pl1-5e {
  padding-left: 1.5em !important;
}

.p1-75e {
  padding: 1.75em !important;
}

.pt1-75e {
  padding-top: 1.75em !important;
}

.pr1-75e {
  padding-right: 1.75em !important;
}

.pb1-75e {
  padding-bottom: 1.75em !important;
}

.pl1-75e {
  padding-left: 1.75em !important;
}

.p2e {
  padding: 2em !important;
}

.pt2e {
  padding-top: 2em !important;
}

.pr2e {
  padding-right: 2em !important;
}

.pb2e {
  padding-bottom: 2em !important;
}

.pl2e {
  padding-left: 2em !important;
}

.p2-25e {
  padding: 2.25em !important;
}

.pt2-25e {
  padding-top: 2.25em !important;
}

.pr2-25e {
  padding-right: 2.25em !important;
}

.pb2-25e {
  padding-bottom: 2.25em !important;
}

.pl2-25e {
  padding-left: 2.25em !important;
}

.p2-5e {
  padding: 2.5em !important;
}

.pt2-5e {
  padding-top: 2.5em !important;
}

.pr2-5e {
  padding-right: 2.5em !important;
}

.pb2-5e {
  padding-bottom: 2.5em !important;
}

.pl2-5e {
  padding-left: 2.5em !important;
}

.p2-75e {
  padding: 2.75em !important;
}

.pt2-75e {
  padding-top: 2.75em !important;
}

.pr2-75e {
  padding-right: 2.75em !important;
}

.pb2-75e {
  padding-bottom: 2.75em !important;
}

.pl2-75e {
  padding-left: 2.75em !important;
}

.p3e {
  padding: 3em !important;
}

.pt3e {
  padding-top: 3em !important;
}

.pr3e {
  padding-right: 3em !important;
}

.pb3e {
  padding-bottom: 3em !important;
}

.pl3e {
  padding-left: 3em !important;
}

.p3-25e {
  padding: 3.25em !important;
}

.pt3-25e {
  padding-top: 3.25em !important;
}

.pr3-25e {
  padding-right: 3.25em !important;
}

.pb3-25e {
  padding-bottom: 3.25em !important;
}

.pl3-25e {
  padding-left: 3.25em !important;
}

.p3-5e {
  padding: 3.5em !important;
}

.pt3-5e {
  padding-top: 3.5em !important;
}

.pr3-5e {
  padding-right: 3.5em !important;
}

.pb3-5e {
  padding-bottom: 3.5em !important;
}

.pl3-5e {
  padding-left: 3.5em !important;
}

.p3-75e {
  padding: 3.75em !important;
}

.pt3-75e {
  padding-top: 3.75em !important;
}

.pr3-75e {
  padding-right: 3.75em !important;
}

.pb3-75e {
  padding-bottom: 3.75em !important;
}

.pl3-75e {
  padding-left: 3.75em !important;
}

.p4e {
  padding: 4em !important;
}

.pt4e {
  padding-top: 4em !important;
}

.pr4e {
  padding-right: 4em !important;
}

.pb4e {
  padding-bottom: 4em !important;
}

.pl4e {
  padding-left: 4em !important;
}

.p4-25e {
  padding: 4.25em !important;
}

.pt4-25e {
  padding-top: 4.25em !important;
}

.pr4-25e {
  padding-right: 4.25em !important;
}

.pb4-25e {
  padding-bottom: 4.25em !important;
}

.pl4-25e {
  padding-left: 4.25em !important;
}

.p4-5e {
  padding: 4.5em !important;
}

.pt4-5e {
  padding-top: 4.5em !important;
}

.pr4-5e {
  padding-right: 4.5em !important;
}

.pb4-5e {
  padding-bottom: 4.5em !important;
}

.pl4-5e {
  padding-left: 4.5em !important;
}

.p4-75e {
  padding: 4.75em !important;
}

.pt4-75e {
  padding-top: 4.75em !important;
}

.pr4-75e {
  padding-right: 4.75em !important;
}

.pb4-75e {
  padding-bottom: 4.75em !important;
}

.pl4-75e {
  padding-left: 4.75em !important;
}

.p5e {
  padding: 5em !important;
}

.pt5e {
  padding-top: 5em !important;
}

.pr5e {
  padding-right: 5em !important;
}

.pb5e {
  padding-bottom: 5em !important;
}

.pl5e {
  padding-left: 5em !important;
}

.p5-25e {
  padding: 5.25em !important;
}

.pt5-25e {
  padding-top: 5.25em !important;
}

.pr5-25e {
  padding-right: 5.25em !important;
}

.pb5-25e {
  padding-bottom: 5.25em !important;
}

.pl5-25e {
  padding-left: 5.25em !important;
}

.p5-5e {
  padding: 5.5em !important;
}

.pt5-5e {
  padding-top: 5.5em !important;
}

.pr5-5e {
  padding-right: 5.5em !important;
}

.pb5-5e {
  padding-bottom: 5.5em !important;
}

.pl5-5e {
  padding-left: 5.5em !important;
}

.p5-75e {
  padding: 5.75em !important;
}

.pt5-75e {
  padding-top: 5.75em !important;
}

.pr5-75e {
  padding-right: 5.75em !important;
}

.pb5-75e {
  padding-bottom: 5.75em !important;
}

.pl5-75e {
  padding-left: 5.75em !important;
}

.p6e {
  padding: 6em !important;
}

.pt6e {
  padding-top: 6em !important;
}

.pr6e {
  padding-right: 6em !important;
}

.pb6e {
  padding-bottom: 6em !important;
}

.pl6e {
  padding-left: 6em !important;
}

.p6-25e {
  padding: 6.25em !important;
}

.pt6-25e {
  padding-top: 6.25em !important;
}

.pr6-25e {
  padding-right: 6.25em !important;
}

.pb6-25e {
  padding-bottom: 6.25em !important;
}

.pl6-25e {
  padding-left: 6.25em !important;
}

.p6-5e {
  padding: 6.5em !important;
}

.pt6-5e {
  padding-top: 6.5em !important;
}

.pr6-5e {
  padding-right: 6.5em !important;
}

.pb6-5e {
  padding-bottom: 6.5em !important;
}

.pl6-5e {
  padding-left: 6.5em !important;
}

.p6-75e {
  padding: 6.75em !important;
}

.pt6-75e {
  padding-top: 6.75em !important;
}

.pr6-75e {
  padding-right: 6.75em !important;
}

.pb6-75e {
  padding-bottom: 6.75em !important;
}

.pl6-75e {
  padding-left: 6.75em !important;
}

.p7e {
  padding: 7em !important;
}

.pt7e {
  padding-top: 7em !important;
}

.pr7e {
  padding-right: 7em !important;
}

.pb7e {
  padding-bottom: 7em !important;
}

.pl7e {
  padding-left: 7em !important;
}

.p7-25e {
  padding: 7.25em !important;
}

.pt7-25e {
  padding-top: 7.25em !important;
}

.pr7-25e {
  padding-right: 7.25em !important;
}

.pb7-25e {
  padding-bottom: 7.25em !important;
}

.pl7-25e {
  padding-left: 7.25em !important;
}

.p7-5e {
  padding: 7.5em !important;
}

.pt7-5e {
  padding-top: 7.5em !important;
}

.pr7-5e {
  padding-right: 7.5em !important;
}

.pb7-5e {
  padding-bottom: 7.5em !important;
}

.pl7-5e {
  padding-left: 7.5em !important;
}

.p7-75e {
  padding: 7.75em !important;
}

.pt7-75e {
  padding-top: 7.75em !important;
}

.pr7-75e {
  padding-right: 7.75em !important;
}

.pb7-75e {
  padding-bottom: 7.75em !important;
}

.pl7-75e {
  padding-left: 7.75em !important;
}

.p8e {
  padding: 8em !important;
}

.pt8e {
  padding-top: 8em !important;
}

.pr8e {
  padding-right: 8em !important;
}

.pb8e {
  padding-bottom: 8em !important;
}

.pl8e {
  padding-left: 8em !important;
}

.p8-25e {
  padding: 8.25em !important;
}

.pt8-25e {
  padding-top: 8.25em !important;
}

.pr8-25e {
  padding-right: 8.25em !important;
}

.pb8-25e {
  padding-bottom: 8.25em !important;
}

.pl8-25e {
  padding-left: 8.25em !important;
}

.p8-5e {
  padding: 8.5em !important;
}

.pt8-5e {
  padding-top: 8.5em !important;
}

.pr8-5e {
  padding-right: 8.5em !important;
}

.pb8-5e {
  padding-bottom: 8.5em !important;
}

.pl8-5e {
  padding-left: 8.5em !important;
}

.p8-75e {
  padding: 8.75em !important;
}

.pt8-75e {
  padding-top: 8.75em !important;
}

.pr8-75e {
  padding-right: 8.75em !important;
}

.pb8-75e {
  padding-bottom: 8.75em !important;
}

.pl8-75e {
  padding-left: 8.75em !important;
}

.p9e {
  padding: 9em !important;
}

.pt9e {
  padding-top: 9em !important;
}

.pr9e {
  padding-right: 9em !important;
}

.pb9e {
  padding-bottom: 9em !important;
}

.pl9e {
  padding-left: 9em !important;
}

.p9-25e {
  padding: 9.25em !important;
}

.pt9-25e {
  padding-top: 9.25em !important;
}

.pr9-25e {
  padding-right: 9.25em !important;
}

.pb9-25e {
  padding-bottom: 9.25em !important;
}

.pl9-25e {
  padding-left: 9.25em !important;
}

.p9-5e {
  padding: 9.5em !important;
}

.pt9-5e {
  padding-top: 9.5em !important;
}

.pr9-5e {
  padding-right: 9.5em !important;
}

.pb9-5e {
  padding-bottom: 9.5em !important;
}

.pl9-5e {
  padding-left: 9.5em !important;
}

.p9-75e {
  padding: 9.75em !important;
}

.pt9-75e {
  padding-top: 9.75em !important;
}

.pr9-75e {
  padding-right: 9.75em !important;
}

.pb9-75e {
  padding-bottom: 9.75em !important;
}

.pl9-75e {
  padding-left: 9.75em !important;
}

.p10e {
  padding: 10em !important;
}

.pt10e {
  padding-top: 10em !important;
}

.pr10e {
  padding-right: 10em !important;
}

.pb10e {
  padding-bottom: 10em !important;
}

.pl10e {
  padding-left: 10em !important;
}

@media (width > 1024px) {
  .lg\:p0 {
    padding: 0px !important;
  }
  .lg\:pt0 {
    padding-top: 0px !important;
  }
  .lg\:pr0 {
    padding-right: 0px !important;
  }
  .lg\:pb0 {
    padding-bottom: 0px !important;
  }
  .lg\:pl0 {
    padding-left: 0px !important;
  }
  .lg\:p5 {
    padding: 5px !important;
  }
  .lg\:pt5 {
    padding-top: 5px !important;
  }
  .lg\:pr5 {
    padding-right: 5px !important;
  }
  .lg\:pb5 {
    padding-bottom: 5px !important;
  }
  .lg\:pl5 {
    padding-left: 5px !important;
  }
  .lg\:p10 {
    padding: 10px !important;
  }
  .lg\:pt10 {
    padding-top: 10px !important;
  }
  .lg\:pr10 {
    padding-right: 10px !important;
  }
  .lg\:pb10 {
    padding-bottom: 10px !important;
  }
  .lg\:pl10 {
    padding-left: 10px !important;
  }
  .lg\:p15 {
    padding: 15px !important;
  }
  .lg\:pt15 {
    padding-top: 15px !important;
  }
  .lg\:pr15 {
    padding-right: 15px !important;
  }
  .lg\:pb15 {
    padding-bottom: 15px !important;
  }
  .lg\:pl15 {
    padding-left: 15px !important;
  }
  .lg\:p20 {
    padding: 20px !important;
  }
  .lg\:pt20 {
    padding-top: 20px !important;
  }
  .lg\:pr20 {
    padding-right: 20px !important;
  }
  .lg\:pb20 {
    padding-bottom: 20px !important;
  }
  .lg\:pl20 {
    padding-left: 20px !important;
  }
  .lg\:p25 {
    padding: 25px !important;
  }
  .lg\:pt25 {
    padding-top: 25px !important;
  }
  .lg\:pr25 {
    padding-right: 25px !important;
  }
  .lg\:pb25 {
    padding-bottom: 25px !important;
  }
  .lg\:pl25 {
    padding-left: 25px !important;
  }
  .lg\:p30 {
    padding: 30px !important;
  }
  .lg\:pt30 {
    padding-top: 30px !important;
  }
  .lg\:pr30 {
    padding-right: 30px !important;
  }
  .lg\:pb30 {
    padding-bottom: 30px !important;
  }
  .lg\:pl30 {
    padding-left: 30px !important;
  }
  .lg\:p35 {
    padding: 35px !important;
  }
  .lg\:pt35 {
    padding-top: 35px !important;
  }
  .lg\:pr35 {
    padding-right: 35px !important;
  }
  .lg\:pb35 {
    padding-bottom: 35px !important;
  }
  .lg\:pl35 {
    padding-left: 35px !important;
  }
  .lg\:p40 {
    padding: 40px !important;
  }
  .lg\:pt40 {
    padding-top: 40px !important;
  }
  .lg\:pr40 {
    padding-right: 40px !important;
  }
  .lg\:pb40 {
    padding-bottom: 40px !important;
  }
  .lg\:pl40 {
    padding-left: 40px !important;
  }
  .lg\:p45 {
    padding: 45px !important;
  }
  .lg\:pt45 {
    padding-top: 45px !important;
  }
  .lg\:pr45 {
    padding-right: 45px !important;
  }
  .lg\:pb45 {
    padding-bottom: 45px !important;
  }
  .lg\:pl45 {
    padding-left: 45px !important;
  }
  .lg\:p50 {
    padding: 50px !important;
  }
  .lg\:pt50 {
    padding-top: 50px !important;
  }
  .lg\:pr50 {
    padding-right: 50px !important;
  }
  .lg\:pb50 {
    padding-bottom: 50px !important;
  }
  .lg\:pl50 {
    padding-left: 50px !important;
  }
  .lg\:p55 {
    padding: 55px !important;
  }
  .lg\:pt55 {
    padding-top: 55px !important;
  }
  .lg\:pr55 {
    padding-right: 55px !important;
  }
  .lg\:pb55 {
    padding-bottom: 55px !important;
  }
  .lg\:pl55 {
    padding-left: 55px !important;
  }
  .lg\:p60 {
    padding: 60px !important;
  }
  .lg\:pt60 {
    padding-top: 60px !important;
  }
  .lg\:pr60 {
    padding-right: 60px !important;
  }
  .lg\:pb60 {
    padding-bottom: 60px !important;
  }
  .lg\:pl60 {
    padding-left: 60px !important;
  }
  .lg\:p65 {
    padding: 65px !important;
  }
  .lg\:pt65 {
    padding-top: 65px !important;
  }
  .lg\:pr65 {
    padding-right: 65px !important;
  }
  .lg\:pb65 {
    padding-bottom: 65px !important;
  }
  .lg\:pl65 {
    padding-left: 65px !important;
  }
  .lg\:p70 {
    padding: 70px !important;
  }
  .lg\:pt70 {
    padding-top: 70px !important;
  }
  .lg\:pr70 {
    padding-right: 70px !important;
  }
  .lg\:pb70 {
    padding-bottom: 70px !important;
  }
  .lg\:pl70 {
    padding-left: 70px !important;
  }
  .lg\:p75 {
    padding: 75px !important;
  }
  .lg\:pt75 {
    padding-top: 75px !important;
  }
  .lg\:pr75 {
    padding-right: 75px !important;
  }
  .lg\:pb75 {
    padding-bottom: 75px !important;
  }
  .lg\:pl75 {
    padding-left: 75px !important;
  }
  .lg\:p80 {
    padding: 80px !important;
  }
  .lg\:pt80 {
    padding-top: 80px !important;
  }
  .lg\:pr80 {
    padding-right: 80px !important;
  }
  .lg\:pb80 {
    padding-bottom: 80px !important;
  }
  .lg\:pl80 {
    padding-left: 80px !important;
  }
  .lg\:p85 {
    padding: 85px !important;
  }
  .lg\:pt85 {
    padding-top: 85px !important;
  }
  .lg\:pr85 {
    padding-right: 85px !important;
  }
  .lg\:pb85 {
    padding-bottom: 85px !important;
  }
  .lg\:pl85 {
    padding-left: 85px !important;
  }
  .lg\:p90 {
    padding: 90px !important;
  }
  .lg\:pt90 {
    padding-top: 90px !important;
  }
  .lg\:pr90 {
    padding-right: 90px !important;
  }
  .lg\:pb90 {
    padding-bottom: 90px !important;
  }
  .lg\:pl90 {
    padding-left: 90px !important;
  }
  .lg\:p95 {
    padding: 95px !important;
  }
  .lg\:pt95 {
    padding-top: 95px !important;
  }
  .lg\:pr95 {
    padding-right: 95px !important;
  }
  .lg\:pb95 {
    padding-bottom: 95px !important;
  }
  .lg\:pl95 {
    padding-left: 95px !important;
  }
  .lg\:p100 {
    padding: 100px !important;
  }
  .lg\:pt100 {
    padding-top: 100px !important;
  }
  .lg\:pr100 {
    padding-right: 100px !important;
  }
  .lg\:pb100 {
    padding-bottom: 100px !important;
  }
  .lg\:pl100 {
    padding-left: 100px !important;
  }
  .lg\:p0-25e {
    padding: 0.25em !important;
  }
  .lg\:pt0-25e {
    padding-top: 0.25em !important;
  }
  .lg\:pr0-25e {
    padding-right: 0.25em !important;
  }
  .lg\:pb0-25e {
    padding-bottom: 0.25em !important;
  }
  .lg\:pl0-25e {
    padding-left: 0.25em !important;
  }
  .lg\:p0-5e {
    padding: 0.5em !important;
  }
  .lg\:pt0-5e {
    padding-top: 0.5em !important;
  }
  .lg\:pr0-5e {
    padding-right: 0.5em !important;
  }
  .lg\:pb0-5e {
    padding-bottom: 0.5em !important;
  }
  .lg\:pl0-5e {
    padding-left: 0.5em !important;
  }
  .lg\:p0-75e {
    padding: 0.75em !important;
  }
  .lg\:pt0-75e {
    padding-top: 0.75em !important;
  }
  .lg\:pr0-75e {
    padding-right: 0.75em !important;
  }
  .lg\:pb0-75e {
    padding-bottom: 0.75em !important;
  }
  .lg\:pl0-75e {
    padding-left: 0.75em !important;
  }
  .lg\:p1e {
    padding: 1em !important;
  }
  .lg\:pt1e {
    padding-top: 1em !important;
  }
  .lg\:pr1e {
    padding-right: 1em !important;
  }
  .lg\:pb1e {
    padding-bottom: 1em !important;
  }
  .lg\:pl1e {
    padding-left: 1em !important;
  }
  .lg\:p1-25e {
    padding: 1.25em !important;
  }
  .lg\:pt1-25e {
    padding-top: 1.25em !important;
  }
  .lg\:pr1-25e {
    padding-right: 1.25em !important;
  }
  .lg\:pb1-25e {
    padding-bottom: 1.25em !important;
  }
  .lg\:pl1-25e {
    padding-left: 1.25em !important;
  }
  .lg\:p1-5e {
    padding: 1.5em !important;
  }
  .lg\:pt1-5e {
    padding-top: 1.5em !important;
  }
  .lg\:pr1-5e {
    padding-right: 1.5em !important;
  }
  .lg\:pb1-5e {
    padding-bottom: 1.5em !important;
  }
  .lg\:pl1-5e {
    padding-left: 1.5em !important;
  }
  .lg\:p1-75e {
    padding: 1.75em !important;
  }
  .lg\:pt1-75e {
    padding-top: 1.75em !important;
  }
  .lg\:pr1-75e {
    padding-right: 1.75em !important;
  }
  .lg\:pb1-75e {
    padding-bottom: 1.75em !important;
  }
  .lg\:pl1-75e {
    padding-left: 1.75em !important;
  }
  .lg\:p2e {
    padding: 2em !important;
  }
  .lg\:pt2e {
    padding-top: 2em !important;
  }
  .lg\:pr2e {
    padding-right: 2em !important;
  }
  .lg\:pb2e {
    padding-bottom: 2em !important;
  }
  .lg\:pl2e {
    padding-left: 2em !important;
  }
  .lg\:p2-25e {
    padding: 2.25em !important;
  }
  .lg\:pt2-25e {
    padding-top: 2.25em !important;
  }
  .lg\:pr2-25e {
    padding-right: 2.25em !important;
  }
  .lg\:pb2-25e {
    padding-bottom: 2.25em !important;
  }
  .lg\:pl2-25e {
    padding-left: 2.25em !important;
  }
  .lg\:p2-5e {
    padding: 2.5em !important;
  }
  .lg\:pt2-5e {
    padding-top: 2.5em !important;
  }
  .lg\:pr2-5e {
    padding-right: 2.5em !important;
  }
  .lg\:pb2-5e {
    padding-bottom: 2.5em !important;
  }
  .lg\:pl2-5e {
    padding-left: 2.5em !important;
  }
  .lg\:p2-75e {
    padding: 2.75em !important;
  }
  .lg\:pt2-75e {
    padding-top: 2.75em !important;
  }
  .lg\:pr2-75e {
    padding-right: 2.75em !important;
  }
  .lg\:pb2-75e {
    padding-bottom: 2.75em !important;
  }
  .lg\:pl2-75e {
    padding-left: 2.75em !important;
  }
  .lg\:p3e {
    padding: 3em !important;
  }
  .lg\:pt3e {
    padding-top: 3em !important;
  }
  .lg\:pr3e {
    padding-right: 3em !important;
  }
  .lg\:pb3e {
    padding-bottom: 3em !important;
  }
  .lg\:pl3e {
    padding-left: 3em !important;
  }
  .lg\:p3-25e {
    padding: 3.25em !important;
  }
  .lg\:pt3-25e {
    padding-top: 3.25em !important;
  }
  .lg\:pr3-25e {
    padding-right: 3.25em !important;
  }
  .lg\:pb3-25e {
    padding-bottom: 3.25em !important;
  }
  .lg\:pl3-25e {
    padding-left: 3.25em !important;
  }
  .lg\:p3-5e {
    padding: 3.5em !important;
  }
  .lg\:pt3-5e {
    padding-top: 3.5em !important;
  }
  .lg\:pr3-5e {
    padding-right: 3.5em !important;
  }
  .lg\:pb3-5e {
    padding-bottom: 3.5em !important;
  }
  .lg\:pl3-5e {
    padding-left: 3.5em !important;
  }
  .lg\:p3-75e {
    padding: 3.75em !important;
  }
  .lg\:pt3-75e {
    padding-top: 3.75em !important;
  }
  .lg\:pr3-75e {
    padding-right: 3.75em !important;
  }
  .lg\:pb3-75e {
    padding-bottom: 3.75em !important;
  }
  .lg\:pl3-75e {
    padding-left: 3.75em !important;
  }
  .lg\:p4e {
    padding: 4em !important;
  }
  .lg\:pt4e {
    padding-top: 4em !important;
  }
  .lg\:pr4e {
    padding-right: 4em !important;
  }
  .lg\:pb4e {
    padding-bottom: 4em !important;
  }
  .lg\:pl4e {
    padding-left: 4em !important;
  }
  .lg\:p4-25e {
    padding: 4.25em !important;
  }
  .lg\:pt4-25e {
    padding-top: 4.25em !important;
  }
  .lg\:pr4-25e {
    padding-right: 4.25em !important;
  }
  .lg\:pb4-25e {
    padding-bottom: 4.25em !important;
  }
  .lg\:pl4-25e {
    padding-left: 4.25em !important;
  }
  .lg\:p4-5e {
    padding: 4.5em !important;
  }
  .lg\:pt4-5e {
    padding-top: 4.5em !important;
  }
  .lg\:pr4-5e {
    padding-right: 4.5em !important;
  }
  .lg\:pb4-5e {
    padding-bottom: 4.5em !important;
  }
  .lg\:pl4-5e {
    padding-left: 4.5em !important;
  }
  .lg\:p4-75e {
    padding: 4.75em !important;
  }
  .lg\:pt4-75e {
    padding-top: 4.75em !important;
  }
  .lg\:pr4-75e {
    padding-right: 4.75em !important;
  }
  .lg\:pb4-75e {
    padding-bottom: 4.75em !important;
  }
  .lg\:pl4-75e {
    padding-left: 4.75em !important;
  }
  .lg\:p5e {
    padding: 5em !important;
  }
  .lg\:pt5e {
    padding-top: 5em !important;
  }
  .lg\:pr5e {
    padding-right: 5em !important;
  }
  .lg\:pb5e {
    padding-bottom: 5em !important;
  }
  .lg\:pl5e {
    padding-left: 5em !important;
  }
  .lg\:p5-25e {
    padding: 5.25em !important;
  }
  .lg\:pt5-25e {
    padding-top: 5.25em !important;
  }
  .lg\:pr5-25e {
    padding-right: 5.25em !important;
  }
  .lg\:pb5-25e {
    padding-bottom: 5.25em !important;
  }
  .lg\:pl5-25e {
    padding-left: 5.25em !important;
  }
  .lg\:p5-5e {
    padding: 5.5em !important;
  }
  .lg\:pt5-5e {
    padding-top: 5.5em !important;
  }
  .lg\:pr5-5e {
    padding-right: 5.5em !important;
  }
  .lg\:pb5-5e {
    padding-bottom: 5.5em !important;
  }
  .lg\:pl5-5e {
    padding-left: 5.5em !important;
  }
  .lg\:p5-75e {
    padding: 5.75em !important;
  }
  .lg\:pt5-75e {
    padding-top: 5.75em !important;
  }
  .lg\:pr5-75e {
    padding-right: 5.75em !important;
  }
  .lg\:pb5-75e {
    padding-bottom: 5.75em !important;
  }
  .lg\:pl5-75e {
    padding-left: 5.75em !important;
  }
  .lg\:p6e {
    padding: 6em !important;
  }
  .lg\:pt6e {
    padding-top: 6em !important;
  }
  .lg\:pr6e {
    padding-right: 6em !important;
  }
  .lg\:pb6e {
    padding-bottom: 6em !important;
  }
  .lg\:pl6e {
    padding-left: 6em !important;
  }
  .lg\:p6-25e {
    padding: 6.25em !important;
  }
  .lg\:pt6-25e {
    padding-top: 6.25em !important;
  }
  .lg\:pr6-25e {
    padding-right: 6.25em !important;
  }
  .lg\:pb6-25e {
    padding-bottom: 6.25em !important;
  }
  .lg\:pl6-25e {
    padding-left: 6.25em !important;
  }
  .lg\:p6-5e {
    padding: 6.5em !important;
  }
  .lg\:pt6-5e {
    padding-top: 6.5em !important;
  }
  .lg\:pr6-5e {
    padding-right: 6.5em !important;
  }
  .lg\:pb6-5e {
    padding-bottom: 6.5em !important;
  }
  .lg\:pl6-5e {
    padding-left: 6.5em !important;
  }
  .lg\:p6-75e {
    padding: 6.75em !important;
  }
  .lg\:pt6-75e {
    padding-top: 6.75em !important;
  }
  .lg\:pr6-75e {
    padding-right: 6.75em !important;
  }
  .lg\:pb6-75e {
    padding-bottom: 6.75em !important;
  }
  .lg\:pl6-75e {
    padding-left: 6.75em !important;
  }
  .lg\:p7e {
    padding: 7em !important;
  }
  .lg\:pt7e {
    padding-top: 7em !important;
  }
  .lg\:pr7e {
    padding-right: 7em !important;
  }
  .lg\:pb7e {
    padding-bottom: 7em !important;
  }
  .lg\:pl7e {
    padding-left: 7em !important;
  }
  .lg\:p7-25e {
    padding: 7.25em !important;
  }
  .lg\:pt7-25e {
    padding-top: 7.25em !important;
  }
  .lg\:pr7-25e {
    padding-right: 7.25em !important;
  }
  .lg\:pb7-25e {
    padding-bottom: 7.25em !important;
  }
  .lg\:pl7-25e {
    padding-left: 7.25em !important;
  }
  .lg\:p7-5e {
    padding: 7.5em !important;
  }
  .lg\:pt7-5e {
    padding-top: 7.5em !important;
  }
  .lg\:pr7-5e {
    padding-right: 7.5em !important;
  }
  .lg\:pb7-5e {
    padding-bottom: 7.5em !important;
  }
  .lg\:pl7-5e {
    padding-left: 7.5em !important;
  }
  .lg\:p7-75e {
    padding: 7.75em !important;
  }
  .lg\:pt7-75e {
    padding-top: 7.75em !important;
  }
  .lg\:pr7-75e {
    padding-right: 7.75em !important;
  }
  .lg\:pb7-75e {
    padding-bottom: 7.75em !important;
  }
  .lg\:pl7-75e {
    padding-left: 7.75em !important;
  }
  .lg\:p8e {
    padding: 8em !important;
  }
  .lg\:pt8e {
    padding-top: 8em !important;
  }
  .lg\:pr8e {
    padding-right: 8em !important;
  }
  .lg\:pb8e {
    padding-bottom: 8em !important;
  }
  .lg\:pl8e {
    padding-left: 8em !important;
  }
  .lg\:p8-25e {
    padding: 8.25em !important;
  }
  .lg\:pt8-25e {
    padding-top: 8.25em !important;
  }
  .lg\:pr8-25e {
    padding-right: 8.25em !important;
  }
  .lg\:pb8-25e {
    padding-bottom: 8.25em !important;
  }
  .lg\:pl8-25e {
    padding-left: 8.25em !important;
  }
  .lg\:p8-5e {
    padding: 8.5em !important;
  }
  .lg\:pt8-5e {
    padding-top: 8.5em !important;
  }
  .lg\:pr8-5e {
    padding-right: 8.5em !important;
  }
  .lg\:pb8-5e {
    padding-bottom: 8.5em !important;
  }
  .lg\:pl8-5e {
    padding-left: 8.5em !important;
  }
  .lg\:p8-75e {
    padding: 8.75em !important;
  }
  .lg\:pt8-75e {
    padding-top: 8.75em !important;
  }
  .lg\:pr8-75e {
    padding-right: 8.75em !important;
  }
  .lg\:pb8-75e {
    padding-bottom: 8.75em !important;
  }
  .lg\:pl8-75e {
    padding-left: 8.75em !important;
  }
  .lg\:p9e {
    padding: 9em !important;
  }
  .lg\:pt9e {
    padding-top: 9em !important;
  }
  .lg\:pr9e {
    padding-right: 9em !important;
  }
  .lg\:pb9e {
    padding-bottom: 9em !important;
  }
  .lg\:pl9e {
    padding-left: 9em !important;
  }
  .lg\:p9-25e {
    padding: 9.25em !important;
  }
  .lg\:pt9-25e {
    padding-top: 9.25em !important;
  }
  .lg\:pr9-25e {
    padding-right: 9.25em !important;
  }
  .lg\:pb9-25e {
    padding-bottom: 9.25em !important;
  }
  .lg\:pl9-25e {
    padding-left: 9.25em !important;
  }
  .lg\:p9-5e {
    padding: 9.5em !important;
  }
  .lg\:pt9-5e {
    padding-top: 9.5em !important;
  }
  .lg\:pr9-5e {
    padding-right: 9.5em !important;
  }
  .lg\:pb9-5e {
    padding-bottom: 9.5em !important;
  }
  .lg\:pl9-5e {
    padding-left: 9.5em !important;
  }
  .lg\:p9-75e {
    padding: 9.75em !important;
  }
  .lg\:pt9-75e {
    padding-top: 9.75em !important;
  }
  .lg\:pr9-75e {
    padding-right: 9.75em !important;
  }
  .lg\:pb9-75e {
    padding-bottom: 9.75em !important;
  }
  .lg\:pl9-75e {
    padding-left: 9.75em !important;
  }
  .lg\:p10e {
    padding: 10em !important;
  }
  .lg\:pt10e {
    padding-top: 10em !important;
  }
  .lg\:pr10e {
    padding-right: 10em !important;
  }
  .lg\:pb10e {
    padding-bottom: 10em !important;
  }
  .lg\:pl10e {
    padding-left: 10em !important;
  }
}
@media (width > 768px) {
  .md\:p0 {
    padding: 0px !important;
  }
  .md\:pt0 {
    padding-top: 0px !important;
  }
  .md\:pr0 {
    padding-right: 0px !important;
  }
  .md\:pb0 {
    padding-bottom: 0px !important;
  }
  .md\:pl0 {
    padding-left: 0px !important;
  }
  .md\:p5 {
    padding: 5px !important;
  }
  .md\:pt5 {
    padding-top: 5px !important;
  }
  .md\:pr5 {
    padding-right: 5px !important;
  }
  .md\:pb5 {
    padding-bottom: 5px !important;
  }
  .md\:pl5 {
    padding-left: 5px !important;
  }
  .md\:p10 {
    padding: 10px !important;
  }
  .md\:pt10 {
    padding-top: 10px !important;
  }
  .md\:pr10 {
    padding-right: 10px !important;
  }
  .md\:pb10 {
    padding-bottom: 10px !important;
  }
  .md\:pl10 {
    padding-left: 10px !important;
  }
  .md\:p15 {
    padding: 15px !important;
  }
  .md\:pt15 {
    padding-top: 15px !important;
  }
  .md\:pr15 {
    padding-right: 15px !important;
  }
  .md\:pb15 {
    padding-bottom: 15px !important;
  }
  .md\:pl15 {
    padding-left: 15px !important;
  }
  .md\:p20 {
    padding: 20px !important;
  }
  .md\:pt20 {
    padding-top: 20px !important;
  }
  .md\:pr20 {
    padding-right: 20px !important;
  }
  .md\:pb20 {
    padding-bottom: 20px !important;
  }
  .md\:pl20 {
    padding-left: 20px !important;
  }
  .md\:p25 {
    padding: 25px !important;
  }
  .md\:pt25 {
    padding-top: 25px !important;
  }
  .md\:pr25 {
    padding-right: 25px !important;
  }
  .md\:pb25 {
    padding-bottom: 25px !important;
  }
  .md\:pl25 {
    padding-left: 25px !important;
  }
  .md\:p30 {
    padding: 30px !important;
  }
  .md\:pt30 {
    padding-top: 30px !important;
  }
  .md\:pr30 {
    padding-right: 30px !important;
  }
  .md\:pb30 {
    padding-bottom: 30px !important;
  }
  .md\:pl30 {
    padding-left: 30px !important;
  }
  .md\:p35 {
    padding: 35px !important;
  }
  .md\:pt35 {
    padding-top: 35px !important;
  }
  .md\:pr35 {
    padding-right: 35px !important;
  }
  .md\:pb35 {
    padding-bottom: 35px !important;
  }
  .md\:pl35 {
    padding-left: 35px !important;
  }
  .md\:p40 {
    padding: 40px !important;
  }
  .md\:pt40 {
    padding-top: 40px !important;
  }
  .md\:pr40 {
    padding-right: 40px !important;
  }
  .md\:pb40 {
    padding-bottom: 40px !important;
  }
  .md\:pl40 {
    padding-left: 40px !important;
  }
  .md\:p45 {
    padding: 45px !important;
  }
  .md\:pt45 {
    padding-top: 45px !important;
  }
  .md\:pr45 {
    padding-right: 45px !important;
  }
  .md\:pb45 {
    padding-bottom: 45px !important;
  }
  .md\:pl45 {
    padding-left: 45px !important;
  }
  .md\:p50 {
    padding: 50px !important;
  }
  .md\:pt50 {
    padding-top: 50px !important;
  }
  .md\:pr50 {
    padding-right: 50px !important;
  }
  .md\:pb50 {
    padding-bottom: 50px !important;
  }
  .md\:pl50 {
    padding-left: 50px !important;
  }
  .md\:p55 {
    padding: 55px !important;
  }
  .md\:pt55 {
    padding-top: 55px !important;
  }
  .md\:pr55 {
    padding-right: 55px !important;
  }
  .md\:pb55 {
    padding-bottom: 55px !important;
  }
  .md\:pl55 {
    padding-left: 55px !important;
  }
  .md\:p60 {
    padding: 60px !important;
  }
  .md\:pt60 {
    padding-top: 60px !important;
  }
  .md\:pr60 {
    padding-right: 60px !important;
  }
  .md\:pb60 {
    padding-bottom: 60px !important;
  }
  .md\:pl60 {
    padding-left: 60px !important;
  }
  .md\:p65 {
    padding: 65px !important;
  }
  .md\:pt65 {
    padding-top: 65px !important;
  }
  .md\:pr65 {
    padding-right: 65px !important;
  }
  .md\:pb65 {
    padding-bottom: 65px !important;
  }
  .md\:pl65 {
    padding-left: 65px !important;
  }
  .md\:p70 {
    padding: 70px !important;
  }
  .md\:pt70 {
    padding-top: 70px !important;
  }
  .md\:pr70 {
    padding-right: 70px !important;
  }
  .md\:pb70 {
    padding-bottom: 70px !important;
  }
  .md\:pl70 {
    padding-left: 70px !important;
  }
  .md\:p75 {
    padding: 75px !important;
  }
  .md\:pt75 {
    padding-top: 75px !important;
  }
  .md\:pr75 {
    padding-right: 75px !important;
  }
  .md\:pb75 {
    padding-bottom: 75px !important;
  }
  .md\:pl75 {
    padding-left: 75px !important;
  }
  .md\:p80 {
    padding: 80px !important;
  }
  .md\:pt80 {
    padding-top: 80px !important;
  }
  .md\:pr80 {
    padding-right: 80px !important;
  }
  .md\:pb80 {
    padding-bottom: 80px !important;
  }
  .md\:pl80 {
    padding-left: 80px !important;
  }
  .md\:p85 {
    padding: 85px !important;
  }
  .md\:pt85 {
    padding-top: 85px !important;
  }
  .md\:pr85 {
    padding-right: 85px !important;
  }
  .md\:pb85 {
    padding-bottom: 85px !important;
  }
  .md\:pl85 {
    padding-left: 85px !important;
  }
  .md\:p90 {
    padding: 90px !important;
  }
  .md\:pt90 {
    padding-top: 90px !important;
  }
  .md\:pr90 {
    padding-right: 90px !important;
  }
  .md\:pb90 {
    padding-bottom: 90px !important;
  }
  .md\:pl90 {
    padding-left: 90px !important;
  }
  .md\:p95 {
    padding: 95px !important;
  }
  .md\:pt95 {
    padding-top: 95px !important;
  }
  .md\:pr95 {
    padding-right: 95px !important;
  }
  .md\:pb95 {
    padding-bottom: 95px !important;
  }
  .md\:pl95 {
    padding-left: 95px !important;
  }
  .md\:p100 {
    padding: 100px !important;
  }
  .md\:pt100 {
    padding-top: 100px !important;
  }
  .md\:pr100 {
    padding-right: 100px !important;
  }
  .md\:pb100 {
    padding-bottom: 100px !important;
  }
  .md\:pl100 {
    padding-left: 100px !important;
  }
  .md\:p0-25e {
    padding: 0.25em !important;
  }
  .md\:pt0-25e {
    padding-top: 0.25em !important;
  }
  .md\:pr0-25e {
    padding-right: 0.25em !important;
  }
  .md\:pb0-25e {
    padding-bottom: 0.25em !important;
  }
  .md\:pl0-25e {
    padding-left: 0.25em !important;
  }
  .md\:p0-5e {
    padding: 0.5em !important;
  }
  .md\:pt0-5e {
    padding-top: 0.5em !important;
  }
  .md\:pr0-5e {
    padding-right: 0.5em !important;
  }
  .md\:pb0-5e {
    padding-bottom: 0.5em !important;
  }
  .md\:pl0-5e {
    padding-left: 0.5em !important;
  }
  .md\:p0-75e {
    padding: 0.75em !important;
  }
  .md\:pt0-75e {
    padding-top: 0.75em !important;
  }
  .md\:pr0-75e {
    padding-right: 0.75em !important;
  }
  .md\:pb0-75e {
    padding-bottom: 0.75em !important;
  }
  .md\:pl0-75e {
    padding-left: 0.75em !important;
  }
  .md\:p1e {
    padding: 1em !important;
  }
  .md\:pt1e {
    padding-top: 1em !important;
  }
  .md\:pr1e {
    padding-right: 1em !important;
  }
  .md\:pb1e {
    padding-bottom: 1em !important;
  }
  .md\:pl1e {
    padding-left: 1em !important;
  }
  .md\:p1-25e {
    padding: 1.25em !important;
  }
  .md\:pt1-25e {
    padding-top: 1.25em !important;
  }
  .md\:pr1-25e {
    padding-right: 1.25em !important;
  }
  .md\:pb1-25e {
    padding-bottom: 1.25em !important;
  }
  .md\:pl1-25e {
    padding-left: 1.25em !important;
  }
  .md\:p1-5e {
    padding: 1.5em !important;
  }
  .md\:pt1-5e {
    padding-top: 1.5em !important;
  }
  .md\:pr1-5e {
    padding-right: 1.5em !important;
  }
  .md\:pb1-5e {
    padding-bottom: 1.5em !important;
  }
  .md\:pl1-5e {
    padding-left: 1.5em !important;
  }
  .md\:p1-75e {
    padding: 1.75em !important;
  }
  .md\:pt1-75e {
    padding-top: 1.75em !important;
  }
  .md\:pr1-75e {
    padding-right: 1.75em !important;
  }
  .md\:pb1-75e {
    padding-bottom: 1.75em !important;
  }
  .md\:pl1-75e {
    padding-left: 1.75em !important;
  }
  .md\:p2e {
    padding: 2em !important;
  }
  .md\:pt2e {
    padding-top: 2em !important;
  }
  .md\:pr2e {
    padding-right: 2em !important;
  }
  .md\:pb2e {
    padding-bottom: 2em !important;
  }
  .md\:pl2e {
    padding-left: 2em !important;
  }
  .md\:p2-25e {
    padding: 2.25em !important;
  }
  .md\:pt2-25e {
    padding-top: 2.25em !important;
  }
  .md\:pr2-25e {
    padding-right: 2.25em !important;
  }
  .md\:pb2-25e {
    padding-bottom: 2.25em !important;
  }
  .md\:pl2-25e {
    padding-left: 2.25em !important;
  }
  .md\:p2-5e {
    padding: 2.5em !important;
  }
  .md\:pt2-5e {
    padding-top: 2.5em !important;
  }
  .md\:pr2-5e {
    padding-right: 2.5em !important;
  }
  .md\:pb2-5e {
    padding-bottom: 2.5em !important;
  }
  .md\:pl2-5e {
    padding-left: 2.5em !important;
  }
  .md\:p2-75e {
    padding: 2.75em !important;
  }
  .md\:pt2-75e {
    padding-top: 2.75em !important;
  }
  .md\:pr2-75e {
    padding-right: 2.75em !important;
  }
  .md\:pb2-75e {
    padding-bottom: 2.75em !important;
  }
  .md\:pl2-75e {
    padding-left: 2.75em !important;
  }
  .md\:p3e {
    padding: 3em !important;
  }
  .md\:pt3e {
    padding-top: 3em !important;
  }
  .md\:pr3e {
    padding-right: 3em !important;
  }
  .md\:pb3e {
    padding-bottom: 3em !important;
  }
  .md\:pl3e {
    padding-left: 3em !important;
  }
  .md\:p3-25e {
    padding: 3.25em !important;
  }
  .md\:pt3-25e {
    padding-top: 3.25em !important;
  }
  .md\:pr3-25e {
    padding-right: 3.25em !important;
  }
  .md\:pb3-25e {
    padding-bottom: 3.25em !important;
  }
  .md\:pl3-25e {
    padding-left: 3.25em !important;
  }
  .md\:p3-5e {
    padding: 3.5em !important;
  }
  .md\:pt3-5e {
    padding-top: 3.5em !important;
  }
  .md\:pr3-5e {
    padding-right: 3.5em !important;
  }
  .md\:pb3-5e {
    padding-bottom: 3.5em !important;
  }
  .md\:pl3-5e {
    padding-left: 3.5em !important;
  }
  .md\:p3-75e {
    padding: 3.75em !important;
  }
  .md\:pt3-75e {
    padding-top: 3.75em !important;
  }
  .md\:pr3-75e {
    padding-right: 3.75em !important;
  }
  .md\:pb3-75e {
    padding-bottom: 3.75em !important;
  }
  .md\:pl3-75e {
    padding-left: 3.75em !important;
  }
  .md\:p4e {
    padding: 4em !important;
  }
  .md\:pt4e {
    padding-top: 4em !important;
  }
  .md\:pr4e {
    padding-right: 4em !important;
  }
  .md\:pb4e {
    padding-bottom: 4em !important;
  }
  .md\:pl4e {
    padding-left: 4em !important;
  }
  .md\:p4-25e {
    padding: 4.25em !important;
  }
  .md\:pt4-25e {
    padding-top: 4.25em !important;
  }
  .md\:pr4-25e {
    padding-right: 4.25em !important;
  }
  .md\:pb4-25e {
    padding-bottom: 4.25em !important;
  }
  .md\:pl4-25e {
    padding-left: 4.25em !important;
  }
  .md\:p4-5e {
    padding: 4.5em !important;
  }
  .md\:pt4-5e {
    padding-top: 4.5em !important;
  }
  .md\:pr4-5e {
    padding-right: 4.5em !important;
  }
  .md\:pb4-5e {
    padding-bottom: 4.5em !important;
  }
  .md\:pl4-5e {
    padding-left: 4.5em !important;
  }
  .md\:p4-75e {
    padding: 4.75em !important;
  }
  .md\:pt4-75e {
    padding-top: 4.75em !important;
  }
  .md\:pr4-75e {
    padding-right: 4.75em !important;
  }
  .md\:pb4-75e {
    padding-bottom: 4.75em !important;
  }
  .md\:pl4-75e {
    padding-left: 4.75em !important;
  }
  .md\:p5e {
    padding: 5em !important;
  }
  .md\:pt5e {
    padding-top: 5em !important;
  }
  .md\:pr5e {
    padding-right: 5em !important;
  }
  .md\:pb5e {
    padding-bottom: 5em !important;
  }
  .md\:pl5e {
    padding-left: 5em !important;
  }
  .md\:p5-25e {
    padding: 5.25em !important;
  }
  .md\:pt5-25e {
    padding-top: 5.25em !important;
  }
  .md\:pr5-25e {
    padding-right: 5.25em !important;
  }
  .md\:pb5-25e {
    padding-bottom: 5.25em !important;
  }
  .md\:pl5-25e {
    padding-left: 5.25em !important;
  }
  .md\:p5-5e {
    padding: 5.5em !important;
  }
  .md\:pt5-5e {
    padding-top: 5.5em !important;
  }
  .md\:pr5-5e {
    padding-right: 5.5em !important;
  }
  .md\:pb5-5e {
    padding-bottom: 5.5em !important;
  }
  .md\:pl5-5e {
    padding-left: 5.5em !important;
  }
  .md\:p5-75e {
    padding: 5.75em !important;
  }
  .md\:pt5-75e {
    padding-top: 5.75em !important;
  }
  .md\:pr5-75e {
    padding-right: 5.75em !important;
  }
  .md\:pb5-75e {
    padding-bottom: 5.75em !important;
  }
  .md\:pl5-75e {
    padding-left: 5.75em !important;
  }
  .md\:p6e {
    padding: 6em !important;
  }
  .md\:pt6e {
    padding-top: 6em !important;
  }
  .md\:pr6e {
    padding-right: 6em !important;
  }
  .md\:pb6e {
    padding-bottom: 6em !important;
  }
  .md\:pl6e {
    padding-left: 6em !important;
  }
  .md\:p6-25e {
    padding: 6.25em !important;
  }
  .md\:pt6-25e {
    padding-top: 6.25em !important;
  }
  .md\:pr6-25e {
    padding-right: 6.25em !important;
  }
  .md\:pb6-25e {
    padding-bottom: 6.25em !important;
  }
  .md\:pl6-25e {
    padding-left: 6.25em !important;
  }
  .md\:p6-5e {
    padding: 6.5em !important;
  }
  .md\:pt6-5e {
    padding-top: 6.5em !important;
  }
  .md\:pr6-5e {
    padding-right: 6.5em !important;
  }
  .md\:pb6-5e {
    padding-bottom: 6.5em !important;
  }
  .md\:pl6-5e {
    padding-left: 6.5em !important;
  }
  .md\:p6-75e {
    padding: 6.75em !important;
  }
  .md\:pt6-75e {
    padding-top: 6.75em !important;
  }
  .md\:pr6-75e {
    padding-right: 6.75em !important;
  }
  .md\:pb6-75e {
    padding-bottom: 6.75em !important;
  }
  .md\:pl6-75e {
    padding-left: 6.75em !important;
  }
  .md\:p7e {
    padding: 7em !important;
  }
  .md\:pt7e {
    padding-top: 7em !important;
  }
  .md\:pr7e {
    padding-right: 7em !important;
  }
  .md\:pb7e {
    padding-bottom: 7em !important;
  }
  .md\:pl7e {
    padding-left: 7em !important;
  }
  .md\:p7-25e {
    padding: 7.25em !important;
  }
  .md\:pt7-25e {
    padding-top: 7.25em !important;
  }
  .md\:pr7-25e {
    padding-right: 7.25em !important;
  }
  .md\:pb7-25e {
    padding-bottom: 7.25em !important;
  }
  .md\:pl7-25e {
    padding-left: 7.25em !important;
  }
  .md\:p7-5e {
    padding: 7.5em !important;
  }
  .md\:pt7-5e {
    padding-top: 7.5em !important;
  }
  .md\:pr7-5e {
    padding-right: 7.5em !important;
  }
  .md\:pb7-5e {
    padding-bottom: 7.5em !important;
  }
  .md\:pl7-5e {
    padding-left: 7.5em !important;
  }
  .md\:p7-75e {
    padding: 7.75em !important;
  }
  .md\:pt7-75e {
    padding-top: 7.75em !important;
  }
  .md\:pr7-75e {
    padding-right: 7.75em !important;
  }
  .md\:pb7-75e {
    padding-bottom: 7.75em !important;
  }
  .md\:pl7-75e {
    padding-left: 7.75em !important;
  }
  .md\:p8e {
    padding: 8em !important;
  }
  .md\:pt8e {
    padding-top: 8em !important;
  }
  .md\:pr8e {
    padding-right: 8em !important;
  }
  .md\:pb8e {
    padding-bottom: 8em !important;
  }
  .md\:pl8e {
    padding-left: 8em !important;
  }
  .md\:p8-25e {
    padding: 8.25em !important;
  }
  .md\:pt8-25e {
    padding-top: 8.25em !important;
  }
  .md\:pr8-25e {
    padding-right: 8.25em !important;
  }
  .md\:pb8-25e {
    padding-bottom: 8.25em !important;
  }
  .md\:pl8-25e {
    padding-left: 8.25em !important;
  }
  .md\:p8-5e {
    padding: 8.5em !important;
  }
  .md\:pt8-5e {
    padding-top: 8.5em !important;
  }
  .md\:pr8-5e {
    padding-right: 8.5em !important;
  }
  .md\:pb8-5e {
    padding-bottom: 8.5em !important;
  }
  .md\:pl8-5e {
    padding-left: 8.5em !important;
  }
  .md\:p8-75e {
    padding: 8.75em !important;
  }
  .md\:pt8-75e {
    padding-top: 8.75em !important;
  }
  .md\:pr8-75e {
    padding-right: 8.75em !important;
  }
  .md\:pb8-75e {
    padding-bottom: 8.75em !important;
  }
  .md\:pl8-75e {
    padding-left: 8.75em !important;
  }
  .md\:p9e {
    padding: 9em !important;
  }
  .md\:pt9e {
    padding-top: 9em !important;
  }
  .md\:pr9e {
    padding-right: 9em !important;
  }
  .md\:pb9e {
    padding-bottom: 9em !important;
  }
  .md\:pl9e {
    padding-left: 9em !important;
  }
  .md\:p9-25e {
    padding: 9.25em !important;
  }
  .md\:pt9-25e {
    padding-top: 9.25em !important;
  }
  .md\:pr9-25e {
    padding-right: 9.25em !important;
  }
  .md\:pb9-25e {
    padding-bottom: 9.25em !important;
  }
  .md\:pl9-25e {
    padding-left: 9.25em !important;
  }
  .md\:p9-5e {
    padding: 9.5em !important;
  }
  .md\:pt9-5e {
    padding-top: 9.5em !important;
  }
  .md\:pr9-5e {
    padding-right: 9.5em !important;
  }
  .md\:pb9-5e {
    padding-bottom: 9.5em !important;
  }
  .md\:pl9-5e {
    padding-left: 9.5em !important;
  }
  .md\:p9-75e {
    padding: 9.75em !important;
  }
  .md\:pt9-75e {
    padding-top: 9.75em !important;
  }
  .md\:pr9-75e {
    padding-right: 9.75em !important;
  }
  .md\:pb9-75e {
    padding-bottom: 9.75em !important;
  }
  .md\:pl9-75e {
    padding-left: 9.75em !important;
  }
  .md\:p10e {
    padding: 10em !important;
  }
  .md\:pt10e {
    padding-top: 10em !important;
  }
  .md\:pr10e {
    padding-right: 10em !important;
  }
  .md\:pb10e {
    padding-bottom: 10em !important;
  }
  .md\:pl10e {
    padding-left: 10em !important;
  }
}
.max-w-ini {
  max-width: initial !important;
}

.max-h-ini {
  max-height: initial !important;
}

.min-w-ini {
  min-width: initial !important;
}

.min-h-ini {
  min-height: initial !important;
}

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

.w-fit {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

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

.max-w0 {
  max-width: 0% !important;
}

.min-w0 {
  min-width: 0% !important;
}

.w0 {
  width: 0% !important;
}

.h0 {
  height: 0% !important;
}

.max-w5 {
  max-width: 5% !important;
}

.min-w5 {
  min-width: 5% !important;
}

.w5 {
  width: 5% !important;
}

.h5 {
  height: 5% !important;
}

.max-w10 {
  max-width: 10% !important;
}

.min-w10 {
  min-width: 10% !important;
}

.w10 {
  width: 10% !important;
}

.h10 {
  height: 10% !important;
}

.max-w15 {
  max-width: 15% !important;
}

.min-w15 {
  min-width: 15% !important;
}

.w15 {
  width: 15% !important;
}

.h15 {
  height: 15% !important;
}

.max-w20 {
  max-width: 20% !important;
}

.min-w20 {
  min-width: 20% !important;
}

.w20 {
  width: 20% !important;
}

.h20 {
  height: 20% !important;
}

.max-w25 {
  max-width: 25% !important;
}

.min-w25 {
  min-width: 25% !important;
}

.w25 {
  width: 25% !important;
}

.h25 {
  height: 25% !important;
}

.max-w30 {
  max-width: 30% !important;
}

.min-w30 {
  min-width: 30% !important;
}

.w30 {
  width: 30% !important;
}

.h30 {
  height: 30% !important;
}

.max-w35 {
  max-width: 35% !important;
}

.min-w35 {
  min-width: 35% !important;
}

.w35 {
  width: 35% !important;
}

.h35 {
  height: 35% !important;
}

.max-w40 {
  max-width: 40% !important;
}

.min-w40 {
  min-width: 40% !important;
}

.w40 {
  width: 40% !important;
}

.h40 {
  height: 40% !important;
}

.max-w45 {
  max-width: 45% !important;
}

.min-w45 {
  min-width: 45% !important;
}

.w45 {
  width: 45% !important;
}

.h45 {
  height: 45% !important;
}

.max-w50 {
  max-width: 50% !important;
}

.min-w50 {
  min-width: 50% !important;
}

.w50 {
  width: 50% !important;
}

.h50 {
  height: 50% !important;
}

.max-w55 {
  max-width: 55% !important;
}

.min-w55 {
  min-width: 55% !important;
}

.w55 {
  width: 55% !important;
}

.h55 {
  height: 55% !important;
}

.max-w60 {
  max-width: 60% !important;
}

.min-w60 {
  min-width: 60% !important;
}

.w60 {
  width: 60% !important;
}

.h60 {
  height: 60% !important;
}

.max-w65 {
  max-width: 65% !important;
}

.min-w65 {
  min-width: 65% !important;
}

.w65 {
  width: 65% !important;
}

.h65 {
  height: 65% !important;
}

.max-w70 {
  max-width: 70% !important;
}

.min-w70 {
  min-width: 70% !important;
}

.w70 {
  width: 70% !important;
}

.h70 {
  height: 70% !important;
}

.max-w75 {
  max-width: 75% !important;
}

.min-w75 {
  min-width: 75% !important;
}

.w75 {
  width: 75% !important;
}

.h75 {
  height: 75% !important;
}

.max-w80 {
  max-width: 80% !important;
}

.min-w80 {
  min-width: 80% !important;
}

.w80 {
  width: 80% !important;
}

.h80 {
  height: 80% !important;
}

.max-w85 {
  max-width: 85% !important;
}

.min-w85 {
  min-width: 85% !important;
}

.w85 {
  width: 85% !important;
}

.h85 {
  height: 85% !important;
}

.max-w90 {
  max-width: 90% !important;
}

.min-w90 {
  min-width: 90% !important;
}

.w90 {
  width: 90% !important;
}

.h90 {
  height: 90% !important;
}

.max-w95 {
  max-width: 95% !important;
}

.min-w95 {
  min-width: 95% !important;
}

.w95 {
  width: 95% !important;
}

.h95 {
  height: 95% !important;
}

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

.min-w100 {
  min-width: 100% !important;
}

.w100 {
  width: 100% !important;
}

.h100 {
  height: 100% !important;
}

@media (width > 375px) {
  .xs\:w0 {
    width: 0% !important;
  }
  .xs\:h0 {
    height: 0% !important;
  }
  .xs\:w5 {
    width: 5% !important;
  }
  .xs\:h5 {
    height: 5% !important;
  }
  .xs\:w10 {
    width: 10% !important;
  }
  .xs\:h10 {
    height: 10% !important;
  }
  .xs\:w15 {
    width: 15% !important;
  }
  .xs\:h15 {
    height: 15% !important;
  }
  .xs\:w20 {
    width: 20% !important;
  }
  .xs\:h20 {
    height: 20% !important;
  }
  .xs\:w25 {
    width: 25% !important;
  }
  .xs\:h25 {
    height: 25% !important;
  }
  .xs\:w30 {
    width: 30% !important;
  }
  .xs\:h30 {
    height: 30% !important;
  }
  .xs\:w35 {
    width: 35% !important;
  }
  .xs\:h35 {
    height: 35% !important;
  }
  .xs\:w40 {
    width: 40% !important;
  }
  .xs\:h40 {
    height: 40% !important;
  }
  .xs\:w45 {
    width: 45% !important;
  }
  .xs\:h45 {
    height: 45% !important;
  }
  .xs\:w50 {
    width: 50% !important;
  }
  .xs\:h50 {
    height: 50% !important;
  }
  .xs\:w55 {
    width: 55% !important;
  }
  .xs\:h55 {
    height: 55% !important;
  }
  .xs\:w60 {
    width: 60% !important;
  }
  .xs\:h60 {
    height: 60% !important;
  }
  .xs\:w65 {
    width: 65% !important;
  }
  .xs\:h65 {
    height: 65% !important;
  }
  .xs\:w70 {
    width: 70% !important;
  }
  .xs\:h70 {
    height: 70% !important;
  }
  .xs\:w75 {
    width: 75% !important;
  }
  .xs\:h75 {
    height: 75% !important;
  }
  .xs\:w80 {
    width: 80% !important;
  }
  .xs\:h80 {
    height: 80% !important;
  }
  .xs\:w85 {
    width: 85% !important;
  }
  .xs\:h85 {
    height: 85% !important;
  }
  .xs\:w90 {
    width: 90% !important;
  }
  .xs\:h90 {
    height: 90% !important;
  }
  .xs\:w95 {
    width: 95% !important;
  }
  .xs\:h95 {
    height: 95% !important;
  }
  .xs\:w100 {
    width: 100% !important;
  }
  .xs\:h100 {
    height: 100% !important;
  }
}
@media (width > 500px) {
  .sm\:w0 {
    width: 0% !important;
  }
  .sm\:h0 {
    height: 0% !important;
  }
  .sm\:w5 {
    width: 5% !important;
  }
  .sm\:h5 {
    height: 5% !important;
  }
  .sm\:w10 {
    width: 10% !important;
  }
  .sm\:h10 {
    height: 10% !important;
  }
  .sm\:w15 {
    width: 15% !important;
  }
  .sm\:h15 {
    height: 15% !important;
  }
  .sm\:w20 {
    width: 20% !important;
  }
  .sm\:h20 {
    height: 20% !important;
  }
  .sm\:w25 {
    width: 25% !important;
  }
  .sm\:h25 {
    height: 25% !important;
  }
  .sm\:w30 {
    width: 30% !important;
  }
  .sm\:h30 {
    height: 30% !important;
  }
  .sm\:w35 {
    width: 35% !important;
  }
  .sm\:h35 {
    height: 35% !important;
  }
  .sm\:w40 {
    width: 40% !important;
  }
  .sm\:h40 {
    height: 40% !important;
  }
  .sm\:w45 {
    width: 45% !important;
  }
  .sm\:h45 {
    height: 45% !important;
  }
  .sm\:w50 {
    width: 50% !important;
  }
  .sm\:h50 {
    height: 50% !important;
  }
  .sm\:w55 {
    width: 55% !important;
  }
  .sm\:h55 {
    height: 55% !important;
  }
  .sm\:w60 {
    width: 60% !important;
  }
  .sm\:h60 {
    height: 60% !important;
  }
  .sm\:w65 {
    width: 65% !important;
  }
  .sm\:h65 {
    height: 65% !important;
  }
  .sm\:w70 {
    width: 70% !important;
  }
  .sm\:h70 {
    height: 70% !important;
  }
  .sm\:w75 {
    width: 75% !important;
  }
  .sm\:h75 {
    height: 75% !important;
  }
  .sm\:w80 {
    width: 80% !important;
  }
  .sm\:h80 {
    height: 80% !important;
  }
  .sm\:w85 {
    width: 85% !important;
  }
  .sm\:h85 {
    height: 85% !important;
  }
  .sm\:w90 {
    width: 90% !important;
  }
  .sm\:h90 {
    height: 90% !important;
  }
  .sm\:w95 {
    width: 95% !important;
  }
  .sm\:h95 {
    height: 95% !important;
  }
  .sm\:w100 {
    width: 100% !important;
  }
  .sm\:h100 {
    height: 100% !important;
  }
}
@media (width > 768px) {
  .md\:w-auto {
    width: auto !important;
  }
  .md\:w0 {
    width: 0% !important;
  }
  .md\:h0 {
    height: 0% !important;
  }
  .md\:w5 {
    width: 5% !important;
  }
  .md\:h5 {
    height: 5% !important;
  }
  .md\:w10 {
    width: 10% !important;
  }
  .md\:h10 {
    height: 10% !important;
  }
  .md\:w15 {
    width: 15% !important;
  }
  .md\:h15 {
    height: 15% !important;
  }
  .md\:w20 {
    width: 20% !important;
  }
  .md\:h20 {
    height: 20% !important;
  }
  .md\:w25 {
    width: 25% !important;
  }
  .md\:h25 {
    height: 25% !important;
  }
  .md\:w30 {
    width: 30% !important;
  }
  .md\:h30 {
    height: 30% !important;
  }
  .md\:w35 {
    width: 35% !important;
  }
  .md\:h35 {
    height: 35% !important;
  }
  .md\:w40 {
    width: 40% !important;
  }
  .md\:h40 {
    height: 40% !important;
  }
  .md\:w45 {
    width: 45% !important;
  }
  .md\:h45 {
    height: 45% !important;
  }
  .md\:w50 {
    width: 50% !important;
  }
  .md\:h50 {
    height: 50% !important;
  }
  .md\:w55 {
    width: 55% !important;
  }
  .md\:h55 {
    height: 55% !important;
  }
  .md\:w60 {
    width: 60% !important;
  }
  .md\:h60 {
    height: 60% !important;
  }
  .md\:w65 {
    width: 65% !important;
  }
  .md\:h65 {
    height: 65% !important;
  }
  .md\:w70 {
    width: 70% !important;
  }
  .md\:h70 {
    height: 70% !important;
  }
  .md\:w75 {
    width: 75% !important;
  }
  .md\:h75 {
    height: 75% !important;
  }
  .md\:w80 {
    width: 80% !important;
  }
  .md\:h80 {
    height: 80% !important;
  }
  .md\:w85 {
    width: 85% !important;
  }
  .md\:h85 {
    height: 85% !important;
  }
  .md\:w90 {
    width: 90% !important;
  }
  .md\:h90 {
    height: 90% !important;
  }
  .md\:w95 {
    width: 95% !important;
  }
  .md\:h95 {
    height: 95% !important;
  }
  .md\:w100 {
    width: 100% !important;
  }
  .md\:h100 {
    height: 100% !important;
  }
  .md\:w0 {
    width: 0% !important;
  }
  .md\:h0 {
    height: 0% !important;
  }
  .md\:w5 {
    width: 5% !important;
  }
  .md\:h5 {
    height: 5% !important;
  }
  .md\:w10 {
    width: 10% !important;
  }
  .md\:h10 {
    height: 10% !important;
  }
  .md\:w15 {
    width: 15% !important;
  }
  .md\:h15 {
    height: 15% !important;
  }
  .md\:w20 {
    width: 20% !important;
  }
  .md\:h20 {
    height: 20% !important;
  }
  .md\:w25 {
    width: 25% !important;
  }
  .md\:h25 {
    height: 25% !important;
  }
  .md\:w30 {
    width: 30% !important;
  }
  .md\:h30 {
    height: 30% !important;
  }
  .md\:w35 {
    width: 35% !important;
  }
  .md\:h35 {
    height: 35% !important;
  }
  .md\:w40 {
    width: 40% !important;
  }
  .md\:h40 {
    height: 40% !important;
  }
  .md\:w45 {
    width: 45% !important;
  }
  .md\:h45 {
    height: 45% !important;
  }
  .md\:w50 {
    width: 50% !important;
  }
  .md\:h50 {
    height: 50% !important;
  }
  .md\:w55 {
    width: 55% !important;
  }
  .md\:h55 {
    height: 55% !important;
  }
  .md\:w60 {
    width: 60% !important;
  }
  .md\:h60 {
    height: 60% !important;
  }
  .md\:w65 {
    width: 65% !important;
  }
  .md\:h65 {
    height: 65% !important;
  }
  .md\:w70 {
    width: 70% !important;
  }
  .md\:h70 {
    height: 70% !important;
  }
  .md\:w75 {
    width: 75% !important;
  }
  .md\:h75 {
    height: 75% !important;
  }
  .md\:w80 {
    width: 80% !important;
  }
  .md\:h80 {
    height: 80% !important;
  }
  .md\:w85 {
    width: 85% !important;
  }
  .md\:h85 {
    height: 85% !important;
  }
  .md\:w90 {
    width: 90% !important;
  }
  .md\:h90 {
    height: 90% !important;
  }
  .md\:w95 {
    width: 95% !important;
  }
  .md\:h95 {
    height: 95% !important;
  }
  .md\:w100 {
    width: 100% !important;
  }
  .md\:h100 {
    height: 100% !important;
  }
  .md\:w0-25e {
    width: 0.25em !important;
  }
  .md\:h0-25e {
    height: 0.25em !important;
  }
  .md\:w0-5e {
    width: 0.5em !important;
  }
  .md\:h0-5e {
    height: 0.5em !important;
  }
  .md\:w0-75e {
    width: 0.75em !important;
  }
  .md\:h0-75e {
    height: 0.75em !important;
  }
  .md\:w1e {
    width: 1em !important;
  }
  .md\:h1e {
    height: 1em !important;
  }
  .md\:min-w1e {
    min-width: 1em !important;
  }
  .md\:min-h1e {
    min-height: 1em !important;
  }
  .md\:max-w1e {
    max-width: 1em !important;
  }
  .md\:max-h1e {
    max-height: 1em !important;
  }
  .md\:w1-25e {
    width: 1.25em !important;
  }
  .md\:h1-25e {
    height: 1.25em !important;
  }
  .md\:w1-5e {
    width: 1.5em !important;
  }
  .md\:h1-5e {
    height: 1.5em !important;
  }
  .md\:w1-75e {
    width: 1.75em !important;
  }
  .md\:h1-75e {
    height: 1.75em !important;
  }
  .md\:w2e {
    width: 2em !important;
  }
  .md\:h2e {
    height: 2em !important;
  }
  .md\:min-w2e {
    min-width: 2em !important;
  }
  .md\:min-h2e {
    min-height: 2em !important;
  }
  .md\:max-w2e {
    max-width: 2em !important;
  }
  .md\:max-h2e {
    max-height: 2em !important;
  }
  .md\:w2-25e {
    width: 2.25em !important;
  }
  .md\:h2-25e {
    height: 2.25em !important;
  }
  .md\:w2-5e {
    width: 2.5em !important;
  }
  .md\:h2-5e {
    height: 2.5em !important;
  }
  .md\:w2-75e {
    width: 2.75em !important;
  }
  .md\:h2-75e {
    height: 2.75em !important;
  }
  .md\:w3e {
    width: 3em !important;
  }
  .md\:h3e {
    height: 3em !important;
  }
  .md\:min-w3e {
    min-width: 3em !important;
  }
  .md\:min-h3e {
    min-height: 3em !important;
  }
  .md\:max-w3e {
    max-width: 3em !important;
  }
  .md\:max-h3e {
    max-height: 3em !important;
  }
  .md\:w3-25e {
    width: 3.25em !important;
  }
  .md\:h3-25e {
    height: 3.25em !important;
  }
  .md\:w3-5e {
    width: 3.5em !important;
  }
  .md\:h3-5e {
    height: 3.5em !important;
  }
  .md\:w3-75e {
    width: 3.75em !important;
  }
  .md\:h3-75e {
    height: 3.75em !important;
  }
  .md\:w4e {
    width: 4em !important;
  }
  .md\:h4e {
    height: 4em !important;
  }
  .md\:min-w4e {
    min-width: 4em !important;
  }
  .md\:min-h4e {
    min-height: 4em !important;
  }
  .md\:max-w4e {
    max-width: 4em !important;
  }
  .md\:max-h4e {
    max-height: 4em !important;
  }
  .md\:w4-25e {
    width: 4.25em !important;
  }
  .md\:h4-25e {
    height: 4.25em !important;
  }
  .md\:w4-5e {
    width: 4.5em !important;
  }
  .md\:h4-5e {
    height: 4.5em !important;
  }
  .md\:w4-75e {
    width: 4.75em !important;
  }
  .md\:h4-75e {
    height: 4.75em !important;
  }
  .md\:w5e {
    width: 5em !important;
  }
  .md\:h5e {
    height: 5em !important;
  }
  .md\:min-w5e {
    min-width: 5em !important;
  }
  .md\:min-h5e {
    min-height: 5em !important;
  }
  .md\:max-w5e {
    max-width: 5em !important;
  }
  .md\:max-h5e {
    max-height: 5em !important;
  }
  .md\:w5-25e {
    width: 5.25em !important;
  }
  .md\:h5-25e {
    height: 5.25em !important;
  }
  .md\:w5-5e {
    width: 5.5em !important;
  }
  .md\:h5-5e {
    height: 5.5em !important;
  }
  .md\:w5-75e {
    width: 5.75em !important;
  }
  .md\:h5-75e {
    height: 5.75em !important;
  }
  .md\:w6e {
    width: 6em !important;
  }
  .md\:h6e {
    height: 6em !important;
  }
  .md\:min-w6e {
    min-width: 6em !important;
  }
  .md\:min-h6e {
    min-height: 6em !important;
  }
  .md\:max-w6e {
    max-width: 6em !important;
  }
  .md\:max-h6e {
    max-height: 6em !important;
  }
  .md\:w6-25e {
    width: 6.25em !important;
  }
  .md\:h6-25e {
    height: 6.25em !important;
  }
  .md\:w6-5e {
    width: 6.5em !important;
  }
  .md\:h6-5e {
    height: 6.5em !important;
  }
  .md\:w6-75e {
    width: 6.75em !important;
  }
  .md\:h6-75e {
    height: 6.75em !important;
  }
  .md\:w7e {
    width: 7em !important;
  }
  .md\:h7e {
    height: 7em !important;
  }
  .md\:min-w7e {
    min-width: 7em !important;
  }
  .md\:min-h7e {
    min-height: 7em !important;
  }
  .md\:max-w7e {
    max-width: 7em !important;
  }
  .md\:max-h7e {
    max-height: 7em !important;
  }
  .md\:w7-25e {
    width: 7.25em !important;
  }
  .md\:h7-25e {
    height: 7.25em !important;
  }
  .md\:w7-5e {
    width: 7.5em !important;
  }
  .md\:h7-5e {
    height: 7.5em !important;
  }
  .md\:w7-75e {
    width: 7.75em !important;
  }
  .md\:h7-75e {
    height: 7.75em !important;
  }
  .md\:w8e {
    width: 8em !important;
  }
  .md\:h8e {
    height: 8em !important;
  }
  .md\:min-w8e {
    min-width: 8em !important;
  }
  .md\:min-h8e {
    min-height: 8em !important;
  }
  .md\:max-w8e {
    max-width: 8em !important;
  }
  .md\:max-h8e {
    max-height: 8em !important;
  }
  .md\:w8-25e {
    width: 8.25em !important;
  }
  .md\:h8-25e {
    height: 8.25em !important;
  }
  .md\:w8-5e {
    width: 8.5em !important;
  }
  .md\:h8-5e {
    height: 8.5em !important;
  }
  .md\:w8-75e {
    width: 8.75em !important;
  }
  .md\:h8-75e {
    height: 8.75em !important;
  }
  .md\:w9e {
    width: 9em !important;
  }
  .md\:h9e {
    height: 9em !important;
  }
  .md\:min-w9e {
    min-width: 9em !important;
  }
  .md\:min-h9e {
    min-height: 9em !important;
  }
  .md\:max-w9e {
    max-width: 9em !important;
  }
  .md\:max-h9e {
    max-height: 9em !important;
  }
  .md\:w9-25e {
    width: 9.25em !important;
  }
  .md\:h9-25e {
    height: 9.25em !important;
  }
  .md\:w9-5e {
    width: 9.5em !important;
  }
  .md\:h9-5e {
    height: 9.5em !important;
  }
  .md\:w9-75e {
    width: 9.75em !important;
  }
  .md\:h9-75e {
    height: 9.75em !important;
  }
  .md\:w10e {
    width: 10em !important;
  }
  .md\:h10e {
    height: 10em !important;
  }
  .md\:min-w10e {
    min-width: 10em !important;
  }
  .md\:min-h10e {
    min-height: 10em !important;
  }
  .md\:max-w10e {
    max-width: 10em !important;
  }
  .md\:max-h10e {
    max-height: 10em !important;
  }
  .md\:w10-25e {
    width: 10.25em !important;
  }
  .md\:h10-25e {
    height: 10.25em !important;
  }
  .md\:w10-5e {
    width: 10.5em !important;
  }
  .md\:h10-5e {
    height: 10.5em !important;
  }
  .md\:w10-75e {
    width: 10.75em !important;
  }
  .md\:h10-75e {
    height: 10.75em !important;
  }
  .md\:w11e {
    width: 11em !important;
  }
  .md\:h11e {
    height: 11em !important;
  }
  .md\:min-w11e {
    min-width: 11em !important;
  }
  .md\:min-h11e {
    min-height: 11em !important;
  }
  .md\:max-w11e {
    max-width: 11em !important;
  }
  .md\:max-h11e {
    max-height: 11em !important;
  }
  .md\:w11-25e {
    width: 11.25em !important;
  }
  .md\:h11-25e {
    height: 11.25em !important;
  }
  .md\:w11-5e {
    width: 11.5em !important;
  }
  .md\:h11-5e {
    height: 11.5em !important;
  }
  .md\:w11-75e {
    width: 11.75em !important;
  }
  .md\:h11-75e {
    height: 11.75em !important;
  }
  .md\:w12e {
    width: 12em !important;
  }
  .md\:h12e {
    height: 12em !important;
  }
  .md\:min-w12e {
    min-width: 12em !important;
  }
  .md\:min-h12e {
    min-height: 12em !important;
  }
  .md\:max-w12e {
    max-width: 12em !important;
  }
  .md\:max-h12e {
    max-height: 12em !important;
  }
  .md\:w12-25e {
    width: 12.25em !important;
  }
  .md\:h12-25e {
    height: 12.25em !important;
  }
  .md\:w12-5e {
    width: 12.5em !important;
  }
  .md\:h12-5e {
    height: 12.5em !important;
  }
  .md\:w12-75e {
    width: 12.75em !important;
  }
  .md\:h12-75e {
    height: 12.75em !important;
  }
  .md\:w13e {
    width: 13em !important;
  }
  .md\:h13e {
    height: 13em !important;
  }
  .md\:min-w13e {
    min-width: 13em !important;
  }
  .md\:min-h13e {
    min-height: 13em !important;
  }
  .md\:max-w13e {
    max-width: 13em !important;
  }
  .md\:max-h13e {
    max-height: 13em !important;
  }
  .md\:w13-25e {
    width: 13.25em !important;
  }
  .md\:h13-25e {
    height: 13.25em !important;
  }
  .md\:w13-5e {
    width: 13.5em !important;
  }
  .md\:h13-5e {
    height: 13.5em !important;
  }
  .md\:w13-75e {
    width: 13.75em !important;
  }
  .md\:h13-75e {
    height: 13.75em !important;
  }
  .md\:w14e {
    width: 14em !important;
  }
  .md\:h14e {
    height: 14em !important;
  }
  .md\:min-w14e {
    min-width: 14em !important;
  }
  .md\:min-h14e {
    min-height: 14em !important;
  }
  .md\:max-w14e {
    max-width: 14em !important;
  }
  .md\:max-h14e {
    max-height: 14em !important;
  }
  .md\:w14-25e {
    width: 14.25em !important;
  }
  .md\:h14-25e {
    height: 14.25em !important;
  }
  .md\:w14-5e {
    width: 14.5em !important;
  }
  .md\:h14-5e {
    height: 14.5em !important;
  }
  .md\:w14-75e {
    width: 14.75em !important;
  }
  .md\:h14-75e {
    height: 14.75em !important;
  }
  .md\:w15e {
    width: 15em !important;
  }
  .md\:h15e {
    height: 15em !important;
  }
  .md\:min-w15e {
    min-width: 15em !important;
  }
  .md\:min-h15e {
    min-height: 15em !important;
  }
  .md\:max-w15e {
    max-width: 15em !important;
  }
  .md\:max-h15e {
    max-height: 15em !important;
  }
  .md\:w15-25e {
    width: 15.25em !important;
  }
  .md\:h15-25e {
    height: 15.25em !important;
  }
  .md\:w15-5e {
    width: 15.5em !important;
  }
  .md\:h15-5e {
    height: 15.5em !important;
  }
  .md\:w15-75e {
    width: 15.75em !important;
  }
  .md\:h15-75e {
    height: 15.75em !important;
  }
  .md\:w16e {
    width: 16em !important;
  }
  .md\:h16e {
    height: 16em !important;
  }
  .md\:min-w16e {
    min-width: 16em !important;
  }
  .md\:min-h16e {
    min-height: 16em !important;
  }
  .md\:max-w16e {
    max-width: 16em !important;
  }
  .md\:max-h16e {
    max-height: 16em !important;
  }
  .md\:w16-25e {
    width: 16.25em !important;
  }
  .md\:h16-25e {
    height: 16.25em !important;
  }
  .md\:w16-5e {
    width: 16.5em !important;
  }
  .md\:h16-5e {
    height: 16.5em !important;
  }
  .md\:w16-75e {
    width: 16.75em !important;
  }
  .md\:h16-75e {
    height: 16.75em !important;
  }
  .md\:w17e {
    width: 17em !important;
  }
  .md\:h17e {
    height: 17em !important;
  }
  .md\:min-w17e {
    min-width: 17em !important;
  }
  .md\:min-h17e {
    min-height: 17em !important;
  }
  .md\:max-w17e {
    max-width: 17em !important;
  }
  .md\:max-h17e {
    max-height: 17em !important;
  }
  .md\:w17-25e {
    width: 17.25em !important;
  }
  .md\:h17-25e {
    height: 17.25em !important;
  }
  .md\:w17-5e {
    width: 17.5em !important;
  }
  .md\:h17-5e {
    height: 17.5em !important;
  }
  .md\:w17-75e {
    width: 17.75em !important;
  }
  .md\:h17-75e {
    height: 17.75em !important;
  }
  .md\:w18e {
    width: 18em !important;
  }
  .md\:h18e {
    height: 18em !important;
  }
  .md\:min-w18e {
    min-width: 18em !important;
  }
  .md\:min-h18e {
    min-height: 18em !important;
  }
  .md\:max-w18e {
    max-width: 18em !important;
  }
  .md\:max-h18e {
    max-height: 18em !important;
  }
  .md\:w18-25e {
    width: 18.25em !important;
  }
  .md\:h18-25e {
    height: 18.25em !important;
  }
  .md\:w18-5e {
    width: 18.5em !important;
  }
  .md\:h18-5e {
    height: 18.5em !important;
  }
  .md\:w18-75e {
    width: 18.75em !important;
  }
  .md\:h18-75e {
    height: 18.75em !important;
  }
  .md\:w19e {
    width: 19em !important;
  }
  .md\:h19e {
    height: 19em !important;
  }
  .md\:min-w19e {
    min-width: 19em !important;
  }
  .md\:min-h19e {
    min-height: 19em !important;
  }
  .md\:max-w19e {
    max-width: 19em !important;
  }
  .md\:max-h19e {
    max-height: 19em !important;
  }
  .md\:w19-25e {
    width: 19.25em !important;
  }
  .md\:h19-25e {
    height: 19.25em !important;
  }
  .md\:w19-5e {
    width: 19.5em !important;
  }
  .md\:h19-5e {
    height: 19.5em !important;
  }
  .md\:w19-75e {
    width: 19.75em !important;
  }
  .md\:h19-75e {
    height: 19.75em !important;
  }
  .md\:w20e {
    width: 20em !important;
  }
  .md\:h20e {
    height: 20em !important;
  }
  .md\:min-w20e {
    min-width: 20em !important;
  }
  .md\:min-h20e {
    min-height: 20em !important;
  }
  .md\:max-w20e {
    max-width: 20em !important;
  }
  .md\:max-h20e {
    max-height: 20em !important;
  }
}
@media (width > 1024px) {
  .lg\:w-auto {
    width: auto !important;
  }
  .lg\:w0 {
    width: 0% !important;
  }
  .lg\:h0 {
    height: 0% !important;
  }
  .lg\:w5 {
    width: 5% !important;
  }
  .lg\:h5 {
    height: 5% !important;
  }
  .lg\:w10 {
    width: 10% !important;
  }
  .lg\:h10 {
    height: 10% !important;
  }
  .lg\:w15 {
    width: 15% !important;
  }
  .lg\:h15 {
    height: 15% !important;
  }
  .lg\:w20 {
    width: 20% !important;
  }
  .lg\:h20 {
    height: 20% !important;
  }
  .lg\:w25 {
    width: 25% !important;
  }
  .lg\:h25 {
    height: 25% !important;
  }
  .lg\:w30 {
    width: 30% !important;
  }
  .lg\:h30 {
    height: 30% !important;
  }
  .lg\:w35 {
    width: 35% !important;
  }
  .lg\:h35 {
    height: 35% !important;
  }
  .lg\:w40 {
    width: 40% !important;
  }
  .lg\:h40 {
    height: 40% !important;
  }
  .lg\:w45 {
    width: 45% !important;
  }
  .lg\:h45 {
    height: 45% !important;
  }
  .lg\:w50 {
    width: 50% !important;
  }
  .lg\:h50 {
    height: 50% !important;
  }
  .lg\:w55 {
    width: 55% !important;
  }
  .lg\:h55 {
    height: 55% !important;
  }
  .lg\:w60 {
    width: 60% !important;
  }
  .lg\:h60 {
    height: 60% !important;
  }
  .lg\:w65 {
    width: 65% !important;
  }
  .lg\:h65 {
    height: 65% !important;
  }
  .lg\:w70 {
    width: 70% !important;
  }
  .lg\:h70 {
    height: 70% !important;
  }
  .lg\:w75 {
    width: 75% !important;
  }
  .lg\:h75 {
    height: 75% !important;
  }
  .lg\:w80 {
    width: 80% !important;
  }
  .lg\:h80 {
    height: 80% !important;
  }
  .lg\:w85 {
    width: 85% !important;
  }
  .lg\:h85 {
    height: 85% !important;
  }
  .lg\:w90 {
    width: 90% !important;
  }
  .lg\:h90 {
    height: 90% !important;
  }
  .lg\:w95 {
    width: 95% !important;
  }
  .lg\:h95 {
    height: 95% !important;
  }
  .lg\:w100 {
    width: 100% !important;
  }
  .lg\:h100 {
    height: 100% !important;
  }
  .lg\:w0 {
    width: 0% !important;
  }
  .lg\:h0 {
    height: 0% !important;
  }
  .lg\:w5 {
    width: 5% !important;
  }
  .lg\:h5 {
    height: 5% !important;
  }
  .lg\:w10 {
    width: 10% !important;
  }
  .lg\:h10 {
    height: 10% !important;
  }
  .lg\:w15 {
    width: 15% !important;
  }
  .lg\:h15 {
    height: 15% !important;
  }
  .lg\:w20 {
    width: 20% !important;
  }
  .lg\:h20 {
    height: 20% !important;
  }
  .lg\:w25 {
    width: 25% !important;
  }
  .lg\:h25 {
    height: 25% !important;
  }
  .lg\:w30 {
    width: 30% !important;
  }
  .lg\:h30 {
    height: 30% !important;
  }
  .lg\:w35 {
    width: 35% !important;
  }
  .lg\:h35 {
    height: 35% !important;
  }
  .lg\:w40 {
    width: 40% !important;
  }
  .lg\:h40 {
    height: 40% !important;
  }
  .lg\:w45 {
    width: 45% !important;
  }
  .lg\:h45 {
    height: 45% !important;
  }
  .lg\:w50 {
    width: 50% !important;
  }
  .lg\:h50 {
    height: 50% !important;
  }
  .lg\:w55 {
    width: 55% !important;
  }
  .lg\:h55 {
    height: 55% !important;
  }
  .lg\:w60 {
    width: 60% !important;
  }
  .lg\:h60 {
    height: 60% !important;
  }
  .lg\:w65 {
    width: 65% !important;
  }
  .lg\:h65 {
    height: 65% !important;
  }
  .lg\:w70 {
    width: 70% !important;
  }
  .lg\:h70 {
    height: 70% !important;
  }
  .lg\:w75 {
    width: 75% !important;
  }
  .lg\:h75 {
    height: 75% !important;
  }
  .lg\:w80 {
    width: 80% !important;
  }
  .lg\:h80 {
    height: 80% !important;
  }
  .lg\:w85 {
    width: 85% !important;
  }
  .lg\:h85 {
    height: 85% !important;
  }
  .lg\:w90 {
    width: 90% !important;
  }
  .lg\:h90 {
    height: 90% !important;
  }
  .lg\:w95 {
    width: 95% !important;
  }
  .lg\:h95 {
    height: 95% !important;
  }
  .lg\:w100 {
    width: 100% !important;
  }
  .lg\:h100 {
    height: 100% !important;
  }
  .lg\:w0-25e {
    width: 0.25em !important;
  }
  .lg\:h0-25e {
    height: 0.25em !important;
  }
  .lg\:w0-5e {
    width: 0.5em !important;
  }
  .lg\:h0-5e {
    height: 0.5em !important;
  }
  .lg\:w0-75e {
    width: 0.75em !important;
  }
  .lg\:h0-75e {
    height: 0.75em !important;
  }
  .lg\:w1e {
    width: 1em !important;
  }
  .lg\:h1e {
    height: 1em !important;
  }
  .lg\:min-w1e {
    min-width: 1em !important;
  }
  .lg\:min-h1e {
    min-height: 1em !important;
  }
  .lg\:max-w1e {
    max-width: 1em !important;
  }
  .lg\:max-h1e {
    max-height: 1em !important;
  }
  .lg\:w1-25e {
    width: 1.25em !important;
  }
  .lg\:h1-25e {
    height: 1.25em !important;
  }
  .lg\:w1-5e {
    width: 1.5em !important;
  }
  .lg\:h1-5e {
    height: 1.5em !important;
  }
  .lg\:w1-75e {
    width: 1.75em !important;
  }
  .lg\:h1-75e {
    height: 1.75em !important;
  }
  .lg\:w2e {
    width: 2em !important;
  }
  .lg\:h2e {
    height: 2em !important;
  }
  .lg\:min-w2e {
    min-width: 2em !important;
  }
  .lg\:min-h2e {
    min-height: 2em !important;
  }
  .lg\:max-w2e {
    max-width: 2em !important;
  }
  .lg\:max-h2e {
    max-height: 2em !important;
  }
  .lg\:w2-25e {
    width: 2.25em !important;
  }
  .lg\:h2-25e {
    height: 2.25em !important;
  }
  .lg\:w2-5e {
    width: 2.5em !important;
  }
  .lg\:h2-5e {
    height: 2.5em !important;
  }
  .lg\:w2-75e {
    width: 2.75em !important;
  }
  .lg\:h2-75e {
    height: 2.75em !important;
  }
  .lg\:w3e {
    width: 3em !important;
  }
  .lg\:h3e {
    height: 3em !important;
  }
  .lg\:min-w3e {
    min-width: 3em !important;
  }
  .lg\:min-h3e {
    min-height: 3em !important;
  }
  .lg\:max-w3e {
    max-width: 3em !important;
  }
  .lg\:max-h3e {
    max-height: 3em !important;
  }
  .lg\:w3-25e {
    width: 3.25em !important;
  }
  .lg\:h3-25e {
    height: 3.25em !important;
  }
  .lg\:w3-5e {
    width: 3.5em !important;
  }
  .lg\:h3-5e {
    height: 3.5em !important;
  }
  .lg\:w3-75e {
    width: 3.75em !important;
  }
  .lg\:h3-75e {
    height: 3.75em !important;
  }
  .lg\:w4e {
    width: 4em !important;
  }
  .lg\:h4e {
    height: 4em !important;
  }
  .lg\:min-w4e {
    min-width: 4em !important;
  }
  .lg\:min-h4e {
    min-height: 4em !important;
  }
  .lg\:max-w4e {
    max-width: 4em !important;
  }
  .lg\:max-h4e {
    max-height: 4em !important;
  }
  .lg\:w4-25e {
    width: 4.25em !important;
  }
  .lg\:h4-25e {
    height: 4.25em !important;
  }
  .lg\:w4-5e {
    width: 4.5em !important;
  }
  .lg\:h4-5e {
    height: 4.5em !important;
  }
  .lg\:w4-75e {
    width: 4.75em !important;
  }
  .lg\:h4-75e {
    height: 4.75em !important;
  }
  .lg\:w5e {
    width: 5em !important;
  }
  .lg\:h5e {
    height: 5em !important;
  }
  .lg\:min-w5e {
    min-width: 5em !important;
  }
  .lg\:min-h5e {
    min-height: 5em !important;
  }
  .lg\:max-w5e {
    max-width: 5em !important;
  }
  .lg\:max-h5e {
    max-height: 5em !important;
  }
  .lg\:w5-25e {
    width: 5.25em !important;
  }
  .lg\:h5-25e {
    height: 5.25em !important;
  }
  .lg\:w5-5e {
    width: 5.5em !important;
  }
  .lg\:h5-5e {
    height: 5.5em !important;
  }
  .lg\:w5-75e {
    width: 5.75em !important;
  }
  .lg\:h5-75e {
    height: 5.75em !important;
  }
  .lg\:w6e {
    width: 6em !important;
  }
  .lg\:h6e {
    height: 6em !important;
  }
  .lg\:min-w6e {
    min-width: 6em !important;
  }
  .lg\:min-h6e {
    min-height: 6em !important;
  }
  .lg\:max-w6e {
    max-width: 6em !important;
  }
  .lg\:max-h6e {
    max-height: 6em !important;
  }
  .lg\:w6-25e {
    width: 6.25em !important;
  }
  .lg\:h6-25e {
    height: 6.25em !important;
  }
  .lg\:w6-5e {
    width: 6.5em !important;
  }
  .lg\:h6-5e {
    height: 6.5em !important;
  }
  .lg\:w6-75e {
    width: 6.75em !important;
  }
  .lg\:h6-75e {
    height: 6.75em !important;
  }
  .lg\:w7e {
    width: 7em !important;
  }
  .lg\:h7e {
    height: 7em !important;
  }
  .lg\:min-w7e {
    min-width: 7em !important;
  }
  .lg\:min-h7e {
    min-height: 7em !important;
  }
  .lg\:max-w7e {
    max-width: 7em !important;
  }
  .lg\:max-h7e {
    max-height: 7em !important;
  }
  .lg\:w7-25e {
    width: 7.25em !important;
  }
  .lg\:h7-25e {
    height: 7.25em !important;
  }
  .lg\:w7-5e {
    width: 7.5em !important;
  }
  .lg\:h7-5e {
    height: 7.5em !important;
  }
  .lg\:w7-75e {
    width: 7.75em !important;
  }
  .lg\:h7-75e {
    height: 7.75em !important;
  }
  .lg\:w8e {
    width: 8em !important;
  }
  .lg\:h8e {
    height: 8em !important;
  }
  .lg\:min-w8e {
    min-width: 8em !important;
  }
  .lg\:min-h8e {
    min-height: 8em !important;
  }
  .lg\:max-w8e {
    max-width: 8em !important;
  }
  .lg\:max-h8e {
    max-height: 8em !important;
  }
  .lg\:w8-25e {
    width: 8.25em !important;
  }
  .lg\:h8-25e {
    height: 8.25em !important;
  }
  .lg\:w8-5e {
    width: 8.5em !important;
  }
  .lg\:h8-5e {
    height: 8.5em !important;
  }
  .lg\:w8-75e {
    width: 8.75em !important;
  }
  .lg\:h8-75e {
    height: 8.75em !important;
  }
  .lg\:w9e {
    width: 9em !important;
  }
  .lg\:h9e {
    height: 9em !important;
  }
  .lg\:min-w9e {
    min-width: 9em !important;
  }
  .lg\:min-h9e {
    min-height: 9em !important;
  }
  .lg\:max-w9e {
    max-width: 9em !important;
  }
  .lg\:max-h9e {
    max-height: 9em !important;
  }
  .lg\:w9-25e {
    width: 9.25em !important;
  }
  .lg\:h9-25e {
    height: 9.25em !important;
  }
  .lg\:w9-5e {
    width: 9.5em !important;
  }
  .lg\:h9-5e {
    height: 9.5em !important;
  }
  .lg\:w9-75e {
    width: 9.75em !important;
  }
  .lg\:h9-75e {
    height: 9.75em !important;
  }
  .lg\:w10e {
    width: 10em !important;
  }
  .lg\:h10e {
    height: 10em !important;
  }
  .lg\:min-w10e {
    min-width: 10em !important;
  }
  .lg\:min-h10e {
    min-height: 10em !important;
  }
  .lg\:max-w10e {
    max-width: 10em !important;
  }
  .lg\:max-h10e {
    max-height: 10em !important;
  }
  .lg\:w10-25e {
    width: 10.25em !important;
  }
  .lg\:h10-25e {
    height: 10.25em !important;
  }
  .lg\:w10-5e {
    width: 10.5em !important;
  }
  .lg\:h10-5e {
    height: 10.5em !important;
  }
  .lg\:w10-75e {
    width: 10.75em !important;
  }
  .lg\:h10-75e {
    height: 10.75em !important;
  }
  .lg\:w11e {
    width: 11em !important;
  }
  .lg\:h11e {
    height: 11em !important;
  }
  .lg\:min-w11e {
    min-width: 11em !important;
  }
  .lg\:min-h11e {
    min-height: 11em !important;
  }
  .lg\:max-w11e {
    max-width: 11em !important;
  }
  .lg\:max-h11e {
    max-height: 11em !important;
  }
  .lg\:w11-25e {
    width: 11.25em !important;
  }
  .lg\:h11-25e {
    height: 11.25em !important;
  }
  .lg\:w11-5e {
    width: 11.5em !important;
  }
  .lg\:h11-5e {
    height: 11.5em !important;
  }
  .lg\:w11-75e {
    width: 11.75em !important;
  }
  .lg\:h11-75e {
    height: 11.75em !important;
  }
  .lg\:w12e {
    width: 12em !important;
  }
  .lg\:h12e {
    height: 12em !important;
  }
  .lg\:min-w12e {
    min-width: 12em !important;
  }
  .lg\:min-h12e {
    min-height: 12em !important;
  }
  .lg\:max-w12e {
    max-width: 12em !important;
  }
  .lg\:max-h12e {
    max-height: 12em !important;
  }
  .lg\:w12-25e {
    width: 12.25em !important;
  }
  .lg\:h12-25e {
    height: 12.25em !important;
  }
  .lg\:w12-5e {
    width: 12.5em !important;
  }
  .lg\:h12-5e {
    height: 12.5em !important;
  }
  .lg\:w12-75e {
    width: 12.75em !important;
  }
  .lg\:h12-75e {
    height: 12.75em !important;
  }
  .lg\:w13e {
    width: 13em !important;
  }
  .lg\:h13e {
    height: 13em !important;
  }
  .lg\:min-w13e {
    min-width: 13em !important;
  }
  .lg\:min-h13e {
    min-height: 13em !important;
  }
  .lg\:max-w13e {
    max-width: 13em !important;
  }
  .lg\:max-h13e {
    max-height: 13em !important;
  }
  .lg\:w13-25e {
    width: 13.25em !important;
  }
  .lg\:h13-25e {
    height: 13.25em !important;
  }
  .lg\:w13-5e {
    width: 13.5em !important;
  }
  .lg\:h13-5e {
    height: 13.5em !important;
  }
  .lg\:w13-75e {
    width: 13.75em !important;
  }
  .lg\:h13-75e {
    height: 13.75em !important;
  }
  .lg\:w14e {
    width: 14em !important;
  }
  .lg\:h14e {
    height: 14em !important;
  }
  .lg\:min-w14e {
    min-width: 14em !important;
  }
  .lg\:min-h14e {
    min-height: 14em !important;
  }
  .lg\:max-w14e {
    max-width: 14em !important;
  }
  .lg\:max-h14e {
    max-height: 14em !important;
  }
  .lg\:w14-25e {
    width: 14.25em !important;
  }
  .lg\:h14-25e {
    height: 14.25em !important;
  }
  .lg\:w14-5e {
    width: 14.5em !important;
  }
  .lg\:h14-5e {
    height: 14.5em !important;
  }
  .lg\:w14-75e {
    width: 14.75em !important;
  }
  .lg\:h14-75e {
    height: 14.75em !important;
  }
  .lg\:w15e {
    width: 15em !important;
  }
  .lg\:h15e {
    height: 15em !important;
  }
  .lg\:min-w15e {
    min-width: 15em !important;
  }
  .lg\:min-h15e {
    min-height: 15em !important;
  }
  .lg\:max-w15e {
    max-width: 15em !important;
  }
  .lg\:max-h15e {
    max-height: 15em !important;
  }
  .lg\:w15-25e {
    width: 15.25em !important;
  }
  .lg\:h15-25e {
    height: 15.25em !important;
  }
  .lg\:w15-5e {
    width: 15.5em !important;
  }
  .lg\:h15-5e {
    height: 15.5em !important;
  }
  .lg\:w15-75e {
    width: 15.75em !important;
  }
  .lg\:h15-75e {
    height: 15.75em !important;
  }
  .lg\:w16e {
    width: 16em !important;
  }
  .lg\:h16e {
    height: 16em !important;
  }
  .lg\:min-w16e {
    min-width: 16em !important;
  }
  .lg\:min-h16e {
    min-height: 16em !important;
  }
  .lg\:max-w16e {
    max-width: 16em !important;
  }
  .lg\:max-h16e {
    max-height: 16em !important;
  }
  .lg\:w16-25e {
    width: 16.25em !important;
  }
  .lg\:h16-25e {
    height: 16.25em !important;
  }
  .lg\:w16-5e {
    width: 16.5em !important;
  }
  .lg\:h16-5e {
    height: 16.5em !important;
  }
  .lg\:w16-75e {
    width: 16.75em !important;
  }
  .lg\:h16-75e {
    height: 16.75em !important;
  }
  .lg\:w17e {
    width: 17em !important;
  }
  .lg\:h17e {
    height: 17em !important;
  }
  .lg\:min-w17e {
    min-width: 17em !important;
  }
  .lg\:min-h17e {
    min-height: 17em !important;
  }
  .lg\:max-w17e {
    max-width: 17em !important;
  }
  .lg\:max-h17e {
    max-height: 17em !important;
  }
  .lg\:w17-25e {
    width: 17.25em !important;
  }
  .lg\:h17-25e {
    height: 17.25em !important;
  }
  .lg\:w17-5e {
    width: 17.5em !important;
  }
  .lg\:h17-5e {
    height: 17.5em !important;
  }
  .lg\:w17-75e {
    width: 17.75em !important;
  }
  .lg\:h17-75e {
    height: 17.75em !important;
  }
  .lg\:w18e {
    width: 18em !important;
  }
  .lg\:h18e {
    height: 18em !important;
  }
  .lg\:min-w18e {
    min-width: 18em !important;
  }
  .lg\:min-h18e {
    min-height: 18em !important;
  }
  .lg\:max-w18e {
    max-width: 18em !important;
  }
  .lg\:max-h18e {
    max-height: 18em !important;
  }
  .lg\:w18-25e {
    width: 18.25em !important;
  }
  .lg\:h18-25e {
    height: 18.25em !important;
  }
  .lg\:w18-5e {
    width: 18.5em !important;
  }
  .lg\:h18-5e {
    height: 18.5em !important;
  }
  .lg\:w18-75e {
    width: 18.75em !important;
  }
  .lg\:h18-75e {
    height: 18.75em !important;
  }
  .lg\:w19e {
    width: 19em !important;
  }
  .lg\:h19e {
    height: 19em !important;
  }
  .lg\:min-w19e {
    min-width: 19em !important;
  }
  .lg\:min-h19e {
    min-height: 19em !important;
  }
  .lg\:max-w19e {
    max-width: 19em !important;
  }
  .lg\:max-h19e {
    max-height: 19em !important;
  }
  .lg\:w19-25e {
    width: 19.25em !important;
  }
  .lg\:h19-25e {
    height: 19.25em !important;
  }
  .lg\:w19-5e {
    width: 19.5em !important;
  }
  .lg\:h19-5e {
    height: 19.5em !important;
  }
  .lg\:w19-75e {
    width: 19.75em !important;
  }
  .lg\:h19-75e {
    height: 19.75em !important;
  }
  .lg\:w20e {
    width: 20em !important;
  }
  .lg\:h20e {
    height: 20em !important;
  }
  .lg\:min-w20e {
    min-width: 20em !important;
  }
  .lg\:min-h20e {
    min-height: 20em !important;
  }
  .lg\:max-w20e {
    max-width: 20em !important;
  }
  .lg\:max-h20e {
    max-height: 20em !important;
  }
}
.color-navy {
  color: var(--color-nv) !important;
}

.color-red {
  color: var(--color-rd) !important;
}

.color-cyan {
  color: var(--color-cy) !important;
}

.color-blue {
  color: var(--color-cy20) !important;
}

.color-green {
  color: var(--color-gr) !important;
}

.color-gray {
  color: var(--color-gy) !important;
}

.gap0 {
  gap: 0 !important;
}

.gap0-25e {
  gap: 0.25em !important;
}

.gap0-5e {
  gap: 0.5em !important;
}

.gap0-75e {
  gap: 0.75em !important;
}

.gap1 {
  gap: 1em !important;
}/*# sourceMappingURL=style.css.map */