@charset "UTF-8";
/*
/* Reset
/*
----------------------------------------------------------------- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

img {
  line-height: 0;
  vertical-align: bottom;
}

input,
button,
textarea {
  font: inherit;
}

/*
/* Mixin
/*
----------------------------------------------------------------- */
html {
  background: #fff;
  font-size: 16px;
}

body {
  color: #4D4D4D;
  font-size: 1rem;
  line-height: 2.25;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

b,
strong {
  font-weight: 700;
}

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

a:link {
  color: #4D4D4D;
}

a:visited {
  color: #4D4D4D;
}

a:hover {
  text-decoration: none;
}

p:empty {
  display: none !important;
}

/** Show icons only. */
/** Displayed with square background. */
/** Shown with circular background. */
/** Style settings for the box. */
/** style settings for the background. */
/** style settings related to borders. */
/**
 * Calculate the size of the svg.
 *
 * If $priority-size is specified, it takes precedence.
 * If $priority-size is not specified, the size of the SVG is a fixed percentage of $element-size.
 */
.shadow {
  -webkit-box-shadow: 7px 7px 3px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 7px 7px 3px rgba(0, 0, 0, 0.1019607843);
}

strong {
  color: #3AAD3F;
  font-weight: inherit;
}

em {
  color: #EEA52D;
  font-weight: inherit;
}

.cta-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cta-button a, .cta-button button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.9375rem;
  width: 30.25rem;
  height: 5rem;
  padding: 0 1.25rem 0 0;
  color: #fff;
  border-radius: 6.25rem;
  text-shadow: 5px 5px 3px rgba(77, 77, 77, 0.15);
  text-decoration: none;
  border: 2px solid #fff;
  background: #EEA52D;
  -webkit-box-shadow: 5px 5px 20px rgba(77, 77, 77, 0.15);
          box-shadow: 5px 5px 20px rgba(77, 77, 77, 0.15);
  position: relative;
  z-index: 0;
  -webkit-transition: -webkit-filter 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, box-shadow 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .cta-button a, .cta-button button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 19.125rem;
    height: auto;
    gap: 0.0625rem;
    min-height: 4.125rem;
    padding: 0.125rem 1.25rem 0.625rem;
    border-width: 1.5px;
  }
}
@media (any-hover: hover) {
  .cta-button a:hover, .cta-button button:hover {
    -webkit-box-shadow: 3px 3px 5px rgba(77, 77, 77, 0.25);
            box-shadow: 3px 3px 5px rgba(77, 77, 77, 0.25);
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
  .cta-button a:hover::before, .cta-button button:hover::before {
    opacity: 0;
  }
}
.cta-button a::before, .cta-button button::before {
  content: "";
  width: 100%;
  height: 100%;
  background: transparent -webkit-gradient(linear, left top, right top, from(#EED12D), color-stop(2%, #EECF2C), color-stop(30%, #EFB625), color-stop(55%, #EFA720), color-stop(75%, #F0A21F)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #EED12D 0%, #EECF2C 2%, #EFB625 30%, #EFA720 55%, #F0A21F 75%) 0% 0% no-repeat padding-box;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 6.25rem;
  z-index: -1;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.cta-button a::after, .cta-button button::after {
  content: "";
  width: 0.8125rem;
  height: 0.9375rem;
  background: url("../images/arrow-cta.svg") no-repeat 0 0/contain;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-filter: drop-shadow(5px 5px 3px rgba(77, 77, 77, 0.15));
          filter: drop-shadow(5px 5px 3px rgba(77, 77, 77, 0.15));
}
@media screen and (max-width: 767px) {
  .cta-button a::after, .cta-button button::after {
    display: none;
  }
}
.cta-button a span, .cta-button button span {
  padding-top: 5px;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .cta-button a span, .cta-button button span {
    padding: 0;
    font-size: 1rem;
  }
}
.cta-button a strong, .cta-button button strong {
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0.14em;
  color: #fff;
  font-weight: 700;
}
.cta-button a strong small, .cta-button button strong small {
  font-size: 1.625rem;
}
@media screen and (max-width: 767px) {
  .cta-button a strong, .cta-button button strong {
    font-size: 1.375rem;
    position: relative;
  }
  .cta-button a strong::after, .cta-button button strong::after {
    content: "";
    display: inline-block;
    width: 0.59375rem;
    height: 0.6875rem;
    margin: 0 0 0.125rem 0.3125rem;
    background: url("../images/arrow-cta.svg") no-repeat 0 0/contain;
    -webkit-filter: drop-shadow(5px 5px 3px rgba(77, 77, 77, 0.15));
            filter: drop-shadow(5px 5px 3px rgba(77, 77, 77, 0.15));
  }
  .cta-button a strong small, .cta-button button strong small {
    font-size: 1.28125rem;
    line-height: 1;
  }
}

.hero {
  position: relative;
  background: #3AAD3F;
  overflow: hidden;
  z-index: 0;
}
.hero::before {
  content: "";
  width: 92.1875rem;
  height: 30.1875rem;
  background: url("../images/hero-deco-pc.webp") no-repeat 0 0/cover;
  position: absolute;
  left: 50%;
  top: 0.5rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .hero::before {
    width: 100%;
    height: 100%;
    background: url("../images/hero-deco-sp.webp") no-repeat 0 0/contain;
    top: 0;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.hero-bg {
  display: block;
  width: 100%;
  height: 27.8125rem;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .hero-bg {
    height: 25.3125rem;
  }
}
.hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 25%;
     object-position: 50% 25%;
}
@media screen and (max-width: 767px) {
  .hero-bg img {
    -o-object-position: 50% 0;
       object-position: 50% 0;
  }
}
.hero__inner {
  padding: 4.625rem 1.25rem 3.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .hero__inner {
    padding: 2rem 1.25rem 1.25rem;
  }
}
.hero-title {
  width: 36.5rem;
  margin: auto;
  font-size: 2.125rem;
  line-height: 1.6764705882;
  letter-spacing: 0.16em;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .hero-title {
    width: auto;
    margin: auto;
    padding-right: 8.125rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 1.5rem;
    line-height: 1.875;
    letter-spacing: 0.15em;
  }
}
.hero-title .wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 0.3125rem;
  padding: 0.0625rem 0.3125rem 0.0625rem 0.625rem;
  background: #3AAD3F;
  line-height: 1.4;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .hero-title .wrap {
    padding: 0.3125rem;
    margin: 0.25em 0 0.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .hero-title .space {
    margin-top: 1.65em;
  }
}
.hero-points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  width: 37.5rem;
  margin: 0.9375rem auto 3.125rem;
}
@media screen and (max-width: 767px) {
  .hero-points {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: auto;
    margin: 0.9375rem auto -0.4375rem;
    gap: 1.0625rem;
  }
}
.hero-points__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 6.25rem;
  height: 6.25rem;
  background: transparent -webkit-gradient(linear, left top, right top, from(#EED12D), color-stop(2%, #EECF2C), color-stop(30%, #EFB625), color-stop(55%, #EFA720), color-stop(75%, #F0A21F)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #EED12D 0%, #EECF2C 2%, #EFB625 30%, #EFA720 55%, #F0A21F 75%) 0% 0% no-repeat padding-box;
  color: #fff;
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.2941176471;
  letter-spacing: 0.14em;
  font-weight: 900;
  border-radius: 3.125rem;
  text-align: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .hero-points__item {
    width: 5.125rem;
    height: 5.125rem;
    font-size: 0.875rem;
  }
}
.hero-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 95vw;
  max-width: 45.25rem;
  height: 4.375rem;
  margin: 0 auto 1.25rem;
  padding: 0.3125rem 0.625rem;
  background: #fff;
  font-size: 1.8125rem;
  line-height: 1.1379310345;
  letter-spacing: 0.12em;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .hero-message {
    max-width: 18.3125rem;
    height: auto;
    min-height: 4.1875rem;
    margin: 0 auto 1.125rem;
    padding: 0.75rem 0.625rem 0.5rem;
    font-size: 1.0625rem;
  }
}
.hero-message em {
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .hero-message em {
    display: block;
    font-size: 1.0625rem;
    line-height: 1.5;
    text-align: center;
  }
}
.hero-message img {
  width: 4.5rem;
}
@media screen and (max-width: 767px) {
  .hero-message img {
    width: 2.75rem;
  }
}
.hero-desc {
  margin-bottom: 1.625rem;
  font-size: 1.125rem;
  line-height: 1.7777777778;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hero-desc {
    margin-bottom: 0.875rem;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 0.04em;
  }
}

.support {
  padding: 4.375rem 1.25rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .support {
    padding: 1.875rem 0.625rem 1.5625rem;
  }
}
.support__inner {
  max-width: 50.9375rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .support__inner {
    max-width: 31.25rem;
  }
}
.support-title {
  font-size: 1.625rem;
  line-height: 1.6153846154;
  letter-spacing: 0.08em;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .support-title {
    font-size: 1.25rem;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}
.support-title span {
  padding: 0 0.5em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #E9F4E9));
  background: linear-gradient(transparent 50%, #E9F4E9 50%);
}
.support-floatimage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 41.875rem;
  margin: 2.5rem auto 4rem;
}
@media screen and (max-width: 767px) {
  .support-floatimage {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.25rem;
    max-width: 31.25rem;
    margin: 1.75rem auto 2.5rem;
  }
}
.support-floatimage-lead {
  padding-top: 1.875rem;
  font-size: 1.375rem;
  line-height: 1.5909090909;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .support-floatimage-lead {
    padding: 0;
    font-size: 1.0625rem;
    line-height: 1.5882352941;
    letter-spacing: 0.08em;
  }
}
.support-floatimage-figure {
  max-width: 23.9375rem;
}
@media screen and (max-width: 767px) {
  .support-floatimage-figure {
    max-width: 18.75rem;
    margin: auto;
  }
}
.support-worry {
  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;
  margin-bottom: 5.5rem;
  padding: 2.625rem 1.875rem 1.875rem;
  background: #E8E8E8;
  border-radius: 1.125rem;
}
@media screen and (max-width: 767px) {
  .support-worry {
    max-width: 25rem;
    margin: 0 auto 3.125rem;
    padding: 2.3125rem 0.9375rem 0rem;
    border-radius: 0.8125rem;
    background: none;
    position: relative;
    overflow: hidden;
    z-index: 0;
  }
  .support-worry::after {
    content: "";
    display: block;
    width: 100%;
    height: calc(100% - 2rem);
    background: #E8E8E8;
    border-radius: 0.8125rem;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
  }
}
.support-worry-title {
  margin-bottom: 1.25rem;
  font-size: 1.625rem;
  line-height: 1.6153846154;
  letter-spacing: 0.06em;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .support-worry-title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }
}
.support-worry-title .-ruby-dot {
  position: relative;
}
.support-worry-title .-ruby-dot::before {
  content: "・・・";
  position: absolute;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.6em;
  left: 55%;
  bottom: 2em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .support-worry-title .-ruby-dot::before {
    font-size: 0.8125rem;
  }
}
.support-worry picture {
  max-width: 41.125rem;
}
@media screen and (max-width: 767px) {
  .support-worry picture {
    max-width: 20rem;
    margin: auto;
  }
}
.support-summary {
  text-align: center;
}
.support-summary-title {
  max-width: 16.5625rem;
  margin: 0 auto 2rem;
}
@media screen and (max-width: 767px) {
  .support-summary-title {
    max-width: 12.75rem;
    margin: 0 auto 1.25rem;
  }
}
.support-summary-desc {
  margin-bottom: 1.875rem;
  font-size: 1.375rem;
  line-height: 1.9545454545;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .support-summary-desc {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.6875;
    letter-spacing: 0.06em;
  }
}
.support-summary-desc strong {
  font-weight: inherit;
}
.support-summary-figure {
  max-width: 17.1875rem;
  margin: 1.875rem auto 2.5rem;
}
@media screen and (max-width: 767px) {
  .support-summary-figure {
    max-width: 13.5625rem;
    margin: 1.25rem auto 1.875rem;
  }
}

.feature {
  padding: 7.1875rem 1.25rem 10.625rem;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .feature {
    padding: 5.625rem 1.25rem 6.25rem;
  }
}
.feature::after {
  content: "";
  width: 100%;
  height: 100%;
  background: transparent -webkit-gradient(linear, left top, right top, from(#51AD3F), color-stop(66%, #1DA748), to(#00A54E)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #51AD3F 0%, #1DA748 66%, #00A54E 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-clip-path: polygon(0 4vw, 100% 0, 100% calc(100% - 4vw), 0 100%);
          clip-path: polygon(0 4vw, 100% 0, 100% calc(100% - 4vw), 0 100%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .feature::after {
    -webkit-clip-path: polygon(0 12vw, 100% 0, 100% calc(100% - 12vw), 0 100%);
            clip-path: polygon(0 12vw, 100% 0, 100% calc(100% - 12vw), 0 100%);
  }
}
.feature__inner {
  max-width: 60.625rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .feature__inner {
    max-width: 31.25rem;
  }
}
.feature-title {
  margin-bottom: 5.5rem;
  font-size: 2rem;
  line-height: 1.34375;
  letter-spacing: 0.12em;
  font-weight: 900;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .feature-title {
    margin-bottom: 2.25rem;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.12em;
  }
}
.feature-title span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0.0625rem 0.4375rem;
  background: #EEA52D;
}
.feature-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .feature-list {
    width: 100%;
    gap: 1.6875rem;
  }
}
.feature-list__item {
  min-width: 15.625rem;
  max-width: 19.1875rem;
  padding: 1.25rem 0rem 2.875rem;
  background: #fff;
  border-radius: 1.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .feature-list__item {
    max-width: 21.875rem;
    min-width: 18.75rem;
    padding: 1.5625rem 0rem 2.1875rem;
  }
}
.feature-list-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  margin: 0 auto 1.5rem;
  padding: 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .feature-list-number {
    padding: 0 1rem;
  }
}
.feature-list-number img {
  height: 1.5625rem;
}
.feature-list-number::before, .feature-list-number::after {
  content: "";
  display: block;
  width: auto;
  height: 2px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: #3AAD3F;
}
.feature-list-title {
  margin-bottom: 1.75rem;
  font-size: 1.125rem;
  line-height: 1.6111111111;
  letter-spacing: 0.08em;
  font-weight: 900;
  color: #3AAD3F;
}
@media screen and (max-width: 767px) {
  .feature-list-title {
    margin-bottom: 2.125rem;
    font-size: 1.25rem;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}
.feature-list-title span {
  color: #EEA52D;
}
.feature-list-figure {
  width: 9.5625rem;
  margin: 1.875rem auto 1.25rem;
}
@media screen and (max-width: 767px) {
  .feature-list-figure {
    width: 10.4375rem;
    margin: 1.875rem auto 1.3125rem;
  }
}
.feature-list-desc {
  padding: 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.7857142857;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .feature-list-desc {
    padding: 0 1.125rem;
  }
}

.step {
  padding: 6.25rem 1.25rem 11.5rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .step {
    padding: 2.8125rem 1.25rem 3.625rem;
  }
}
.step__inner {
  max-width: 50.9375rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .step__inner {
    max-width: 31.25rem;
  }
}
.step-title {
  margin-bottom: 4.125rem;
  font-size: 1.375rem;
  line-height: 1.4545454545;
  letter-spacing: 0.1em;
  font-weight: 900;
  color: #3AAD3F;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .step-title {
    margin-bottom: 2.25rem;
    font-size: 1.0625rem;
  }
}
.step-title .num {
  font-size: 1.625rem;
}
@media screen and (max-width: 767px) {
  .step-title .num {
    font-size: 1.25rem;
  }
}
.step-title .marker {
  margin-left: 0.75rem;
  padding: 0 0.5em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #E9F4E9));
  background: linear-gradient(transparent 50%, #E9F4E9 50%);
  font-size: 2rem;
  line-height: 1.34375;
  letter-spacing: 0.12em;
  color: #4D4D4D;
}
@media screen and (max-width: 767px) {
  .step-title .marker {
    margin-left: 0;
    font-size: 1.5rem;
    line-height: 1.5416666667;
    letter-spacing: 0.12em;
  }
}
.step-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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.1875rem;
  margin: 0 auto 3.75rem;
}
@media screen and (max-width: 767px) {
  .step-list {
    gap: 3.75rem;
    margin-bottom: 2.375rem;
  }
}
.step-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .step-list__item {
    width: 100%;
  }
}
.step-list__item:not(:first-child) {
  position: relative;
}
.step-list__item:not(:first-child)::before {
  content: "";
  display: block;
  width: 2.1875rem;
  height: 1rem;
  background: url("../images/arrow-step.svg") no-repeat 0 0/contain;
  position: absolute;
  left: 9.6875rem;
  bottom: calc(100% + 1rem);
}
@media screen and (max-width: 767px) {
  .step-list__item:not(:first-child)::before {
    left: 50%;
    bottom: calc(100% + 1.25rem);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.step-list__header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 5.9375rem;
  position: relative;
}
.step-list__header img {
  width: 5.9375rem;
}
.step-list__body {
  width: 26.875rem;
}
@media screen and (max-width: 767px) {
  .step-list__body {
    width: auto;
  }
}
.step-list-title {
  margin-bottom: 0.3125rem;
  font-size: 1rem;
  line-height: 2.0625;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #EEA52D;
}
@media screen and (max-width: 767px) {
  .step-list-title {
    margin-bottom: 0.625rem;
    font-size: 1.0625rem;
    line-height: 1.2352941176;
    letter-spacing: 0.1em;
  }
}
.step-list p {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .step-list p {
    font-size: 0.8125rem;
    line-height: 1.4615384615;
    letter-spacing: 0.08em;
  }
}
.step-list p .notice {
  display: block;
  font-size: 0.75rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .step-list p .notice {
    font-size: 0.625rem;
  }
}

.introduce {
  padding: 6.75rem 1.25rem 7.625rem;
  background: #E8F7CD;
}
@media screen and (max-width: 767px) {
  .introduce {
    padding: 4.375rem 1.25rem 4.6875rem;
  }
}
.introduce__inner {
  max-width: 49.375rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .introduce__inner {
    max-width: 31.25rem;
  }
}
.introduce-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 4.0625rem;
  font-size: 2rem;
  line-height: 1.34375;
  letter-spacing: 0.08em;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .introduce-title {
    margin-bottom: 2.625rem;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.08em;
  }
}
.introduce-title span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #fff));
  background: linear-gradient(transparent 50%, #fff 50%);
}
.introduce-block {
  border: 4px solid #3AAD3F;
  background: #fff;
  border-radius: 1.125rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .introduce-block {
    border-width: 3px;
  }
}
.introduce-block + .introduce-block {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .introduce-block + .introduce-block {
    margin-top: 2.5rem;
  }
}
.introduce-block__header {
  padding: 0.8125rem 1.25rem 1rem;
  background: transparent -webkit-gradient(linear, left top, right top, from(#51AD3F), color-stop(66%, #1DA748), to(#00A54E)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #51AD3F 0%, #1DA748 66%, #00A54E 100%) 0% 0% no-repeat padding-box;
  font-size: 1.375rem;
  line-height: 1.3636363636;
  letter-spacing: 0.12em;
  font-weight: 900;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .introduce-block__header {
    padding: 1rem 1.25rem;
    font-size: 1.25rem;
    line-height: 1.55;
    letter-spacing: 0.12em;
  }
}
.introduce-block__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.875rem;
  padding: 1.625rem 2.375rem;
}
@media screen and (max-width: 767px) {
  .introduce-block__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    padding: 1.6875rem 0.9375rem 2.5rem;
  }
}
.introduce-block__image {
  width: calc(50% - 0.9375rem);
  min-height: 13.875rem;
}
@media screen and (max-width: 767px) {
  .introduce-block__image {
    width: 100%;
    margin-bottom: 1rem;
    min-height: 0;
  }
}
.introduce-block__image figure {
  position: relative;
}
.introduce-block__image-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80%;
  max-width: 15rem;
  height: 2.375rem;
  border-radius: 3.125rem;
  border: 2px solid #4D4D4D;
  background: #fff;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.14em;
  font-weight: 900;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%) translateY(50%);
          transform: translateX(-50%) translateY(50%);
}
@media screen and (max-width: 767px) {
  .introduce-block__image-name {
    max-width: 13.125rem;
    height: 2.125rem;
    border-width: 1.5px;
    font-size: 0.9375rem;
  }
}
.introduce-block__message {
  width: calc(50% - 0.9375rem);
  background: url("../images/desc-line.webp") repeat 0 0px/auto 40px;
  font-size: 1rem;
  line-height: 2.5;
  letter-spacing: 0.03em;
  font-weight: 700;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .introduce-block__message {
    width: 100%;
    margin-bottom: 0.625rem;
    padding-bottom: 0.3125rem;
    font-size: 0.9375rem;
    line-height: 2.1333333333;
    letter-spacing: 0.06em;
    background-size: auto 32px;
  }
}
.introduce-block__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 1.25rem;
  border-radius: 1.125rem;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.introduce-block__profile::after {
  content: "";
  width: 100%;
  height: 100%;
  background: transparent -webkit-gradient(linear, left top, right top, from(#9BAD3F), color-stop(36%, #66AA44), to(#00A54E)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #9BAD3F 0%, #66AA44 36%, #00A54E 100%) 0% 0% no-repeat padding-box;
  opacity: 0.15;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.introduce-block__profile-title {
  margin-bottom: 0.625rem;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #3AAD3F;
}
@media screen and (max-width: 767px) {
  .introduce-block__profile-title {
    font-size: 0.875rem;
  }
}
.introduce-block__profile-desc {
  font-size: 0.875rem;
  line-height: 1.8571428571;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .introduce-block__profile-desc {
    font-size: 0.8125rem;
  }
}

.voice {
  padding: 8.125rem 1.25rem 11.25rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .voice {
    padding: 3.125rem 1.25rem 3.75rem;
  }
}
.voice__inner {
  max-width: 58.125rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .voice__inner {
    max-width: 31.25rem;
  }
}
.voice-title {
  margin-bottom: 4.125rem;
  font-size: 2rem;
  line-height: 1.34375;
  letter-spacing: 0.12em;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .voice-title {
    margin-bottom: 2.25rem;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.12em;
  }
}
.voice-title span {
  color: #3AAD3F;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #E9F4E9));
  background: linear-gradient(transparent 50%, #E9F4E9 50%);
}
.voice-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem 3.375rem;
}
@media screen and (max-width: 767px) {
  .voice-list {
    gap: 1.6875rem;
  }
}
.voice-list__item {
  width: 27.25rem;
  padding: 0 1.25rem 2.5rem;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .voice-list__item {
    width: 100%;
    padding: 0 1rem 2.5rem;
  }
}
.voice-list__item::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 5.3125rem);
  background: transparent -webkit-gradient(linear, left top, right top, from(#9BAD3F), color-stop(36%, #66AA44), to(#00A54E)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #9BAD3F 0%, #66AA44 36%, #00A54E 100%) 0% 0% no-repeat padding-box;
  opacity: 0.15;
  border-radius: 1.125rem;
  position: absolute;
  left: 0;
  top: 5.3125rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .voice-list__item::after {
    height: calc(100% - 4.0625rem);
    top: 4.0625rem;
  }
}
.voice-list-thumb {
  width: 10.625rem;
  margin: 0 auto 1.875rem;
}
@media screen and (max-width: 767px) {
  .voice-list-thumb {
    width: 8.125rem;
    margin-bottom: 0.9375rem;
  }
}
.voice-list-content {
  font-size: 1.125rem;
  line-height: 2.2222222222;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .voice-list-content {
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}

.faq {
  padding: 6.875rem 1.25rem 20.625rem;
  background: #E8F7CD;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 3.125rem 1.25rem 14.0625rem;
  }
}
.faq__inner {
  max-width: 48.75rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .faq__inner {
    max-width: 31.25rem;
  }
}
.faq-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 4.125rem;
  font-size: 2rem;
  line-height: 1.34375;
  letter-spacing: 0.12em;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .faq-title {
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.12em;
  }
}
.faq-title span {
  padding: 0 0.3em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #fff));
  background: linear-gradient(transparent 50%, #fff 50%);
}
.faq-block {
  -webkit-box-shadow: 6px 6px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 6px 6px 3px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.faq-block dt {
  padding: 1.3125rem 1.25rem 1.3125rem 5.4375rem;
  background: #3AAD3F;
  font-size: 1.25rem;
  line-height: 1.75;
  letter-spacing: 0.12em;
  color: #fff;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq-block dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 4.3125rem;
    padding: 0.625rem 1rem 0.625rem 3.9375rem;
    font-size: 1.0625rem;
    line-height: 1.4117647059;
    letter-spacing: 0.12em;
  }
}
.faq-block dt::before {
  content: "";
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  background: url("../images/icon-question.svg") no-repeat 0 0/contain;
  position: absolute;
  left: 1.25rem;
  top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .faq-block dt::before {
    width: 2.125rem;
    height: 2.125rem;
    left: 1rem;
    top: 1.0625rem;
  }
}
.faq-block dd {
  padding: 1.5rem 1.25rem 2rem 5.4375rem;
  font-size: 1.25rem;
  line-height: 1.75;
  letter-spacing: 0.12em;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq-block dd {
    padding: 1.0625rem 1rem 2.25rem 3.9375rem;
    font-size: 1.0625rem;
    line-height: 1.5882352941;
    letter-spacing: 0.12em;
  }
}
.faq-block dd::before {
  content: "";
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  background: url("../images/icon-answer.svg") no-repeat 0 0/contain;
  position: absolute;
  left: 1.25rem;
  top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .faq-block dd::before {
    width: 2.125rem;
    height: 2.125rem;
    left: 1rem;
    top: 0.875rem;
  }
}
.faq-block + .faq-block {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .faq-block + .faq-block {
    margin-top: 2.1875rem;
  }
}
.faq-figure {
  width: 20.375rem;
  height: 18.75rem;
  position: absolute;
  left: 50%;
  bottom: -3.75rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .faq-figure {
    width: 15.75rem;
    height: 14.3125rem;
    bottom: -2.5rem;
  }
}

.contact {
  padding: 9.375rem 1.25rem 8.125rem;
  background: transparent -webkit-gradient(linear, left top, right top, from(#51AD3F), color-stop(66%, #1DA748), to(#00A54E)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #51AD3F 0%, #1DA748 66%, #00A54E 100%) 0% 0% no-repeat padding-box;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 4.375rem 1.25rem 3.75rem;
  }
}
.contact__inner {
  max-width: 50.9375rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .contact__inner {
    max-width: 31.25rem;
  }
}
.contact-title {
  margin-bottom: 2.8125rem;
  font-size: 2rem;
  line-height: 1.375;
  letter-spacing: 0.12em;
  font-weight: 900;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-title {
    margin-bottom: 1.875rem;
    font-size: 1.4375rem;
    line-height: 1.4782608696;
    letter-spacing: 0.1em;
  }
}
.contact-form-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
  width: 100%;
  max-width: 23.75rem;
  margin: 0 auto;
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 767px) {
  .contact-form-block {
    gap: 0.9375rem;
    max-width: 15.9375rem;
    margin-bottom: 2.25rem;
  }
}
.contact-form-block__item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.4375rem;
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  letter-spacing: 0.06em;
  color: #fff;
}
.contact-form-block__item label::before {
  content: "● ";
  margin-right: 0.3125rem;
  color: #EEA52D;
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .contact-form-block__item label {
    margin-bottom: 0.1875rem;
    font-size: 1rem;
    line-height: 1.375;
    letter-spacing: 0.06em;
  }
}
.contact-form-block__item label.required {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-form-block__item label.required::after {
  content: "必須";
  display: inline-block;
  margin-left: 0.625rem;
  padding: 4px 10px;
  font-size: 0.625rem;
  line-height: 1.1;
  background: #d72a2a;
  color: #fff;
}
.contact-form-block__item input,
.contact-form-block__item textarea,
.contact-form-block__item select {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.25rem 0.5rem;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
  border: 1px solid #4D4D4D;
  border-radius: 0.25rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .contact-form-block__item input,
  .contact-form-block__item textarea,
  .contact-form-block__item select {
    width: calc(100% - 1.25em);
    margin-left: 1.25em;
  }
}
.contact-form-block__item .select {
  position: relative;
}
.contact-form-block__item .select::after {
  content: "";
  width: 0.9375rem;
  height: 0.9375rem;
  background: url("../images/arrow-step.svg") no-repeat 50% 50%/contain;
  position: absolute;
  right: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.contact-form-block__item .select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact-form-error {
  display: block;
  margin-top: 0.3125rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.06em;
  color: #bd0000;
}
@media screen and (max-width: 767px) {
  .contact-form-error {
    margin-left: 1.25rem;
    font-size: 0.75rem;
  }
}
.contact-form-rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .contact-form-rows {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
}
.contact-form-rows > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact-form-rows > * span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2.5em;
  font-size: 0.8125rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contact-form-rows > * span {
    margin-left: 1.25rem;
  }
}
.contact-form-rows > * span + input {
  margin-left: 0;
}

.thanks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: calc(100dvh - 3rem);
  padding: 3.125rem 1.25rem;
  background: #3AAD3F;
}
@media screen and (max-width: 767px) {
  .thanks {
    min-height: calc(100dvh - 2.3125rem);
  }
}
.thanks__content {
  max-width: 100%;
}
.thanks-title {
  font-size: 2rem;
  line-height: 1.375;
  letter-spacing: 0.12em;
  font-weight: 900;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks-title {
    font-size: 1.4375rem;
    line-height: 1.4782608696;
    letter-spacing: 0.1em;
  }
}
.thanks-block {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 39.375rem;
  margin-top: 4.375rem;
  padding: 3.4375rem;
  background: #fff;
  -webkit-box-shadow: 5px 5px 20px rgba(77, 77, 77, 0.15);
          box-shadow: 5px 5px 20px rgba(77, 77, 77, 0.15);
  border-radius: 1.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks-block {
    max-width: 25rem;
    margin-top: 2.5rem;
    padding: 2.5rem;
  }
}
.thanks-block p {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .thanks-block p {
    font-size: 0.8125rem;
    line-height: 1.4615384615;
    letter-spacing: 0.08em;
  }
}
.thanks-block p + p {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .thanks-block p + p {
    margin-top: 1.25rem;
  }
}
.thanks-button {
  margin-top: 2rem;
}
.thanks-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.9375rem;
  width: 25rem;
  height: 5rem;
  padding: 0 1.25rem 0 0;
  font-size: 1.5625rem;
  line-height: 2.64;
  letter-spacing: 0.14em;
  font-weight: 900;
  color: #fff;
  border-radius: 6.25rem;
  text-shadow: 5px 5px 3px rgba(77, 77, 77, 0.15);
  text-decoration: none;
  border: 2px solid #fff;
  background: #EEA52D;
  -webkit-box-shadow: 5px 5px 20px rgba(77, 77, 77, 0.15);
          box-shadow: 5px 5px 20px rgba(77, 77, 77, 0.15);
  position: relative;
  z-index: 0;
  -webkit-transition: -webkit-filter 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, box-shadow 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .thanks-button a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 19.125rem;
    height: auto;
    gap: 0.0625rem;
    min-height: 3.125rem;
    padding: 0.625rem 1.25rem;
    border-width: 1.5px;
    font-size: 1.25rem;
    line-height: 2;
    letter-spacing: 0.14em;
  }
}
@media (any-hover: hover) {
  .thanks-button a:hover {
    -webkit-box-shadow: 3px 3px 5px rgba(77, 77, 77, 0.25);
            box-shadow: 3px 3px 5px rgba(77, 77, 77, 0.25);
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
  .thanks-button a:hover::before {
    opacity: 0;
  }
}
.thanks-button a::before {
  content: "";
  width: 100%;
  height: 100%;
  background: transparent -webkit-gradient(linear, left top, right top, from(#EED12D), color-stop(2%, #EECF2C), color-stop(30%, #EFB625), color-stop(55%, #EFA720), color-stop(75%, #F0A21F)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #EED12D 0%, #EECF2C 2%, #EFB625 30%, #EFA720 55%, #F0A21F 75%) 0% 0% no-repeat padding-box;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 6.25rem;
  z-index: -1;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.thanks-button a::after {
  content: "";
  width: 0.8125rem;
  height: 0.9375rem;
  background: url("../images/arrow-cta.svg") no-repeat 0 0/contain;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-filter: drop-shadow(5px 5px 3px rgba(77, 77, 77, 0.15));
          filter: drop-shadow(5px 5px 3px rgba(77, 77, 77, 0.15));
}
@media screen and (max-width: 767px) {
  .thanks-button a::after {
    display: none;
  }
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3rem;
  background: #4D4D4D;
}
@media screen and (max-width: 767px) {
  .footer {
    height: 2.3125rem;
  }
}
.footer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .footer-nav ul {
    gap: 1.5rem;
  }
}
.footer-nav a {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.14em;
  color: #fff;
  text-decoration: underline;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .footer-nav a {
    font-size: 0.8125rem;
  }
}
@media (any-hover: hover) {
  .footer-nav a:hover {
    text-decoration: none;
    opacity: 0.5;
  }
}

.align-c {
  text-align: center !important;
}
.align-l {
  text-align: left !important;
}
.align-r {
  text-align: right !important;
}

@media screen and (min-width: 768px) {
  .pc\:align-c {
    text-align: center !important;
  }
  .pc\:align-l {
    text-align: left !important;
  }
  .pc\:align-r {
    text-align: right !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:align-c {
    text-align: center !important;
  }
  .md\:align-l {
    text-align: left !important;
  }
  .md\:align-r {
    text-align: right !important;
  }
}
@media screen and (max-width: 640px) {
  .sm\:align-c {
    text-align: center !important;
  }
  .sm\:align-l {
    text-align: left !important;
  }
  .sm\:align-r {
    text-align: right !important;
  }
}
/*
/* Clearfix
/*
----------------------------------------------------------------- */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.color-red {
  color: #f00;
}

@media screen and (min-width: 768px) {
  .pc\:color-red {
    color: #f00;
  }
}
@media screen and (max-width: 767px) {
  .md\:color-red {
    color: #f00;
  }
}
@media screen and (max-width: 640px) {
  .sm\:color-red {
    color: #f00;
  }
}
.d-block {
  display: block !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media screen and (min-width: 768px) {
  .pc\:d-block {
    display: block !important;
  }
  .pc\:d-inline {
    display: inline !important;
  }
  .pc\:d-inline-block {
    display: inline-block !important;
  }
  .pc\:d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .pc\:d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:d-block {
    display: block !important;
  }
  .md\:d-inline {
    display: inline !important;
  }
  .md\:d-inline-block {
    display: inline-block !important;
  }
  .md\:d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .md\:d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media screen and (max-width: 640px) {
  .sm\:d-block {
    display: block !important;
  }
  .sm\:d-inline {
    display: inline !important;
  }
  .sm\:d-inline-block {
    display: inline-block !important;
  }
  .sm\:d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .sm\:d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
/*
/* Flex
/*
----------------------------------------------------------------- */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-forward {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.flex-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.flex-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex-align-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex-basis-1\/2 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
.flex-basis-1\/3 {
  -ms-flex-preferred-size: 33.333333%;
      flex-basis: 33.333333%;
}
.flex-basis-2\/3 {
  -ms-flex-preferred-size: 66.666667%;
      flex-basis: 66.666667%;
}
.flex-basis-1\/4 {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}
.flex-basis-2\/4 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
.flex-basis-3\/4 {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
}
.flex-basis-1\/5 {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
}
.flex-basis-2\/5 {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}
.flex-basis-3\/5 {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
}
.flex-basis-4\/5 {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
}
.flex-basis-1\/6 {
  -ms-flex-preferred-size: 16.666667%;
      flex-basis: 16.666667%;
}
.flex-basis-2\/6 {
  -ms-flex-preferred-size: 33.333333%;
      flex-basis: 33.333333%;
}
.flex-basis-3\/6 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
.flex-basis-4\/6 {
  -ms-flex-preferred-size: 66.666667%;
      flex-basis: 66.666667%;
}
.flex-basis-5\/6 {
  -ms-flex-preferred-size: 83.333333%;
      flex-basis: 83.333333%;
}
.flex-basis-1\/12 {
  -ms-flex-preferred-size: 8.333333%;
      flex-basis: 8.333333%;
}
.flex-basis-2\/12 {
  -ms-flex-preferred-size: 16.666667%;
      flex-basis: 16.666667%;
}
.flex-basis-3\/12 {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}
.flex-basis-4\/12 {
  -ms-flex-preferred-size: 33.333333%;
      flex-basis: 33.333333%;
}
.flex-basis-5\/12 {
  -ms-flex-preferred-size: 41.666667%;
      flex-basis: 41.666667%;
}
.flex-basis-6\/12 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
.flex-basis-7\/12 {
  -ms-flex-preferred-size: 58.333333%;
      flex-basis: 58.333333%;
}
.flex-basis-8\/12 {
  -ms-flex-preferred-size: 66.666667%;
      flex-basis: 66.666667%;
}
.flex-basis-9\/12 {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
}
.flex-basis-10\/12 {
  -ms-flex-preferred-size: 83.333333%;
      flex-basis: 83.333333%;
}
.flex-basis-11\/12 {
  -ms-flex-preferred-size: 91.666667%;
      flex-basis: 91.666667%;
}
.flex-basis-full {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

@media screen and (min-width: 768px) {
  .pc\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .pc\:flex-forward {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .pc\:flex-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .pc\:flex-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .pc\:flex-align-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .pc\:flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pc\:flex-basis-1\/2 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .pc\:flex-basis-1\/3 {
    -ms-flex-preferred-size: 33.333333%;
        flex-basis: 33.333333%;
  }
  .pc\:flex-basis-2\/3 {
    -ms-flex-preferred-size: 66.666667%;
        flex-basis: 66.666667%;
  }
  .pc\:flex-basis-1\/4 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .pc\:flex-basis-2\/4 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .pc\:flex-basis-3\/4 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
  .pc\:flex-basis-1\/5 {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
  }
  .pc\:flex-basis-2\/5 {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
  .pc\:flex-basis-3\/5 {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
  }
  .pc\:flex-basis-4\/5 {
    -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
  }
  .pc\:flex-basis-1\/6 {
    -ms-flex-preferred-size: 16.666667%;
        flex-basis: 16.666667%;
  }
  .pc\:flex-basis-2\/6 {
    -ms-flex-preferred-size: 33.333333%;
        flex-basis: 33.333333%;
  }
  .pc\:flex-basis-3\/6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .pc\:flex-basis-4\/6 {
    -ms-flex-preferred-size: 66.666667%;
        flex-basis: 66.666667%;
  }
  .pc\:flex-basis-5\/6 {
    -ms-flex-preferred-size: 83.333333%;
        flex-basis: 83.333333%;
  }
  .pc\:flex-basis-1\/12 {
    -ms-flex-preferred-size: 8.333333%;
        flex-basis: 8.333333%;
  }
  .pc\:flex-basis-2\/12 {
    -ms-flex-preferred-size: 16.666667%;
        flex-basis: 16.666667%;
  }
  .pc\:flex-basis-3\/12 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .pc\:flex-basis-4\/12 {
    -ms-flex-preferred-size: 33.333333%;
        flex-basis: 33.333333%;
  }
  .pc\:flex-basis-5\/12 {
    -ms-flex-preferred-size: 41.666667%;
        flex-basis: 41.666667%;
  }
  .pc\:flex-basis-6\/12 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .pc\:flex-basis-7\/12 {
    -ms-flex-preferred-size: 58.333333%;
        flex-basis: 58.333333%;
  }
  .pc\:flex-basis-8\/12 {
    -ms-flex-preferred-size: 66.666667%;
        flex-basis: 66.666667%;
  }
  .pc\:flex-basis-9\/12 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
  .pc\:flex-basis-10\/12 {
    -ms-flex-preferred-size: 83.333333%;
        flex-basis: 83.333333%;
  }
  .pc\:flex-basis-11\/12 {
    -ms-flex-preferred-size: 91.666667%;
        flex-basis: 91.666667%;
  }
  .pc\:flex-basis-full {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
@media screen and (max-width: 767px) {
  .md\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .md\:flex-forward {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .md\:flex-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .md\:flex-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .md\:flex-align-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .md\:flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .md\:flex-basis-1\/2 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .md\:flex-basis-1\/3 {
    -ms-flex-preferred-size: 33.333333%;
        flex-basis: 33.333333%;
  }
  .md\:flex-basis-2\/3 {
    -ms-flex-preferred-size: 66.666667%;
        flex-basis: 66.666667%;
  }
  .md\:flex-basis-1\/4 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .md\:flex-basis-2\/4 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .md\:flex-basis-3\/4 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
  .md\:flex-basis-1\/5 {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
  }
  .md\:flex-basis-2\/5 {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
  .md\:flex-basis-3\/5 {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
  }
  .md\:flex-basis-4\/5 {
    -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
  }
  .md\:flex-basis-1\/6 {
    -ms-flex-preferred-size: 16.666667%;
        flex-basis: 16.666667%;
  }
  .md\:flex-basis-2\/6 {
    -ms-flex-preferred-size: 33.333333%;
        flex-basis: 33.333333%;
  }
  .md\:flex-basis-3\/6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .md\:flex-basis-4\/6 {
    -ms-flex-preferred-size: 66.666667%;
        flex-basis: 66.666667%;
  }
  .md\:flex-basis-5\/6 {
    -ms-flex-preferred-size: 83.333333%;
        flex-basis: 83.333333%;
  }
  .md\:flex-basis-1\/12 {
    -ms-flex-preferred-size: 8.333333%;
        flex-basis: 8.333333%;
  }
  .md\:flex-basis-2\/12 {
    -ms-flex-preferred-size: 16.666667%;
        flex-basis: 16.666667%;
  }
  .md\:flex-basis-3\/12 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .md\:flex-basis-4\/12 {
    -ms-flex-preferred-size: 33.333333%;
        flex-basis: 33.333333%;
  }
  .md\:flex-basis-5\/12 {
    -ms-flex-preferred-size: 41.666667%;
        flex-basis: 41.666667%;
  }
  .md\:flex-basis-6\/12 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .md\:flex-basis-7\/12 {
    -ms-flex-preferred-size: 58.333333%;
        flex-basis: 58.333333%;
  }
  .md\:flex-basis-8\/12 {
    -ms-flex-preferred-size: 66.666667%;
        flex-basis: 66.666667%;
  }
  .md\:flex-basis-9\/12 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
  .md\:flex-basis-10\/12 {
    -ms-flex-preferred-size: 83.333333%;
        flex-basis: 83.333333%;
  }
  .md\:flex-basis-11\/12 {
    -ms-flex-preferred-size: 91.666667%;
        flex-basis: 91.666667%;
  }
  .md\:flex-basis-full {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
@media screen and (max-width: 640px) {
  .sm\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sm\:flex-forward {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .sm\:flex-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .sm\:flex-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sm\:flex-align-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sm\:flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sm\:flex-basis-1\/2 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .sm\:flex-basis-1\/3 {
    -ms-flex-preferred-size: 33.333333%;
        flex-basis: 33.333333%;
  }
  .sm\:flex-basis-2\/3 {
    -ms-flex-preferred-size: 66.666667%;
        flex-basis: 66.666667%;
  }
  .sm\:flex-basis-1\/4 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .sm\:flex-basis-2\/4 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .sm\:flex-basis-3\/4 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
  .sm\:flex-basis-1\/5 {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
  }
  .sm\:flex-basis-2\/5 {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
  .sm\:flex-basis-3\/5 {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
  }
  .sm\:flex-basis-4\/5 {
    -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
  }
  .sm\:flex-basis-1\/6 {
    -ms-flex-preferred-size: 16.666667%;
        flex-basis: 16.666667%;
  }
  .sm\:flex-basis-2\/6 {
    -ms-flex-preferred-size: 33.333333%;
        flex-basis: 33.333333%;
  }
  .sm\:flex-basis-3\/6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .sm\:flex-basis-4\/6 {
    -ms-flex-preferred-size: 66.666667%;
        flex-basis: 66.666667%;
  }
  .sm\:flex-basis-5\/6 {
    -ms-flex-preferred-size: 83.333333%;
        flex-basis: 83.333333%;
  }
  .sm\:flex-basis-1\/12 {
    -ms-flex-preferred-size: 8.333333%;
        flex-basis: 8.333333%;
  }
  .sm\:flex-basis-2\/12 {
    -ms-flex-preferred-size: 16.666667%;
        flex-basis: 16.666667%;
  }
  .sm\:flex-basis-3\/12 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .sm\:flex-basis-4\/12 {
    -ms-flex-preferred-size: 33.333333%;
        flex-basis: 33.333333%;
  }
  .sm\:flex-basis-5\/12 {
    -ms-flex-preferred-size: 41.666667%;
        flex-basis: 41.666667%;
  }
  .sm\:flex-basis-6\/12 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .sm\:flex-basis-7\/12 {
    -ms-flex-preferred-size: 58.333333%;
        flex-basis: 58.333333%;
  }
  .sm\:flex-basis-8\/12 {
    -ms-flex-preferred-size: 66.666667%;
        flex-basis: 66.666667%;
  }
  .sm\:flex-basis-9\/12 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
  .sm\:flex-basis-10\/12 {
    -ms-flex-preferred-size: 83.333333%;
        flex-basis: 83.333333%;
  }
  .sm\:flex-basis-11\/12 {
    -ms-flex-preferred-size: 91.666667%;
        flex-basis: 91.666667%;
  }
  .sm\:flex-basis-full {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.fz-10 {
  font-size: 1rem;
}
.fz-11 {
  font-size: 1.1rem;
}
.fz-12 {
  font-size: 1.2rem;
}
.fz-13 {
  font-size: 1.3rem;
}
.fz-14 {
  font-size: 1.4rem;
}
.fz-15 {
  font-size: 1.5rem;
}
.fz-16 {
  font-size: 1.6rem;
}
.fz-17 {
  font-size: 1.7rem;
}
.fz-18 {
  font-size: 1.8rem;
}
.fz-19 {
  font-size: 1.9rem;
}
.fz-20 {
  font-size: 2rem;
}
.fz-21 {
  font-size: 2.1rem;
}
.fz-22 {
  font-size: 2.2rem;
}
.fz-23 {
  font-size: 2.3rem;
}
.fz-24 {
  font-size: 2.4rem;
}
.fz-25 {
  font-size: 2.5rem;
}
.fz-26 {
  font-size: 2.6rem;
}
.fz-27 {
  font-size: 2.7rem;
}
.fz-28 {
  font-size: 2.8rem;
}
.fz-29 {
  font-size: 2.9rem;
}
.fz-30 {
  font-size: 3rem;
}

@media screen and (min-width: 768px) {
  .pc\:fz-10 {
    font-size: 1rem;
  }
  .pc\:fz-11 {
    font-size: 1.1rem;
  }
  .pc\:fz-12 {
    font-size: 1.2rem;
  }
  .pc\:fz-13 {
    font-size: 1.3rem;
  }
  .pc\:fz-14 {
    font-size: 1.4rem;
  }
  .pc\:fz-15 {
    font-size: 1.5rem;
  }
  .pc\:fz-16 {
    font-size: 1.6rem;
  }
  .pc\:fz-17 {
    font-size: 1.7rem;
  }
  .pc\:fz-18 {
    font-size: 1.8rem;
  }
  .pc\:fz-19 {
    font-size: 1.9rem;
  }
  .pc\:fz-20 {
    font-size: 2rem;
  }
  .pc\:fz-21 {
    font-size: 2.1rem;
  }
  .pc\:fz-22 {
    font-size: 2.2rem;
  }
  .pc\:fz-23 {
    font-size: 2.3rem;
  }
  .pc\:fz-24 {
    font-size: 2.4rem;
  }
  .pc\:fz-25 {
    font-size: 2.5rem;
  }
  .pc\:fz-26 {
    font-size: 2.6rem;
  }
  .pc\:fz-27 {
    font-size: 2.7rem;
  }
  .pc\:fz-28 {
    font-size: 2.8rem;
  }
  .pc\:fz-29 {
    font-size: 2.9rem;
  }
  .pc\:fz-30 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .md\:fz-10 {
    font-size: 1rem;
  }
  .md\:fz-11 {
    font-size: 1.1rem;
  }
  .md\:fz-12 {
    font-size: 1.2rem;
  }
  .md\:fz-13 {
    font-size: 1.3rem;
  }
  .md\:fz-14 {
    font-size: 1.4rem;
  }
  .md\:fz-15 {
    font-size: 1.5rem;
  }
  .md\:fz-16 {
    font-size: 1.6rem;
  }
  .md\:fz-17 {
    font-size: 1.7rem;
  }
  .md\:fz-18 {
    font-size: 1.8rem;
  }
  .md\:fz-19 {
    font-size: 1.9rem;
  }
  .md\:fz-20 {
    font-size: 2rem;
  }
  .md\:fz-21 {
    font-size: 2.1rem;
  }
  .md\:fz-22 {
    font-size: 2.2rem;
  }
  .md\:fz-23 {
    font-size: 2.3rem;
  }
  .md\:fz-24 {
    font-size: 2.4rem;
  }
  .md\:fz-25 {
    font-size: 2.5rem;
  }
  .md\:fz-26 {
    font-size: 2.6rem;
  }
  .md\:fz-27 {
    font-size: 2.7rem;
  }
  .md\:fz-28 {
    font-size: 2.8rem;
  }
  .md\:fz-29 {
    font-size: 2.9rem;
  }
  .md\:fz-30 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 640px) {
  .sm\:fz-10 {
    font-size: 1rem;
  }
  .sm\:fz-11 {
    font-size: 1.1rem;
  }
  .sm\:fz-12 {
    font-size: 1.2rem;
  }
  .sm\:fz-13 {
    font-size: 1.3rem;
  }
  .sm\:fz-14 {
    font-size: 1.4rem;
  }
  .sm\:fz-15 {
    font-size: 1.5rem;
  }
  .sm\:fz-16 {
    font-size: 1.6rem;
  }
  .sm\:fz-17 {
    font-size: 1.7rem;
  }
  .sm\:fz-18 {
    font-size: 1.8rem;
  }
  .sm\:fz-19 {
    font-size: 1.9rem;
  }
  .sm\:fz-20 {
    font-size: 2rem;
  }
  .sm\:fz-21 {
    font-size: 2.1rem;
  }
  .sm\:fz-22 {
    font-size: 2.2rem;
  }
  .sm\:fz-23 {
    font-size: 2.3rem;
  }
  .sm\:fz-24 {
    font-size: 2.4rem;
  }
  .sm\:fz-25 {
    font-size: 2.5rem;
  }
  .sm\:fz-26 {
    font-size: 2.6rem;
  }
  .sm\:fz-27 {
    font-size: 2.7rem;
  }
  .sm\:fz-28 {
    font-size: 2.8rem;
  }
  .sm\:fz-29 {
    font-size: 2.9rem;
  }
  .sm\:fz-30 {
    font-size: 3rem;
  }
}
.fs-small {
  font-size: 81.25%;
}

.fs-tiny {
  font-size: 68.75%;
}

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

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

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

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

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

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

.ff-noto-sans {
  font-family: "Noto Sans JP", sans-serif !important;
}

.ff-noto-serif {
  font-family: "Noto Serif JP", serif !important;
}

.ff-noto-serif-condensed {
  font-family: "Noto-Serif-Display-Condensed", serif !important;
}

.gap-0 {
  gap: 0px;
}
.gap-5 {
  gap: 5px;
}
.gap-10 {
  gap: 10px;
}
.gap-15 {
  gap: 15px;
}
.gap-20 {
  gap: 20px;
}
.gap-25 {
  gap: 25px;
}
.gap-30 {
  gap: 30px;
}
.gap-35 {
  gap: 35px;
}
.gap-40 {
  gap: 40px;
}
.gap-45 {
  gap: 45px;
}
.gap-50 {
  gap: 50px;
}
.gap-55 {
  gap: 55px;
}
.gap-60 {
  gap: 60px;
}
.gap-65 {
  gap: 65px;
}
.gap-70 {
  gap: 70px;
}
.gap-75 {
  gap: 75px;
}
.gap-80 {
  gap: 80px;
}
.gap-85 {
  gap: 85px;
}
.gap-90 {
  gap: 90px;
}
.gap-95 {
  gap: 95px;
}
.gap-100 {
  gap: 100px;
}
.gap-x-0 {
  -webkit-column-gap: 0px;
     -moz-column-gap: 0px;
          column-gap: 0px;
}
.gap-y-0 {
  row-gap: 0px;
}
.gap-x-5 {
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.gap-y-5 {
  row-gap: 5px;
}
.gap-x-10 {
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.gap-y-10 {
  row-gap: 10px;
}
.gap-x-15 {
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
.gap-y-15 {
  row-gap: 15px;
}
.gap-x-20 {
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.gap-y-20 {
  row-gap: 20px;
}
.gap-x-25 {
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
}
.gap-y-25 {
  row-gap: 25px;
}
.gap-x-30 {
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.gap-y-30 {
  row-gap: 30px;
}
.gap-x-35 {
  -webkit-column-gap: 35px;
     -moz-column-gap: 35px;
          column-gap: 35px;
}
.gap-y-35 {
  row-gap: 35px;
}
.gap-x-40 {
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
.gap-y-40 {
  row-gap: 40px;
}
.gap-x-45 {
  -webkit-column-gap: 45px;
     -moz-column-gap: 45px;
          column-gap: 45px;
}
.gap-y-45 {
  row-gap: 45px;
}
.gap-x-50 {
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}
.gap-y-50 {
  row-gap: 50px;
}
.gap-x-55 {
  -webkit-column-gap: 55px;
     -moz-column-gap: 55px;
          column-gap: 55px;
}
.gap-y-55 {
  row-gap: 55px;
}
.gap-x-60 {
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
.gap-y-60 {
  row-gap: 60px;
}
.gap-x-65 {
  -webkit-column-gap: 65px;
     -moz-column-gap: 65px;
          column-gap: 65px;
}
.gap-y-65 {
  row-gap: 65px;
}
.gap-x-70 {
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
}
.gap-y-70 {
  row-gap: 70px;
}
.gap-x-75 {
  -webkit-column-gap: 75px;
     -moz-column-gap: 75px;
          column-gap: 75px;
}
.gap-y-75 {
  row-gap: 75px;
}
.gap-x-80 {
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
}
.gap-y-80 {
  row-gap: 80px;
}
.gap-x-85 {
  -webkit-column-gap: 85px;
     -moz-column-gap: 85px;
          column-gap: 85px;
}
.gap-y-85 {
  row-gap: 85px;
}
.gap-x-90 {
  -webkit-column-gap: 90px;
     -moz-column-gap: 90px;
          column-gap: 90px;
}
.gap-y-90 {
  row-gap: 90px;
}
.gap-x-95 {
  -webkit-column-gap: 95px;
     -moz-column-gap: 95px;
          column-gap: 95px;
}
.gap-y-95 {
  row-gap: 95px;
}
.gap-x-100 {
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
}
.gap-y-100 {
  row-gap: 100px;
}

@media screen and (min-width: 768px) {
  .pc\:gap-0 {
    gap: 0px;
  }
  .pc\:gap-5 {
    gap: 5px;
  }
  .pc\:gap-10 {
    gap: 10px;
  }
  .pc\:gap-15 {
    gap: 15px;
  }
  .pc\:gap-20 {
    gap: 20px;
  }
  .pc\:gap-25 {
    gap: 25px;
  }
  .pc\:gap-30 {
    gap: 30px;
  }
  .pc\:gap-35 {
    gap: 35px;
  }
  .pc\:gap-40 {
    gap: 40px;
  }
  .pc\:gap-45 {
    gap: 45px;
  }
  .pc\:gap-50 {
    gap: 50px;
  }
  .pc\:gap-55 {
    gap: 55px;
  }
  .pc\:gap-60 {
    gap: 60px;
  }
  .pc\:gap-65 {
    gap: 65px;
  }
  .pc\:gap-70 {
    gap: 70px;
  }
  .pc\:gap-75 {
    gap: 75px;
  }
  .pc\:gap-80 {
    gap: 80px;
  }
  .pc\:gap-85 {
    gap: 85px;
  }
  .pc\:gap-90 {
    gap: 90px;
  }
  .pc\:gap-95 {
    gap: 95px;
  }
  .pc\:gap-100 {
    gap: 100px;
  }
  .pc\:gap-x-0 {
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
  }
  .pc\:gap-y-0 {
    row-gap: 0px;
  }
  .pc\:gap-x-5 {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }
  .pc\:gap-y-5 {
    row-gap: 5px;
  }
  .pc\:gap-x-10 {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .pc\:gap-y-10 {
    row-gap: 10px;
  }
  .pc\:gap-x-15 {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
  .pc\:gap-y-15 {
    row-gap: 15px;
  }
  .pc\:gap-x-20 {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .pc\:gap-y-20 {
    row-gap: 20px;
  }
  .pc\:gap-x-25 {
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }
  .pc\:gap-y-25 {
    row-gap: 25px;
  }
  .pc\:gap-x-30 {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
  .pc\:gap-y-30 {
    row-gap: 30px;
  }
  .pc\:gap-x-35 {
    -webkit-column-gap: 35px;
       -moz-column-gap: 35px;
            column-gap: 35px;
  }
  .pc\:gap-y-35 {
    row-gap: 35px;
  }
  .pc\:gap-x-40 {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
  .pc\:gap-y-40 {
    row-gap: 40px;
  }
  .pc\:gap-x-45 {
    -webkit-column-gap: 45px;
       -moz-column-gap: 45px;
            column-gap: 45px;
  }
  .pc\:gap-y-45 {
    row-gap: 45px;
  }
  .pc\:gap-x-50 {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
  .pc\:gap-y-50 {
    row-gap: 50px;
  }
  .pc\:gap-x-55 {
    -webkit-column-gap: 55px;
       -moz-column-gap: 55px;
            column-gap: 55px;
  }
  .pc\:gap-y-55 {
    row-gap: 55px;
  }
  .pc\:gap-x-60 {
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
  }
  .pc\:gap-y-60 {
    row-gap: 60px;
  }
  .pc\:gap-x-65 {
    -webkit-column-gap: 65px;
       -moz-column-gap: 65px;
            column-gap: 65px;
  }
  .pc\:gap-y-65 {
    row-gap: 65px;
  }
  .pc\:gap-x-70 {
    -webkit-column-gap: 70px;
       -moz-column-gap: 70px;
            column-gap: 70px;
  }
  .pc\:gap-y-70 {
    row-gap: 70px;
  }
  .pc\:gap-x-75 {
    -webkit-column-gap: 75px;
       -moz-column-gap: 75px;
            column-gap: 75px;
  }
  .pc\:gap-y-75 {
    row-gap: 75px;
  }
  .pc\:gap-x-80 {
    -webkit-column-gap: 80px;
       -moz-column-gap: 80px;
            column-gap: 80px;
  }
  .pc\:gap-y-80 {
    row-gap: 80px;
  }
  .pc\:gap-x-85 {
    -webkit-column-gap: 85px;
       -moz-column-gap: 85px;
            column-gap: 85px;
  }
  .pc\:gap-y-85 {
    row-gap: 85px;
  }
  .pc\:gap-x-90 {
    -webkit-column-gap: 90px;
       -moz-column-gap: 90px;
            column-gap: 90px;
  }
  .pc\:gap-y-90 {
    row-gap: 90px;
  }
  .pc\:gap-x-95 {
    -webkit-column-gap: 95px;
       -moz-column-gap: 95px;
            column-gap: 95px;
  }
  .pc\:gap-y-95 {
    row-gap: 95px;
  }
  .pc\:gap-x-100 {
    -webkit-column-gap: 100px;
       -moz-column-gap: 100px;
            column-gap: 100px;
  }
  .pc\:gap-y-100 {
    row-gap: 100px;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0px;
  }
  .md\:gap-5 {
    gap: 5px;
  }
  .md\:gap-10 {
    gap: 10px;
  }
  .md\:gap-15 {
    gap: 15px;
  }
  .md\:gap-20 {
    gap: 20px;
  }
  .md\:gap-25 {
    gap: 25px;
  }
  .md\:gap-30 {
    gap: 30px;
  }
  .md\:gap-35 {
    gap: 35px;
  }
  .md\:gap-40 {
    gap: 40px;
  }
  .md\:gap-45 {
    gap: 45px;
  }
  .md\:gap-50 {
    gap: 50px;
  }
  .md\:gap-55 {
    gap: 55px;
  }
  .md\:gap-60 {
    gap: 60px;
  }
  .md\:gap-65 {
    gap: 65px;
  }
  .md\:gap-70 {
    gap: 70px;
  }
  .md\:gap-75 {
    gap: 75px;
  }
  .md\:gap-80 {
    gap: 80px;
  }
  .md\:gap-85 {
    gap: 85px;
  }
  .md\:gap-90 {
    gap: 90px;
  }
  .md\:gap-95 {
    gap: 95px;
  }
  .md\:gap-100 {
    gap: 100px;
  }
  .md\:gap-x-0 {
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
  }
  .md\:gap-y-0 {
    row-gap: 0px;
  }
  .md\:gap-x-5 {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }
  .md\:gap-y-5 {
    row-gap: 5px;
  }
  .md\:gap-x-10 {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .md\:gap-y-10 {
    row-gap: 10px;
  }
  .md\:gap-x-15 {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
  .md\:gap-y-15 {
    row-gap: 15px;
  }
  .md\:gap-x-20 {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .md\:gap-y-20 {
    row-gap: 20px;
  }
  .md\:gap-x-25 {
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }
  .md\:gap-y-25 {
    row-gap: 25px;
  }
  .md\:gap-x-30 {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
  .md\:gap-y-30 {
    row-gap: 30px;
  }
  .md\:gap-x-35 {
    -webkit-column-gap: 35px;
       -moz-column-gap: 35px;
            column-gap: 35px;
  }
  .md\:gap-y-35 {
    row-gap: 35px;
  }
  .md\:gap-x-40 {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
  .md\:gap-y-40 {
    row-gap: 40px;
  }
  .md\:gap-x-45 {
    -webkit-column-gap: 45px;
       -moz-column-gap: 45px;
            column-gap: 45px;
  }
  .md\:gap-y-45 {
    row-gap: 45px;
  }
  .md\:gap-x-50 {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
  .md\:gap-y-50 {
    row-gap: 50px;
  }
  .md\:gap-x-55 {
    -webkit-column-gap: 55px;
       -moz-column-gap: 55px;
            column-gap: 55px;
  }
  .md\:gap-y-55 {
    row-gap: 55px;
  }
  .md\:gap-x-60 {
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
  }
  .md\:gap-y-60 {
    row-gap: 60px;
  }
  .md\:gap-x-65 {
    -webkit-column-gap: 65px;
       -moz-column-gap: 65px;
            column-gap: 65px;
  }
  .md\:gap-y-65 {
    row-gap: 65px;
  }
  .md\:gap-x-70 {
    -webkit-column-gap: 70px;
       -moz-column-gap: 70px;
            column-gap: 70px;
  }
  .md\:gap-y-70 {
    row-gap: 70px;
  }
  .md\:gap-x-75 {
    -webkit-column-gap: 75px;
       -moz-column-gap: 75px;
            column-gap: 75px;
  }
  .md\:gap-y-75 {
    row-gap: 75px;
  }
  .md\:gap-x-80 {
    -webkit-column-gap: 80px;
       -moz-column-gap: 80px;
            column-gap: 80px;
  }
  .md\:gap-y-80 {
    row-gap: 80px;
  }
  .md\:gap-x-85 {
    -webkit-column-gap: 85px;
       -moz-column-gap: 85px;
            column-gap: 85px;
  }
  .md\:gap-y-85 {
    row-gap: 85px;
  }
  .md\:gap-x-90 {
    -webkit-column-gap: 90px;
       -moz-column-gap: 90px;
            column-gap: 90px;
  }
  .md\:gap-y-90 {
    row-gap: 90px;
  }
  .md\:gap-x-95 {
    -webkit-column-gap: 95px;
       -moz-column-gap: 95px;
            column-gap: 95px;
  }
  .md\:gap-y-95 {
    row-gap: 95px;
  }
  .md\:gap-x-100 {
    -webkit-column-gap: 100px;
       -moz-column-gap: 100px;
            column-gap: 100px;
  }
  .md\:gap-y-100 {
    row-gap: 100px;
  }
}
@media screen and (max-width: 640px) {
  .sm\:gap-0 {
    gap: 0px;
  }
  .sm\:gap-5 {
    gap: 5px;
  }
  .sm\:gap-10 {
    gap: 10px;
  }
  .sm\:gap-15 {
    gap: 15px;
  }
  .sm\:gap-20 {
    gap: 20px;
  }
  .sm\:gap-25 {
    gap: 25px;
  }
  .sm\:gap-30 {
    gap: 30px;
  }
  .sm\:gap-35 {
    gap: 35px;
  }
  .sm\:gap-40 {
    gap: 40px;
  }
  .sm\:gap-45 {
    gap: 45px;
  }
  .sm\:gap-50 {
    gap: 50px;
  }
  .sm\:gap-55 {
    gap: 55px;
  }
  .sm\:gap-60 {
    gap: 60px;
  }
  .sm\:gap-65 {
    gap: 65px;
  }
  .sm\:gap-70 {
    gap: 70px;
  }
  .sm\:gap-75 {
    gap: 75px;
  }
  .sm\:gap-80 {
    gap: 80px;
  }
  .sm\:gap-85 {
    gap: 85px;
  }
  .sm\:gap-90 {
    gap: 90px;
  }
  .sm\:gap-95 {
    gap: 95px;
  }
  .sm\:gap-100 {
    gap: 100px;
  }
  .sm\:gap-x-0 {
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
  }
  .sm\:gap-y-0 {
    row-gap: 0px;
  }
  .sm\:gap-x-5 {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }
  .sm\:gap-y-5 {
    row-gap: 5px;
  }
  .sm\:gap-x-10 {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .sm\:gap-y-10 {
    row-gap: 10px;
  }
  .sm\:gap-x-15 {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
  .sm\:gap-y-15 {
    row-gap: 15px;
  }
  .sm\:gap-x-20 {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .sm\:gap-y-20 {
    row-gap: 20px;
  }
  .sm\:gap-x-25 {
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }
  .sm\:gap-y-25 {
    row-gap: 25px;
  }
  .sm\:gap-x-30 {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
  .sm\:gap-y-30 {
    row-gap: 30px;
  }
  .sm\:gap-x-35 {
    -webkit-column-gap: 35px;
       -moz-column-gap: 35px;
            column-gap: 35px;
  }
  .sm\:gap-y-35 {
    row-gap: 35px;
  }
  .sm\:gap-x-40 {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
  .sm\:gap-y-40 {
    row-gap: 40px;
  }
  .sm\:gap-x-45 {
    -webkit-column-gap: 45px;
       -moz-column-gap: 45px;
            column-gap: 45px;
  }
  .sm\:gap-y-45 {
    row-gap: 45px;
  }
  .sm\:gap-x-50 {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
  .sm\:gap-y-50 {
    row-gap: 50px;
  }
  .sm\:gap-x-55 {
    -webkit-column-gap: 55px;
       -moz-column-gap: 55px;
            column-gap: 55px;
  }
  .sm\:gap-y-55 {
    row-gap: 55px;
  }
  .sm\:gap-x-60 {
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
  }
  .sm\:gap-y-60 {
    row-gap: 60px;
  }
  .sm\:gap-x-65 {
    -webkit-column-gap: 65px;
       -moz-column-gap: 65px;
            column-gap: 65px;
  }
  .sm\:gap-y-65 {
    row-gap: 65px;
  }
  .sm\:gap-x-70 {
    -webkit-column-gap: 70px;
       -moz-column-gap: 70px;
            column-gap: 70px;
  }
  .sm\:gap-y-70 {
    row-gap: 70px;
  }
  .sm\:gap-x-75 {
    -webkit-column-gap: 75px;
       -moz-column-gap: 75px;
            column-gap: 75px;
  }
  .sm\:gap-y-75 {
    row-gap: 75px;
  }
  .sm\:gap-x-80 {
    -webkit-column-gap: 80px;
       -moz-column-gap: 80px;
            column-gap: 80px;
  }
  .sm\:gap-y-80 {
    row-gap: 80px;
  }
  .sm\:gap-x-85 {
    -webkit-column-gap: 85px;
       -moz-column-gap: 85px;
            column-gap: 85px;
  }
  .sm\:gap-y-85 {
    row-gap: 85px;
  }
  .sm\:gap-x-90 {
    -webkit-column-gap: 90px;
       -moz-column-gap: 90px;
            column-gap: 90px;
  }
  .sm\:gap-y-90 {
    row-gap: 90px;
  }
  .sm\:gap-x-95 {
    -webkit-column-gap: 95px;
       -moz-column-gap: 95px;
            column-gap: 95px;
  }
  .sm\:gap-y-95 {
    row-gap: 95px;
  }
  .sm\:gap-x-100 {
    -webkit-column-gap: 100px;
       -moz-column-gap: 100px;
            column-gap: 100px;
  }
  .sm\:gap-y-100 {
    row-gap: 100px;
  }
}
/*
/* Grid System
/*
----------------------------------------------------------------- */
.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.grid-cols-none {
  grid-template-columns: none;
}

@media screen and (min-width: 768px) {
  .pc\:grid {
    display: grid;
  }
  .pc\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .pc\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pc\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .pc\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .pc\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .pc\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .pc\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .pc\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .pc\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .pc\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .pc\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .pc\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .pc\:grid-cols-none {
    grid-template-columns: none;
  }
}
@media screen and (max-width: 767px) {
  .md\:grid {
    display: grid;
  }
  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .md\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .md\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .md\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .md\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .md\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .md\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .md\:grid-cols-none {
    grid-template-columns: none;
  }
}
@media screen and (max-width: 640px) {
  .sm\:grid {
    display: grid;
  }
  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .sm\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .sm\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .sm\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .sm\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .sm\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .sm\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .sm\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .sm\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .sm\:grid-cols-none {
    grid-template-columns: none;
  }
}
.hidden {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .pc\:hidden {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:hidden {
    display: none !important;
  }
}
@media screen and (max-width: 640px) {
  .sm\:hidden {
    display: none !important;
  }
}
.lh-10 {
  line-height: 1;
}
.lh-11 {
  line-height: 1.1;
}
.lh-12 {
  line-height: 1.2;
}
.lh-13 {
  line-height: 1.3;
}
.lh-14 {
  line-height: 1.4;
}
.lh-15 {
  line-height: 1.5;
}
.lh-16 {
  line-height: 1.6;
}
.lh-17 {
  line-height: 1.7;
}
.lh-18 {
  line-height: 1.8;
}
.lh-19 {
  line-height: 1.9;
}
.lh-20 {
  line-height: 2;
}
.lh-21 {
  line-height: 2.1;
}
.lh-22 {
  line-height: 2.2;
}
.lh-23 {
  line-height: 2.3;
}
.lh-24 {
  line-height: 2.4;
}
.lh-25 {
  line-height: 2.5;
}
.lh-26 {
  line-height: 2.6;
}
.lh-27 {
  line-height: 2.7;
}
.lh-28 {
  line-height: 2.8;
}
.lh-29 {
  line-height: 2.9;
}
.lh-30 {
  line-height: 3;
}

@media screen and (min-width: 768px) {
  .pc\:lh-10 {
    line-height: 1;
  }
  .pc\:lh-11 {
    line-height: 1.1;
  }
  .pc\:lh-12 {
    line-height: 1.2;
  }
  .pc\:lh-13 {
    line-height: 1.3;
  }
  .pc\:lh-14 {
    line-height: 1.4;
  }
  .pc\:lh-15 {
    line-height: 1.5;
  }
  .pc\:lh-16 {
    line-height: 1.6;
  }
  .pc\:lh-17 {
    line-height: 1.7;
  }
  .pc\:lh-18 {
    line-height: 1.8;
  }
  .pc\:lh-19 {
    line-height: 1.9;
  }
  .pc\:lh-20 {
    line-height: 2;
  }
  .pc\:lh-21 {
    line-height: 2.1;
  }
  .pc\:lh-22 {
    line-height: 2.2;
  }
  .pc\:lh-23 {
    line-height: 2.3;
  }
  .pc\:lh-24 {
    line-height: 2.4;
  }
  .pc\:lh-25 {
    line-height: 2.5;
  }
  .pc\:lh-26 {
    line-height: 2.6;
  }
  .pc\:lh-27 {
    line-height: 2.7;
  }
  .pc\:lh-28 {
    line-height: 2.8;
  }
  .pc\:lh-29 {
    line-height: 2.9;
  }
  .pc\:lh-30 {
    line-height: 3;
  }
}
@media screen and (max-width: 767px) {
  .md\:lh-10 {
    line-height: 1;
  }
  .md\:lh-11 {
    line-height: 1.1;
  }
  .md\:lh-12 {
    line-height: 1.2;
  }
  .md\:lh-13 {
    line-height: 1.3;
  }
  .md\:lh-14 {
    line-height: 1.4;
  }
  .md\:lh-15 {
    line-height: 1.5;
  }
  .md\:lh-16 {
    line-height: 1.6;
  }
  .md\:lh-17 {
    line-height: 1.7;
  }
  .md\:lh-18 {
    line-height: 1.8;
  }
  .md\:lh-19 {
    line-height: 1.9;
  }
  .md\:lh-20 {
    line-height: 2;
  }
  .md\:lh-21 {
    line-height: 2.1;
  }
  .md\:lh-22 {
    line-height: 2.2;
  }
  .md\:lh-23 {
    line-height: 2.3;
  }
  .md\:lh-24 {
    line-height: 2.4;
  }
  .md\:lh-25 {
    line-height: 2.5;
  }
  .md\:lh-26 {
    line-height: 2.6;
  }
  .md\:lh-27 {
    line-height: 2.7;
  }
  .md\:lh-28 {
    line-height: 2.8;
  }
  .md\:lh-29 {
    line-height: 2.9;
  }
  .md\:lh-30 {
    line-height: 3;
  }
}
@media screen and (max-width: 640px) {
  .sm\:lh-10 {
    line-height: 1;
  }
  .sm\:lh-11 {
    line-height: 1.1;
  }
  .sm\:lh-12 {
    line-height: 1.2;
  }
  .sm\:lh-13 {
    line-height: 1.3;
  }
  .sm\:lh-14 {
    line-height: 1.4;
  }
  .sm\:lh-15 {
    line-height: 1.5;
  }
  .sm\:lh-16 {
    line-height: 1.6;
  }
  .sm\:lh-17 {
    line-height: 1.7;
  }
  .sm\:lh-18 {
    line-height: 1.8;
  }
  .sm\:lh-19 {
    line-height: 1.9;
  }
  .sm\:lh-20 {
    line-height: 2;
  }
  .sm\:lh-21 {
    line-height: 2.1;
  }
  .sm\:lh-22 {
    line-height: 2.2;
  }
  .sm\:lh-23 {
    line-height: 2.3;
  }
  .sm\:lh-24 {
    line-height: 2.4;
  }
  .sm\:lh-25 {
    line-height: 2.5;
  }
  .sm\:lh-26 {
    line-height: 2.6;
  }
  .sm\:lh-27 {
    line-height: 2.7;
  }
  .sm\:lh-28 {
    line-height: 2.8;
  }
  .sm\:lh-29 {
    line-height: 2.9;
  }
  .sm\:lh-30 {
    line-height: 3;
  }
}
.mt-0 {
  margin-top: 0rem !important;
}
.mr-0 {
  margin-right: 0rem !important;
}
.mb-0 {
  margin-bottom: 0rem !important;
}
.ml-0 {
  margin-left: 0rem !important;
}
.mt-5 {
  margin-top: 0.3125rem !important;
}
.mr-5 {
  margin-right: 0.3125rem !important;
}
.mb-5 {
  margin-bottom: 0.3125rem !important;
}
.ml-5 {
  margin-left: 0.3125rem !important;
}
.mt-10 {
  margin-top: 0.625rem !important;
}
.mr-10 {
  margin-right: 0.625rem !important;
}
.mb-10 {
  margin-bottom: 0.625rem !important;
}
.ml-10 {
  margin-left: 0.625rem !important;
}
.mt-15 {
  margin-top: 0.9375rem !important;
}
.mr-15 {
  margin-right: 0.9375rem !important;
}
.mb-15 {
  margin-bottom: 0.9375rem !important;
}
.ml-15 {
  margin-left: 0.9375rem !important;
}
.mt-20 {
  margin-top: 1.25rem !important;
}
.mr-20 {
  margin-right: 1.25rem !important;
}
.mb-20 {
  margin-bottom: 1.25rem !important;
}
.ml-20 {
  margin-left: 1.25rem !important;
}
.mt-25 {
  margin-top: 1.5625rem !important;
}
.mr-25 {
  margin-right: 1.5625rem !important;
}
.mb-25 {
  margin-bottom: 1.5625rem !important;
}
.ml-25 {
  margin-left: 1.5625rem !important;
}
.mt-30 {
  margin-top: 1.875rem !important;
}
.mr-30 {
  margin-right: 1.875rem !important;
}
.mb-30 {
  margin-bottom: 1.875rem !important;
}
.ml-30 {
  margin-left: 1.875rem !important;
}
.mt-35 {
  margin-top: 2.1875rem !important;
}
.mr-35 {
  margin-right: 2.1875rem !important;
}
.mb-35 {
  margin-bottom: 2.1875rem !important;
}
.ml-35 {
  margin-left: 2.1875rem !important;
}
.mt-40 {
  margin-top: 2.5rem !important;
}
.mr-40 {
  margin-right: 2.5rem !important;
}
.mb-40 {
  margin-bottom: 2.5rem !important;
}
.ml-40 {
  margin-left: 2.5rem !important;
}
.mt-45 {
  margin-top: 2.8125rem !important;
}
.mr-45 {
  margin-right: 2.8125rem !important;
}
.mb-45 {
  margin-bottom: 2.8125rem !important;
}
.ml-45 {
  margin-left: 2.8125rem !important;
}
.mt-50 {
  margin-top: 3.125rem !important;
}
.mr-50 {
  margin-right: 3.125rem !important;
}
.mb-50 {
  margin-bottom: 3.125rem !important;
}
.ml-50 {
  margin-left: 3.125rem !important;
}
.mt-55 {
  margin-top: 3.4375rem !important;
}
.mr-55 {
  margin-right: 3.4375rem !important;
}
.mb-55 {
  margin-bottom: 3.4375rem !important;
}
.ml-55 {
  margin-left: 3.4375rem !important;
}
.mt-60 {
  margin-top: 3.75rem !important;
}
.mr-60 {
  margin-right: 3.75rem !important;
}
.mb-60 {
  margin-bottom: 3.75rem !important;
}
.ml-60 {
  margin-left: 3.75rem !important;
}
.mt-65 {
  margin-top: 4.0625rem !important;
}
.mr-65 {
  margin-right: 4.0625rem !important;
}
.mb-65 {
  margin-bottom: 4.0625rem !important;
}
.ml-65 {
  margin-left: 4.0625rem !important;
}
.mt-70 {
  margin-top: 4.375rem !important;
}
.mr-70 {
  margin-right: 4.375rem !important;
}
.mb-70 {
  margin-bottom: 4.375rem !important;
}
.ml-70 {
  margin-left: 4.375rem !important;
}
.mt-75 {
  margin-top: 4.6875rem !important;
}
.mr-75 {
  margin-right: 4.6875rem !important;
}
.mb-75 {
  margin-bottom: 4.6875rem !important;
}
.ml-75 {
  margin-left: 4.6875rem !important;
}
.mt-80 {
  margin-top: 5rem !important;
}
.mr-80 {
  margin-right: 5rem !important;
}
.mb-80 {
  margin-bottom: 5rem !important;
}
.ml-80 {
  margin-left: 5rem !important;
}
.mt-85 {
  margin-top: 5.3125rem !important;
}
.mr-85 {
  margin-right: 5.3125rem !important;
}
.mb-85 {
  margin-bottom: 5.3125rem !important;
}
.ml-85 {
  margin-left: 5.3125rem !important;
}
.mt-90 {
  margin-top: 5.625rem !important;
}
.mr-90 {
  margin-right: 5.625rem !important;
}
.mb-90 {
  margin-bottom: 5.625rem !important;
}
.ml-90 {
  margin-left: 5.625rem !important;
}
.mt-95 {
  margin-top: 5.9375rem !important;
}
.mr-95 {
  margin-right: 5.9375rem !important;
}
.mb-95 {
  margin-bottom: 5.9375rem !important;
}
.ml-95 {
  margin-left: 5.9375rem !important;
}
.mt-100 {
  margin-top: 6.25rem !important;
}
.mr-100 {
  margin-right: 6.25rem !important;
}
.mb-100 {
  margin-bottom: 6.25rem !important;
}
.ml-100 {
  margin-left: 6.25rem !important;
}
.mt-105 {
  margin-top: 6.5625rem !important;
}
.mr-105 {
  margin-right: 6.5625rem !important;
}
.mb-105 {
  margin-bottom: 6.5625rem !important;
}
.ml-105 {
  margin-left: 6.5625rem !important;
}
.mt-110 {
  margin-top: 6.875rem !important;
}
.mr-110 {
  margin-right: 6.875rem !important;
}
.mb-110 {
  margin-bottom: 6.875rem !important;
}
.ml-110 {
  margin-left: 6.875rem !important;
}
.mt-115 {
  margin-top: 7.1875rem !important;
}
.mr-115 {
  margin-right: 7.1875rem !important;
}
.mb-115 {
  margin-bottom: 7.1875rem !important;
}
.ml-115 {
  margin-left: 7.1875rem !important;
}
.mt-120 {
  margin-top: 7.5rem !important;
}
.mr-120 {
  margin-right: 7.5rem !important;
}
.mb-120 {
  margin-bottom: 7.5rem !important;
}
.ml-120 {
  margin-left: 7.5rem !important;
}
.mt-125 {
  margin-top: 7.8125rem !important;
}
.mr-125 {
  margin-right: 7.8125rem !important;
}
.mb-125 {
  margin-bottom: 7.8125rem !important;
}
.ml-125 {
  margin-left: 7.8125rem !important;
}
.mt-130 {
  margin-top: 8.125rem !important;
}
.mr-130 {
  margin-right: 8.125rem !important;
}
.mb-130 {
  margin-bottom: 8.125rem !important;
}
.ml-130 {
  margin-left: 8.125rem !important;
}
.mt-135 {
  margin-top: 8.4375rem !important;
}
.mr-135 {
  margin-right: 8.4375rem !important;
}
.mb-135 {
  margin-bottom: 8.4375rem !important;
}
.ml-135 {
  margin-left: 8.4375rem !important;
}
.mt-140 {
  margin-top: 8.75rem !important;
}
.mr-140 {
  margin-right: 8.75rem !important;
}
.mb-140 {
  margin-bottom: 8.75rem !important;
}
.ml-140 {
  margin-left: 8.75rem !important;
}
.mt-145 {
  margin-top: 9.0625rem !important;
}
.mr-145 {
  margin-right: 9.0625rem !important;
}
.mb-145 {
  margin-bottom: 9.0625rem !important;
}
.ml-145 {
  margin-left: 9.0625rem !important;
}
.mt-150 {
  margin-top: 9.375rem !important;
}
.mr-150 {
  margin-right: 9.375rem !important;
}
.mb-150 {
  margin-bottom: 9.375rem !important;
}
.ml-150 {
  margin-left: 9.375rem !important;
}
.mt-155 {
  margin-top: 9.6875rem !important;
}
.mr-155 {
  margin-right: 9.6875rem !important;
}
.mb-155 {
  margin-bottom: 9.6875rem !important;
}
.ml-155 {
  margin-left: 9.6875rem !important;
}
.mt-160 {
  margin-top: 10rem !important;
}
.mr-160 {
  margin-right: 10rem !important;
}
.mb-160 {
  margin-bottom: 10rem !important;
}
.ml-160 {
  margin-left: 10rem !important;
}
.mt-165 {
  margin-top: 10.3125rem !important;
}
.mr-165 {
  margin-right: 10.3125rem !important;
}
.mb-165 {
  margin-bottom: 10.3125rem !important;
}
.ml-165 {
  margin-left: 10.3125rem !important;
}
.mt-170 {
  margin-top: 10.625rem !important;
}
.mr-170 {
  margin-right: 10.625rem !important;
}
.mb-170 {
  margin-bottom: 10.625rem !important;
}
.ml-170 {
  margin-left: 10.625rem !important;
}
.mt-175 {
  margin-top: 10.9375rem !important;
}
.mr-175 {
  margin-right: 10.9375rem !important;
}
.mb-175 {
  margin-bottom: 10.9375rem !important;
}
.ml-175 {
  margin-left: 10.9375rem !important;
}
.mt-180 {
  margin-top: 11.25rem !important;
}
.mr-180 {
  margin-right: 11.25rem !important;
}
.mb-180 {
  margin-bottom: 11.25rem !important;
}
.ml-180 {
  margin-left: 11.25rem !important;
}
.mt-185 {
  margin-top: 11.5625rem !important;
}
.mr-185 {
  margin-right: 11.5625rem !important;
}
.mb-185 {
  margin-bottom: 11.5625rem !important;
}
.ml-185 {
  margin-left: 11.5625rem !important;
}
.mt-190 {
  margin-top: 11.875rem !important;
}
.mr-190 {
  margin-right: 11.875rem !important;
}
.mb-190 {
  margin-bottom: 11.875rem !important;
}
.ml-190 {
  margin-left: 11.875rem !important;
}
.mt-195 {
  margin-top: 12.1875rem !important;
}
.mr-195 {
  margin-right: 12.1875rem !important;
}
.mb-195 {
  margin-bottom: 12.1875rem !important;
}
.ml-195 {
  margin-left: 12.1875rem !important;
}
.mt-200 {
  margin-top: 12.5rem !important;
}
.mr-200 {
  margin-right: 12.5rem !important;
}
.mb-200 {
  margin-bottom: 12.5rem !important;
}
.ml-200 {
  margin-left: 12.5rem !important;
}
.mt-205 {
  margin-top: 12.8125rem !important;
}
.mr-205 {
  margin-right: 12.8125rem !important;
}
.mb-205 {
  margin-bottom: 12.8125rem !important;
}
.ml-205 {
  margin-left: 12.8125rem !important;
}
.mt-210 {
  margin-top: 13.125rem !important;
}
.mr-210 {
  margin-right: 13.125rem !important;
}
.mb-210 {
  margin-bottom: 13.125rem !important;
}
.ml-210 {
  margin-left: 13.125rem !important;
}
.mt-215 {
  margin-top: 13.4375rem !important;
}
.mr-215 {
  margin-right: 13.4375rem !important;
}
.mb-215 {
  margin-bottom: 13.4375rem !important;
}
.ml-215 {
  margin-left: 13.4375rem !important;
}
.mt-220 {
  margin-top: 13.75rem !important;
}
.mr-220 {
  margin-right: 13.75rem !important;
}
.mb-220 {
  margin-bottom: 13.75rem !important;
}
.ml-220 {
  margin-left: 13.75rem !important;
}
.mt-225 {
  margin-top: 14.0625rem !important;
}
.mr-225 {
  margin-right: 14.0625rem !important;
}
.mb-225 {
  margin-bottom: 14.0625rem !important;
}
.ml-225 {
  margin-left: 14.0625rem !important;
}
.mt-230 {
  margin-top: 14.375rem !important;
}
.mr-230 {
  margin-right: 14.375rem !important;
}
.mb-230 {
  margin-bottom: 14.375rem !important;
}
.ml-230 {
  margin-left: 14.375rem !important;
}
.mt-235 {
  margin-top: 14.6875rem !important;
}
.mr-235 {
  margin-right: 14.6875rem !important;
}
.mb-235 {
  margin-bottom: 14.6875rem !important;
}
.ml-235 {
  margin-left: 14.6875rem !important;
}
.mt-240 {
  margin-top: 15rem !important;
}
.mr-240 {
  margin-right: 15rem !important;
}
.mb-240 {
  margin-bottom: 15rem !important;
}
.ml-240 {
  margin-left: 15rem !important;
}
.mt-245 {
  margin-top: 15.3125rem !important;
}
.mr-245 {
  margin-right: 15.3125rem !important;
}
.mb-245 {
  margin-bottom: 15.3125rem !important;
}
.ml-245 {
  margin-left: 15.3125rem !important;
}
.mt-250 {
  margin-top: 15.625rem !important;
}
.mr-250 {
  margin-right: 15.625rem !important;
}
.mb-250 {
  margin-bottom: 15.625rem !important;
}
.ml-250 {
  margin-left: 15.625rem !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.ml-auto {
  margin-left: auto !important;
}
.mr-auto {
  margin-right: auto !important;
}

.-mt-250 {
  margin-top: -15.625rem !important;
}
.-mr-250 {
  margin-right: -15.625rem !important;
}
.-mb-250 {
  margin-bottom: -15.625rem !important;
}
.-ml-250 {
  margin-left: -250px !important;
}
.-mt-245 {
  margin-top: -15.3125rem !important;
}
.-mr-245 {
  margin-right: -15.3125rem !important;
}
.-mb-245 {
  margin-bottom: -15.3125rem !important;
}
.-ml-245 {
  margin-left: -245px !important;
}
.-mt-240 {
  margin-top: -15rem !important;
}
.-mr-240 {
  margin-right: -15rem !important;
}
.-mb-240 {
  margin-bottom: -15rem !important;
}
.-ml-240 {
  margin-left: -240px !important;
}
.-mt-235 {
  margin-top: -14.6875rem !important;
}
.-mr-235 {
  margin-right: -14.6875rem !important;
}
.-mb-235 {
  margin-bottom: -14.6875rem !important;
}
.-ml-235 {
  margin-left: -235px !important;
}
.-mt-230 {
  margin-top: -14.375rem !important;
}
.-mr-230 {
  margin-right: -14.375rem !important;
}
.-mb-230 {
  margin-bottom: -14.375rem !important;
}
.-ml-230 {
  margin-left: -230px !important;
}
.-mt-225 {
  margin-top: -14.0625rem !important;
}
.-mr-225 {
  margin-right: -14.0625rem !important;
}
.-mb-225 {
  margin-bottom: -14.0625rem !important;
}
.-ml-225 {
  margin-left: -225px !important;
}
.-mt-220 {
  margin-top: -13.75rem !important;
}
.-mr-220 {
  margin-right: -13.75rem !important;
}
.-mb-220 {
  margin-bottom: -13.75rem !important;
}
.-ml-220 {
  margin-left: -220px !important;
}
.-mt-215 {
  margin-top: -13.4375rem !important;
}
.-mr-215 {
  margin-right: -13.4375rem !important;
}
.-mb-215 {
  margin-bottom: -13.4375rem !important;
}
.-ml-215 {
  margin-left: -215px !important;
}
.-mt-210 {
  margin-top: -13.125rem !important;
}
.-mr-210 {
  margin-right: -13.125rem !important;
}
.-mb-210 {
  margin-bottom: -13.125rem !important;
}
.-ml-210 {
  margin-left: -210px !important;
}
.-mt-205 {
  margin-top: -12.8125rem !important;
}
.-mr-205 {
  margin-right: -12.8125rem !important;
}
.-mb-205 {
  margin-bottom: -12.8125rem !important;
}
.-ml-205 {
  margin-left: -205px !important;
}
.-mt-200 {
  margin-top: -12.5rem !important;
}
.-mr-200 {
  margin-right: -12.5rem !important;
}
.-mb-200 {
  margin-bottom: -12.5rem !important;
}
.-ml-200 {
  margin-left: -200px !important;
}
.-mt-195 {
  margin-top: -12.1875rem !important;
}
.-mr-195 {
  margin-right: -12.1875rem !important;
}
.-mb-195 {
  margin-bottom: -12.1875rem !important;
}
.-ml-195 {
  margin-left: -195px !important;
}
.-mt-190 {
  margin-top: -11.875rem !important;
}
.-mr-190 {
  margin-right: -11.875rem !important;
}
.-mb-190 {
  margin-bottom: -11.875rem !important;
}
.-ml-190 {
  margin-left: -190px !important;
}
.-mt-185 {
  margin-top: -11.5625rem !important;
}
.-mr-185 {
  margin-right: -11.5625rem !important;
}
.-mb-185 {
  margin-bottom: -11.5625rem !important;
}
.-ml-185 {
  margin-left: -185px !important;
}
.-mt-180 {
  margin-top: -11.25rem !important;
}
.-mr-180 {
  margin-right: -11.25rem !important;
}
.-mb-180 {
  margin-bottom: -11.25rem !important;
}
.-ml-180 {
  margin-left: -180px !important;
}
.-mt-175 {
  margin-top: -10.9375rem !important;
}
.-mr-175 {
  margin-right: -10.9375rem !important;
}
.-mb-175 {
  margin-bottom: -10.9375rem !important;
}
.-ml-175 {
  margin-left: -175px !important;
}
.-mt-170 {
  margin-top: -10.625rem !important;
}
.-mr-170 {
  margin-right: -10.625rem !important;
}
.-mb-170 {
  margin-bottom: -10.625rem !important;
}
.-ml-170 {
  margin-left: -170px !important;
}
.-mt-165 {
  margin-top: -10.3125rem !important;
}
.-mr-165 {
  margin-right: -10.3125rem !important;
}
.-mb-165 {
  margin-bottom: -10.3125rem !important;
}
.-ml-165 {
  margin-left: -165px !important;
}
.-mt-160 {
  margin-top: -10rem !important;
}
.-mr-160 {
  margin-right: -10rem !important;
}
.-mb-160 {
  margin-bottom: -10rem !important;
}
.-ml-160 {
  margin-left: -160px !important;
}
.-mt-155 {
  margin-top: -9.6875rem !important;
}
.-mr-155 {
  margin-right: -9.6875rem !important;
}
.-mb-155 {
  margin-bottom: -9.6875rem !important;
}
.-ml-155 {
  margin-left: -155px !important;
}
.-mt-150 {
  margin-top: -9.375rem !important;
}
.-mr-150 {
  margin-right: -9.375rem !important;
}
.-mb-150 {
  margin-bottom: -9.375rem !important;
}
.-ml-150 {
  margin-left: -150px !important;
}
.-mt-145 {
  margin-top: -9.0625rem !important;
}
.-mr-145 {
  margin-right: -9.0625rem !important;
}
.-mb-145 {
  margin-bottom: -9.0625rem !important;
}
.-ml-145 {
  margin-left: -145px !important;
}
.-mt-140 {
  margin-top: -8.75rem !important;
}
.-mr-140 {
  margin-right: -8.75rem !important;
}
.-mb-140 {
  margin-bottom: -8.75rem !important;
}
.-ml-140 {
  margin-left: -140px !important;
}
.-mt-135 {
  margin-top: -8.4375rem !important;
}
.-mr-135 {
  margin-right: -8.4375rem !important;
}
.-mb-135 {
  margin-bottom: -8.4375rem !important;
}
.-ml-135 {
  margin-left: -135px !important;
}
.-mt-130 {
  margin-top: -8.125rem !important;
}
.-mr-130 {
  margin-right: -8.125rem !important;
}
.-mb-130 {
  margin-bottom: -8.125rem !important;
}
.-ml-130 {
  margin-left: -130px !important;
}
.-mt-125 {
  margin-top: -7.8125rem !important;
}
.-mr-125 {
  margin-right: -7.8125rem !important;
}
.-mb-125 {
  margin-bottom: -7.8125rem !important;
}
.-ml-125 {
  margin-left: -125px !important;
}
.-mt-120 {
  margin-top: -7.5rem !important;
}
.-mr-120 {
  margin-right: -7.5rem !important;
}
.-mb-120 {
  margin-bottom: -7.5rem !important;
}
.-ml-120 {
  margin-left: -120px !important;
}
.-mt-115 {
  margin-top: -7.1875rem !important;
}
.-mr-115 {
  margin-right: -7.1875rem !important;
}
.-mb-115 {
  margin-bottom: -7.1875rem !important;
}
.-ml-115 {
  margin-left: -115px !important;
}
.-mt-110 {
  margin-top: -6.875rem !important;
}
.-mr-110 {
  margin-right: -6.875rem !important;
}
.-mb-110 {
  margin-bottom: -6.875rem !important;
}
.-ml-110 {
  margin-left: -110px !important;
}
.-mt-105 {
  margin-top: -6.5625rem !important;
}
.-mr-105 {
  margin-right: -6.5625rem !important;
}
.-mb-105 {
  margin-bottom: -6.5625rem !important;
}
.-ml-105 {
  margin-left: -105px !important;
}
.-mt-100 {
  margin-top: -6.25rem !important;
}
.-mr-100 {
  margin-right: -6.25rem !important;
}
.-mb-100 {
  margin-bottom: -6.25rem !important;
}
.-ml-100 {
  margin-left: -100px !important;
}
.-mt-95 {
  margin-top: -5.9375rem !important;
}
.-mr-95 {
  margin-right: -5.9375rem !important;
}
.-mb-95 {
  margin-bottom: -5.9375rem !important;
}
.-ml-95 {
  margin-left: -95px !important;
}
.-mt-90 {
  margin-top: -5.625rem !important;
}
.-mr-90 {
  margin-right: -5.625rem !important;
}
.-mb-90 {
  margin-bottom: -5.625rem !important;
}
.-ml-90 {
  margin-left: -90px !important;
}
.-mt-85 {
  margin-top: -5.3125rem !important;
}
.-mr-85 {
  margin-right: -5.3125rem !important;
}
.-mb-85 {
  margin-bottom: -5.3125rem !important;
}
.-ml-85 {
  margin-left: -85px !important;
}
.-mt-80 {
  margin-top: -5rem !important;
}
.-mr-80 {
  margin-right: -5rem !important;
}
.-mb-80 {
  margin-bottom: -5rem !important;
}
.-ml-80 {
  margin-left: -80px !important;
}
.-mt-75 {
  margin-top: -4.6875rem !important;
}
.-mr-75 {
  margin-right: -4.6875rem !important;
}
.-mb-75 {
  margin-bottom: -4.6875rem !important;
}
.-ml-75 {
  margin-left: -75px !important;
}
.-mt-70 {
  margin-top: -4.375rem !important;
}
.-mr-70 {
  margin-right: -4.375rem !important;
}
.-mb-70 {
  margin-bottom: -4.375rem !important;
}
.-ml-70 {
  margin-left: -70px !important;
}
.-mt-65 {
  margin-top: -4.0625rem !important;
}
.-mr-65 {
  margin-right: -4.0625rem !important;
}
.-mb-65 {
  margin-bottom: -4.0625rem !important;
}
.-ml-65 {
  margin-left: -65px !important;
}
.-mt-60 {
  margin-top: -3.75rem !important;
}
.-mr-60 {
  margin-right: -3.75rem !important;
}
.-mb-60 {
  margin-bottom: -3.75rem !important;
}
.-ml-60 {
  margin-left: -60px !important;
}
.-mt-55 {
  margin-top: -3.4375rem !important;
}
.-mr-55 {
  margin-right: -3.4375rem !important;
}
.-mb-55 {
  margin-bottom: -3.4375rem !important;
}
.-ml-55 {
  margin-left: -55px !important;
}
.-mt-50 {
  margin-top: -3.125rem !important;
}
.-mr-50 {
  margin-right: -3.125rem !important;
}
.-mb-50 {
  margin-bottom: -3.125rem !important;
}
.-ml-50 {
  margin-left: -50px !important;
}
.-mt-45 {
  margin-top: -2.8125rem !important;
}
.-mr-45 {
  margin-right: -2.8125rem !important;
}
.-mb-45 {
  margin-bottom: -2.8125rem !important;
}
.-ml-45 {
  margin-left: -45px !important;
}
.-mt-40 {
  margin-top: -2.5rem !important;
}
.-mr-40 {
  margin-right: -2.5rem !important;
}
.-mb-40 {
  margin-bottom: -2.5rem !important;
}
.-ml-40 {
  margin-left: -40px !important;
}
.-mt-35 {
  margin-top: -2.1875rem !important;
}
.-mr-35 {
  margin-right: -2.1875rem !important;
}
.-mb-35 {
  margin-bottom: -2.1875rem !important;
}
.-ml-35 {
  margin-left: -35px !important;
}
.-mt-30 {
  margin-top: -1.875rem !important;
}
.-mr-30 {
  margin-right: -1.875rem !important;
}
.-mb-30 {
  margin-bottom: -1.875rem !important;
}
.-ml-30 {
  margin-left: -30px !important;
}
.-mt-25 {
  margin-top: -1.5625rem !important;
}
.-mr-25 {
  margin-right: -1.5625rem !important;
}
.-mb-25 {
  margin-bottom: -1.5625rem !important;
}
.-ml-25 {
  margin-left: -25px !important;
}
.-mt-20 {
  margin-top: -1.25rem !important;
}
.-mr-20 {
  margin-right: -1.25rem !important;
}
.-mb-20 {
  margin-bottom: -1.25rem !important;
}
.-ml-20 {
  margin-left: -20px !important;
}
.-mt-15 {
  margin-top: -0.9375rem !important;
}
.-mr-15 {
  margin-right: -0.9375rem !important;
}
.-mb-15 {
  margin-bottom: -0.9375rem !important;
}
.-ml-15 {
  margin-left: -15px !important;
}
.-mt-10 {
  margin-top: -0.625rem !important;
}
.-mr-10 {
  margin-right: -0.625rem !important;
}
.-mb-10 {
  margin-bottom: -0.625rem !important;
}
.-ml-10 {
  margin-left: -10px !important;
}
.-mt-5 {
  margin-top: -0.3125rem !important;
}
.-mr-5 {
  margin-right: -0.3125rem !important;
}
.-mb-5 {
  margin-bottom: -0.3125rem !important;
}
.-ml-5 {
  margin-left: -5px !important;
}

@media screen and (min-width: 768px) {
  .pc\:mt-0 {
    margin-top: 0rem !important;
  }
  .pc\:mr-0 {
    margin-right: 0rem !important;
  }
  .pc\:mb-0 {
    margin-bottom: 0rem !important;
  }
  .pc\:ml-0 {
    margin-left: 0rem !important;
  }
  .pc\:mt-5 {
    margin-top: 0.3125rem !important;
  }
  .pc\:mr-5 {
    margin-right: 0.3125rem !important;
  }
  .pc\:mb-5 {
    margin-bottom: 0.3125rem !important;
  }
  .pc\:ml-5 {
    margin-left: 0.3125rem !important;
  }
  .pc\:mt-10 {
    margin-top: 0.625rem !important;
  }
  .pc\:mr-10 {
    margin-right: 0.625rem !important;
  }
  .pc\:mb-10 {
    margin-bottom: 0.625rem !important;
  }
  .pc\:ml-10 {
    margin-left: 0.625rem !important;
  }
  .pc\:mt-15 {
    margin-top: 0.9375rem !important;
  }
  .pc\:mr-15 {
    margin-right: 0.9375rem !important;
  }
  .pc\:mb-15 {
    margin-bottom: 0.9375rem !important;
  }
  .pc\:ml-15 {
    margin-left: 0.9375rem !important;
  }
  .pc\:mt-20 {
    margin-top: 1.25rem !important;
  }
  .pc\:mr-20 {
    margin-right: 1.25rem !important;
  }
  .pc\:mb-20 {
    margin-bottom: 1.25rem !important;
  }
  .pc\:ml-20 {
    margin-left: 1.25rem !important;
  }
  .pc\:mt-25 {
    margin-top: 1.5625rem !important;
  }
  .pc\:mr-25 {
    margin-right: 1.5625rem !important;
  }
  .pc\:mb-25 {
    margin-bottom: 1.5625rem !important;
  }
  .pc\:ml-25 {
    margin-left: 1.5625rem !important;
  }
  .pc\:mt-30 {
    margin-top: 1.875rem !important;
  }
  .pc\:mr-30 {
    margin-right: 1.875rem !important;
  }
  .pc\:mb-30 {
    margin-bottom: 1.875rem !important;
  }
  .pc\:ml-30 {
    margin-left: 1.875rem !important;
  }
  .pc\:mt-35 {
    margin-top: 2.1875rem !important;
  }
  .pc\:mr-35 {
    margin-right: 2.1875rem !important;
  }
  .pc\:mb-35 {
    margin-bottom: 2.1875rem !important;
  }
  .pc\:ml-35 {
    margin-left: 2.1875rem !important;
  }
  .pc\:mt-40 {
    margin-top: 2.5rem !important;
  }
  .pc\:mr-40 {
    margin-right: 2.5rem !important;
  }
  .pc\:mb-40 {
    margin-bottom: 2.5rem !important;
  }
  .pc\:ml-40 {
    margin-left: 2.5rem !important;
  }
  .pc\:mt-45 {
    margin-top: 2.8125rem !important;
  }
  .pc\:mr-45 {
    margin-right: 2.8125rem !important;
  }
  .pc\:mb-45 {
    margin-bottom: 2.8125rem !important;
  }
  .pc\:ml-45 {
    margin-left: 2.8125rem !important;
  }
  .pc\:mt-50 {
    margin-top: 3.125rem !important;
  }
  .pc\:mr-50 {
    margin-right: 3.125rem !important;
  }
  .pc\:mb-50 {
    margin-bottom: 3.125rem !important;
  }
  .pc\:ml-50 {
    margin-left: 3.125rem !important;
  }
  .pc\:mt-55 {
    margin-top: 3.4375rem !important;
  }
  .pc\:mr-55 {
    margin-right: 3.4375rem !important;
  }
  .pc\:mb-55 {
    margin-bottom: 3.4375rem !important;
  }
  .pc\:ml-55 {
    margin-left: 3.4375rem !important;
  }
  .pc\:mt-60 {
    margin-top: 3.75rem !important;
  }
  .pc\:mr-60 {
    margin-right: 3.75rem !important;
  }
  .pc\:mb-60 {
    margin-bottom: 3.75rem !important;
  }
  .pc\:ml-60 {
    margin-left: 3.75rem !important;
  }
  .pc\:mt-65 {
    margin-top: 4.0625rem !important;
  }
  .pc\:mr-65 {
    margin-right: 4.0625rem !important;
  }
  .pc\:mb-65 {
    margin-bottom: 4.0625rem !important;
  }
  .pc\:ml-65 {
    margin-left: 4.0625rem !important;
  }
  .pc\:mt-70 {
    margin-top: 4.375rem !important;
  }
  .pc\:mr-70 {
    margin-right: 4.375rem !important;
  }
  .pc\:mb-70 {
    margin-bottom: 4.375rem !important;
  }
  .pc\:ml-70 {
    margin-left: 4.375rem !important;
  }
  .pc\:mt-75 {
    margin-top: 4.6875rem !important;
  }
  .pc\:mr-75 {
    margin-right: 4.6875rem !important;
  }
  .pc\:mb-75 {
    margin-bottom: 4.6875rem !important;
  }
  .pc\:ml-75 {
    margin-left: 4.6875rem !important;
  }
  .pc\:mt-80 {
    margin-top: 5rem !important;
  }
  .pc\:mr-80 {
    margin-right: 5rem !important;
  }
  .pc\:mb-80 {
    margin-bottom: 5rem !important;
  }
  .pc\:ml-80 {
    margin-left: 5rem !important;
  }
  .pc\:mt-85 {
    margin-top: 5.3125rem !important;
  }
  .pc\:mr-85 {
    margin-right: 5.3125rem !important;
  }
  .pc\:mb-85 {
    margin-bottom: 5.3125rem !important;
  }
  .pc\:ml-85 {
    margin-left: 5.3125rem !important;
  }
  .pc\:mt-90 {
    margin-top: 5.625rem !important;
  }
  .pc\:mr-90 {
    margin-right: 5.625rem !important;
  }
  .pc\:mb-90 {
    margin-bottom: 5.625rem !important;
  }
  .pc\:ml-90 {
    margin-left: 5.625rem !important;
  }
  .pc\:mt-95 {
    margin-top: 5.9375rem !important;
  }
  .pc\:mr-95 {
    margin-right: 5.9375rem !important;
  }
  .pc\:mb-95 {
    margin-bottom: 5.9375rem !important;
  }
  .pc\:ml-95 {
    margin-left: 5.9375rem !important;
  }
  .pc\:mt-100 {
    margin-top: 6.25rem !important;
  }
  .pc\:mr-100 {
    margin-right: 6.25rem !important;
  }
  .pc\:mb-100 {
    margin-bottom: 6.25rem !important;
  }
  .pc\:ml-100 {
    margin-left: 6.25rem !important;
  }
  .pc\:mt-105 {
    margin-top: 6.5625rem !important;
  }
  .pc\:mr-105 {
    margin-right: 6.5625rem !important;
  }
  .pc\:mb-105 {
    margin-bottom: 6.5625rem !important;
  }
  .pc\:ml-105 {
    margin-left: 6.5625rem !important;
  }
  .pc\:mt-110 {
    margin-top: 6.875rem !important;
  }
  .pc\:mr-110 {
    margin-right: 6.875rem !important;
  }
  .pc\:mb-110 {
    margin-bottom: 6.875rem !important;
  }
  .pc\:ml-110 {
    margin-left: 6.875rem !important;
  }
  .pc\:mt-115 {
    margin-top: 7.1875rem !important;
  }
  .pc\:mr-115 {
    margin-right: 7.1875rem !important;
  }
  .pc\:mb-115 {
    margin-bottom: 7.1875rem !important;
  }
  .pc\:ml-115 {
    margin-left: 7.1875rem !important;
  }
  .pc\:mt-120 {
    margin-top: 7.5rem !important;
  }
  .pc\:mr-120 {
    margin-right: 7.5rem !important;
  }
  .pc\:mb-120 {
    margin-bottom: 7.5rem !important;
  }
  .pc\:ml-120 {
    margin-left: 7.5rem !important;
  }
  .pc\:mt-125 {
    margin-top: 7.8125rem !important;
  }
  .pc\:mr-125 {
    margin-right: 7.8125rem !important;
  }
  .pc\:mb-125 {
    margin-bottom: 7.8125rem !important;
  }
  .pc\:ml-125 {
    margin-left: 7.8125rem !important;
  }
  .pc\:mt-130 {
    margin-top: 8.125rem !important;
  }
  .pc\:mr-130 {
    margin-right: 8.125rem !important;
  }
  .pc\:mb-130 {
    margin-bottom: 8.125rem !important;
  }
  .pc\:ml-130 {
    margin-left: 8.125rem !important;
  }
  .pc\:mt-135 {
    margin-top: 8.4375rem !important;
  }
  .pc\:mr-135 {
    margin-right: 8.4375rem !important;
  }
  .pc\:mb-135 {
    margin-bottom: 8.4375rem !important;
  }
  .pc\:ml-135 {
    margin-left: 8.4375rem !important;
  }
  .pc\:mt-140 {
    margin-top: 8.75rem !important;
  }
  .pc\:mr-140 {
    margin-right: 8.75rem !important;
  }
  .pc\:mb-140 {
    margin-bottom: 8.75rem !important;
  }
  .pc\:ml-140 {
    margin-left: 8.75rem !important;
  }
  .pc\:mt-145 {
    margin-top: 9.0625rem !important;
  }
  .pc\:mr-145 {
    margin-right: 9.0625rem !important;
  }
  .pc\:mb-145 {
    margin-bottom: 9.0625rem !important;
  }
  .pc\:ml-145 {
    margin-left: 9.0625rem !important;
  }
  .pc\:mt-150 {
    margin-top: 9.375rem !important;
  }
  .pc\:mr-150 {
    margin-right: 9.375rem !important;
  }
  .pc\:mb-150 {
    margin-bottom: 9.375rem !important;
  }
  .pc\:ml-150 {
    margin-left: 9.375rem !important;
  }
  .pc\:mt-155 {
    margin-top: 9.6875rem !important;
  }
  .pc\:mr-155 {
    margin-right: 9.6875rem !important;
  }
  .pc\:mb-155 {
    margin-bottom: 9.6875rem !important;
  }
  .pc\:ml-155 {
    margin-left: 9.6875rem !important;
  }
  .pc\:mt-160 {
    margin-top: 10rem !important;
  }
  .pc\:mr-160 {
    margin-right: 10rem !important;
  }
  .pc\:mb-160 {
    margin-bottom: 10rem !important;
  }
  .pc\:ml-160 {
    margin-left: 10rem !important;
  }
  .pc\:mt-165 {
    margin-top: 10.3125rem !important;
  }
  .pc\:mr-165 {
    margin-right: 10.3125rem !important;
  }
  .pc\:mb-165 {
    margin-bottom: 10.3125rem !important;
  }
  .pc\:ml-165 {
    margin-left: 10.3125rem !important;
  }
  .pc\:mt-170 {
    margin-top: 10.625rem !important;
  }
  .pc\:mr-170 {
    margin-right: 10.625rem !important;
  }
  .pc\:mb-170 {
    margin-bottom: 10.625rem !important;
  }
  .pc\:ml-170 {
    margin-left: 10.625rem !important;
  }
  .pc\:mt-175 {
    margin-top: 10.9375rem !important;
  }
  .pc\:mr-175 {
    margin-right: 10.9375rem !important;
  }
  .pc\:mb-175 {
    margin-bottom: 10.9375rem !important;
  }
  .pc\:ml-175 {
    margin-left: 10.9375rem !important;
  }
  .pc\:mt-180 {
    margin-top: 11.25rem !important;
  }
  .pc\:mr-180 {
    margin-right: 11.25rem !important;
  }
  .pc\:mb-180 {
    margin-bottom: 11.25rem !important;
  }
  .pc\:ml-180 {
    margin-left: 11.25rem !important;
  }
  .pc\:mt-185 {
    margin-top: 11.5625rem !important;
  }
  .pc\:mr-185 {
    margin-right: 11.5625rem !important;
  }
  .pc\:mb-185 {
    margin-bottom: 11.5625rem !important;
  }
  .pc\:ml-185 {
    margin-left: 11.5625rem !important;
  }
  .pc\:mt-190 {
    margin-top: 11.875rem !important;
  }
  .pc\:mr-190 {
    margin-right: 11.875rem !important;
  }
  .pc\:mb-190 {
    margin-bottom: 11.875rem !important;
  }
  .pc\:ml-190 {
    margin-left: 11.875rem !important;
  }
  .pc\:mt-195 {
    margin-top: 12.1875rem !important;
  }
  .pc\:mr-195 {
    margin-right: 12.1875rem !important;
  }
  .pc\:mb-195 {
    margin-bottom: 12.1875rem !important;
  }
  .pc\:ml-195 {
    margin-left: 12.1875rem !important;
  }
  .pc\:mt-200 {
    margin-top: 12.5rem !important;
  }
  .pc\:mr-200 {
    margin-right: 12.5rem !important;
  }
  .pc\:mb-200 {
    margin-bottom: 12.5rem !important;
  }
  .pc\:ml-200 {
    margin-left: 12.5rem !important;
  }
  .pc\:mt-205 {
    margin-top: 12.8125rem !important;
  }
  .pc\:mr-205 {
    margin-right: 12.8125rem !important;
  }
  .pc\:mb-205 {
    margin-bottom: 12.8125rem !important;
  }
  .pc\:ml-205 {
    margin-left: 12.8125rem !important;
  }
  .pc\:mt-210 {
    margin-top: 13.125rem !important;
  }
  .pc\:mr-210 {
    margin-right: 13.125rem !important;
  }
  .pc\:mb-210 {
    margin-bottom: 13.125rem !important;
  }
  .pc\:ml-210 {
    margin-left: 13.125rem !important;
  }
  .pc\:mt-215 {
    margin-top: 13.4375rem !important;
  }
  .pc\:mr-215 {
    margin-right: 13.4375rem !important;
  }
  .pc\:mb-215 {
    margin-bottom: 13.4375rem !important;
  }
  .pc\:ml-215 {
    margin-left: 13.4375rem !important;
  }
  .pc\:mt-220 {
    margin-top: 13.75rem !important;
  }
  .pc\:mr-220 {
    margin-right: 13.75rem !important;
  }
  .pc\:mb-220 {
    margin-bottom: 13.75rem !important;
  }
  .pc\:ml-220 {
    margin-left: 13.75rem !important;
  }
  .pc\:mt-225 {
    margin-top: 14.0625rem !important;
  }
  .pc\:mr-225 {
    margin-right: 14.0625rem !important;
  }
  .pc\:mb-225 {
    margin-bottom: 14.0625rem !important;
  }
  .pc\:ml-225 {
    margin-left: 14.0625rem !important;
  }
  .pc\:mt-230 {
    margin-top: 14.375rem !important;
  }
  .pc\:mr-230 {
    margin-right: 14.375rem !important;
  }
  .pc\:mb-230 {
    margin-bottom: 14.375rem !important;
  }
  .pc\:ml-230 {
    margin-left: 14.375rem !important;
  }
  .pc\:mt-235 {
    margin-top: 14.6875rem !important;
  }
  .pc\:mr-235 {
    margin-right: 14.6875rem !important;
  }
  .pc\:mb-235 {
    margin-bottom: 14.6875rem !important;
  }
  .pc\:ml-235 {
    margin-left: 14.6875rem !important;
  }
  .pc\:mt-240 {
    margin-top: 15rem !important;
  }
  .pc\:mr-240 {
    margin-right: 15rem !important;
  }
  .pc\:mb-240 {
    margin-bottom: 15rem !important;
  }
  .pc\:ml-240 {
    margin-left: 15rem !important;
  }
  .pc\:mt-245 {
    margin-top: 15.3125rem !important;
  }
  .pc\:mr-245 {
    margin-right: 15.3125rem !important;
  }
  .pc\:mb-245 {
    margin-bottom: 15.3125rem !important;
  }
  .pc\:ml-245 {
    margin-left: 15.3125rem !important;
  }
  .pc\:mt-250 {
    margin-top: 15.625rem !important;
  }
  .pc\:mr-250 {
    margin-right: 15.625rem !important;
  }
  .pc\:mb-250 {
    margin-bottom: 15.625rem !important;
  }
  .pc\:ml-250 {
    margin-left: 15.625rem !important;
  }
  .pc\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .pc\:ml-auto {
    margin-left: auto !important;
  }
  .pc\:mr-auto {
    margin-right: auto !important;
  }
  .pc\:-mt-250 {
    margin-top: -15.625rem !important;
  }
  .pc\:-mr-250 {
    margin-right: -15.625rem !important;
  }
  .pc\:-mb-250 {
    margin-bottom: -15.625rem !important;
  }
  .pc\:-ml-250 {
    margin-left: -250px !important;
  }
  .pc\:-mt-245 {
    margin-top: -15.3125rem !important;
  }
  .pc\:-mr-245 {
    margin-right: -15.3125rem !important;
  }
  .pc\:-mb-245 {
    margin-bottom: -15.3125rem !important;
  }
  .pc\:-ml-245 {
    margin-left: -245px !important;
  }
  .pc\:-mt-240 {
    margin-top: -15rem !important;
  }
  .pc\:-mr-240 {
    margin-right: -15rem !important;
  }
  .pc\:-mb-240 {
    margin-bottom: -15rem !important;
  }
  .pc\:-ml-240 {
    margin-left: -240px !important;
  }
  .pc\:-mt-235 {
    margin-top: -14.6875rem !important;
  }
  .pc\:-mr-235 {
    margin-right: -14.6875rem !important;
  }
  .pc\:-mb-235 {
    margin-bottom: -14.6875rem !important;
  }
  .pc\:-ml-235 {
    margin-left: -235px !important;
  }
  .pc\:-mt-230 {
    margin-top: -14.375rem !important;
  }
  .pc\:-mr-230 {
    margin-right: -14.375rem !important;
  }
  .pc\:-mb-230 {
    margin-bottom: -14.375rem !important;
  }
  .pc\:-ml-230 {
    margin-left: -230px !important;
  }
  .pc\:-mt-225 {
    margin-top: -14.0625rem !important;
  }
  .pc\:-mr-225 {
    margin-right: -14.0625rem !important;
  }
  .pc\:-mb-225 {
    margin-bottom: -14.0625rem !important;
  }
  .pc\:-ml-225 {
    margin-left: -225px !important;
  }
  .pc\:-mt-220 {
    margin-top: -13.75rem !important;
  }
  .pc\:-mr-220 {
    margin-right: -13.75rem !important;
  }
  .pc\:-mb-220 {
    margin-bottom: -13.75rem !important;
  }
  .pc\:-ml-220 {
    margin-left: -220px !important;
  }
  .pc\:-mt-215 {
    margin-top: -13.4375rem !important;
  }
  .pc\:-mr-215 {
    margin-right: -13.4375rem !important;
  }
  .pc\:-mb-215 {
    margin-bottom: -13.4375rem !important;
  }
  .pc\:-ml-215 {
    margin-left: -215px !important;
  }
  .pc\:-mt-210 {
    margin-top: -13.125rem !important;
  }
  .pc\:-mr-210 {
    margin-right: -13.125rem !important;
  }
  .pc\:-mb-210 {
    margin-bottom: -13.125rem !important;
  }
  .pc\:-ml-210 {
    margin-left: -210px !important;
  }
  .pc\:-mt-205 {
    margin-top: -12.8125rem !important;
  }
  .pc\:-mr-205 {
    margin-right: -12.8125rem !important;
  }
  .pc\:-mb-205 {
    margin-bottom: -12.8125rem !important;
  }
  .pc\:-ml-205 {
    margin-left: -205px !important;
  }
  .pc\:-mt-200 {
    margin-top: -12.5rem !important;
  }
  .pc\:-mr-200 {
    margin-right: -12.5rem !important;
  }
  .pc\:-mb-200 {
    margin-bottom: -12.5rem !important;
  }
  .pc\:-ml-200 {
    margin-left: -200px !important;
  }
  .pc\:-mt-195 {
    margin-top: -12.1875rem !important;
  }
  .pc\:-mr-195 {
    margin-right: -12.1875rem !important;
  }
  .pc\:-mb-195 {
    margin-bottom: -12.1875rem !important;
  }
  .pc\:-ml-195 {
    margin-left: -195px !important;
  }
  .pc\:-mt-190 {
    margin-top: -11.875rem !important;
  }
  .pc\:-mr-190 {
    margin-right: -11.875rem !important;
  }
  .pc\:-mb-190 {
    margin-bottom: -11.875rem !important;
  }
  .pc\:-ml-190 {
    margin-left: -190px !important;
  }
  .pc\:-mt-185 {
    margin-top: -11.5625rem !important;
  }
  .pc\:-mr-185 {
    margin-right: -11.5625rem !important;
  }
  .pc\:-mb-185 {
    margin-bottom: -11.5625rem !important;
  }
  .pc\:-ml-185 {
    margin-left: -185px !important;
  }
  .pc\:-mt-180 {
    margin-top: -11.25rem !important;
  }
  .pc\:-mr-180 {
    margin-right: -11.25rem !important;
  }
  .pc\:-mb-180 {
    margin-bottom: -11.25rem !important;
  }
  .pc\:-ml-180 {
    margin-left: -180px !important;
  }
  .pc\:-mt-175 {
    margin-top: -10.9375rem !important;
  }
  .pc\:-mr-175 {
    margin-right: -10.9375rem !important;
  }
  .pc\:-mb-175 {
    margin-bottom: -10.9375rem !important;
  }
  .pc\:-ml-175 {
    margin-left: -175px !important;
  }
  .pc\:-mt-170 {
    margin-top: -10.625rem !important;
  }
  .pc\:-mr-170 {
    margin-right: -10.625rem !important;
  }
  .pc\:-mb-170 {
    margin-bottom: -10.625rem !important;
  }
  .pc\:-ml-170 {
    margin-left: -170px !important;
  }
  .pc\:-mt-165 {
    margin-top: -10.3125rem !important;
  }
  .pc\:-mr-165 {
    margin-right: -10.3125rem !important;
  }
  .pc\:-mb-165 {
    margin-bottom: -10.3125rem !important;
  }
  .pc\:-ml-165 {
    margin-left: -165px !important;
  }
  .pc\:-mt-160 {
    margin-top: -10rem !important;
  }
  .pc\:-mr-160 {
    margin-right: -10rem !important;
  }
  .pc\:-mb-160 {
    margin-bottom: -10rem !important;
  }
  .pc\:-ml-160 {
    margin-left: -160px !important;
  }
  .pc\:-mt-155 {
    margin-top: -9.6875rem !important;
  }
  .pc\:-mr-155 {
    margin-right: -9.6875rem !important;
  }
  .pc\:-mb-155 {
    margin-bottom: -9.6875rem !important;
  }
  .pc\:-ml-155 {
    margin-left: -155px !important;
  }
  .pc\:-mt-150 {
    margin-top: -9.375rem !important;
  }
  .pc\:-mr-150 {
    margin-right: -9.375rem !important;
  }
  .pc\:-mb-150 {
    margin-bottom: -9.375rem !important;
  }
  .pc\:-ml-150 {
    margin-left: -150px !important;
  }
  .pc\:-mt-145 {
    margin-top: -9.0625rem !important;
  }
  .pc\:-mr-145 {
    margin-right: -9.0625rem !important;
  }
  .pc\:-mb-145 {
    margin-bottom: -9.0625rem !important;
  }
  .pc\:-ml-145 {
    margin-left: -145px !important;
  }
  .pc\:-mt-140 {
    margin-top: -8.75rem !important;
  }
  .pc\:-mr-140 {
    margin-right: -8.75rem !important;
  }
  .pc\:-mb-140 {
    margin-bottom: -8.75rem !important;
  }
  .pc\:-ml-140 {
    margin-left: -140px !important;
  }
  .pc\:-mt-135 {
    margin-top: -8.4375rem !important;
  }
  .pc\:-mr-135 {
    margin-right: -8.4375rem !important;
  }
  .pc\:-mb-135 {
    margin-bottom: -8.4375rem !important;
  }
  .pc\:-ml-135 {
    margin-left: -135px !important;
  }
  .pc\:-mt-130 {
    margin-top: -8.125rem !important;
  }
  .pc\:-mr-130 {
    margin-right: -8.125rem !important;
  }
  .pc\:-mb-130 {
    margin-bottom: -8.125rem !important;
  }
  .pc\:-ml-130 {
    margin-left: -130px !important;
  }
  .pc\:-mt-125 {
    margin-top: -7.8125rem !important;
  }
  .pc\:-mr-125 {
    margin-right: -7.8125rem !important;
  }
  .pc\:-mb-125 {
    margin-bottom: -7.8125rem !important;
  }
  .pc\:-ml-125 {
    margin-left: -125px !important;
  }
  .pc\:-mt-120 {
    margin-top: -7.5rem !important;
  }
  .pc\:-mr-120 {
    margin-right: -7.5rem !important;
  }
  .pc\:-mb-120 {
    margin-bottom: -7.5rem !important;
  }
  .pc\:-ml-120 {
    margin-left: -120px !important;
  }
  .pc\:-mt-115 {
    margin-top: -7.1875rem !important;
  }
  .pc\:-mr-115 {
    margin-right: -7.1875rem !important;
  }
  .pc\:-mb-115 {
    margin-bottom: -7.1875rem !important;
  }
  .pc\:-ml-115 {
    margin-left: -115px !important;
  }
  .pc\:-mt-110 {
    margin-top: -6.875rem !important;
  }
  .pc\:-mr-110 {
    margin-right: -6.875rem !important;
  }
  .pc\:-mb-110 {
    margin-bottom: -6.875rem !important;
  }
  .pc\:-ml-110 {
    margin-left: -110px !important;
  }
  .pc\:-mt-105 {
    margin-top: -6.5625rem !important;
  }
  .pc\:-mr-105 {
    margin-right: -6.5625rem !important;
  }
  .pc\:-mb-105 {
    margin-bottom: -6.5625rem !important;
  }
  .pc\:-ml-105 {
    margin-left: -105px !important;
  }
  .pc\:-mt-100 {
    margin-top: -6.25rem !important;
  }
  .pc\:-mr-100 {
    margin-right: -6.25rem !important;
  }
  .pc\:-mb-100 {
    margin-bottom: -6.25rem !important;
  }
  .pc\:-ml-100 {
    margin-left: -100px !important;
  }
  .pc\:-mt-95 {
    margin-top: -5.9375rem !important;
  }
  .pc\:-mr-95 {
    margin-right: -5.9375rem !important;
  }
  .pc\:-mb-95 {
    margin-bottom: -5.9375rem !important;
  }
  .pc\:-ml-95 {
    margin-left: -95px !important;
  }
  .pc\:-mt-90 {
    margin-top: -5.625rem !important;
  }
  .pc\:-mr-90 {
    margin-right: -5.625rem !important;
  }
  .pc\:-mb-90 {
    margin-bottom: -5.625rem !important;
  }
  .pc\:-ml-90 {
    margin-left: -90px !important;
  }
  .pc\:-mt-85 {
    margin-top: -5.3125rem !important;
  }
  .pc\:-mr-85 {
    margin-right: -5.3125rem !important;
  }
  .pc\:-mb-85 {
    margin-bottom: -5.3125rem !important;
  }
  .pc\:-ml-85 {
    margin-left: -85px !important;
  }
  .pc\:-mt-80 {
    margin-top: -5rem !important;
  }
  .pc\:-mr-80 {
    margin-right: -5rem !important;
  }
  .pc\:-mb-80 {
    margin-bottom: -5rem !important;
  }
  .pc\:-ml-80 {
    margin-left: -80px !important;
  }
  .pc\:-mt-75 {
    margin-top: -4.6875rem !important;
  }
  .pc\:-mr-75 {
    margin-right: -4.6875rem !important;
  }
  .pc\:-mb-75 {
    margin-bottom: -4.6875rem !important;
  }
  .pc\:-ml-75 {
    margin-left: -75px !important;
  }
  .pc\:-mt-70 {
    margin-top: -4.375rem !important;
  }
  .pc\:-mr-70 {
    margin-right: -4.375rem !important;
  }
  .pc\:-mb-70 {
    margin-bottom: -4.375rem !important;
  }
  .pc\:-ml-70 {
    margin-left: -70px !important;
  }
  .pc\:-mt-65 {
    margin-top: -4.0625rem !important;
  }
  .pc\:-mr-65 {
    margin-right: -4.0625rem !important;
  }
  .pc\:-mb-65 {
    margin-bottom: -4.0625rem !important;
  }
  .pc\:-ml-65 {
    margin-left: -65px !important;
  }
  .pc\:-mt-60 {
    margin-top: -3.75rem !important;
  }
  .pc\:-mr-60 {
    margin-right: -3.75rem !important;
  }
  .pc\:-mb-60 {
    margin-bottom: -3.75rem !important;
  }
  .pc\:-ml-60 {
    margin-left: -60px !important;
  }
  .pc\:-mt-55 {
    margin-top: -3.4375rem !important;
  }
  .pc\:-mr-55 {
    margin-right: -3.4375rem !important;
  }
  .pc\:-mb-55 {
    margin-bottom: -3.4375rem !important;
  }
  .pc\:-ml-55 {
    margin-left: -55px !important;
  }
  .pc\:-mt-50 {
    margin-top: -3.125rem !important;
  }
  .pc\:-mr-50 {
    margin-right: -3.125rem !important;
  }
  .pc\:-mb-50 {
    margin-bottom: -3.125rem !important;
  }
  .pc\:-ml-50 {
    margin-left: -50px !important;
  }
  .pc\:-mt-45 {
    margin-top: -2.8125rem !important;
  }
  .pc\:-mr-45 {
    margin-right: -2.8125rem !important;
  }
  .pc\:-mb-45 {
    margin-bottom: -2.8125rem !important;
  }
  .pc\:-ml-45 {
    margin-left: -45px !important;
  }
  .pc\:-mt-40 {
    margin-top: -2.5rem !important;
  }
  .pc\:-mr-40 {
    margin-right: -2.5rem !important;
  }
  .pc\:-mb-40 {
    margin-bottom: -2.5rem !important;
  }
  .pc\:-ml-40 {
    margin-left: -40px !important;
  }
  .pc\:-mt-35 {
    margin-top: -2.1875rem !important;
  }
  .pc\:-mr-35 {
    margin-right: -2.1875rem !important;
  }
  .pc\:-mb-35 {
    margin-bottom: -2.1875rem !important;
  }
  .pc\:-ml-35 {
    margin-left: -35px !important;
  }
  .pc\:-mt-30 {
    margin-top: -1.875rem !important;
  }
  .pc\:-mr-30 {
    margin-right: -1.875rem !important;
  }
  .pc\:-mb-30 {
    margin-bottom: -1.875rem !important;
  }
  .pc\:-ml-30 {
    margin-left: -30px !important;
  }
  .pc\:-mt-25 {
    margin-top: -1.5625rem !important;
  }
  .pc\:-mr-25 {
    margin-right: -1.5625rem !important;
  }
  .pc\:-mb-25 {
    margin-bottom: -1.5625rem !important;
  }
  .pc\:-ml-25 {
    margin-left: -25px !important;
  }
  .pc\:-mt-20 {
    margin-top: -1.25rem !important;
  }
  .pc\:-mr-20 {
    margin-right: -1.25rem !important;
  }
  .pc\:-mb-20 {
    margin-bottom: -1.25rem !important;
  }
  .pc\:-ml-20 {
    margin-left: -20px !important;
  }
  .pc\:-mt-15 {
    margin-top: -0.9375rem !important;
  }
  .pc\:-mr-15 {
    margin-right: -0.9375rem !important;
  }
  .pc\:-mb-15 {
    margin-bottom: -0.9375rem !important;
  }
  .pc\:-ml-15 {
    margin-left: -15px !important;
  }
  .pc\:-mt-10 {
    margin-top: -0.625rem !important;
  }
  .pc\:-mr-10 {
    margin-right: -0.625rem !important;
  }
  .pc\:-mb-10 {
    margin-bottom: -0.625rem !important;
  }
  .pc\:-ml-10 {
    margin-left: -10px !important;
  }
  .pc\:-mt-5 {
    margin-top: -0.3125rem !important;
  }
  .pc\:-mr-5 {
    margin-right: -0.3125rem !important;
  }
  .pc\:-mb-5 {
    margin-bottom: -0.3125rem !important;
  }
  .pc\:-ml-5 {
    margin-left: -5px !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:mt-0 {
    margin-top: 0rem !important;
  }
  .md\:mr-0 {
    margin-right: 0rem !important;
  }
  .md\:mb-0 {
    margin-bottom: 0rem !important;
  }
  .md\:ml-0 {
    margin-left: 0rem !important;
  }
  .md\:mt-5 {
    margin-top: 0.3125rem !important;
  }
  .md\:mr-5 {
    margin-right: 0.3125rem !important;
  }
  .md\:mb-5 {
    margin-bottom: 0.3125rem !important;
  }
  .md\:ml-5 {
    margin-left: 0.3125rem !important;
  }
  .md\:mt-10 {
    margin-top: 0.625rem !important;
  }
  .md\:mr-10 {
    margin-right: 0.625rem !important;
  }
  .md\:mb-10 {
    margin-bottom: 0.625rem !important;
  }
  .md\:ml-10 {
    margin-left: 0.625rem !important;
  }
  .md\:mt-15 {
    margin-top: 0.9375rem !important;
  }
  .md\:mr-15 {
    margin-right: 0.9375rem !important;
  }
  .md\:mb-15 {
    margin-bottom: 0.9375rem !important;
  }
  .md\:ml-15 {
    margin-left: 0.9375rem !important;
  }
  .md\:mt-20 {
    margin-top: 1.25rem !important;
  }
  .md\:mr-20 {
    margin-right: 1.25rem !important;
  }
  .md\:mb-20 {
    margin-bottom: 1.25rem !important;
  }
  .md\:ml-20 {
    margin-left: 1.25rem !important;
  }
  .md\:mt-25 {
    margin-top: 1.5625rem !important;
  }
  .md\:mr-25 {
    margin-right: 1.5625rem !important;
  }
  .md\:mb-25 {
    margin-bottom: 1.5625rem !important;
  }
  .md\:ml-25 {
    margin-left: 1.5625rem !important;
  }
  .md\:mt-30 {
    margin-top: 1.875rem !important;
  }
  .md\:mr-30 {
    margin-right: 1.875rem !important;
  }
  .md\:mb-30 {
    margin-bottom: 1.875rem !important;
  }
  .md\:ml-30 {
    margin-left: 1.875rem !important;
  }
  .md\:mt-35 {
    margin-top: 2.1875rem !important;
  }
  .md\:mr-35 {
    margin-right: 2.1875rem !important;
  }
  .md\:mb-35 {
    margin-bottom: 2.1875rem !important;
  }
  .md\:ml-35 {
    margin-left: 2.1875rem !important;
  }
  .md\:mt-40 {
    margin-top: 2.5rem !important;
  }
  .md\:mr-40 {
    margin-right: 2.5rem !important;
  }
  .md\:mb-40 {
    margin-bottom: 2.5rem !important;
  }
  .md\:ml-40 {
    margin-left: 2.5rem !important;
  }
  .md\:mt-45 {
    margin-top: 2.8125rem !important;
  }
  .md\:mr-45 {
    margin-right: 2.8125rem !important;
  }
  .md\:mb-45 {
    margin-bottom: 2.8125rem !important;
  }
  .md\:ml-45 {
    margin-left: 2.8125rem !important;
  }
  .md\:mt-50 {
    margin-top: 3.125rem !important;
  }
  .md\:mr-50 {
    margin-right: 3.125rem !important;
  }
  .md\:mb-50 {
    margin-bottom: 3.125rem !important;
  }
  .md\:ml-50 {
    margin-left: 3.125rem !important;
  }
  .md\:mt-55 {
    margin-top: 3.4375rem !important;
  }
  .md\:mr-55 {
    margin-right: 3.4375rem !important;
  }
  .md\:mb-55 {
    margin-bottom: 3.4375rem !important;
  }
  .md\:ml-55 {
    margin-left: 3.4375rem !important;
  }
  .md\:mt-60 {
    margin-top: 3.75rem !important;
  }
  .md\:mr-60 {
    margin-right: 3.75rem !important;
  }
  .md\:mb-60 {
    margin-bottom: 3.75rem !important;
  }
  .md\:ml-60 {
    margin-left: 3.75rem !important;
  }
  .md\:mt-65 {
    margin-top: 4.0625rem !important;
  }
  .md\:mr-65 {
    margin-right: 4.0625rem !important;
  }
  .md\:mb-65 {
    margin-bottom: 4.0625rem !important;
  }
  .md\:ml-65 {
    margin-left: 4.0625rem !important;
  }
  .md\:mt-70 {
    margin-top: 4.375rem !important;
  }
  .md\:mr-70 {
    margin-right: 4.375rem !important;
  }
  .md\:mb-70 {
    margin-bottom: 4.375rem !important;
  }
  .md\:ml-70 {
    margin-left: 4.375rem !important;
  }
  .md\:mt-75 {
    margin-top: 4.6875rem !important;
  }
  .md\:mr-75 {
    margin-right: 4.6875rem !important;
  }
  .md\:mb-75 {
    margin-bottom: 4.6875rem !important;
  }
  .md\:ml-75 {
    margin-left: 4.6875rem !important;
  }
  .md\:mt-80 {
    margin-top: 5rem !important;
  }
  .md\:mr-80 {
    margin-right: 5rem !important;
  }
  .md\:mb-80 {
    margin-bottom: 5rem !important;
  }
  .md\:ml-80 {
    margin-left: 5rem !important;
  }
  .md\:mt-85 {
    margin-top: 5.3125rem !important;
  }
  .md\:mr-85 {
    margin-right: 5.3125rem !important;
  }
  .md\:mb-85 {
    margin-bottom: 5.3125rem !important;
  }
  .md\:ml-85 {
    margin-left: 5.3125rem !important;
  }
  .md\:mt-90 {
    margin-top: 5.625rem !important;
  }
  .md\:mr-90 {
    margin-right: 5.625rem !important;
  }
  .md\:mb-90 {
    margin-bottom: 5.625rem !important;
  }
  .md\:ml-90 {
    margin-left: 5.625rem !important;
  }
  .md\:mt-95 {
    margin-top: 5.9375rem !important;
  }
  .md\:mr-95 {
    margin-right: 5.9375rem !important;
  }
  .md\:mb-95 {
    margin-bottom: 5.9375rem !important;
  }
  .md\:ml-95 {
    margin-left: 5.9375rem !important;
  }
  .md\:mt-100 {
    margin-top: 6.25rem !important;
  }
  .md\:mr-100 {
    margin-right: 6.25rem !important;
  }
  .md\:mb-100 {
    margin-bottom: 6.25rem !important;
  }
  .md\:ml-100 {
    margin-left: 6.25rem !important;
  }
  .md\:mt-105 {
    margin-top: 6.5625rem !important;
  }
  .md\:mr-105 {
    margin-right: 6.5625rem !important;
  }
  .md\:mb-105 {
    margin-bottom: 6.5625rem !important;
  }
  .md\:ml-105 {
    margin-left: 6.5625rem !important;
  }
  .md\:mt-110 {
    margin-top: 6.875rem !important;
  }
  .md\:mr-110 {
    margin-right: 6.875rem !important;
  }
  .md\:mb-110 {
    margin-bottom: 6.875rem !important;
  }
  .md\:ml-110 {
    margin-left: 6.875rem !important;
  }
  .md\:mt-115 {
    margin-top: 7.1875rem !important;
  }
  .md\:mr-115 {
    margin-right: 7.1875rem !important;
  }
  .md\:mb-115 {
    margin-bottom: 7.1875rem !important;
  }
  .md\:ml-115 {
    margin-left: 7.1875rem !important;
  }
  .md\:mt-120 {
    margin-top: 7.5rem !important;
  }
  .md\:mr-120 {
    margin-right: 7.5rem !important;
  }
  .md\:mb-120 {
    margin-bottom: 7.5rem !important;
  }
  .md\:ml-120 {
    margin-left: 7.5rem !important;
  }
  .md\:mt-125 {
    margin-top: 7.8125rem !important;
  }
  .md\:mr-125 {
    margin-right: 7.8125rem !important;
  }
  .md\:mb-125 {
    margin-bottom: 7.8125rem !important;
  }
  .md\:ml-125 {
    margin-left: 7.8125rem !important;
  }
  .md\:mt-130 {
    margin-top: 8.125rem !important;
  }
  .md\:mr-130 {
    margin-right: 8.125rem !important;
  }
  .md\:mb-130 {
    margin-bottom: 8.125rem !important;
  }
  .md\:ml-130 {
    margin-left: 8.125rem !important;
  }
  .md\:mt-135 {
    margin-top: 8.4375rem !important;
  }
  .md\:mr-135 {
    margin-right: 8.4375rem !important;
  }
  .md\:mb-135 {
    margin-bottom: 8.4375rem !important;
  }
  .md\:ml-135 {
    margin-left: 8.4375rem !important;
  }
  .md\:mt-140 {
    margin-top: 8.75rem !important;
  }
  .md\:mr-140 {
    margin-right: 8.75rem !important;
  }
  .md\:mb-140 {
    margin-bottom: 8.75rem !important;
  }
  .md\:ml-140 {
    margin-left: 8.75rem !important;
  }
  .md\:mt-145 {
    margin-top: 9.0625rem !important;
  }
  .md\:mr-145 {
    margin-right: 9.0625rem !important;
  }
  .md\:mb-145 {
    margin-bottom: 9.0625rem !important;
  }
  .md\:ml-145 {
    margin-left: 9.0625rem !important;
  }
  .md\:mt-150 {
    margin-top: 9.375rem !important;
  }
  .md\:mr-150 {
    margin-right: 9.375rem !important;
  }
  .md\:mb-150 {
    margin-bottom: 9.375rem !important;
  }
  .md\:ml-150 {
    margin-left: 9.375rem !important;
  }
  .md\:mt-155 {
    margin-top: 9.6875rem !important;
  }
  .md\:mr-155 {
    margin-right: 9.6875rem !important;
  }
  .md\:mb-155 {
    margin-bottom: 9.6875rem !important;
  }
  .md\:ml-155 {
    margin-left: 9.6875rem !important;
  }
  .md\:mt-160 {
    margin-top: 10rem !important;
  }
  .md\:mr-160 {
    margin-right: 10rem !important;
  }
  .md\:mb-160 {
    margin-bottom: 10rem !important;
  }
  .md\:ml-160 {
    margin-left: 10rem !important;
  }
  .md\:mt-165 {
    margin-top: 10.3125rem !important;
  }
  .md\:mr-165 {
    margin-right: 10.3125rem !important;
  }
  .md\:mb-165 {
    margin-bottom: 10.3125rem !important;
  }
  .md\:ml-165 {
    margin-left: 10.3125rem !important;
  }
  .md\:mt-170 {
    margin-top: 10.625rem !important;
  }
  .md\:mr-170 {
    margin-right: 10.625rem !important;
  }
  .md\:mb-170 {
    margin-bottom: 10.625rem !important;
  }
  .md\:ml-170 {
    margin-left: 10.625rem !important;
  }
  .md\:mt-175 {
    margin-top: 10.9375rem !important;
  }
  .md\:mr-175 {
    margin-right: 10.9375rem !important;
  }
  .md\:mb-175 {
    margin-bottom: 10.9375rem !important;
  }
  .md\:ml-175 {
    margin-left: 10.9375rem !important;
  }
  .md\:mt-180 {
    margin-top: 11.25rem !important;
  }
  .md\:mr-180 {
    margin-right: 11.25rem !important;
  }
  .md\:mb-180 {
    margin-bottom: 11.25rem !important;
  }
  .md\:ml-180 {
    margin-left: 11.25rem !important;
  }
  .md\:mt-185 {
    margin-top: 11.5625rem !important;
  }
  .md\:mr-185 {
    margin-right: 11.5625rem !important;
  }
  .md\:mb-185 {
    margin-bottom: 11.5625rem !important;
  }
  .md\:ml-185 {
    margin-left: 11.5625rem !important;
  }
  .md\:mt-190 {
    margin-top: 11.875rem !important;
  }
  .md\:mr-190 {
    margin-right: 11.875rem !important;
  }
  .md\:mb-190 {
    margin-bottom: 11.875rem !important;
  }
  .md\:ml-190 {
    margin-left: 11.875rem !important;
  }
  .md\:mt-195 {
    margin-top: 12.1875rem !important;
  }
  .md\:mr-195 {
    margin-right: 12.1875rem !important;
  }
  .md\:mb-195 {
    margin-bottom: 12.1875rem !important;
  }
  .md\:ml-195 {
    margin-left: 12.1875rem !important;
  }
  .md\:mt-200 {
    margin-top: 12.5rem !important;
  }
  .md\:mr-200 {
    margin-right: 12.5rem !important;
  }
  .md\:mb-200 {
    margin-bottom: 12.5rem !important;
  }
  .md\:ml-200 {
    margin-left: 12.5rem !important;
  }
  .md\:mt-205 {
    margin-top: 12.8125rem !important;
  }
  .md\:mr-205 {
    margin-right: 12.8125rem !important;
  }
  .md\:mb-205 {
    margin-bottom: 12.8125rem !important;
  }
  .md\:ml-205 {
    margin-left: 12.8125rem !important;
  }
  .md\:mt-210 {
    margin-top: 13.125rem !important;
  }
  .md\:mr-210 {
    margin-right: 13.125rem !important;
  }
  .md\:mb-210 {
    margin-bottom: 13.125rem !important;
  }
  .md\:ml-210 {
    margin-left: 13.125rem !important;
  }
  .md\:mt-215 {
    margin-top: 13.4375rem !important;
  }
  .md\:mr-215 {
    margin-right: 13.4375rem !important;
  }
  .md\:mb-215 {
    margin-bottom: 13.4375rem !important;
  }
  .md\:ml-215 {
    margin-left: 13.4375rem !important;
  }
  .md\:mt-220 {
    margin-top: 13.75rem !important;
  }
  .md\:mr-220 {
    margin-right: 13.75rem !important;
  }
  .md\:mb-220 {
    margin-bottom: 13.75rem !important;
  }
  .md\:ml-220 {
    margin-left: 13.75rem !important;
  }
  .md\:mt-225 {
    margin-top: 14.0625rem !important;
  }
  .md\:mr-225 {
    margin-right: 14.0625rem !important;
  }
  .md\:mb-225 {
    margin-bottom: 14.0625rem !important;
  }
  .md\:ml-225 {
    margin-left: 14.0625rem !important;
  }
  .md\:mt-230 {
    margin-top: 14.375rem !important;
  }
  .md\:mr-230 {
    margin-right: 14.375rem !important;
  }
  .md\:mb-230 {
    margin-bottom: 14.375rem !important;
  }
  .md\:ml-230 {
    margin-left: 14.375rem !important;
  }
  .md\:mt-235 {
    margin-top: 14.6875rem !important;
  }
  .md\:mr-235 {
    margin-right: 14.6875rem !important;
  }
  .md\:mb-235 {
    margin-bottom: 14.6875rem !important;
  }
  .md\:ml-235 {
    margin-left: 14.6875rem !important;
  }
  .md\:mt-240 {
    margin-top: 15rem !important;
  }
  .md\:mr-240 {
    margin-right: 15rem !important;
  }
  .md\:mb-240 {
    margin-bottom: 15rem !important;
  }
  .md\:ml-240 {
    margin-left: 15rem !important;
  }
  .md\:mt-245 {
    margin-top: 15.3125rem !important;
  }
  .md\:mr-245 {
    margin-right: 15.3125rem !important;
  }
  .md\:mb-245 {
    margin-bottom: 15.3125rem !important;
  }
  .md\:ml-245 {
    margin-left: 15.3125rem !important;
  }
  .md\:mt-250 {
    margin-top: 15.625rem !important;
  }
  .md\:mr-250 {
    margin-right: 15.625rem !important;
  }
  .md\:mb-250 {
    margin-bottom: 15.625rem !important;
  }
  .md\:ml-250 {
    margin-left: 15.625rem !important;
  }
  .md\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .md\:ml-auto {
    margin-left: auto !important;
  }
  .md\:mr-auto {
    margin-right: auto !important;
  }
  .md\:-mt-250 {
    margin-top: -15.625rem !important;
  }
  .md\:-mr-250 {
    margin-right: -15.625rem !important;
  }
  .md\:-mb-250 {
    margin-bottom: -15.625rem !important;
  }
  .md\:-ml-250 {
    margin-left: -250px !important;
  }
  .md\:-mt-245 {
    margin-top: -15.3125rem !important;
  }
  .md\:-mr-245 {
    margin-right: -15.3125rem !important;
  }
  .md\:-mb-245 {
    margin-bottom: -15.3125rem !important;
  }
  .md\:-ml-245 {
    margin-left: -245px !important;
  }
  .md\:-mt-240 {
    margin-top: -15rem !important;
  }
  .md\:-mr-240 {
    margin-right: -15rem !important;
  }
  .md\:-mb-240 {
    margin-bottom: -15rem !important;
  }
  .md\:-ml-240 {
    margin-left: -240px !important;
  }
  .md\:-mt-235 {
    margin-top: -14.6875rem !important;
  }
  .md\:-mr-235 {
    margin-right: -14.6875rem !important;
  }
  .md\:-mb-235 {
    margin-bottom: -14.6875rem !important;
  }
  .md\:-ml-235 {
    margin-left: -235px !important;
  }
  .md\:-mt-230 {
    margin-top: -14.375rem !important;
  }
  .md\:-mr-230 {
    margin-right: -14.375rem !important;
  }
  .md\:-mb-230 {
    margin-bottom: -14.375rem !important;
  }
  .md\:-ml-230 {
    margin-left: -230px !important;
  }
  .md\:-mt-225 {
    margin-top: -14.0625rem !important;
  }
  .md\:-mr-225 {
    margin-right: -14.0625rem !important;
  }
  .md\:-mb-225 {
    margin-bottom: -14.0625rem !important;
  }
  .md\:-ml-225 {
    margin-left: -225px !important;
  }
  .md\:-mt-220 {
    margin-top: -13.75rem !important;
  }
  .md\:-mr-220 {
    margin-right: -13.75rem !important;
  }
  .md\:-mb-220 {
    margin-bottom: -13.75rem !important;
  }
  .md\:-ml-220 {
    margin-left: -220px !important;
  }
  .md\:-mt-215 {
    margin-top: -13.4375rem !important;
  }
  .md\:-mr-215 {
    margin-right: -13.4375rem !important;
  }
  .md\:-mb-215 {
    margin-bottom: -13.4375rem !important;
  }
  .md\:-ml-215 {
    margin-left: -215px !important;
  }
  .md\:-mt-210 {
    margin-top: -13.125rem !important;
  }
  .md\:-mr-210 {
    margin-right: -13.125rem !important;
  }
  .md\:-mb-210 {
    margin-bottom: -13.125rem !important;
  }
  .md\:-ml-210 {
    margin-left: -210px !important;
  }
  .md\:-mt-205 {
    margin-top: -12.8125rem !important;
  }
  .md\:-mr-205 {
    margin-right: -12.8125rem !important;
  }
  .md\:-mb-205 {
    margin-bottom: -12.8125rem !important;
  }
  .md\:-ml-205 {
    margin-left: -205px !important;
  }
  .md\:-mt-200 {
    margin-top: -12.5rem !important;
  }
  .md\:-mr-200 {
    margin-right: -12.5rem !important;
  }
  .md\:-mb-200 {
    margin-bottom: -12.5rem !important;
  }
  .md\:-ml-200 {
    margin-left: -200px !important;
  }
  .md\:-mt-195 {
    margin-top: -12.1875rem !important;
  }
  .md\:-mr-195 {
    margin-right: -12.1875rem !important;
  }
  .md\:-mb-195 {
    margin-bottom: -12.1875rem !important;
  }
  .md\:-ml-195 {
    margin-left: -195px !important;
  }
  .md\:-mt-190 {
    margin-top: -11.875rem !important;
  }
  .md\:-mr-190 {
    margin-right: -11.875rem !important;
  }
  .md\:-mb-190 {
    margin-bottom: -11.875rem !important;
  }
  .md\:-ml-190 {
    margin-left: -190px !important;
  }
  .md\:-mt-185 {
    margin-top: -11.5625rem !important;
  }
  .md\:-mr-185 {
    margin-right: -11.5625rem !important;
  }
  .md\:-mb-185 {
    margin-bottom: -11.5625rem !important;
  }
  .md\:-ml-185 {
    margin-left: -185px !important;
  }
  .md\:-mt-180 {
    margin-top: -11.25rem !important;
  }
  .md\:-mr-180 {
    margin-right: -11.25rem !important;
  }
  .md\:-mb-180 {
    margin-bottom: -11.25rem !important;
  }
  .md\:-ml-180 {
    margin-left: -180px !important;
  }
  .md\:-mt-175 {
    margin-top: -10.9375rem !important;
  }
  .md\:-mr-175 {
    margin-right: -10.9375rem !important;
  }
  .md\:-mb-175 {
    margin-bottom: -10.9375rem !important;
  }
  .md\:-ml-175 {
    margin-left: -175px !important;
  }
  .md\:-mt-170 {
    margin-top: -10.625rem !important;
  }
  .md\:-mr-170 {
    margin-right: -10.625rem !important;
  }
  .md\:-mb-170 {
    margin-bottom: -10.625rem !important;
  }
  .md\:-ml-170 {
    margin-left: -170px !important;
  }
  .md\:-mt-165 {
    margin-top: -10.3125rem !important;
  }
  .md\:-mr-165 {
    margin-right: -10.3125rem !important;
  }
  .md\:-mb-165 {
    margin-bottom: -10.3125rem !important;
  }
  .md\:-ml-165 {
    margin-left: -165px !important;
  }
  .md\:-mt-160 {
    margin-top: -10rem !important;
  }
  .md\:-mr-160 {
    margin-right: -10rem !important;
  }
  .md\:-mb-160 {
    margin-bottom: -10rem !important;
  }
  .md\:-ml-160 {
    margin-left: -160px !important;
  }
  .md\:-mt-155 {
    margin-top: -9.6875rem !important;
  }
  .md\:-mr-155 {
    margin-right: -9.6875rem !important;
  }
  .md\:-mb-155 {
    margin-bottom: -9.6875rem !important;
  }
  .md\:-ml-155 {
    margin-left: -155px !important;
  }
  .md\:-mt-150 {
    margin-top: -9.375rem !important;
  }
  .md\:-mr-150 {
    margin-right: -9.375rem !important;
  }
  .md\:-mb-150 {
    margin-bottom: -9.375rem !important;
  }
  .md\:-ml-150 {
    margin-left: -150px !important;
  }
  .md\:-mt-145 {
    margin-top: -9.0625rem !important;
  }
  .md\:-mr-145 {
    margin-right: -9.0625rem !important;
  }
  .md\:-mb-145 {
    margin-bottom: -9.0625rem !important;
  }
  .md\:-ml-145 {
    margin-left: -145px !important;
  }
  .md\:-mt-140 {
    margin-top: -8.75rem !important;
  }
  .md\:-mr-140 {
    margin-right: -8.75rem !important;
  }
  .md\:-mb-140 {
    margin-bottom: -8.75rem !important;
  }
  .md\:-ml-140 {
    margin-left: -140px !important;
  }
  .md\:-mt-135 {
    margin-top: -8.4375rem !important;
  }
  .md\:-mr-135 {
    margin-right: -8.4375rem !important;
  }
  .md\:-mb-135 {
    margin-bottom: -8.4375rem !important;
  }
  .md\:-ml-135 {
    margin-left: -135px !important;
  }
  .md\:-mt-130 {
    margin-top: -8.125rem !important;
  }
  .md\:-mr-130 {
    margin-right: -8.125rem !important;
  }
  .md\:-mb-130 {
    margin-bottom: -8.125rem !important;
  }
  .md\:-ml-130 {
    margin-left: -130px !important;
  }
  .md\:-mt-125 {
    margin-top: -7.8125rem !important;
  }
  .md\:-mr-125 {
    margin-right: -7.8125rem !important;
  }
  .md\:-mb-125 {
    margin-bottom: -7.8125rem !important;
  }
  .md\:-ml-125 {
    margin-left: -125px !important;
  }
  .md\:-mt-120 {
    margin-top: -7.5rem !important;
  }
  .md\:-mr-120 {
    margin-right: -7.5rem !important;
  }
  .md\:-mb-120 {
    margin-bottom: -7.5rem !important;
  }
  .md\:-ml-120 {
    margin-left: -120px !important;
  }
  .md\:-mt-115 {
    margin-top: -7.1875rem !important;
  }
  .md\:-mr-115 {
    margin-right: -7.1875rem !important;
  }
  .md\:-mb-115 {
    margin-bottom: -7.1875rem !important;
  }
  .md\:-ml-115 {
    margin-left: -115px !important;
  }
  .md\:-mt-110 {
    margin-top: -6.875rem !important;
  }
  .md\:-mr-110 {
    margin-right: -6.875rem !important;
  }
  .md\:-mb-110 {
    margin-bottom: -6.875rem !important;
  }
  .md\:-ml-110 {
    margin-left: -110px !important;
  }
  .md\:-mt-105 {
    margin-top: -6.5625rem !important;
  }
  .md\:-mr-105 {
    margin-right: -6.5625rem !important;
  }
  .md\:-mb-105 {
    margin-bottom: -6.5625rem !important;
  }
  .md\:-ml-105 {
    margin-left: -105px !important;
  }
  .md\:-mt-100 {
    margin-top: -6.25rem !important;
  }
  .md\:-mr-100 {
    margin-right: -6.25rem !important;
  }
  .md\:-mb-100 {
    margin-bottom: -6.25rem !important;
  }
  .md\:-ml-100 {
    margin-left: -100px !important;
  }
  .md\:-mt-95 {
    margin-top: -5.9375rem !important;
  }
  .md\:-mr-95 {
    margin-right: -5.9375rem !important;
  }
  .md\:-mb-95 {
    margin-bottom: -5.9375rem !important;
  }
  .md\:-ml-95 {
    margin-left: -95px !important;
  }
  .md\:-mt-90 {
    margin-top: -5.625rem !important;
  }
  .md\:-mr-90 {
    margin-right: -5.625rem !important;
  }
  .md\:-mb-90 {
    margin-bottom: -5.625rem !important;
  }
  .md\:-ml-90 {
    margin-left: -90px !important;
  }
  .md\:-mt-85 {
    margin-top: -5.3125rem !important;
  }
  .md\:-mr-85 {
    margin-right: -5.3125rem !important;
  }
  .md\:-mb-85 {
    margin-bottom: -5.3125rem !important;
  }
  .md\:-ml-85 {
    margin-left: -85px !important;
  }
  .md\:-mt-80 {
    margin-top: -5rem !important;
  }
  .md\:-mr-80 {
    margin-right: -5rem !important;
  }
  .md\:-mb-80 {
    margin-bottom: -5rem !important;
  }
  .md\:-ml-80 {
    margin-left: -80px !important;
  }
  .md\:-mt-75 {
    margin-top: -4.6875rem !important;
  }
  .md\:-mr-75 {
    margin-right: -4.6875rem !important;
  }
  .md\:-mb-75 {
    margin-bottom: -4.6875rem !important;
  }
  .md\:-ml-75 {
    margin-left: -75px !important;
  }
  .md\:-mt-70 {
    margin-top: -4.375rem !important;
  }
  .md\:-mr-70 {
    margin-right: -4.375rem !important;
  }
  .md\:-mb-70 {
    margin-bottom: -4.375rem !important;
  }
  .md\:-ml-70 {
    margin-left: -70px !important;
  }
  .md\:-mt-65 {
    margin-top: -4.0625rem !important;
  }
  .md\:-mr-65 {
    margin-right: -4.0625rem !important;
  }
  .md\:-mb-65 {
    margin-bottom: -4.0625rem !important;
  }
  .md\:-ml-65 {
    margin-left: -65px !important;
  }
  .md\:-mt-60 {
    margin-top: -3.75rem !important;
  }
  .md\:-mr-60 {
    margin-right: -3.75rem !important;
  }
  .md\:-mb-60 {
    margin-bottom: -3.75rem !important;
  }
  .md\:-ml-60 {
    margin-left: -60px !important;
  }
  .md\:-mt-55 {
    margin-top: -3.4375rem !important;
  }
  .md\:-mr-55 {
    margin-right: -3.4375rem !important;
  }
  .md\:-mb-55 {
    margin-bottom: -3.4375rem !important;
  }
  .md\:-ml-55 {
    margin-left: -55px !important;
  }
  .md\:-mt-50 {
    margin-top: -3.125rem !important;
  }
  .md\:-mr-50 {
    margin-right: -3.125rem !important;
  }
  .md\:-mb-50 {
    margin-bottom: -3.125rem !important;
  }
  .md\:-ml-50 {
    margin-left: -50px !important;
  }
  .md\:-mt-45 {
    margin-top: -2.8125rem !important;
  }
  .md\:-mr-45 {
    margin-right: -2.8125rem !important;
  }
  .md\:-mb-45 {
    margin-bottom: -2.8125rem !important;
  }
  .md\:-ml-45 {
    margin-left: -45px !important;
  }
  .md\:-mt-40 {
    margin-top: -2.5rem !important;
  }
  .md\:-mr-40 {
    margin-right: -2.5rem !important;
  }
  .md\:-mb-40 {
    margin-bottom: -2.5rem !important;
  }
  .md\:-ml-40 {
    margin-left: -40px !important;
  }
  .md\:-mt-35 {
    margin-top: -2.1875rem !important;
  }
  .md\:-mr-35 {
    margin-right: -2.1875rem !important;
  }
  .md\:-mb-35 {
    margin-bottom: -2.1875rem !important;
  }
  .md\:-ml-35 {
    margin-left: -35px !important;
  }
  .md\:-mt-30 {
    margin-top: -1.875rem !important;
  }
  .md\:-mr-30 {
    margin-right: -1.875rem !important;
  }
  .md\:-mb-30 {
    margin-bottom: -1.875rem !important;
  }
  .md\:-ml-30 {
    margin-left: -30px !important;
  }
  .md\:-mt-25 {
    margin-top: -1.5625rem !important;
  }
  .md\:-mr-25 {
    margin-right: -1.5625rem !important;
  }
  .md\:-mb-25 {
    margin-bottom: -1.5625rem !important;
  }
  .md\:-ml-25 {
    margin-left: -25px !important;
  }
  .md\:-mt-20 {
    margin-top: -1.25rem !important;
  }
  .md\:-mr-20 {
    margin-right: -1.25rem !important;
  }
  .md\:-mb-20 {
    margin-bottom: -1.25rem !important;
  }
  .md\:-ml-20 {
    margin-left: -20px !important;
  }
  .md\:-mt-15 {
    margin-top: -0.9375rem !important;
  }
  .md\:-mr-15 {
    margin-right: -0.9375rem !important;
  }
  .md\:-mb-15 {
    margin-bottom: -0.9375rem !important;
  }
  .md\:-ml-15 {
    margin-left: -15px !important;
  }
  .md\:-mt-10 {
    margin-top: -0.625rem !important;
  }
  .md\:-mr-10 {
    margin-right: -0.625rem !important;
  }
  .md\:-mb-10 {
    margin-bottom: -0.625rem !important;
  }
  .md\:-ml-10 {
    margin-left: -10px !important;
  }
  .md\:-mt-5 {
    margin-top: -0.3125rem !important;
  }
  .md\:-mr-5 {
    margin-right: -0.3125rem !important;
  }
  .md\:-mb-5 {
    margin-bottom: -0.3125rem !important;
  }
  .md\:-ml-5 {
    margin-left: -5px !important;
  }
}
@media screen and (max-width: 640px) {
  .sm\:mt-0 {
    margin-top: 0rem !important;
  }
  .sm\:mr-0 {
    margin-right: 0rem !important;
  }
  .sm\:mb-0 {
    margin-bottom: 0rem !important;
  }
  .sm\:ml-0 {
    margin-left: 0rem !important;
  }
  .sm\:mt-5 {
    margin-top: 0.3125rem !important;
  }
  .sm\:mr-5 {
    margin-right: 0.3125rem !important;
  }
  .sm\:mb-5 {
    margin-bottom: 0.3125rem !important;
  }
  .sm\:ml-5 {
    margin-left: 0.3125rem !important;
  }
  .sm\:mt-10 {
    margin-top: 0.625rem !important;
  }
  .sm\:mr-10 {
    margin-right: 0.625rem !important;
  }
  .sm\:mb-10 {
    margin-bottom: 0.625rem !important;
  }
  .sm\:ml-10 {
    margin-left: 0.625rem !important;
  }
  .sm\:mt-15 {
    margin-top: 0.9375rem !important;
  }
  .sm\:mr-15 {
    margin-right: 0.9375rem !important;
  }
  .sm\:mb-15 {
    margin-bottom: 0.9375rem !important;
  }
  .sm\:ml-15 {
    margin-left: 0.9375rem !important;
  }
  .sm\:mt-20 {
    margin-top: 1.25rem !important;
  }
  .sm\:mr-20 {
    margin-right: 1.25rem !important;
  }
  .sm\:mb-20 {
    margin-bottom: 1.25rem !important;
  }
  .sm\:ml-20 {
    margin-left: 1.25rem !important;
  }
  .sm\:mt-25 {
    margin-top: 1.5625rem !important;
  }
  .sm\:mr-25 {
    margin-right: 1.5625rem !important;
  }
  .sm\:mb-25 {
    margin-bottom: 1.5625rem !important;
  }
  .sm\:ml-25 {
    margin-left: 1.5625rem !important;
  }
  .sm\:mt-30 {
    margin-top: 1.875rem !important;
  }
  .sm\:mr-30 {
    margin-right: 1.875rem !important;
  }
  .sm\:mb-30 {
    margin-bottom: 1.875rem !important;
  }
  .sm\:ml-30 {
    margin-left: 1.875rem !important;
  }
  .sm\:mt-35 {
    margin-top: 2.1875rem !important;
  }
  .sm\:mr-35 {
    margin-right: 2.1875rem !important;
  }
  .sm\:mb-35 {
    margin-bottom: 2.1875rem !important;
  }
  .sm\:ml-35 {
    margin-left: 2.1875rem !important;
  }
  .sm\:mt-40 {
    margin-top: 2.5rem !important;
  }
  .sm\:mr-40 {
    margin-right: 2.5rem !important;
  }
  .sm\:mb-40 {
    margin-bottom: 2.5rem !important;
  }
  .sm\:ml-40 {
    margin-left: 2.5rem !important;
  }
  .sm\:mt-45 {
    margin-top: 2.8125rem !important;
  }
  .sm\:mr-45 {
    margin-right: 2.8125rem !important;
  }
  .sm\:mb-45 {
    margin-bottom: 2.8125rem !important;
  }
  .sm\:ml-45 {
    margin-left: 2.8125rem !important;
  }
  .sm\:mt-50 {
    margin-top: 3.125rem !important;
  }
  .sm\:mr-50 {
    margin-right: 3.125rem !important;
  }
  .sm\:mb-50 {
    margin-bottom: 3.125rem !important;
  }
  .sm\:ml-50 {
    margin-left: 3.125rem !important;
  }
  .sm\:mt-55 {
    margin-top: 3.4375rem !important;
  }
  .sm\:mr-55 {
    margin-right: 3.4375rem !important;
  }
  .sm\:mb-55 {
    margin-bottom: 3.4375rem !important;
  }
  .sm\:ml-55 {
    margin-left: 3.4375rem !important;
  }
  .sm\:mt-60 {
    margin-top: 3.75rem !important;
  }
  .sm\:mr-60 {
    margin-right: 3.75rem !important;
  }
  .sm\:mb-60 {
    margin-bottom: 3.75rem !important;
  }
  .sm\:ml-60 {
    margin-left: 3.75rem !important;
  }
  .sm\:mt-65 {
    margin-top: 4.0625rem !important;
  }
  .sm\:mr-65 {
    margin-right: 4.0625rem !important;
  }
  .sm\:mb-65 {
    margin-bottom: 4.0625rem !important;
  }
  .sm\:ml-65 {
    margin-left: 4.0625rem !important;
  }
  .sm\:mt-70 {
    margin-top: 4.375rem !important;
  }
  .sm\:mr-70 {
    margin-right: 4.375rem !important;
  }
  .sm\:mb-70 {
    margin-bottom: 4.375rem !important;
  }
  .sm\:ml-70 {
    margin-left: 4.375rem !important;
  }
  .sm\:mt-75 {
    margin-top: 4.6875rem !important;
  }
  .sm\:mr-75 {
    margin-right: 4.6875rem !important;
  }
  .sm\:mb-75 {
    margin-bottom: 4.6875rem !important;
  }
  .sm\:ml-75 {
    margin-left: 4.6875rem !important;
  }
  .sm\:mt-80 {
    margin-top: 5rem !important;
  }
  .sm\:mr-80 {
    margin-right: 5rem !important;
  }
  .sm\:mb-80 {
    margin-bottom: 5rem !important;
  }
  .sm\:ml-80 {
    margin-left: 5rem !important;
  }
  .sm\:mt-85 {
    margin-top: 5.3125rem !important;
  }
  .sm\:mr-85 {
    margin-right: 5.3125rem !important;
  }
  .sm\:mb-85 {
    margin-bottom: 5.3125rem !important;
  }
  .sm\:ml-85 {
    margin-left: 5.3125rem !important;
  }
  .sm\:mt-90 {
    margin-top: 5.625rem !important;
  }
  .sm\:mr-90 {
    margin-right: 5.625rem !important;
  }
  .sm\:mb-90 {
    margin-bottom: 5.625rem !important;
  }
  .sm\:ml-90 {
    margin-left: 5.625rem !important;
  }
  .sm\:mt-95 {
    margin-top: 5.9375rem !important;
  }
  .sm\:mr-95 {
    margin-right: 5.9375rem !important;
  }
  .sm\:mb-95 {
    margin-bottom: 5.9375rem !important;
  }
  .sm\:ml-95 {
    margin-left: 5.9375rem !important;
  }
  .sm\:mt-100 {
    margin-top: 6.25rem !important;
  }
  .sm\:mr-100 {
    margin-right: 6.25rem !important;
  }
  .sm\:mb-100 {
    margin-bottom: 6.25rem !important;
  }
  .sm\:ml-100 {
    margin-left: 6.25rem !important;
  }
  .sm\:mt-105 {
    margin-top: 6.5625rem !important;
  }
  .sm\:mr-105 {
    margin-right: 6.5625rem !important;
  }
  .sm\:mb-105 {
    margin-bottom: 6.5625rem !important;
  }
  .sm\:ml-105 {
    margin-left: 6.5625rem !important;
  }
  .sm\:mt-110 {
    margin-top: 6.875rem !important;
  }
  .sm\:mr-110 {
    margin-right: 6.875rem !important;
  }
  .sm\:mb-110 {
    margin-bottom: 6.875rem !important;
  }
  .sm\:ml-110 {
    margin-left: 6.875rem !important;
  }
  .sm\:mt-115 {
    margin-top: 7.1875rem !important;
  }
  .sm\:mr-115 {
    margin-right: 7.1875rem !important;
  }
  .sm\:mb-115 {
    margin-bottom: 7.1875rem !important;
  }
  .sm\:ml-115 {
    margin-left: 7.1875rem !important;
  }
  .sm\:mt-120 {
    margin-top: 7.5rem !important;
  }
  .sm\:mr-120 {
    margin-right: 7.5rem !important;
  }
  .sm\:mb-120 {
    margin-bottom: 7.5rem !important;
  }
  .sm\:ml-120 {
    margin-left: 7.5rem !important;
  }
  .sm\:mt-125 {
    margin-top: 7.8125rem !important;
  }
  .sm\:mr-125 {
    margin-right: 7.8125rem !important;
  }
  .sm\:mb-125 {
    margin-bottom: 7.8125rem !important;
  }
  .sm\:ml-125 {
    margin-left: 7.8125rem !important;
  }
  .sm\:mt-130 {
    margin-top: 8.125rem !important;
  }
  .sm\:mr-130 {
    margin-right: 8.125rem !important;
  }
  .sm\:mb-130 {
    margin-bottom: 8.125rem !important;
  }
  .sm\:ml-130 {
    margin-left: 8.125rem !important;
  }
  .sm\:mt-135 {
    margin-top: 8.4375rem !important;
  }
  .sm\:mr-135 {
    margin-right: 8.4375rem !important;
  }
  .sm\:mb-135 {
    margin-bottom: 8.4375rem !important;
  }
  .sm\:ml-135 {
    margin-left: 8.4375rem !important;
  }
  .sm\:mt-140 {
    margin-top: 8.75rem !important;
  }
  .sm\:mr-140 {
    margin-right: 8.75rem !important;
  }
  .sm\:mb-140 {
    margin-bottom: 8.75rem !important;
  }
  .sm\:ml-140 {
    margin-left: 8.75rem !important;
  }
  .sm\:mt-145 {
    margin-top: 9.0625rem !important;
  }
  .sm\:mr-145 {
    margin-right: 9.0625rem !important;
  }
  .sm\:mb-145 {
    margin-bottom: 9.0625rem !important;
  }
  .sm\:ml-145 {
    margin-left: 9.0625rem !important;
  }
  .sm\:mt-150 {
    margin-top: 9.375rem !important;
  }
  .sm\:mr-150 {
    margin-right: 9.375rem !important;
  }
  .sm\:mb-150 {
    margin-bottom: 9.375rem !important;
  }
  .sm\:ml-150 {
    margin-left: 9.375rem !important;
  }
  .sm\:mt-155 {
    margin-top: 9.6875rem !important;
  }
  .sm\:mr-155 {
    margin-right: 9.6875rem !important;
  }
  .sm\:mb-155 {
    margin-bottom: 9.6875rem !important;
  }
  .sm\:ml-155 {
    margin-left: 9.6875rem !important;
  }
  .sm\:mt-160 {
    margin-top: 10rem !important;
  }
  .sm\:mr-160 {
    margin-right: 10rem !important;
  }
  .sm\:mb-160 {
    margin-bottom: 10rem !important;
  }
  .sm\:ml-160 {
    margin-left: 10rem !important;
  }
  .sm\:mt-165 {
    margin-top: 10.3125rem !important;
  }
  .sm\:mr-165 {
    margin-right: 10.3125rem !important;
  }
  .sm\:mb-165 {
    margin-bottom: 10.3125rem !important;
  }
  .sm\:ml-165 {
    margin-left: 10.3125rem !important;
  }
  .sm\:mt-170 {
    margin-top: 10.625rem !important;
  }
  .sm\:mr-170 {
    margin-right: 10.625rem !important;
  }
  .sm\:mb-170 {
    margin-bottom: 10.625rem !important;
  }
  .sm\:ml-170 {
    margin-left: 10.625rem !important;
  }
  .sm\:mt-175 {
    margin-top: 10.9375rem !important;
  }
  .sm\:mr-175 {
    margin-right: 10.9375rem !important;
  }
  .sm\:mb-175 {
    margin-bottom: 10.9375rem !important;
  }
  .sm\:ml-175 {
    margin-left: 10.9375rem !important;
  }
  .sm\:mt-180 {
    margin-top: 11.25rem !important;
  }
  .sm\:mr-180 {
    margin-right: 11.25rem !important;
  }
  .sm\:mb-180 {
    margin-bottom: 11.25rem !important;
  }
  .sm\:ml-180 {
    margin-left: 11.25rem !important;
  }
  .sm\:mt-185 {
    margin-top: 11.5625rem !important;
  }
  .sm\:mr-185 {
    margin-right: 11.5625rem !important;
  }
  .sm\:mb-185 {
    margin-bottom: 11.5625rem !important;
  }
  .sm\:ml-185 {
    margin-left: 11.5625rem !important;
  }
  .sm\:mt-190 {
    margin-top: 11.875rem !important;
  }
  .sm\:mr-190 {
    margin-right: 11.875rem !important;
  }
  .sm\:mb-190 {
    margin-bottom: 11.875rem !important;
  }
  .sm\:ml-190 {
    margin-left: 11.875rem !important;
  }
  .sm\:mt-195 {
    margin-top: 12.1875rem !important;
  }
  .sm\:mr-195 {
    margin-right: 12.1875rem !important;
  }
  .sm\:mb-195 {
    margin-bottom: 12.1875rem !important;
  }
  .sm\:ml-195 {
    margin-left: 12.1875rem !important;
  }
  .sm\:mt-200 {
    margin-top: 12.5rem !important;
  }
  .sm\:mr-200 {
    margin-right: 12.5rem !important;
  }
  .sm\:mb-200 {
    margin-bottom: 12.5rem !important;
  }
  .sm\:ml-200 {
    margin-left: 12.5rem !important;
  }
  .sm\:mt-205 {
    margin-top: 12.8125rem !important;
  }
  .sm\:mr-205 {
    margin-right: 12.8125rem !important;
  }
  .sm\:mb-205 {
    margin-bottom: 12.8125rem !important;
  }
  .sm\:ml-205 {
    margin-left: 12.8125rem !important;
  }
  .sm\:mt-210 {
    margin-top: 13.125rem !important;
  }
  .sm\:mr-210 {
    margin-right: 13.125rem !important;
  }
  .sm\:mb-210 {
    margin-bottom: 13.125rem !important;
  }
  .sm\:ml-210 {
    margin-left: 13.125rem !important;
  }
  .sm\:mt-215 {
    margin-top: 13.4375rem !important;
  }
  .sm\:mr-215 {
    margin-right: 13.4375rem !important;
  }
  .sm\:mb-215 {
    margin-bottom: 13.4375rem !important;
  }
  .sm\:ml-215 {
    margin-left: 13.4375rem !important;
  }
  .sm\:mt-220 {
    margin-top: 13.75rem !important;
  }
  .sm\:mr-220 {
    margin-right: 13.75rem !important;
  }
  .sm\:mb-220 {
    margin-bottom: 13.75rem !important;
  }
  .sm\:ml-220 {
    margin-left: 13.75rem !important;
  }
  .sm\:mt-225 {
    margin-top: 14.0625rem !important;
  }
  .sm\:mr-225 {
    margin-right: 14.0625rem !important;
  }
  .sm\:mb-225 {
    margin-bottom: 14.0625rem !important;
  }
  .sm\:ml-225 {
    margin-left: 14.0625rem !important;
  }
  .sm\:mt-230 {
    margin-top: 14.375rem !important;
  }
  .sm\:mr-230 {
    margin-right: 14.375rem !important;
  }
  .sm\:mb-230 {
    margin-bottom: 14.375rem !important;
  }
  .sm\:ml-230 {
    margin-left: 14.375rem !important;
  }
  .sm\:mt-235 {
    margin-top: 14.6875rem !important;
  }
  .sm\:mr-235 {
    margin-right: 14.6875rem !important;
  }
  .sm\:mb-235 {
    margin-bottom: 14.6875rem !important;
  }
  .sm\:ml-235 {
    margin-left: 14.6875rem !important;
  }
  .sm\:mt-240 {
    margin-top: 15rem !important;
  }
  .sm\:mr-240 {
    margin-right: 15rem !important;
  }
  .sm\:mb-240 {
    margin-bottom: 15rem !important;
  }
  .sm\:ml-240 {
    margin-left: 15rem !important;
  }
  .sm\:mt-245 {
    margin-top: 15.3125rem !important;
  }
  .sm\:mr-245 {
    margin-right: 15.3125rem !important;
  }
  .sm\:mb-245 {
    margin-bottom: 15.3125rem !important;
  }
  .sm\:ml-245 {
    margin-left: 15.3125rem !important;
  }
  .sm\:mt-250 {
    margin-top: 15.625rem !important;
  }
  .sm\:mr-250 {
    margin-right: 15.625rem !important;
  }
  .sm\:mb-250 {
    margin-bottom: 15.625rem !important;
  }
  .sm\:ml-250 {
    margin-left: 15.625rem !important;
  }
  .sm\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .sm\:ml-auto {
    margin-left: auto !important;
  }
  .sm\:mr-auto {
    margin-right: auto !important;
  }
  .sm\:-mt-250 {
    margin-top: -15.625rem !important;
  }
  .sm\:-mr-250 {
    margin-right: -15.625rem !important;
  }
  .sm\:-mb-250 {
    margin-bottom: -15.625rem !important;
  }
  .sm\:-ml-250 {
    margin-left: -250px !important;
  }
  .sm\:-mt-245 {
    margin-top: -15.3125rem !important;
  }
  .sm\:-mr-245 {
    margin-right: -15.3125rem !important;
  }
  .sm\:-mb-245 {
    margin-bottom: -15.3125rem !important;
  }
  .sm\:-ml-245 {
    margin-left: -245px !important;
  }
  .sm\:-mt-240 {
    margin-top: -15rem !important;
  }
  .sm\:-mr-240 {
    margin-right: -15rem !important;
  }
  .sm\:-mb-240 {
    margin-bottom: -15rem !important;
  }
  .sm\:-ml-240 {
    margin-left: -240px !important;
  }
  .sm\:-mt-235 {
    margin-top: -14.6875rem !important;
  }
  .sm\:-mr-235 {
    margin-right: -14.6875rem !important;
  }
  .sm\:-mb-235 {
    margin-bottom: -14.6875rem !important;
  }
  .sm\:-ml-235 {
    margin-left: -235px !important;
  }
  .sm\:-mt-230 {
    margin-top: -14.375rem !important;
  }
  .sm\:-mr-230 {
    margin-right: -14.375rem !important;
  }
  .sm\:-mb-230 {
    margin-bottom: -14.375rem !important;
  }
  .sm\:-ml-230 {
    margin-left: -230px !important;
  }
  .sm\:-mt-225 {
    margin-top: -14.0625rem !important;
  }
  .sm\:-mr-225 {
    margin-right: -14.0625rem !important;
  }
  .sm\:-mb-225 {
    margin-bottom: -14.0625rem !important;
  }
  .sm\:-ml-225 {
    margin-left: -225px !important;
  }
  .sm\:-mt-220 {
    margin-top: -13.75rem !important;
  }
  .sm\:-mr-220 {
    margin-right: -13.75rem !important;
  }
  .sm\:-mb-220 {
    margin-bottom: -13.75rem !important;
  }
  .sm\:-ml-220 {
    margin-left: -220px !important;
  }
  .sm\:-mt-215 {
    margin-top: -13.4375rem !important;
  }
  .sm\:-mr-215 {
    margin-right: -13.4375rem !important;
  }
  .sm\:-mb-215 {
    margin-bottom: -13.4375rem !important;
  }
  .sm\:-ml-215 {
    margin-left: -215px !important;
  }
  .sm\:-mt-210 {
    margin-top: -13.125rem !important;
  }
  .sm\:-mr-210 {
    margin-right: -13.125rem !important;
  }
  .sm\:-mb-210 {
    margin-bottom: -13.125rem !important;
  }
  .sm\:-ml-210 {
    margin-left: -210px !important;
  }
  .sm\:-mt-205 {
    margin-top: -12.8125rem !important;
  }
  .sm\:-mr-205 {
    margin-right: -12.8125rem !important;
  }
  .sm\:-mb-205 {
    margin-bottom: -12.8125rem !important;
  }
  .sm\:-ml-205 {
    margin-left: -205px !important;
  }
  .sm\:-mt-200 {
    margin-top: -12.5rem !important;
  }
  .sm\:-mr-200 {
    margin-right: -12.5rem !important;
  }
  .sm\:-mb-200 {
    margin-bottom: -12.5rem !important;
  }
  .sm\:-ml-200 {
    margin-left: -200px !important;
  }
  .sm\:-mt-195 {
    margin-top: -12.1875rem !important;
  }
  .sm\:-mr-195 {
    margin-right: -12.1875rem !important;
  }
  .sm\:-mb-195 {
    margin-bottom: -12.1875rem !important;
  }
  .sm\:-ml-195 {
    margin-left: -195px !important;
  }
  .sm\:-mt-190 {
    margin-top: -11.875rem !important;
  }
  .sm\:-mr-190 {
    margin-right: -11.875rem !important;
  }
  .sm\:-mb-190 {
    margin-bottom: -11.875rem !important;
  }
  .sm\:-ml-190 {
    margin-left: -190px !important;
  }
  .sm\:-mt-185 {
    margin-top: -11.5625rem !important;
  }
  .sm\:-mr-185 {
    margin-right: -11.5625rem !important;
  }
  .sm\:-mb-185 {
    margin-bottom: -11.5625rem !important;
  }
  .sm\:-ml-185 {
    margin-left: -185px !important;
  }
  .sm\:-mt-180 {
    margin-top: -11.25rem !important;
  }
  .sm\:-mr-180 {
    margin-right: -11.25rem !important;
  }
  .sm\:-mb-180 {
    margin-bottom: -11.25rem !important;
  }
  .sm\:-ml-180 {
    margin-left: -180px !important;
  }
  .sm\:-mt-175 {
    margin-top: -10.9375rem !important;
  }
  .sm\:-mr-175 {
    margin-right: -10.9375rem !important;
  }
  .sm\:-mb-175 {
    margin-bottom: -10.9375rem !important;
  }
  .sm\:-ml-175 {
    margin-left: -175px !important;
  }
  .sm\:-mt-170 {
    margin-top: -10.625rem !important;
  }
  .sm\:-mr-170 {
    margin-right: -10.625rem !important;
  }
  .sm\:-mb-170 {
    margin-bottom: -10.625rem !important;
  }
  .sm\:-ml-170 {
    margin-left: -170px !important;
  }
  .sm\:-mt-165 {
    margin-top: -10.3125rem !important;
  }
  .sm\:-mr-165 {
    margin-right: -10.3125rem !important;
  }
  .sm\:-mb-165 {
    margin-bottom: -10.3125rem !important;
  }
  .sm\:-ml-165 {
    margin-left: -165px !important;
  }
  .sm\:-mt-160 {
    margin-top: -10rem !important;
  }
  .sm\:-mr-160 {
    margin-right: -10rem !important;
  }
  .sm\:-mb-160 {
    margin-bottom: -10rem !important;
  }
  .sm\:-ml-160 {
    margin-left: -160px !important;
  }
  .sm\:-mt-155 {
    margin-top: -9.6875rem !important;
  }
  .sm\:-mr-155 {
    margin-right: -9.6875rem !important;
  }
  .sm\:-mb-155 {
    margin-bottom: -9.6875rem !important;
  }
  .sm\:-ml-155 {
    margin-left: -155px !important;
  }
  .sm\:-mt-150 {
    margin-top: -9.375rem !important;
  }
  .sm\:-mr-150 {
    margin-right: -9.375rem !important;
  }
  .sm\:-mb-150 {
    margin-bottom: -9.375rem !important;
  }
  .sm\:-ml-150 {
    margin-left: -150px !important;
  }
  .sm\:-mt-145 {
    margin-top: -9.0625rem !important;
  }
  .sm\:-mr-145 {
    margin-right: -9.0625rem !important;
  }
  .sm\:-mb-145 {
    margin-bottom: -9.0625rem !important;
  }
  .sm\:-ml-145 {
    margin-left: -145px !important;
  }
  .sm\:-mt-140 {
    margin-top: -8.75rem !important;
  }
  .sm\:-mr-140 {
    margin-right: -8.75rem !important;
  }
  .sm\:-mb-140 {
    margin-bottom: -8.75rem !important;
  }
  .sm\:-ml-140 {
    margin-left: -140px !important;
  }
  .sm\:-mt-135 {
    margin-top: -8.4375rem !important;
  }
  .sm\:-mr-135 {
    margin-right: -8.4375rem !important;
  }
  .sm\:-mb-135 {
    margin-bottom: -8.4375rem !important;
  }
  .sm\:-ml-135 {
    margin-left: -135px !important;
  }
  .sm\:-mt-130 {
    margin-top: -8.125rem !important;
  }
  .sm\:-mr-130 {
    margin-right: -8.125rem !important;
  }
  .sm\:-mb-130 {
    margin-bottom: -8.125rem !important;
  }
  .sm\:-ml-130 {
    margin-left: -130px !important;
  }
  .sm\:-mt-125 {
    margin-top: -7.8125rem !important;
  }
  .sm\:-mr-125 {
    margin-right: -7.8125rem !important;
  }
  .sm\:-mb-125 {
    margin-bottom: -7.8125rem !important;
  }
  .sm\:-ml-125 {
    margin-left: -125px !important;
  }
  .sm\:-mt-120 {
    margin-top: -7.5rem !important;
  }
  .sm\:-mr-120 {
    margin-right: -7.5rem !important;
  }
  .sm\:-mb-120 {
    margin-bottom: -7.5rem !important;
  }
  .sm\:-ml-120 {
    margin-left: -120px !important;
  }
  .sm\:-mt-115 {
    margin-top: -7.1875rem !important;
  }
  .sm\:-mr-115 {
    margin-right: -7.1875rem !important;
  }
  .sm\:-mb-115 {
    margin-bottom: -7.1875rem !important;
  }
  .sm\:-ml-115 {
    margin-left: -115px !important;
  }
  .sm\:-mt-110 {
    margin-top: -6.875rem !important;
  }
  .sm\:-mr-110 {
    margin-right: -6.875rem !important;
  }
  .sm\:-mb-110 {
    margin-bottom: -6.875rem !important;
  }
  .sm\:-ml-110 {
    margin-left: -110px !important;
  }
  .sm\:-mt-105 {
    margin-top: -6.5625rem !important;
  }
  .sm\:-mr-105 {
    margin-right: -6.5625rem !important;
  }
  .sm\:-mb-105 {
    margin-bottom: -6.5625rem !important;
  }
  .sm\:-ml-105 {
    margin-left: -105px !important;
  }
  .sm\:-mt-100 {
    margin-top: -6.25rem !important;
  }
  .sm\:-mr-100 {
    margin-right: -6.25rem !important;
  }
  .sm\:-mb-100 {
    margin-bottom: -6.25rem !important;
  }
  .sm\:-ml-100 {
    margin-left: -100px !important;
  }
  .sm\:-mt-95 {
    margin-top: -5.9375rem !important;
  }
  .sm\:-mr-95 {
    margin-right: -5.9375rem !important;
  }
  .sm\:-mb-95 {
    margin-bottom: -5.9375rem !important;
  }
  .sm\:-ml-95 {
    margin-left: -95px !important;
  }
  .sm\:-mt-90 {
    margin-top: -5.625rem !important;
  }
  .sm\:-mr-90 {
    margin-right: -5.625rem !important;
  }
  .sm\:-mb-90 {
    margin-bottom: -5.625rem !important;
  }
  .sm\:-ml-90 {
    margin-left: -90px !important;
  }
  .sm\:-mt-85 {
    margin-top: -5.3125rem !important;
  }
  .sm\:-mr-85 {
    margin-right: -5.3125rem !important;
  }
  .sm\:-mb-85 {
    margin-bottom: -5.3125rem !important;
  }
  .sm\:-ml-85 {
    margin-left: -85px !important;
  }
  .sm\:-mt-80 {
    margin-top: -5rem !important;
  }
  .sm\:-mr-80 {
    margin-right: -5rem !important;
  }
  .sm\:-mb-80 {
    margin-bottom: -5rem !important;
  }
  .sm\:-ml-80 {
    margin-left: -80px !important;
  }
  .sm\:-mt-75 {
    margin-top: -4.6875rem !important;
  }
  .sm\:-mr-75 {
    margin-right: -4.6875rem !important;
  }
  .sm\:-mb-75 {
    margin-bottom: -4.6875rem !important;
  }
  .sm\:-ml-75 {
    margin-left: -75px !important;
  }
  .sm\:-mt-70 {
    margin-top: -4.375rem !important;
  }
  .sm\:-mr-70 {
    margin-right: -4.375rem !important;
  }
  .sm\:-mb-70 {
    margin-bottom: -4.375rem !important;
  }
  .sm\:-ml-70 {
    margin-left: -70px !important;
  }
  .sm\:-mt-65 {
    margin-top: -4.0625rem !important;
  }
  .sm\:-mr-65 {
    margin-right: -4.0625rem !important;
  }
  .sm\:-mb-65 {
    margin-bottom: -4.0625rem !important;
  }
  .sm\:-ml-65 {
    margin-left: -65px !important;
  }
  .sm\:-mt-60 {
    margin-top: -3.75rem !important;
  }
  .sm\:-mr-60 {
    margin-right: -3.75rem !important;
  }
  .sm\:-mb-60 {
    margin-bottom: -3.75rem !important;
  }
  .sm\:-ml-60 {
    margin-left: -60px !important;
  }
  .sm\:-mt-55 {
    margin-top: -3.4375rem !important;
  }
  .sm\:-mr-55 {
    margin-right: -3.4375rem !important;
  }
  .sm\:-mb-55 {
    margin-bottom: -3.4375rem !important;
  }
  .sm\:-ml-55 {
    margin-left: -55px !important;
  }
  .sm\:-mt-50 {
    margin-top: -3.125rem !important;
  }
  .sm\:-mr-50 {
    margin-right: -3.125rem !important;
  }
  .sm\:-mb-50 {
    margin-bottom: -3.125rem !important;
  }
  .sm\:-ml-50 {
    margin-left: -50px !important;
  }
  .sm\:-mt-45 {
    margin-top: -2.8125rem !important;
  }
  .sm\:-mr-45 {
    margin-right: -2.8125rem !important;
  }
  .sm\:-mb-45 {
    margin-bottom: -2.8125rem !important;
  }
  .sm\:-ml-45 {
    margin-left: -45px !important;
  }
  .sm\:-mt-40 {
    margin-top: -2.5rem !important;
  }
  .sm\:-mr-40 {
    margin-right: -2.5rem !important;
  }
  .sm\:-mb-40 {
    margin-bottom: -2.5rem !important;
  }
  .sm\:-ml-40 {
    margin-left: -40px !important;
  }
  .sm\:-mt-35 {
    margin-top: -2.1875rem !important;
  }
  .sm\:-mr-35 {
    margin-right: -2.1875rem !important;
  }
  .sm\:-mb-35 {
    margin-bottom: -2.1875rem !important;
  }
  .sm\:-ml-35 {
    margin-left: -35px !important;
  }
  .sm\:-mt-30 {
    margin-top: -1.875rem !important;
  }
  .sm\:-mr-30 {
    margin-right: -1.875rem !important;
  }
  .sm\:-mb-30 {
    margin-bottom: -1.875rem !important;
  }
  .sm\:-ml-30 {
    margin-left: -30px !important;
  }
  .sm\:-mt-25 {
    margin-top: -1.5625rem !important;
  }
  .sm\:-mr-25 {
    margin-right: -1.5625rem !important;
  }
  .sm\:-mb-25 {
    margin-bottom: -1.5625rem !important;
  }
  .sm\:-ml-25 {
    margin-left: -25px !important;
  }
  .sm\:-mt-20 {
    margin-top: -1.25rem !important;
  }
  .sm\:-mr-20 {
    margin-right: -1.25rem !important;
  }
  .sm\:-mb-20 {
    margin-bottom: -1.25rem !important;
  }
  .sm\:-ml-20 {
    margin-left: -20px !important;
  }
  .sm\:-mt-15 {
    margin-top: -0.9375rem !important;
  }
  .sm\:-mr-15 {
    margin-right: -0.9375rem !important;
  }
  .sm\:-mb-15 {
    margin-bottom: -0.9375rem !important;
  }
  .sm\:-ml-15 {
    margin-left: -15px !important;
  }
  .sm\:-mt-10 {
    margin-top: -0.625rem !important;
  }
  .sm\:-mr-10 {
    margin-right: -0.625rem !important;
  }
  .sm\:-mb-10 {
    margin-bottom: -0.625rem !important;
  }
  .sm\:-ml-10 {
    margin-left: -10px !important;
  }
  .sm\:-mt-5 {
    margin-top: -0.3125rem !important;
  }
  .sm\:-mr-5 {
    margin-right: -0.3125rem !important;
  }
  .sm\:-mb-5 {
    margin-bottom: -0.3125rem !important;
  }
  .sm\:-ml-5 {
    margin-left: -5px !important;
  }
}
.pt-0 {
  padding-top: 0px;
}
.pr-0 {
  padding-right: 0px;
}
.pb-0 {
  padding-bottom: 0px;
}
.pl-0 {
  padding-left: 0px;
}
.pt-4 {
  padding-top: 4px;
}
.pr-4 {
  padding-right: 4px;
}
.pb-4 {
  padding-bottom: 4px;
}
.pl-4 {
  padding-left: 4px;
}
.pt-8 {
  padding-top: 8px;
}
.pr-8 {
  padding-right: 8px;
}
.pb-8 {
  padding-bottom: 8px;
}
.pl-8 {
  padding-left: 8px;
}
.pt-12 {
  padding-top: 12px;
}
.pr-12 {
  padding-right: 12px;
}
.pb-12 {
  padding-bottom: 12px;
}
.pl-12 {
  padding-left: 12px;
}
.pt-16 {
  padding-top: 16px;
}
.pr-16 {
  padding-right: 16px;
}
.pb-16 {
  padding-bottom: 16px;
}
.pl-16 {
  padding-left: 16px;
}
.pt-20 {
  padding-top: 20px;
}
.pr-20 {
  padding-right: 20px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pl-20 {
  padding-left: 20px;
}
.pt-24 {
  padding-top: 24px;
}
.pr-24 {
  padding-right: 24px;
}
.pb-24 {
  padding-bottom: 24px;
}
.pl-24 {
  padding-left: 24px;
}
.pt-28 {
  padding-top: 28px;
}
.pr-28 {
  padding-right: 28px;
}
.pb-28 {
  padding-bottom: 28px;
}
.pl-28 {
  padding-left: 28px;
}
.pt-32 {
  padding-top: 32px;
}
.pr-32 {
  padding-right: 32px;
}
.pb-32 {
  padding-bottom: 32px;
}
.pl-32 {
  padding-left: 32px;
}
.pt-36 {
  padding-top: 36px;
}
.pr-36 {
  padding-right: 36px;
}
.pb-36 {
  padding-bottom: 36px;
}
.pl-36 {
  padding-left: 36px;
}
.pt-40 {
  padding-top: 40px;
}
.pr-40 {
  padding-right: 40px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pl-40 {
  padding-left: 40px;
}
.pt-44 {
  padding-top: 44px;
}
.pr-44 {
  padding-right: 44px;
}
.pb-44 {
  padding-bottom: 44px;
}
.pl-44 {
  padding-left: 44px;
}
.pt-48 {
  padding-top: 48px;
}
.pr-48 {
  padding-right: 48px;
}
.pb-48 {
  padding-bottom: 48px;
}
.pl-48 {
  padding-left: 48px;
}
.pt-52 {
  padding-top: 52px;
}
.pr-52 {
  padding-right: 52px;
}
.pb-52 {
  padding-bottom: 52px;
}
.pl-52 {
  padding-left: 52px;
}
.pt-56 {
  padding-top: 56px;
}
.pr-56 {
  padding-right: 56px;
}
.pb-56 {
  padding-bottom: 56px;
}
.pl-56 {
  padding-left: 56px;
}
.pt-60 {
  padding-top: 60px;
}
.pr-60 {
  padding-right: 60px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pl-60 {
  padding-left: 60px;
}
.pt-64 {
  padding-top: 64px;
}
.pr-64 {
  padding-right: 64px;
}
.pb-64 {
  padding-bottom: 64px;
}
.pl-64 {
  padding-left: 64px;
}
.pt-68 {
  padding-top: 68px;
}
.pr-68 {
  padding-right: 68px;
}
.pb-68 {
  padding-bottom: 68px;
}
.pl-68 {
  padding-left: 68px;
}
.pt-72 {
  padding-top: 72px;
}
.pr-72 {
  padding-right: 72px;
}
.pb-72 {
  padding-bottom: 72px;
}
.pl-72 {
  padding-left: 72px;
}
.pt-76 {
  padding-top: 76px;
}
.pr-76 {
  padding-right: 76px;
}
.pb-76 {
  padding-bottom: 76px;
}
.pl-76 {
  padding-left: 76px;
}
.pt-80 {
  padding-top: 80px;
}
.pr-80 {
  padding-right: 80px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pl-80 {
  padding-left: 80px;
}
.pt-84 {
  padding-top: 84px;
}
.pr-84 {
  padding-right: 84px;
}
.pb-84 {
  padding-bottom: 84px;
}
.pl-84 {
  padding-left: 84px;
}
.pt-88 {
  padding-top: 88px;
}
.pr-88 {
  padding-right: 88px;
}
.pb-88 {
  padding-bottom: 88px;
}
.pl-88 {
  padding-left: 88px;
}
.pt-92 {
  padding-top: 92px;
}
.pr-92 {
  padding-right: 92px;
}
.pb-92 {
  padding-bottom: 92px;
}
.pl-92 {
  padding-left: 92px;
}
.pt-96 {
  padding-top: 96px;
}
.pr-96 {
  padding-right: 96px;
}
.pb-96 {
  padding-bottom: 96px;
}
.pl-96 {
  padding-left: 96px;
}
.pt-100 {
  padding-top: 100px;
}
.pr-100 {
  padding-right: 100px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pl-100 {
  padding-left: 100px;
}
.pt-104 {
  padding-top: 104px;
}
.pr-104 {
  padding-right: 104px;
}
.pb-104 {
  padding-bottom: 104px;
}
.pl-104 {
  padding-left: 104px;
}
.pt-108 {
  padding-top: 108px;
}
.pr-108 {
  padding-right: 108px;
}
.pb-108 {
  padding-bottom: 108px;
}
.pl-108 {
  padding-left: 108px;
}
.pt-112 {
  padding-top: 112px;
}
.pr-112 {
  padding-right: 112px;
}
.pb-112 {
  padding-bottom: 112px;
}
.pl-112 {
  padding-left: 112px;
}
.pt-116 {
  padding-top: 116px;
}
.pr-116 {
  padding-right: 116px;
}
.pb-116 {
  padding-bottom: 116px;
}
.pl-116 {
  padding-left: 116px;
}
.pt-120 {
  padding-top: 120px;
}
.pr-120 {
  padding-right: 120px;
}
.pb-120 {
  padding-bottom: 120px;
}
.pl-120 {
  padding-left: 120px;
}
.pt-124 {
  padding-top: 124px;
}
.pr-124 {
  padding-right: 124px;
}
.pb-124 {
  padding-bottom: 124px;
}
.pl-124 {
  padding-left: 124px;
}
.pt-128 {
  padding-top: 128px;
}
.pr-128 {
  padding-right: 128px;
}
.pb-128 {
  padding-bottom: 128px;
}
.pl-128 {
  padding-left: 128px;
}
.pt-132 {
  padding-top: 132px;
}
.pr-132 {
  padding-right: 132px;
}
.pb-132 {
  padding-bottom: 132px;
}
.pl-132 {
  padding-left: 132px;
}
.pt-136 {
  padding-top: 136px;
}
.pr-136 {
  padding-right: 136px;
}
.pb-136 {
  padding-bottom: 136px;
}
.pl-136 {
  padding-left: 136px;
}
.pt-140 {
  padding-top: 140px;
}
.pr-140 {
  padding-right: 140px;
}
.pb-140 {
  padding-bottom: 140px;
}
.pl-140 {
  padding-left: 140px;
}
.pt-144 {
  padding-top: 144px;
}
.pr-144 {
  padding-right: 144px;
}
.pb-144 {
  padding-bottom: 144px;
}
.pl-144 {
  padding-left: 144px;
}
.pt-148 {
  padding-top: 148px;
}
.pr-148 {
  padding-right: 148px;
}
.pb-148 {
  padding-bottom: 148px;
}
.pl-148 {
  padding-left: 148px;
}
.pt-152 {
  padding-top: 152px;
}
.pr-152 {
  padding-right: 152px;
}
.pb-152 {
  padding-bottom: 152px;
}
.pl-152 {
  padding-left: 152px;
}
.pt-156 {
  padding-top: 156px;
}
.pr-156 {
  padding-right: 156px;
}
.pb-156 {
  padding-bottom: 156px;
}
.pl-156 {
  padding-left: 156px;
}
.pt-160 {
  padding-top: 160px;
}
.pr-160 {
  padding-right: 160px;
}
.pb-160 {
  padding-bottom: 160px;
}
.pl-160 {
  padding-left: 160px;
}
.pt-164 {
  padding-top: 164px;
}
.pr-164 {
  padding-right: 164px;
}
.pb-164 {
  padding-bottom: 164px;
}
.pl-164 {
  padding-left: 164px;
}
.pt-168 {
  padding-top: 168px;
}
.pr-168 {
  padding-right: 168px;
}
.pb-168 {
  padding-bottom: 168px;
}
.pl-168 {
  padding-left: 168px;
}
.pt-172 {
  padding-top: 172px;
}
.pr-172 {
  padding-right: 172px;
}
.pb-172 {
  padding-bottom: 172px;
}
.pl-172 {
  padding-left: 172px;
}
.pt-176 {
  padding-top: 176px;
}
.pr-176 {
  padding-right: 176px;
}
.pb-176 {
  padding-bottom: 176px;
}
.pl-176 {
  padding-left: 176px;
}
.pt-180 {
  padding-top: 180px;
}
.pr-180 {
  padding-right: 180px;
}
.pb-180 {
  padding-bottom: 180px;
}
.pl-180 {
  padding-left: 180px;
}
.pt-184 {
  padding-top: 184px;
}
.pr-184 {
  padding-right: 184px;
}
.pb-184 {
  padding-bottom: 184px;
}
.pl-184 {
  padding-left: 184px;
}
.pt-188 {
  padding-top: 188px;
}
.pr-188 {
  padding-right: 188px;
}
.pb-188 {
  padding-bottom: 188px;
}
.pl-188 {
  padding-left: 188px;
}
.pt-192 {
  padding-top: 192px;
}
.pr-192 {
  padding-right: 192px;
}
.pb-192 {
  padding-bottom: 192px;
}
.pl-192 {
  padding-left: 192px;
}
.pt-196 {
  padding-top: 196px;
}
.pr-196 {
  padding-right: 196px;
}
.pb-196 {
  padding-bottom: 196px;
}
.pl-196 {
  padding-left: 196px;
}
.pt-200 {
  padding-top: 200px;
}
.pr-200 {
  padding-right: 200px;
}
.pb-200 {
  padding-bottom: 200px;
}
.pl-200 {
  padding-left: 200px;
}

@media screen and (min-width: 768px) {
  .pc\:pt-0 {
    padding-top: 0px;
  }
  .pc\:pr-0 {
    padding-right: 0px;
  }
  .pc\:pb-0 {
    padding-bottom: 0px;
  }
  .pc\:pl-0 {
    padding-left: 0px;
  }
  .pc\:pt-4 {
    padding-top: 4px;
  }
  .pc\:pr-4 {
    padding-right: 4px;
  }
  .pc\:pb-4 {
    padding-bottom: 4px;
  }
  .pc\:pl-4 {
    padding-left: 4px;
  }
  .pc\:pt-8 {
    padding-top: 8px;
  }
  .pc\:pr-8 {
    padding-right: 8px;
  }
  .pc\:pb-8 {
    padding-bottom: 8px;
  }
  .pc\:pl-8 {
    padding-left: 8px;
  }
  .pc\:pt-12 {
    padding-top: 12px;
  }
  .pc\:pr-12 {
    padding-right: 12px;
  }
  .pc\:pb-12 {
    padding-bottom: 12px;
  }
  .pc\:pl-12 {
    padding-left: 12px;
  }
  .pc\:pt-16 {
    padding-top: 16px;
  }
  .pc\:pr-16 {
    padding-right: 16px;
  }
  .pc\:pb-16 {
    padding-bottom: 16px;
  }
  .pc\:pl-16 {
    padding-left: 16px;
  }
  .pc\:pt-20 {
    padding-top: 20px;
  }
  .pc\:pr-20 {
    padding-right: 20px;
  }
  .pc\:pb-20 {
    padding-bottom: 20px;
  }
  .pc\:pl-20 {
    padding-left: 20px;
  }
  .pc\:pt-24 {
    padding-top: 24px;
  }
  .pc\:pr-24 {
    padding-right: 24px;
  }
  .pc\:pb-24 {
    padding-bottom: 24px;
  }
  .pc\:pl-24 {
    padding-left: 24px;
  }
  .pc\:pt-28 {
    padding-top: 28px;
  }
  .pc\:pr-28 {
    padding-right: 28px;
  }
  .pc\:pb-28 {
    padding-bottom: 28px;
  }
  .pc\:pl-28 {
    padding-left: 28px;
  }
  .pc\:pt-32 {
    padding-top: 32px;
  }
  .pc\:pr-32 {
    padding-right: 32px;
  }
  .pc\:pb-32 {
    padding-bottom: 32px;
  }
  .pc\:pl-32 {
    padding-left: 32px;
  }
  .pc\:pt-36 {
    padding-top: 36px;
  }
  .pc\:pr-36 {
    padding-right: 36px;
  }
  .pc\:pb-36 {
    padding-bottom: 36px;
  }
  .pc\:pl-36 {
    padding-left: 36px;
  }
  .pc\:pt-40 {
    padding-top: 40px;
  }
  .pc\:pr-40 {
    padding-right: 40px;
  }
  .pc\:pb-40 {
    padding-bottom: 40px;
  }
  .pc\:pl-40 {
    padding-left: 40px;
  }
  .pc\:pt-44 {
    padding-top: 44px;
  }
  .pc\:pr-44 {
    padding-right: 44px;
  }
  .pc\:pb-44 {
    padding-bottom: 44px;
  }
  .pc\:pl-44 {
    padding-left: 44px;
  }
  .pc\:pt-48 {
    padding-top: 48px;
  }
  .pc\:pr-48 {
    padding-right: 48px;
  }
  .pc\:pb-48 {
    padding-bottom: 48px;
  }
  .pc\:pl-48 {
    padding-left: 48px;
  }
  .pc\:pt-52 {
    padding-top: 52px;
  }
  .pc\:pr-52 {
    padding-right: 52px;
  }
  .pc\:pb-52 {
    padding-bottom: 52px;
  }
  .pc\:pl-52 {
    padding-left: 52px;
  }
  .pc\:pt-56 {
    padding-top: 56px;
  }
  .pc\:pr-56 {
    padding-right: 56px;
  }
  .pc\:pb-56 {
    padding-bottom: 56px;
  }
  .pc\:pl-56 {
    padding-left: 56px;
  }
  .pc\:pt-60 {
    padding-top: 60px;
  }
  .pc\:pr-60 {
    padding-right: 60px;
  }
  .pc\:pb-60 {
    padding-bottom: 60px;
  }
  .pc\:pl-60 {
    padding-left: 60px;
  }
  .pc\:pt-64 {
    padding-top: 64px;
  }
  .pc\:pr-64 {
    padding-right: 64px;
  }
  .pc\:pb-64 {
    padding-bottom: 64px;
  }
  .pc\:pl-64 {
    padding-left: 64px;
  }
  .pc\:pt-68 {
    padding-top: 68px;
  }
  .pc\:pr-68 {
    padding-right: 68px;
  }
  .pc\:pb-68 {
    padding-bottom: 68px;
  }
  .pc\:pl-68 {
    padding-left: 68px;
  }
  .pc\:pt-72 {
    padding-top: 72px;
  }
  .pc\:pr-72 {
    padding-right: 72px;
  }
  .pc\:pb-72 {
    padding-bottom: 72px;
  }
  .pc\:pl-72 {
    padding-left: 72px;
  }
  .pc\:pt-76 {
    padding-top: 76px;
  }
  .pc\:pr-76 {
    padding-right: 76px;
  }
  .pc\:pb-76 {
    padding-bottom: 76px;
  }
  .pc\:pl-76 {
    padding-left: 76px;
  }
  .pc\:pt-80 {
    padding-top: 80px;
  }
  .pc\:pr-80 {
    padding-right: 80px;
  }
  .pc\:pb-80 {
    padding-bottom: 80px;
  }
  .pc\:pl-80 {
    padding-left: 80px;
  }
  .pc\:pt-84 {
    padding-top: 84px;
  }
  .pc\:pr-84 {
    padding-right: 84px;
  }
  .pc\:pb-84 {
    padding-bottom: 84px;
  }
  .pc\:pl-84 {
    padding-left: 84px;
  }
  .pc\:pt-88 {
    padding-top: 88px;
  }
  .pc\:pr-88 {
    padding-right: 88px;
  }
  .pc\:pb-88 {
    padding-bottom: 88px;
  }
  .pc\:pl-88 {
    padding-left: 88px;
  }
  .pc\:pt-92 {
    padding-top: 92px;
  }
  .pc\:pr-92 {
    padding-right: 92px;
  }
  .pc\:pb-92 {
    padding-bottom: 92px;
  }
  .pc\:pl-92 {
    padding-left: 92px;
  }
  .pc\:pt-96 {
    padding-top: 96px;
  }
  .pc\:pr-96 {
    padding-right: 96px;
  }
  .pc\:pb-96 {
    padding-bottom: 96px;
  }
  .pc\:pl-96 {
    padding-left: 96px;
  }
  .pc\:pt-100 {
    padding-top: 100px;
  }
  .pc\:pr-100 {
    padding-right: 100px;
  }
  .pc\:pb-100 {
    padding-bottom: 100px;
  }
  .pc\:pl-100 {
    padding-left: 100px;
  }
  .pc\:pt-104 {
    padding-top: 104px;
  }
  .pc\:pr-104 {
    padding-right: 104px;
  }
  .pc\:pb-104 {
    padding-bottom: 104px;
  }
  .pc\:pl-104 {
    padding-left: 104px;
  }
  .pc\:pt-108 {
    padding-top: 108px;
  }
  .pc\:pr-108 {
    padding-right: 108px;
  }
  .pc\:pb-108 {
    padding-bottom: 108px;
  }
  .pc\:pl-108 {
    padding-left: 108px;
  }
  .pc\:pt-112 {
    padding-top: 112px;
  }
  .pc\:pr-112 {
    padding-right: 112px;
  }
  .pc\:pb-112 {
    padding-bottom: 112px;
  }
  .pc\:pl-112 {
    padding-left: 112px;
  }
  .pc\:pt-116 {
    padding-top: 116px;
  }
  .pc\:pr-116 {
    padding-right: 116px;
  }
  .pc\:pb-116 {
    padding-bottom: 116px;
  }
  .pc\:pl-116 {
    padding-left: 116px;
  }
  .pc\:pt-120 {
    padding-top: 120px;
  }
  .pc\:pr-120 {
    padding-right: 120px;
  }
  .pc\:pb-120 {
    padding-bottom: 120px;
  }
  .pc\:pl-120 {
    padding-left: 120px;
  }
  .pc\:pt-124 {
    padding-top: 124px;
  }
  .pc\:pr-124 {
    padding-right: 124px;
  }
  .pc\:pb-124 {
    padding-bottom: 124px;
  }
  .pc\:pl-124 {
    padding-left: 124px;
  }
  .pc\:pt-128 {
    padding-top: 128px;
  }
  .pc\:pr-128 {
    padding-right: 128px;
  }
  .pc\:pb-128 {
    padding-bottom: 128px;
  }
  .pc\:pl-128 {
    padding-left: 128px;
  }
  .pc\:pt-132 {
    padding-top: 132px;
  }
  .pc\:pr-132 {
    padding-right: 132px;
  }
  .pc\:pb-132 {
    padding-bottom: 132px;
  }
  .pc\:pl-132 {
    padding-left: 132px;
  }
  .pc\:pt-136 {
    padding-top: 136px;
  }
  .pc\:pr-136 {
    padding-right: 136px;
  }
  .pc\:pb-136 {
    padding-bottom: 136px;
  }
  .pc\:pl-136 {
    padding-left: 136px;
  }
  .pc\:pt-140 {
    padding-top: 140px;
  }
  .pc\:pr-140 {
    padding-right: 140px;
  }
  .pc\:pb-140 {
    padding-bottom: 140px;
  }
  .pc\:pl-140 {
    padding-left: 140px;
  }
  .pc\:pt-144 {
    padding-top: 144px;
  }
  .pc\:pr-144 {
    padding-right: 144px;
  }
  .pc\:pb-144 {
    padding-bottom: 144px;
  }
  .pc\:pl-144 {
    padding-left: 144px;
  }
  .pc\:pt-148 {
    padding-top: 148px;
  }
  .pc\:pr-148 {
    padding-right: 148px;
  }
  .pc\:pb-148 {
    padding-bottom: 148px;
  }
  .pc\:pl-148 {
    padding-left: 148px;
  }
  .pc\:pt-152 {
    padding-top: 152px;
  }
  .pc\:pr-152 {
    padding-right: 152px;
  }
  .pc\:pb-152 {
    padding-bottom: 152px;
  }
  .pc\:pl-152 {
    padding-left: 152px;
  }
  .pc\:pt-156 {
    padding-top: 156px;
  }
  .pc\:pr-156 {
    padding-right: 156px;
  }
  .pc\:pb-156 {
    padding-bottom: 156px;
  }
  .pc\:pl-156 {
    padding-left: 156px;
  }
  .pc\:pt-160 {
    padding-top: 160px;
  }
  .pc\:pr-160 {
    padding-right: 160px;
  }
  .pc\:pb-160 {
    padding-bottom: 160px;
  }
  .pc\:pl-160 {
    padding-left: 160px;
  }
  .pc\:pt-164 {
    padding-top: 164px;
  }
  .pc\:pr-164 {
    padding-right: 164px;
  }
  .pc\:pb-164 {
    padding-bottom: 164px;
  }
  .pc\:pl-164 {
    padding-left: 164px;
  }
  .pc\:pt-168 {
    padding-top: 168px;
  }
  .pc\:pr-168 {
    padding-right: 168px;
  }
  .pc\:pb-168 {
    padding-bottom: 168px;
  }
  .pc\:pl-168 {
    padding-left: 168px;
  }
  .pc\:pt-172 {
    padding-top: 172px;
  }
  .pc\:pr-172 {
    padding-right: 172px;
  }
  .pc\:pb-172 {
    padding-bottom: 172px;
  }
  .pc\:pl-172 {
    padding-left: 172px;
  }
  .pc\:pt-176 {
    padding-top: 176px;
  }
  .pc\:pr-176 {
    padding-right: 176px;
  }
  .pc\:pb-176 {
    padding-bottom: 176px;
  }
  .pc\:pl-176 {
    padding-left: 176px;
  }
  .pc\:pt-180 {
    padding-top: 180px;
  }
  .pc\:pr-180 {
    padding-right: 180px;
  }
  .pc\:pb-180 {
    padding-bottom: 180px;
  }
  .pc\:pl-180 {
    padding-left: 180px;
  }
  .pc\:pt-184 {
    padding-top: 184px;
  }
  .pc\:pr-184 {
    padding-right: 184px;
  }
  .pc\:pb-184 {
    padding-bottom: 184px;
  }
  .pc\:pl-184 {
    padding-left: 184px;
  }
  .pc\:pt-188 {
    padding-top: 188px;
  }
  .pc\:pr-188 {
    padding-right: 188px;
  }
  .pc\:pb-188 {
    padding-bottom: 188px;
  }
  .pc\:pl-188 {
    padding-left: 188px;
  }
  .pc\:pt-192 {
    padding-top: 192px;
  }
  .pc\:pr-192 {
    padding-right: 192px;
  }
  .pc\:pb-192 {
    padding-bottom: 192px;
  }
  .pc\:pl-192 {
    padding-left: 192px;
  }
  .pc\:pt-196 {
    padding-top: 196px;
  }
  .pc\:pr-196 {
    padding-right: 196px;
  }
  .pc\:pb-196 {
    padding-bottom: 196px;
  }
  .pc\:pl-196 {
    padding-left: 196px;
  }
  .pc\:pt-200 {
    padding-top: 200px;
  }
  .pc\:pr-200 {
    padding-right: 200px;
  }
  .pc\:pb-200 {
    padding-bottom: 200px;
  }
  .pc\:pl-200 {
    padding-left: 200px;
  }
}
@media screen and (max-width: 767px) {
  .md\:pt-0 {
    padding-top: 0px;
  }
  .md\:pr-0 {
    padding-right: 0px;
  }
  .md\:pb-0 {
    padding-bottom: 0px;
  }
  .md\:pl-0 {
    padding-left: 0px;
  }
  .md\:pt-4 {
    padding-top: 4px;
  }
  .md\:pr-4 {
    padding-right: 4px;
  }
  .md\:pb-4 {
    padding-bottom: 4px;
  }
  .md\:pl-4 {
    padding-left: 4px;
  }
  .md\:pt-8 {
    padding-top: 8px;
  }
  .md\:pr-8 {
    padding-right: 8px;
  }
  .md\:pb-8 {
    padding-bottom: 8px;
  }
  .md\:pl-8 {
    padding-left: 8px;
  }
  .md\:pt-12 {
    padding-top: 12px;
  }
  .md\:pr-12 {
    padding-right: 12px;
  }
  .md\:pb-12 {
    padding-bottom: 12px;
  }
  .md\:pl-12 {
    padding-left: 12px;
  }
  .md\:pt-16 {
    padding-top: 16px;
  }
  .md\:pr-16 {
    padding-right: 16px;
  }
  .md\:pb-16 {
    padding-bottom: 16px;
  }
  .md\:pl-16 {
    padding-left: 16px;
  }
  .md\:pt-20 {
    padding-top: 20px;
  }
  .md\:pr-20 {
    padding-right: 20px;
  }
  .md\:pb-20 {
    padding-bottom: 20px;
  }
  .md\:pl-20 {
    padding-left: 20px;
  }
  .md\:pt-24 {
    padding-top: 24px;
  }
  .md\:pr-24 {
    padding-right: 24px;
  }
  .md\:pb-24 {
    padding-bottom: 24px;
  }
  .md\:pl-24 {
    padding-left: 24px;
  }
  .md\:pt-28 {
    padding-top: 28px;
  }
  .md\:pr-28 {
    padding-right: 28px;
  }
  .md\:pb-28 {
    padding-bottom: 28px;
  }
  .md\:pl-28 {
    padding-left: 28px;
  }
  .md\:pt-32 {
    padding-top: 32px;
  }
  .md\:pr-32 {
    padding-right: 32px;
  }
  .md\:pb-32 {
    padding-bottom: 32px;
  }
  .md\:pl-32 {
    padding-left: 32px;
  }
  .md\:pt-36 {
    padding-top: 36px;
  }
  .md\:pr-36 {
    padding-right: 36px;
  }
  .md\:pb-36 {
    padding-bottom: 36px;
  }
  .md\:pl-36 {
    padding-left: 36px;
  }
  .md\:pt-40 {
    padding-top: 40px;
  }
  .md\:pr-40 {
    padding-right: 40px;
  }
  .md\:pb-40 {
    padding-bottom: 40px;
  }
  .md\:pl-40 {
    padding-left: 40px;
  }
  .md\:pt-44 {
    padding-top: 44px;
  }
  .md\:pr-44 {
    padding-right: 44px;
  }
  .md\:pb-44 {
    padding-bottom: 44px;
  }
  .md\:pl-44 {
    padding-left: 44px;
  }
  .md\:pt-48 {
    padding-top: 48px;
  }
  .md\:pr-48 {
    padding-right: 48px;
  }
  .md\:pb-48 {
    padding-bottom: 48px;
  }
  .md\:pl-48 {
    padding-left: 48px;
  }
  .md\:pt-52 {
    padding-top: 52px;
  }
  .md\:pr-52 {
    padding-right: 52px;
  }
  .md\:pb-52 {
    padding-bottom: 52px;
  }
  .md\:pl-52 {
    padding-left: 52px;
  }
  .md\:pt-56 {
    padding-top: 56px;
  }
  .md\:pr-56 {
    padding-right: 56px;
  }
  .md\:pb-56 {
    padding-bottom: 56px;
  }
  .md\:pl-56 {
    padding-left: 56px;
  }
  .md\:pt-60 {
    padding-top: 60px;
  }
  .md\:pr-60 {
    padding-right: 60px;
  }
  .md\:pb-60 {
    padding-bottom: 60px;
  }
  .md\:pl-60 {
    padding-left: 60px;
  }
  .md\:pt-64 {
    padding-top: 64px;
  }
  .md\:pr-64 {
    padding-right: 64px;
  }
  .md\:pb-64 {
    padding-bottom: 64px;
  }
  .md\:pl-64 {
    padding-left: 64px;
  }
  .md\:pt-68 {
    padding-top: 68px;
  }
  .md\:pr-68 {
    padding-right: 68px;
  }
  .md\:pb-68 {
    padding-bottom: 68px;
  }
  .md\:pl-68 {
    padding-left: 68px;
  }
  .md\:pt-72 {
    padding-top: 72px;
  }
  .md\:pr-72 {
    padding-right: 72px;
  }
  .md\:pb-72 {
    padding-bottom: 72px;
  }
  .md\:pl-72 {
    padding-left: 72px;
  }
  .md\:pt-76 {
    padding-top: 76px;
  }
  .md\:pr-76 {
    padding-right: 76px;
  }
  .md\:pb-76 {
    padding-bottom: 76px;
  }
  .md\:pl-76 {
    padding-left: 76px;
  }
  .md\:pt-80 {
    padding-top: 80px;
  }
  .md\:pr-80 {
    padding-right: 80px;
  }
  .md\:pb-80 {
    padding-bottom: 80px;
  }
  .md\:pl-80 {
    padding-left: 80px;
  }
  .md\:pt-84 {
    padding-top: 84px;
  }
  .md\:pr-84 {
    padding-right: 84px;
  }
  .md\:pb-84 {
    padding-bottom: 84px;
  }
  .md\:pl-84 {
    padding-left: 84px;
  }
  .md\:pt-88 {
    padding-top: 88px;
  }
  .md\:pr-88 {
    padding-right: 88px;
  }
  .md\:pb-88 {
    padding-bottom: 88px;
  }
  .md\:pl-88 {
    padding-left: 88px;
  }
  .md\:pt-92 {
    padding-top: 92px;
  }
  .md\:pr-92 {
    padding-right: 92px;
  }
  .md\:pb-92 {
    padding-bottom: 92px;
  }
  .md\:pl-92 {
    padding-left: 92px;
  }
  .md\:pt-96 {
    padding-top: 96px;
  }
  .md\:pr-96 {
    padding-right: 96px;
  }
  .md\:pb-96 {
    padding-bottom: 96px;
  }
  .md\:pl-96 {
    padding-left: 96px;
  }
  .md\:pt-100 {
    padding-top: 100px;
  }
  .md\:pr-100 {
    padding-right: 100px;
  }
  .md\:pb-100 {
    padding-bottom: 100px;
  }
  .md\:pl-100 {
    padding-left: 100px;
  }
  .md\:pt-104 {
    padding-top: 104px;
  }
  .md\:pr-104 {
    padding-right: 104px;
  }
  .md\:pb-104 {
    padding-bottom: 104px;
  }
  .md\:pl-104 {
    padding-left: 104px;
  }
  .md\:pt-108 {
    padding-top: 108px;
  }
  .md\:pr-108 {
    padding-right: 108px;
  }
  .md\:pb-108 {
    padding-bottom: 108px;
  }
  .md\:pl-108 {
    padding-left: 108px;
  }
  .md\:pt-112 {
    padding-top: 112px;
  }
  .md\:pr-112 {
    padding-right: 112px;
  }
  .md\:pb-112 {
    padding-bottom: 112px;
  }
  .md\:pl-112 {
    padding-left: 112px;
  }
  .md\:pt-116 {
    padding-top: 116px;
  }
  .md\:pr-116 {
    padding-right: 116px;
  }
  .md\:pb-116 {
    padding-bottom: 116px;
  }
  .md\:pl-116 {
    padding-left: 116px;
  }
  .md\:pt-120 {
    padding-top: 120px;
  }
  .md\:pr-120 {
    padding-right: 120px;
  }
  .md\:pb-120 {
    padding-bottom: 120px;
  }
  .md\:pl-120 {
    padding-left: 120px;
  }
  .md\:pt-124 {
    padding-top: 124px;
  }
  .md\:pr-124 {
    padding-right: 124px;
  }
  .md\:pb-124 {
    padding-bottom: 124px;
  }
  .md\:pl-124 {
    padding-left: 124px;
  }
  .md\:pt-128 {
    padding-top: 128px;
  }
  .md\:pr-128 {
    padding-right: 128px;
  }
  .md\:pb-128 {
    padding-bottom: 128px;
  }
  .md\:pl-128 {
    padding-left: 128px;
  }
  .md\:pt-132 {
    padding-top: 132px;
  }
  .md\:pr-132 {
    padding-right: 132px;
  }
  .md\:pb-132 {
    padding-bottom: 132px;
  }
  .md\:pl-132 {
    padding-left: 132px;
  }
  .md\:pt-136 {
    padding-top: 136px;
  }
  .md\:pr-136 {
    padding-right: 136px;
  }
  .md\:pb-136 {
    padding-bottom: 136px;
  }
  .md\:pl-136 {
    padding-left: 136px;
  }
  .md\:pt-140 {
    padding-top: 140px;
  }
  .md\:pr-140 {
    padding-right: 140px;
  }
  .md\:pb-140 {
    padding-bottom: 140px;
  }
  .md\:pl-140 {
    padding-left: 140px;
  }
  .md\:pt-144 {
    padding-top: 144px;
  }
  .md\:pr-144 {
    padding-right: 144px;
  }
  .md\:pb-144 {
    padding-bottom: 144px;
  }
  .md\:pl-144 {
    padding-left: 144px;
  }
  .md\:pt-148 {
    padding-top: 148px;
  }
  .md\:pr-148 {
    padding-right: 148px;
  }
  .md\:pb-148 {
    padding-bottom: 148px;
  }
  .md\:pl-148 {
    padding-left: 148px;
  }
  .md\:pt-152 {
    padding-top: 152px;
  }
  .md\:pr-152 {
    padding-right: 152px;
  }
  .md\:pb-152 {
    padding-bottom: 152px;
  }
  .md\:pl-152 {
    padding-left: 152px;
  }
  .md\:pt-156 {
    padding-top: 156px;
  }
  .md\:pr-156 {
    padding-right: 156px;
  }
  .md\:pb-156 {
    padding-bottom: 156px;
  }
  .md\:pl-156 {
    padding-left: 156px;
  }
  .md\:pt-160 {
    padding-top: 160px;
  }
  .md\:pr-160 {
    padding-right: 160px;
  }
  .md\:pb-160 {
    padding-bottom: 160px;
  }
  .md\:pl-160 {
    padding-left: 160px;
  }
  .md\:pt-164 {
    padding-top: 164px;
  }
  .md\:pr-164 {
    padding-right: 164px;
  }
  .md\:pb-164 {
    padding-bottom: 164px;
  }
  .md\:pl-164 {
    padding-left: 164px;
  }
  .md\:pt-168 {
    padding-top: 168px;
  }
  .md\:pr-168 {
    padding-right: 168px;
  }
  .md\:pb-168 {
    padding-bottom: 168px;
  }
  .md\:pl-168 {
    padding-left: 168px;
  }
  .md\:pt-172 {
    padding-top: 172px;
  }
  .md\:pr-172 {
    padding-right: 172px;
  }
  .md\:pb-172 {
    padding-bottom: 172px;
  }
  .md\:pl-172 {
    padding-left: 172px;
  }
  .md\:pt-176 {
    padding-top: 176px;
  }
  .md\:pr-176 {
    padding-right: 176px;
  }
  .md\:pb-176 {
    padding-bottom: 176px;
  }
  .md\:pl-176 {
    padding-left: 176px;
  }
  .md\:pt-180 {
    padding-top: 180px;
  }
  .md\:pr-180 {
    padding-right: 180px;
  }
  .md\:pb-180 {
    padding-bottom: 180px;
  }
  .md\:pl-180 {
    padding-left: 180px;
  }
  .md\:pt-184 {
    padding-top: 184px;
  }
  .md\:pr-184 {
    padding-right: 184px;
  }
  .md\:pb-184 {
    padding-bottom: 184px;
  }
  .md\:pl-184 {
    padding-left: 184px;
  }
  .md\:pt-188 {
    padding-top: 188px;
  }
  .md\:pr-188 {
    padding-right: 188px;
  }
  .md\:pb-188 {
    padding-bottom: 188px;
  }
  .md\:pl-188 {
    padding-left: 188px;
  }
  .md\:pt-192 {
    padding-top: 192px;
  }
  .md\:pr-192 {
    padding-right: 192px;
  }
  .md\:pb-192 {
    padding-bottom: 192px;
  }
  .md\:pl-192 {
    padding-left: 192px;
  }
  .md\:pt-196 {
    padding-top: 196px;
  }
  .md\:pr-196 {
    padding-right: 196px;
  }
  .md\:pb-196 {
    padding-bottom: 196px;
  }
  .md\:pl-196 {
    padding-left: 196px;
  }
  .md\:pt-200 {
    padding-top: 200px;
  }
  .md\:pr-200 {
    padding-right: 200px;
  }
  .md\:pb-200 {
    padding-bottom: 200px;
  }
  .md\:pl-200 {
    padding-left: 200px;
  }
}
@media screen and (max-width: 640px) {
  .sm\:pt-0 {
    padding-top: 0px;
  }
  .sm\:pr-0 {
    padding-right: 0px;
  }
  .sm\:pb-0 {
    padding-bottom: 0px;
  }
  .sm\:pl-0 {
    padding-left: 0px;
  }
  .sm\:pt-4 {
    padding-top: 4px;
  }
  .sm\:pr-4 {
    padding-right: 4px;
  }
  .sm\:pb-4 {
    padding-bottom: 4px;
  }
  .sm\:pl-4 {
    padding-left: 4px;
  }
  .sm\:pt-8 {
    padding-top: 8px;
  }
  .sm\:pr-8 {
    padding-right: 8px;
  }
  .sm\:pb-8 {
    padding-bottom: 8px;
  }
  .sm\:pl-8 {
    padding-left: 8px;
  }
  .sm\:pt-12 {
    padding-top: 12px;
  }
  .sm\:pr-12 {
    padding-right: 12px;
  }
  .sm\:pb-12 {
    padding-bottom: 12px;
  }
  .sm\:pl-12 {
    padding-left: 12px;
  }
  .sm\:pt-16 {
    padding-top: 16px;
  }
  .sm\:pr-16 {
    padding-right: 16px;
  }
  .sm\:pb-16 {
    padding-bottom: 16px;
  }
  .sm\:pl-16 {
    padding-left: 16px;
  }
  .sm\:pt-20 {
    padding-top: 20px;
  }
  .sm\:pr-20 {
    padding-right: 20px;
  }
  .sm\:pb-20 {
    padding-bottom: 20px;
  }
  .sm\:pl-20 {
    padding-left: 20px;
  }
  .sm\:pt-24 {
    padding-top: 24px;
  }
  .sm\:pr-24 {
    padding-right: 24px;
  }
  .sm\:pb-24 {
    padding-bottom: 24px;
  }
  .sm\:pl-24 {
    padding-left: 24px;
  }
  .sm\:pt-28 {
    padding-top: 28px;
  }
  .sm\:pr-28 {
    padding-right: 28px;
  }
  .sm\:pb-28 {
    padding-bottom: 28px;
  }
  .sm\:pl-28 {
    padding-left: 28px;
  }
  .sm\:pt-32 {
    padding-top: 32px;
  }
  .sm\:pr-32 {
    padding-right: 32px;
  }
  .sm\:pb-32 {
    padding-bottom: 32px;
  }
  .sm\:pl-32 {
    padding-left: 32px;
  }
  .sm\:pt-36 {
    padding-top: 36px;
  }
  .sm\:pr-36 {
    padding-right: 36px;
  }
  .sm\:pb-36 {
    padding-bottom: 36px;
  }
  .sm\:pl-36 {
    padding-left: 36px;
  }
  .sm\:pt-40 {
    padding-top: 40px;
  }
  .sm\:pr-40 {
    padding-right: 40px;
  }
  .sm\:pb-40 {
    padding-bottom: 40px;
  }
  .sm\:pl-40 {
    padding-left: 40px;
  }
  .sm\:pt-44 {
    padding-top: 44px;
  }
  .sm\:pr-44 {
    padding-right: 44px;
  }
  .sm\:pb-44 {
    padding-bottom: 44px;
  }
  .sm\:pl-44 {
    padding-left: 44px;
  }
  .sm\:pt-48 {
    padding-top: 48px;
  }
  .sm\:pr-48 {
    padding-right: 48px;
  }
  .sm\:pb-48 {
    padding-bottom: 48px;
  }
  .sm\:pl-48 {
    padding-left: 48px;
  }
  .sm\:pt-52 {
    padding-top: 52px;
  }
  .sm\:pr-52 {
    padding-right: 52px;
  }
  .sm\:pb-52 {
    padding-bottom: 52px;
  }
  .sm\:pl-52 {
    padding-left: 52px;
  }
  .sm\:pt-56 {
    padding-top: 56px;
  }
  .sm\:pr-56 {
    padding-right: 56px;
  }
  .sm\:pb-56 {
    padding-bottom: 56px;
  }
  .sm\:pl-56 {
    padding-left: 56px;
  }
  .sm\:pt-60 {
    padding-top: 60px;
  }
  .sm\:pr-60 {
    padding-right: 60px;
  }
  .sm\:pb-60 {
    padding-bottom: 60px;
  }
  .sm\:pl-60 {
    padding-left: 60px;
  }
  .sm\:pt-64 {
    padding-top: 64px;
  }
  .sm\:pr-64 {
    padding-right: 64px;
  }
  .sm\:pb-64 {
    padding-bottom: 64px;
  }
  .sm\:pl-64 {
    padding-left: 64px;
  }
  .sm\:pt-68 {
    padding-top: 68px;
  }
  .sm\:pr-68 {
    padding-right: 68px;
  }
  .sm\:pb-68 {
    padding-bottom: 68px;
  }
  .sm\:pl-68 {
    padding-left: 68px;
  }
  .sm\:pt-72 {
    padding-top: 72px;
  }
  .sm\:pr-72 {
    padding-right: 72px;
  }
  .sm\:pb-72 {
    padding-bottom: 72px;
  }
  .sm\:pl-72 {
    padding-left: 72px;
  }
  .sm\:pt-76 {
    padding-top: 76px;
  }
  .sm\:pr-76 {
    padding-right: 76px;
  }
  .sm\:pb-76 {
    padding-bottom: 76px;
  }
  .sm\:pl-76 {
    padding-left: 76px;
  }
  .sm\:pt-80 {
    padding-top: 80px;
  }
  .sm\:pr-80 {
    padding-right: 80px;
  }
  .sm\:pb-80 {
    padding-bottom: 80px;
  }
  .sm\:pl-80 {
    padding-left: 80px;
  }
  .sm\:pt-84 {
    padding-top: 84px;
  }
  .sm\:pr-84 {
    padding-right: 84px;
  }
  .sm\:pb-84 {
    padding-bottom: 84px;
  }
  .sm\:pl-84 {
    padding-left: 84px;
  }
  .sm\:pt-88 {
    padding-top: 88px;
  }
  .sm\:pr-88 {
    padding-right: 88px;
  }
  .sm\:pb-88 {
    padding-bottom: 88px;
  }
  .sm\:pl-88 {
    padding-left: 88px;
  }
  .sm\:pt-92 {
    padding-top: 92px;
  }
  .sm\:pr-92 {
    padding-right: 92px;
  }
  .sm\:pb-92 {
    padding-bottom: 92px;
  }
  .sm\:pl-92 {
    padding-left: 92px;
  }
  .sm\:pt-96 {
    padding-top: 96px;
  }
  .sm\:pr-96 {
    padding-right: 96px;
  }
  .sm\:pb-96 {
    padding-bottom: 96px;
  }
  .sm\:pl-96 {
    padding-left: 96px;
  }
  .sm\:pt-100 {
    padding-top: 100px;
  }
  .sm\:pr-100 {
    padding-right: 100px;
  }
  .sm\:pb-100 {
    padding-bottom: 100px;
  }
  .sm\:pl-100 {
    padding-left: 100px;
  }
  .sm\:pt-104 {
    padding-top: 104px;
  }
  .sm\:pr-104 {
    padding-right: 104px;
  }
  .sm\:pb-104 {
    padding-bottom: 104px;
  }
  .sm\:pl-104 {
    padding-left: 104px;
  }
  .sm\:pt-108 {
    padding-top: 108px;
  }
  .sm\:pr-108 {
    padding-right: 108px;
  }
  .sm\:pb-108 {
    padding-bottom: 108px;
  }
  .sm\:pl-108 {
    padding-left: 108px;
  }
  .sm\:pt-112 {
    padding-top: 112px;
  }
  .sm\:pr-112 {
    padding-right: 112px;
  }
  .sm\:pb-112 {
    padding-bottom: 112px;
  }
  .sm\:pl-112 {
    padding-left: 112px;
  }
  .sm\:pt-116 {
    padding-top: 116px;
  }
  .sm\:pr-116 {
    padding-right: 116px;
  }
  .sm\:pb-116 {
    padding-bottom: 116px;
  }
  .sm\:pl-116 {
    padding-left: 116px;
  }
  .sm\:pt-120 {
    padding-top: 120px;
  }
  .sm\:pr-120 {
    padding-right: 120px;
  }
  .sm\:pb-120 {
    padding-bottom: 120px;
  }
  .sm\:pl-120 {
    padding-left: 120px;
  }
  .sm\:pt-124 {
    padding-top: 124px;
  }
  .sm\:pr-124 {
    padding-right: 124px;
  }
  .sm\:pb-124 {
    padding-bottom: 124px;
  }
  .sm\:pl-124 {
    padding-left: 124px;
  }
  .sm\:pt-128 {
    padding-top: 128px;
  }
  .sm\:pr-128 {
    padding-right: 128px;
  }
  .sm\:pb-128 {
    padding-bottom: 128px;
  }
  .sm\:pl-128 {
    padding-left: 128px;
  }
  .sm\:pt-132 {
    padding-top: 132px;
  }
  .sm\:pr-132 {
    padding-right: 132px;
  }
  .sm\:pb-132 {
    padding-bottom: 132px;
  }
  .sm\:pl-132 {
    padding-left: 132px;
  }
  .sm\:pt-136 {
    padding-top: 136px;
  }
  .sm\:pr-136 {
    padding-right: 136px;
  }
  .sm\:pb-136 {
    padding-bottom: 136px;
  }
  .sm\:pl-136 {
    padding-left: 136px;
  }
  .sm\:pt-140 {
    padding-top: 140px;
  }
  .sm\:pr-140 {
    padding-right: 140px;
  }
  .sm\:pb-140 {
    padding-bottom: 140px;
  }
  .sm\:pl-140 {
    padding-left: 140px;
  }
  .sm\:pt-144 {
    padding-top: 144px;
  }
  .sm\:pr-144 {
    padding-right: 144px;
  }
  .sm\:pb-144 {
    padding-bottom: 144px;
  }
  .sm\:pl-144 {
    padding-left: 144px;
  }
  .sm\:pt-148 {
    padding-top: 148px;
  }
  .sm\:pr-148 {
    padding-right: 148px;
  }
  .sm\:pb-148 {
    padding-bottom: 148px;
  }
  .sm\:pl-148 {
    padding-left: 148px;
  }
  .sm\:pt-152 {
    padding-top: 152px;
  }
  .sm\:pr-152 {
    padding-right: 152px;
  }
  .sm\:pb-152 {
    padding-bottom: 152px;
  }
  .sm\:pl-152 {
    padding-left: 152px;
  }
  .sm\:pt-156 {
    padding-top: 156px;
  }
  .sm\:pr-156 {
    padding-right: 156px;
  }
  .sm\:pb-156 {
    padding-bottom: 156px;
  }
  .sm\:pl-156 {
    padding-left: 156px;
  }
  .sm\:pt-160 {
    padding-top: 160px;
  }
  .sm\:pr-160 {
    padding-right: 160px;
  }
  .sm\:pb-160 {
    padding-bottom: 160px;
  }
  .sm\:pl-160 {
    padding-left: 160px;
  }
  .sm\:pt-164 {
    padding-top: 164px;
  }
  .sm\:pr-164 {
    padding-right: 164px;
  }
  .sm\:pb-164 {
    padding-bottom: 164px;
  }
  .sm\:pl-164 {
    padding-left: 164px;
  }
  .sm\:pt-168 {
    padding-top: 168px;
  }
  .sm\:pr-168 {
    padding-right: 168px;
  }
  .sm\:pb-168 {
    padding-bottom: 168px;
  }
  .sm\:pl-168 {
    padding-left: 168px;
  }
  .sm\:pt-172 {
    padding-top: 172px;
  }
  .sm\:pr-172 {
    padding-right: 172px;
  }
  .sm\:pb-172 {
    padding-bottom: 172px;
  }
  .sm\:pl-172 {
    padding-left: 172px;
  }
  .sm\:pt-176 {
    padding-top: 176px;
  }
  .sm\:pr-176 {
    padding-right: 176px;
  }
  .sm\:pb-176 {
    padding-bottom: 176px;
  }
  .sm\:pl-176 {
    padding-left: 176px;
  }
  .sm\:pt-180 {
    padding-top: 180px;
  }
  .sm\:pr-180 {
    padding-right: 180px;
  }
  .sm\:pb-180 {
    padding-bottom: 180px;
  }
  .sm\:pl-180 {
    padding-left: 180px;
  }
  .sm\:pt-184 {
    padding-top: 184px;
  }
  .sm\:pr-184 {
    padding-right: 184px;
  }
  .sm\:pb-184 {
    padding-bottom: 184px;
  }
  .sm\:pl-184 {
    padding-left: 184px;
  }
  .sm\:pt-188 {
    padding-top: 188px;
  }
  .sm\:pr-188 {
    padding-right: 188px;
  }
  .sm\:pb-188 {
    padding-bottom: 188px;
  }
  .sm\:pl-188 {
    padding-left: 188px;
  }
  .sm\:pt-192 {
    padding-top: 192px;
  }
  .sm\:pr-192 {
    padding-right: 192px;
  }
  .sm\:pb-192 {
    padding-bottom: 192px;
  }
  .sm\:pl-192 {
    padding-left: 192px;
  }
  .sm\:pt-196 {
    padding-top: 196px;
  }
  .sm\:pr-196 {
    padding-right: 196px;
  }
  .sm\:pb-196 {
    padding-bottom: 196px;
  }
  .sm\:pl-196 {
    padding-left: 196px;
  }
  .sm\:pt-200 {
    padding-top: 200px;
  }
  .sm\:pr-200 {
    padding-right: 200px;
  }
  .sm\:pb-200 {
    padding-bottom: 200px;
  }
  .sm\:pl-200 {
    padding-left: 200px;
  }
}
.weight-n {
  font-weight: normal;
}
.weight-b {
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .pc\:weight-n {
    font-weight: normal;
  }
  .pc\:weight-b {
    font-weight: bold;
  }
}
@media screen and (max-width: 767px) {
  .md\:weight-n {
    font-weight: normal;
  }
  .md\:weight-b {
    font-weight: bold;
  }
}
@media screen and (max-width: 640px) {
  .sm\:weight-n {
    font-weight: normal;
  }
  .sm\:weight-b {
    font-weight: bold;
  }
}
.whitespace-nowrap {
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .pc\:whitespace-nowrap {
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .md\:whitespace-nowrap {
    white-space: nowrap;
  }
}
@media screen and (max-width: 640px) {
  .sm\:whitespace-nowrap {
    white-space: nowrap;
  }
}
.w-auto {
  width: auto !important;
}
.w-full {
  width: 100% !important;
}
.w-0 {
  width: 0rem !important;
}
.w-5 {
  width: 0.3125rem !important;
}
.w-10 {
  width: 0.625rem !important;
}
.w-15 {
  width: 0.9375rem !important;
}
.w-20 {
  width: 1.25rem !important;
}
.w-25 {
  width: 1.5625rem !important;
}
.w-30 {
  width: 1.875rem !important;
}
.w-35 {
  width: 2.1875rem !important;
}
.w-40 {
  width: 2.5rem !important;
}
.w-45 {
  width: 2.8125rem !important;
}
.w-50 {
  width: 3.125rem !important;
}
.w-55 {
  width: 3.4375rem !important;
}
.w-60 {
  width: 3.75rem !important;
}
.w-65 {
  width: 4.0625rem !important;
}
.w-70 {
  width: 4.375rem !important;
}
.w-75 {
  width: 4.6875rem !important;
}
.w-80 {
  width: 5rem !important;
}
.w-85 {
  width: 5.3125rem !important;
}
.w-90 {
  width: 5.625rem !important;
}
.w-95 {
  width: 5.9375rem !important;
}
.w-100 {
  width: 6.25rem !important;
}
.w-105 {
  width: 6.5625rem !important;
}
.w-110 {
  width: 6.875rem !important;
}
.w-115 {
  width: 7.1875rem !important;
}
.w-120 {
  width: 7.5rem !important;
}
.w-125 {
  width: 7.8125rem !important;
}
.w-130 {
  width: 8.125rem !important;
}
.w-135 {
  width: 8.4375rem !important;
}
.w-140 {
  width: 8.75rem !important;
}
.w-145 {
  width: 9.0625rem !important;
}
.w-150 {
  width: 9.375rem !important;
}
.w-155 {
  width: 9.6875rem !important;
}
.w-160 {
  width: 10rem !important;
}
.w-165 {
  width: 10.3125rem !important;
}
.w-170 {
  width: 10.625rem !important;
}
.w-175 {
  width: 10.9375rem !important;
}
.w-180 {
  width: 11.25rem !important;
}
.w-185 {
  width: 11.5625rem !important;
}
.w-190 {
  width: 11.875rem !important;
}
.w-195 {
  width: 12.1875rem !important;
}
.w-200 {
  width: 12.5rem !important;
}
.w-205 {
  width: 12.8125rem !important;
}
.w-210 {
  width: 13.125rem !important;
}
.w-215 {
  width: 13.4375rem !important;
}
.w-220 {
  width: 13.75rem !important;
}
.w-225 {
  width: 14.0625rem !important;
}
.w-230 {
  width: 14.375rem !important;
}
.w-235 {
  width: 14.6875rem !important;
}
.w-240 {
  width: 15rem !important;
}
.w-245 {
  width: 15.3125rem !important;
}
.w-250 {
  width: 15.625rem !important;
}
.w-255 {
  width: 15.9375rem !important;
}
.w-260 {
  width: 16.25rem !important;
}
.w-265 {
  width: 16.5625rem !important;
}
.w-270 {
  width: 16.875rem !important;
}
.w-275 {
  width: 17.1875rem !important;
}
.w-280 {
  width: 17.5rem !important;
}
.w-285 {
  width: 17.8125rem !important;
}
.w-290 {
  width: 18.125rem !important;
}
.w-295 {
  width: 18.4375rem !important;
}
.w-300 {
  width: 18.75rem !important;
}
.w-305 {
  width: 19.0625rem !important;
}
.w-310 {
  width: 19.375rem !important;
}
.w-315 {
  width: 19.6875rem !important;
}
.w-320 {
  width: 20rem !important;
}
.w-325 {
  width: 20.3125rem !important;
}
.w-330 {
  width: 20.625rem !important;
}
.w-335 {
  width: 20.9375rem !important;
}
.w-340 {
  width: 21.25rem !important;
}
.w-345 {
  width: 21.5625rem !important;
}
.w-350 {
  width: 21.875rem !important;
}
.w-355 {
  width: 22.1875rem !important;
}
.w-360 {
  width: 22.5rem !important;
}
.w-365 {
  width: 22.8125rem !important;
}
.w-370 {
  width: 23.125rem !important;
}
.w-375 {
  width: 23.4375rem !important;
}
.w-380 {
  width: 23.75rem !important;
}
.w-385 {
  width: 24.0625rem !important;
}
.w-390 {
  width: 24.375rem !important;
}
.w-395 {
  width: 24.6875rem !important;
}
.w-400 {
  width: 25rem !important;
}
.w-405 {
  width: 25.3125rem !important;
}
.w-410 {
  width: 25.625rem !important;
}
.w-415 {
  width: 25.9375rem !important;
}
.w-420 {
  width: 26.25rem !important;
}
.w-425 {
  width: 26.5625rem !important;
}
.w-430 {
  width: 26.875rem !important;
}
.w-435 {
  width: 27.1875rem !important;
}
.w-440 {
  width: 27.5rem !important;
}
.w-445 {
  width: 27.8125rem !important;
}
.w-450 {
  width: 28.125rem !important;
}
.w-455 {
  width: 28.4375rem !important;
}
.w-460 {
  width: 28.75rem !important;
}
.w-465 {
  width: 29.0625rem !important;
}
.w-470 {
  width: 29.375rem !important;
}
.w-475 {
  width: 29.6875rem !important;
}
.w-480 {
  width: 30rem !important;
}
.w-485 {
  width: 30.3125rem !important;
}
.w-490 {
  width: 30.625rem !important;
}
.w-495 {
  width: 30.9375rem !important;
}
.w-500 {
  width: 31.25rem !important;
}
.w-505 {
  width: 31.5625rem !important;
}
.w-510 {
  width: 31.875rem !important;
}
.w-515 {
  width: 32.1875rem !important;
}
.w-520 {
  width: 32.5rem !important;
}
.w-525 {
  width: 32.8125rem !important;
}
.w-530 {
  width: 33.125rem !important;
}
.w-535 {
  width: 33.4375rem !important;
}
.w-540 {
  width: 33.75rem !important;
}
.w-545 {
  width: 34.0625rem !important;
}
.w-550 {
  width: 34.375rem !important;
}
.w-555 {
  width: 34.6875rem !important;
}
.w-560 {
  width: 35rem !important;
}
.w-565 {
  width: 35.3125rem !important;
}
.w-570 {
  width: 35.625rem !important;
}
.w-575 {
  width: 35.9375rem !important;
}
.w-580 {
  width: 36.25rem !important;
}
.w-585 {
  width: 36.5625rem !important;
}
.w-590 {
  width: 36.875rem !important;
}
.w-595 {
  width: 37.1875rem !important;
}
.w-600 {
  width: 37.5rem !important;
}
.w-605 {
  width: 37.8125rem !important;
}
.w-610 {
  width: 38.125rem !important;
}
.w-615 {
  width: 38.4375rem !important;
}
.w-620 {
  width: 38.75rem !important;
}
.w-625 {
  width: 39.0625rem !important;
}
.w-630 {
  width: 39.375rem !important;
}
.w-635 {
  width: 39.6875rem !important;
}
.w-640 {
  width: 40rem !important;
}
.w-645 {
  width: 40.3125rem !important;
}
.w-650 {
  width: 40.625rem !important;
}
.w-655 {
  width: 40.9375rem !important;
}
.w-660 {
  width: 41.25rem !important;
}
.w-665 {
  width: 41.5625rem !important;
}
.w-670 {
  width: 41.875rem !important;
}
.w-675 {
  width: 42.1875rem !important;
}
.w-680 {
  width: 42.5rem !important;
}
.w-685 {
  width: 42.8125rem !important;
}
.w-690 {
  width: 43.125rem !important;
}
.w-695 {
  width: 43.4375rem !important;
}
.w-700 {
  width: 43.75rem !important;
}
.w-705 {
  width: 44.0625rem !important;
}
.w-710 {
  width: 44.375rem !important;
}
.w-715 {
  width: 44.6875rem !important;
}
.w-720 {
  width: 45rem !important;
}
.w-725 {
  width: 45.3125rem !important;
}
.w-730 {
  width: 45.625rem !important;
}
.w-735 {
  width: 45.9375rem !important;
}
.w-740 {
  width: 46.25rem !important;
}
.w-745 {
  width: 46.5625rem !important;
}
.w-750 {
  width: 46.875rem !important;
}
.w-755 {
  width: 47.1875rem !important;
}
.w-760 {
  width: 47.5rem !important;
}
.w-765 {
  width: 47.8125rem !important;
}
.w-770 {
  width: 48.125rem !important;
}
.w-775 {
  width: 48.4375rem !important;
}
.w-780 {
  width: 48.75rem !important;
}
.w-785 {
  width: 49.0625rem !important;
}
.w-790 {
  width: 49.375rem !important;
}
.w-795 {
  width: 49.6875rem !important;
}
.w-800 {
  width: 50rem !important;
}
.w-805 {
  width: 50.3125rem !important;
}
.w-810 {
  width: 50.625rem !important;
}
.w-815 {
  width: 50.9375rem !important;
}
.w-820 {
  width: 51.25rem !important;
}
.w-825 {
  width: 51.5625rem !important;
}
.w-830 {
  width: 51.875rem !important;
}
.w-835 {
  width: 52.1875rem !important;
}
.w-840 {
  width: 52.5rem !important;
}
.w-845 {
  width: 52.8125rem !important;
}
.w-850 {
  width: 53.125rem !important;
}
.w-855 {
  width: 53.4375rem !important;
}
.w-860 {
  width: 53.75rem !important;
}
.w-865 {
  width: 54.0625rem !important;
}
.w-870 {
  width: 54.375rem !important;
}
.w-875 {
  width: 54.6875rem !important;
}
.w-880 {
  width: 55rem !important;
}
.w-885 {
  width: 55.3125rem !important;
}
.w-890 {
  width: 55.625rem !important;
}
.w-895 {
  width: 55.9375rem !important;
}
.w-900 {
  width: 56.25rem !important;
}
.w-905 {
  width: 56.5625rem !important;
}
.w-910 {
  width: 56.875rem !important;
}
.w-915 {
  width: 57.1875rem !important;
}
.w-920 {
  width: 57.5rem !important;
}
.w-925 {
  width: 57.8125rem !important;
}
.w-930 {
  width: 58.125rem !important;
}
.w-935 {
  width: 58.4375rem !important;
}
.w-940 {
  width: 58.75rem !important;
}
.w-945 {
  width: 59.0625rem !important;
}
.w-950 {
  width: 59.375rem !important;
}
.w-955 {
  width: 59.6875rem !important;
}
.w-960 {
  width: 60rem !important;
}
.w-965 {
  width: 60.3125rem !important;
}
.w-970 {
  width: 60.625rem !important;
}
.w-975 {
  width: 60.9375rem !important;
}
.w-980 {
  width: 61.25rem !important;
}
.w-985 {
  width: 61.5625rem !important;
}
.w-990 {
  width: 61.875rem !important;
}
.w-995 {
  width: 62.1875rem !important;
}
.w-1000 {
  width: 62.5rem !important;
}
.w-1005 {
  width: 62.8125rem !important;
}
.w-1010 {
  width: 63.125rem !important;
}
.w-1015 {
  width: 63.4375rem !important;
}
.w-1020 {
  width: 63.75rem !important;
}
.w-1025 {
  width: 64.0625rem !important;
}
.w-1030 {
  width: 64.375rem !important;
}
.w-1035 {
  width: 64.6875rem !important;
}
.w-1040 {
  width: 65rem !important;
}
.w-1045 {
  width: 65.3125rem !important;
}
.w-1050 {
  width: 65.625rem !important;
}
.w-1055 {
  width: 65.9375rem !important;
}
.w-1060 {
  width: 66.25rem !important;
}
.w-1065 {
  width: 66.5625rem !important;
}
.w-1070 {
  width: 66.875rem !important;
}
.w-1075 {
  width: 67.1875rem !important;
}
.w-1080 {
  width: 67.5rem !important;
}
.w-1085 {
  width: 67.8125rem !important;
}
.w-1090 {
  width: 68.125rem !important;
}
.w-1095 {
  width: 68.4375rem !important;
}
.w-1100 {
  width: 68.75rem !important;
}
.w-1105 {
  width: 69.0625rem !important;
}
.w-1110 {
  width: 69.375rem !important;
}
.w-1115 {
  width: 69.6875rem !important;
}
.w-1120 {
  width: 70rem !important;
}
.w-1125 {
  width: 70.3125rem !important;
}
.w-1130 {
  width: 70.625rem !important;
}
.w-1135 {
  width: 70.9375rem !important;
}
.w-1140 {
  width: 71.25rem !important;
}
.w-1145 {
  width: 71.5625rem !important;
}
.w-1150 {
  width: 71.875rem !important;
}
.w-1155 {
  width: 72.1875rem !important;
}
.w-1160 {
  width: 72.5rem !important;
}
.w-1165 {
  width: 72.8125rem !important;
}
.w-1170 {
  width: 73.125rem !important;
}
.w-1175 {
  width: 73.4375rem !important;
}
.w-1180 {
  width: 73.75rem !important;
}
.w-1185 {
  width: 74.0625rem !important;
}
.w-1190 {
  width: 74.375rem !important;
}
.w-1195 {
  width: 74.6875rem !important;
}
.w-1200 {
  width: 75rem !important;
}
.w-1205 {
  width: 75.3125rem !important;
}
.w-1210 {
  width: 75.625rem !important;
}
.w-1215 {
  width: 75.9375rem !important;
}
.w-1220 {
  width: 76.25rem !important;
}
.w-1225 {
  width: 76.5625rem !important;
}
.w-1230 {
  width: 76.875rem !important;
}
.w-1235 {
  width: 77.1875rem !important;
}
.w-1240 {
  width: 77.5rem !important;
}
.w-1245 {
  width: 77.8125rem !important;
}
.w-1250 {
  width: 78.125rem !important;
}
.w-1255 {
  width: 78.4375rem !important;
}
.w-1260 {
  width: 78.75rem !important;
}
.w-1265 {
  width: 79.0625rem !important;
}
.w-1270 {
  width: 79.375rem !important;
}
.w-1275 {
  width: 79.6875rem !important;
}
.w-1280 {
  width: 80rem !important;
}
.w-1285 {
  width: 80.3125rem !important;
}
.w-1290 {
  width: 80.625rem !important;
}
.w-1295 {
  width: 80.9375rem !important;
}
.w-1300 {
  width: 81.25rem !important;
}
.w-1305 {
  width: 81.5625rem !important;
}
.w-1310 {
  width: 81.875rem !important;
}
.w-1315 {
  width: 82.1875rem !important;
}
.w-1320 {
  width: 82.5rem !important;
}
.w-1325 {
  width: 82.8125rem !important;
}
.w-1330 {
  width: 83.125rem !important;
}
.w-1335 {
  width: 83.4375rem !important;
}
.w-1340 {
  width: 83.75rem !important;
}
.w-1345 {
  width: 84.0625rem !important;
}
.w-1350 {
  width: 84.375rem !important;
}
.w-1355 {
  width: 84.6875rem !important;
}
.w-1360 {
  width: 85rem !important;
}
.w-1365 {
  width: 85.3125rem !important;
}
.w-1370 {
  width: 85.625rem !important;
}
.w-1375 {
  width: 85.9375rem !important;
}
.w-1380 {
  width: 86.25rem !important;
}
.w-1385 {
  width: 86.5625rem !important;
}
.w-1390 {
  width: 86.875rem !important;
}
.w-1395 {
  width: 87.1875rem !important;
}
.w-1400 {
  width: 87.5rem !important;
}
.w-1405 {
  width: 87.8125rem !important;
}
.w-1410 {
  width: 88.125rem !important;
}
.w-1415 {
  width: 88.4375rem !important;
}
.w-1420 {
  width: 88.75rem !important;
}
.w-1425 {
  width: 89.0625rem !important;
}
.w-1430 {
  width: 89.375rem !important;
}
.w-1435 {
  width: 89.6875rem !important;
}
.w-1440 {
  width: 90rem !important;
}
.w-1445 {
  width: 90.3125rem !important;
}
.w-1450 {
  width: 90.625rem !important;
}
.w-1455 {
  width: 90.9375rem !important;
}
.w-1460 {
  width: 91.25rem !important;
}
.w-1465 {
  width: 91.5625rem !important;
}
.w-1470 {
  width: 91.875rem !important;
}
.w-1475 {
  width: 92.1875rem !important;
}
.w-1480 {
  width: 92.5rem !important;
}
.w-1485 {
  width: 92.8125rem !important;
}
.w-1490 {
  width: 93.125rem !important;
}
.w-1495 {
  width: 93.4375rem !important;
}
.w-1500 {
  width: 93.75rem !important;
}
.w-0per {
  width: 0% !important;
}
.w-1per {
  width: 1% !important;
}
.w-2per {
  width: 2% !important;
}
.w-3per {
  width: 3% !important;
}
.w-4per {
  width: 4% !important;
}
.w-5per {
  width: 5% !important;
}
.w-6per {
  width: 6% !important;
}
.w-7per {
  width: 7% !important;
}
.w-8per {
  width: 8% !important;
}
.w-9per {
  width: 9% !important;
}
.w-10per {
  width: 10% !important;
}
.w-11per {
  width: 11% !important;
}
.w-12per {
  width: 12% !important;
}
.w-13per {
  width: 13% !important;
}
.w-14per {
  width: 14% !important;
}
.w-15per {
  width: 15% !important;
}
.w-16per {
  width: 16% !important;
}
.w-17per {
  width: 17% !important;
}
.w-18per {
  width: 18% !important;
}
.w-19per {
  width: 19% !important;
}
.w-20per {
  width: 20% !important;
}
.w-21per {
  width: 21% !important;
}
.w-22per {
  width: 22% !important;
}
.w-23per {
  width: 23% !important;
}
.w-24per {
  width: 24% !important;
}
.w-25per {
  width: 25% !important;
}
.w-26per {
  width: 26% !important;
}
.w-27per {
  width: 27% !important;
}
.w-28per {
  width: 28% !important;
}
.w-29per {
  width: 29% !important;
}
.w-30per {
  width: 30% !important;
}
.w-31per {
  width: 31% !important;
}
.w-32per {
  width: 32% !important;
}
.w-33per {
  width: 33% !important;
}
.w-34per {
  width: 34% !important;
}
.w-35per {
  width: 35% !important;
}
.w-36per {
  width: 36% !important;
}
.w-37per {
  width: 37% !important;
}
.w-38per {
  width: 38% !important;
}
.w-39per {
  width: 39% !important;
}
.w-40per {
  width: 40% !important;
}
.w-41per {
  width: 41% !important;
}
.w-42per {
  width: 42% !important;
}
.w-43per {
  width: 43% !important;
}
.w-44per {
  width: 44% !important;
}
.w-45per {
  width: 45% !important;
}
.w-46per {
  width: 46% !important;
}
.w-47per {
  width: 47% !important;
}
.w-48per {
  width: 48% !important;
}
.w-49per {
  width: 49% !important;
}
.w-50per {
  width: 50% !important;
}
.w-51per {
  width: 51% !important;
}
.w-52per {
  width: 52% !important;
}
.w-53per {
  width: 53% !important;
}
.w-54per {
  width: 54% !important;
}
.w-55per {
  width: 55% !important;
}
.w-56per {
  width: 56% !important;
}
.w-57per {
  width: 57% !important;
}
.w-58per {
  width: 58% !important;
}
.w-59per {
  width: 59% !important;
}
.w-60per {
  width: 60% !important;
}
.w-61per {
  width: 61% !important;
}
.w-62per {
  width: 62% !important;
}
.w-63per {
  width: 63% !important;
}
.w-64per {
  width: 64% !important;
}
.w-65per {
  width: 65% !important;
}
.w-66per {
  width: 66% !important;
}
.w-67per {
  width: 67% !important;
}
.w-68per {
  width: 68% !important;
}
.w-69per {
  width: 69% !important;
}
.w-70per {
  width: 70% !important;
}
.w-71per {
  width: 71% !important;
}
.w-72per {
  width: 72% !important;
}
.w-73per {
  width: 73% !important;
}
.w-74per {
  width: 74% !important;
}
.w-75per {
  width: 75% !important;
}
.w-76per {
  width: 76% !important;
}
.w-77per {
  width: 77% !important;
}
.w-78per {
  width: 78% !important;
}
.w-79per {
  width: 79% !important;
}
.w-80per {
  width: 80% !important;
}
.w-81per {
  width: 81% !important;
}
.w-82per {
  width: 82% !important;
}
.w-83per {
  width: 83% !important;
}
.w-84per {
  width: 84% !important;
}
.w-85per {
  width: 85% !important;
}
.w-86per {
  width: 86% !important;
}
.w-87per {
  width: 87% !important;
}
.w-88per {
  width: 88% !important;
}
.w-89per {
  width: 89% !important;
}
.w-90per {
  width: 90% !important;
}
.w-91per {
  width: 91% !important;
}
.w-92per {
  width: 92% !important;
}
.w-93per {
  width: 93% !important;
}
.w-94per {
  width: 94% !important;
}
.w-95per {
  width: 95% !important;
}
.w-96per {
  width: 96% !important;
}
.w-97per {
  width: 97% !important;
}
.w-98per {
  width: 98% !important;
}
.w-99per {
  width: 99% !important;
}
.w-100per {
  width: 100% !important;
}

.max-w-none {
  max-width: none !important;
}
.max-w-full {
  max-width: 100% !important;
}
.max-w-0 {
  max-width: 0rem !important;
}
.max-w-5 {
  max-width: 0.3125rem !important;
}
.max-w-10 {
  max-width: 0.625rem !important;
}
.max-w-15 {
  max-width: 0.9375rem !important;
}
.max-w-20 {
  max-width: 1.25rem !important;
}
.max-w-25 {
  max-width: 1.5625rem !important;
}
.max-w-30 {
  max-width: 1.875rem !important;
}
.max-w-35 {
  max-width: 2.1875rem !important;
}
.max-w-40 {
  max-width: 2.5rem !important;
}
.max-w-45 {
  max-width: 2.8125rem !important;
}
.max-w-50 {
  max-width: 3.125rem !important;
}
.max-w-55 {
  max-width: 3.4375rem !important;
}
.max-w-60 {
  max-width: 3.75rem !important;
}
.max-w-65 {
  max-width: 4.0625rem !important;
}
.max-w-70 {
  max-width: 4.375rem !important;
}
.max-w-75 {
  max-width: 4.6875rem !important;
}
.max-w-80 {
  max-width: 5rem !important;
}
.max-w-85 {
  max-width: 5.3125rem !important;
}
.max-w-90 {
  max-width: 5.625rem !important;
}
.max-w-95 {
  max-width: 5.9375rem !important;
}
.max-w-100 {
  max-width: 6.25rem !important;
}
.max-w-105 {
  max-width: 6.5625rem !important;
}
.max-w-110 {
  max-width: 6.875rem !important;
}
.max-w-115 {
  max-width: 7.1875rem !important;
}
.max-w-120 {
  max-width: 7.5rem !important;
}
.max-w-125 {
  max-width: 7.8125rem !important;
}
.max-w-130 {
  max-width: 8.125rem !important;
}
.max-w-135 {
  max-width: 8.4375rem !important;
}
.max-w-140 {
  max-width: 8.75rem !important;
}
.max-w-145 {
  max-width: 9.0625rem !important;
}
.max-w-150 {
  max-width: 9.375rem !important;
}
.max-w-155 {
  max-width: 9.6875rem !important;
}
.max-w-160 {
  max-width: 10rem !important;
}
.max-w-165 {
  max-width: 10.3125rem !important;
}
.max-w-170 {
  max-width: 10.625rem !important;
}
.max-w-175 {
  max-width: 10.9375rem !important;
}
.max-w-180 {
  max-width: 11.25rem !important;
}
.max-w-185 {
  max-width: 11.5625rem !important;
}
.max-w-190 {
  max-width: 11.875rem !important;
}
.max-w-195 {
  max-width: 12.1875rem !important;
}
.max-w-200 {
  max-width: 12.5rem !important;
}
.max-w-205 {
  max-width: 12.8125rem !important;
}
.max-w-210 {
  max-width: 13.125rem !important;
}
.max-w-215 {
  max-width: 13.4375rem !important;
}
.max-w-220 {
  max-width: 13.75rem !important;
}
.max-w-225 {
  max-width: 14.0625rem !important;
}
.max-w-230 {
  max-width: 14.375rem !important;
}
.max-w-235 {
  max-width: 14.6875rem !important;
}
.max-w-240 {
  max-width: 15rem !important;
}
.max-w-245 {
  max-width: 15.3125rem !important;
}
.max-w-250 {
  max-width: 15.625rem !important;
}
.max-w-255 {
  max-width: 15.9375rem !important;
}
.max-w-260 {
  max-width: 16.25rem !important;
}
.max-w-265 {
  max-width: 16.5625rem !important;
}
.max-w-270 {
  max-width: 16.875rem !important;
}
.max-w-275 {
  max-width: 17.1875rem !important;
}
.max-w-280 {
  max-width: 17.5rem !important;
}
.max-w-285 {
  max-width: 17.8125rem !important;
}
.max-w-290 {
  max-width: 18.125rem !important;
}
.max-w-295 {
  max-width: 18.4375rem !important;
}
.max-w-300 {
  max-width: 18.75rem !important;
}
.max-w-305 {
  max-width: 19.0625rem !important;
}
.max-w-310 {
  max-width: 19.375rem !important;
}
.max-w-315 {
  max-width: 19.6875rem !important;
}
.max-w-320 {
  max-width: 20rem !important;
}
.max-w-325 {
  max-width: 20.3125rem !important;
}
.max-w-330 {
  max-width: 20.625rem !important;
}
.max-w-335 {
  max-width: 20.9375rem !important;
}
.max-w-340 {
  max-width: 21.25rem !important;
}
.max-w-345 {
  max-width: 21.5625rem !important;
}
.max-w-350 {
  max-width: 21.875rem !important;
}
.max-w-355 {
  max-width: 22.1875rem !important;
}
.max-w-360 {
  max-width: 22.5rem !important;
}
.max-w-365 {
  max-width: 22.8125rem !important;
}
.max-w-370 {
  max-width: 23.125rem !important;
}
.max-w-375 {
  max-width: 23.4375rem !important;
}
.max-w-380 {
  max-width: 23.75rem !important;
}
.max-w-385 {
  max-width: 24.0625rem !important;
}
.max-w-390 {
  max-width: 24.375rem !important;
}
.max-w-395 {
  max-width: 24.6875rem !important;
}
.max-w-400 {
  max-width: 25rem !important;
}
.max-w-405 {
  max-width: 25.3125rem !important;
}
.max-w-410 {
  max-width: 25.625rem !important;
}
.max-w-415 {
  max-width: 25.9375rem !important;
}
.max-w-420 {
  max-width: 26.25rem !important;
}
.max-w-425 {
  max-width: 26.5625rem !important;
}
.max-w-430 {
  max-width: 26.875rem !important;
}
.max-w-435 {
  max-width: 27.1875rem !important;
}
.max-w-440 {
  max-width: 27.5rem !important;
}
.max-w-445 {
  max-width: 27.8125rem !important;
}
.max-w-450 {
  max-width: 28.125rem !important;
}
.max-w-455 {
  max-width: 28.4375rem !important;
}
.max-w-460 {
  max-width: 28.75rem !important;
}
.max-w-465 {
  max-width: 29.0625rem !important;
}
.max-w-470 {
  max-width: 29.375rem !important;
}
.max-w-475 {
  max-width: 29.6875rem !important;
}
.max-w-480 {
  max-width: 30rem !important;
}
.max-w-485 {
  max-width: 30.3125rem !important;
}
.max-w-490 {
  max-width: 30.625rem !important;
}
.max-w-495 {
  max-width: 30.9375rem !important;
}
.max-w-500 {
  max-width: 31.25rem !important;
}
.max-w-505 {
  max-width: 31.5625rem !important;
}
.max-w-510 {
  max-width: 31.875rem !important;
}
.max-w-515 {
  max-width: 32.1875rem !important;
}
.max-w-520 {
  max-width: 32.5rem !important;
}
.max-w-525 {
  max-width: 32.8125rem !important;
}
.max-w-530 {
  max-width: 33.125rem !important;
}
.max-w-535 {
  max-width: 33.4375rem !important;
}
.max-w-540 {
  max-width: 33.75rem !important;
}
.max-w-545 {
  max-width: 34.0625rem !important;
}
.max-w-550 {
  max-width: 34.375rem !important;
}
.max-w-555 {
  max-width: 34.6875rem !important;
}
.max-w-560 {
  max-width: 35rem !important;
}
.max-w-565 {
  max-width: 35.3125rem !important;
}
.max-w-570 {
  max-width: 35.625rem !important;
}
.max-w-575 {
  max-width: 35.9375rem !important;
}
.max-w-580 {
  max-width: 36.25rem !important;
}
.max-w-585 {
  max-width: 36.5625rem !important;
}
.max-w-590 {
  max-width: 36.875rem !important;
}
.max-w-595 {
  max-width: 37.1875rem !important;
}
.max-w-600 {
  max-width: 37.5rem !important;
}
.max-w-605 {
  max-width: 37.8125rem !important;
}
.max-w-610 {
  max-width: 38.125rem !important;
}
.max-w-615 {
  max-width: 38.4375rem !important;
}
.max-w-620 {
  max-width: 38.75rem !important;
}
.max-w-625 {
  max-width: 39.0625rem !important;
}
.max-w-630 {
  max-width: 39.375rem !important;
}
.max-w-635 {
  max-width: 39.6875rem !important;
}
.max-w-640 {
  max-width: 40rem !important;
}
.max-w-645 {
  max-width: 40.3125rem !important;
}
.max-w-650 {
  max-width: 40.625rem !important;
}
.max-w-655 {
  max-width: 40.9375rem !important;
}
.max-w-660 {
  max-width: 41.25rem !important;
}
.max-w-665 {
  max-width: 41.5625rem !important;
}
.max-w-670 {
  max-width: 41.875rem !important;
}
.max-w-675 {
  max-width: 42.1875rem !important;
}
.max-w-680 {
  max-width: 42.5rem !important;
}
.max-w-685 {
  max-width: 42.8125rem !important;
}
.max-w-690 {
  max-width: 43.125rem !important;
}
.max-w-695 {
  max-width: 43.4375rem !important;
}
.max-w-700 {
  max-width: 43.75rem !important;
}
.max-w-705 {
  max-width: 44.0625rem !important;
}
.max-w-710 {
  max-width: 44.375rem !important;
}
.max-w-715 {
  max-width: 44.6875rem !important;
}
.max-w-720 {
  max-width: 45rem !important;
}
.max-w-725 {
  max-width: 45.3125rem !important;
}
.max-w-730 {
  max-width: 45.625rem !important;
}
.max-w-735 {
  max-width: 45.9375rem !important;
}
.max-w-740 {
  max-width: 46.25rem !important;
}
.max-w-745 {
  max-width: 46.5625rem !important;
}
.max-w-750 {
  max-width: 46.875rem !important;
}
.max-w-755 {
  max-width: 47.1875rem !important;
}
.max-w-760 {
  max-width: 47.5rem !important;
}
.max-w-765 {
  max-width: 47.8125rem !important;
}
.max-w-770 {
  max-width: 48.125rem !important;
}
.max-w-775 {
  max-width: 48.4375rem !important;
}
.max-w-780 {
  max-width: 48.75rem !important;
}
.max-w-785 {
  max-width: 49.0625rem !important;
}
.max-w-790 {
  max-width: 49.375rem !important;
}
.max-w-795 {
  max-width: 49.6875rem !important;
}
.max-w-800 {
  max-width: 50rem !important;
}
.max-w-805 {
  max-width: 50.3125rem !important;
}
.max-w-810 {
  max-width: 50.625rem !important;
}
.max-w-815 {
  max-width: 50.9375rem !important;
}
.max-w-820 {
  max-width: 51.25rem !important;
}
.max-w-825 {
  max-width: 51.5625rem !important;
}
.max-w-830 {
  max-width: 51.875rem !important;
}
.max-w-835 {
  max-width: 52.1875rem !important;
}
.max-w-840 {
  max-width: 52.5rem !important;
}
.max-w-845 {
  max-width: 52.8125rem !important;
}
.max-w-850 {
  max-width: 53.125rem !important;
}
.max-w-855 {
  max-width: 53.4375rem !important;
}
.max-w-860 {
  max-width: 53.75rem !important;
}
.max-w-865 {
  max-width: 54.0625rem !important;
}
.max-w-870 {
  max-width: 54.375rem !important;
}
.max-w-875 {
  max-width: 54.6875rem !important;
}
.max-w-880 {
  max-width: 55rem !important;
}
.max-w-885 {
  max-width: 55.3125rem !important;
}
.max-w-890 {
  max-width: 55.625rem !important;
}
.max-w-895 {
  max-width: 55.9375rem !important;
}
.max-w-900 {
  max-width: 56.25rem !important;
}
.max-w-905 {
  max-width: 56.5625rem !important;
}
.max-w-910 {
  max-width: 56.875rem !important;
}
.max-w-915 {
  max-width: 57.1875rem !important;
}
.max-w-920 {
  max-width: 57.5rem !important;
}
.max-w-925 {
  max-width: 57.8125rem !important;
}
.max-w-930 {
  max-width: 58.125rem !important;
}
.max-w-935 {
  max-width: 58.4375rem !important;
}
.max-w-940 {
  max-width: 58.75rem !important;
}
.max-w-945 {
  max-width: 59.0625rem !important;
}
.max-w-950 {
  max-width: 59.375rem !important;
}
.max-w-955 {
  max-width: 59.6875rem !important;
}
.max-w-960 {
  max-width: 60rem !important;
}
.max-w-965 {
  max-width: 60.3125rem !important;
}
.max-w-970 {
  max-width: 60.625rem !important;
}
.max-w-975 {
  max-width: 60.9375rem !important;
}
.max-w-980 {
  max-width: 61.25rem !important;
}
.max-w-985 {
  max-width: 61.5625rem !important;
}
.max-w-990 {
  max-width: 61.875rem !important;
}
.max-w-995 {
  max-width: 62.1875rem !important;
}
.max-w-1000 {
  max-width: 62.5rem !important;
}
.max-w-1005 {
  max-width: 62.8125rem !important;
}
.max-w-1010 {
  max-width: 63.125rem !important;
}
.max-w-1015 {
  max-width: 63.4375rem !important;
}
.max-w-1020 {
  max-width: 63.75rem !important;
}
.max-w-1025 {
  max-width: 64.0625rem !important;
}
.max-w-1030 {
  max-width: 64.375rem !important;
}
.max-w-1035 {
  max-width: 64.6875rem !important;
}
.max-w-1040 {
  max-width: 65rem !important;
}
.max-w-1045 {
  max-width: 65.3125rem !important;
}
.max-w-1050 {
  max-width: 65.625rem !important;
}
.max-w-1055 {
  max-width: 65.9375rem !important;
}
.max-w-1060 {
  max-width: 66.25rem !important;
}
.max-w-1065 {
  max-width: 66.5625rem !important;
}
.max-w-1070 {
  max-width: 66.875rem !important;
}
.max-w-1075 {
  max-width: 67.1875rem !important;
}
.max-w-1080 {
  max-width: 67.5rem !important;
}
.max-w-1085 {
  max-width: 67.8125rem !important;
}
.max-w-1090 {
  max-width: 68.125rem !important;
}
.max-w-1095 {
  max-width: 68.4375rem !important;
}
.max-w-1100 {
  max-width: 68.75rem !important;
}
.max-w-1105 {
  max-width: 69.0625rem !important;
}
.max-w-1110 {
  max-width: 69.375rem !important;
}
.max-w-1115 {
  max-width: 69.6875rem !important;
}
.max-w-1120 {
  max-width: 70rem !important;
}
.max-w-1125 {
  max-width: 70.3125rem !important;
}
.max-w-1130 {
  max-width: 70.625rem !important;
}
.max-w-1135 {
  max-width: 70.9375rem !important;
}
.max-w-1140 {
  max-width: 71.25rem !important;
}
.max-w-1145 {
  max-width: 71.5625rem !important;
}
.max-w-1150 {
  max-width: 71.875rem !important;
}
.max-w-1155 {
  max-width: 72.1875rem !important;
}
.max-w-1160 {
  max-width: 72.5rem !important;
}
.max-w-1165 {
  max-width: 72.8125rem !important;
}
.max-w-1170 {
  max-width: 73.125rem !important;
}
.max-w-1175 {
  max-width: 73.4375rem !important;
}
.max-w-1180 {
  max-width: 73.75rem !important;
}
.max-w-1185 {
  max-width: 74.0625rem !important;
}
.max-w-1190 {
  max-width: 74.375rem !important;
}
.max-w-1195 {
  max-width: 74.6875rem !important;
}
.max-w-1200 {
  max-width: 75rem !important;
}
.max-w-1205 {
  max-width: 75.3125rem !important;
}
.max-w-1210 {
  max-width: 75.625rem !important;
}
.max-w-1215 {
  max-width: 75.9375rem !important;
}
.max-w-1220 {
  max-width: 76.25rem !important;
}
.max-w-1225 {
  max-width: 76.5625rem !important;
}
.max-w-1230 {
  max-width: 76.875rem !important;
}
.max-w-1235 {
  max-width: 77.1875rem !important;
}
.max-w-1240 {
  max-width: 77.5rem !important;
}
.max-w-1245 {
  max-width: 77.8125rem !important;
}
.max-w-1250 {
  max-width: 78.125rem !important;
}
.max-w-1255 {
  max-width: 78.4375rem !important;
}
.max-w-1260 {
  max-width: 78.75rem !important;
}
.max-w-1265 {
  max-width: 79.0625rem !important;
}
.max-w-1270 {
  max-width: 79.375rem !important;
}
.max-w-1275 {
  max-width: 79.6875rem !important;
}
.max-w-1280 {
  max-width: 80rem !important;
}
.max-w-1285 {
  max-width: 80.3125rem !important;
}
.max-w-1290 {
  max-width: 80.625rem !important;
}
.max-w-1295 {
  max-width: 80.9375rem !important;
}
.max-w-1300 {
  max-width: 81.25rem !important;
}
.max-w-1305 {
  max-width: 81.5625rem !important;
}
.max-w-1310 {
  max-width: 81.875rem !important;
}
.max-w-1315 {
  max-width: 82.1875rem !important;
}
.max-w-1320 {
  max-width: 82.5rem !important;
}
.max-w-1325 {
  max-width: 82.8125rem !important;
}
.max-w-1330 {
  max-width: 83.125rem !important;
}
.max-w-1335 {
  max-width: 83.4375rem !important;
}
.max-w-1340 {
  max-width: 83.75rem !important;
}
.max-w-1345 {
  max-width: 84.0625rem !important;
}
.max-w-1350 {
  max-width: 84.375rem !important;
}
.max-w-1355 {
  max-width: 84.6875rem !important;
}
.max-w-1360 {
  max-width: 85rem !important;
}
.max-w-1365 {
  max-width: 85.3125rem !important;
}
.max-w-1370 {
  max-width: 85.625rem !important;
}
.max-w-1375 {
  max-width: 85.9375rem !important;
}
.max-w-1380 {
  max-width: 86.25rem !important;
}
.max-w-1385 {
  max-width: 86.5625rem !important;
}
.max-w-1390 {
  max-width: 86.875rem !important;
}
.max-w-1395 {
  max-width: 87.1875rem !important;
}
.max-w-1400 {
  max-width: 87.5rem !important;
}
.max-w-1405 {
  max-width: 87.8125rem !important;
}
.max-w-1410 {
  max-width: 88.125rem !important;
}
.max-w-1415 {
  max-width: 88.4375rem !important;
}
.max-w-1420 {
  max-width: 88.75rem !important;
}
.max-w-1425 {
  max-width: 89.0625rem !important;
}
.max-w-1430 {
  max-width: 89.375rem !important;
}
.max-w-1435 {
  max-width: 89.6875rem !important;
}
.max-w-1440 {
  max-width: 90rem !important;
}
.max-w-1445 {
  max-width: 90.3125rem !important;
}
.max-w-1450 {
  max-width: 90.625rem !important;
}
.max-w-1455 {
  max-width: 90.9375rem !important;
}
.max-w-1460 {
  max-width: 91.25rem !important;
}
.max-w-1465 {
  max-width: 91.5625rem !important;
}
.max-w-1470 {
  max-width: 91.875rem !important;
}
.max-w-1475 {
  max-width: 92.1875rem !important;
}
.max-w-1480 {
  max-width: 92.5rem !important;
}
.max-w-1485 {
  max-width: 92.8125rem !important;
}
.max-w-1490 {
  max-width: 93.125rem !important;
}
.max-w-1495 {
  max-width: 93.4375rem !important;
}
.max-w-1500 {
  max-width: 93.75rem !important;
}

.min-w-none {
  min-width: none !important;
}
.min-w-full {
  min-width: 100% !important;
}
.min-w-0 {
  min-width: 0rem !important;
}
.min-w-5 {
  min-width: 0.3125rem !important;
}
.min-w-10 {
  min-width: 0.625rem !important;
}
.min-w-15 {
  min-width: 0.9375rem !important;
}
.min-w-20 {
  min-width: 1.25rem !important;
}
.min-w-25 {
  min-width: 1.5625rem !important;
}
.min-w-30 {
  min-width: 1.875rem !important;
}
.min-w-35 {
  min-width: 2.1875rem !important;
}
.min-w-40 {
  min-width: 2.5rem !important;
}
.min-w-45 {
  min-width: 2.8125rem !important;
}
.min-w-50 {
  min-width: 3.125rem !important;
}
.min-w-55 {
  min-width: 3.4375rem !important;
}
.min-w-60 {
  min-width: 3.75rem !important;
}
.min-w-65 {
  min-width: 4.0625rem !important;
}
.min-w-70 {
  min-width: 4.375rem !important;
}
.min-w-75 {
  min-width: 4.6875rem !important;
}
.min-w-80 {
  min-width: 5rem !important;
}
.min-w-85 {
  min-width: 5.3125rem !important;
}
.min-w-90 {
  min-width: 5.625rem !important;
}
.min-w-95 {
  min-width: 5.9375rem !important;
}
.min-w-100 {
  min-width: 6.25rem !important;
}
.min-w-105 {
  min-width: 6.5625rem !important;
}
.min-w-110 {
  min-width: 6.875rem !important;
}
.min-w-115 {
  min-width: 7.1875rem !important;
}
.min-w-120 {
  min-width: 7.5rem !important;
}
.min-w-125 {
  min-width: 7.8125rem !important;
}
.min-w-130 {
  min-width: 8.125rem !important;
}
.min-w-135 {
  min-width: 8.4375rem !important;
}
.min-w-140 {
  min-width: 8.75rem !important;
}
.min-w-145 {
  min-width: 9.0625rem !important;
}
.min-w-150 {
  min-width: 9.375rem !important;
}
.min-w-155 {
  min-width: 9.6875rem !important;
}
.min-w-160 {
  min-width: 10rem !important;
}
.min-w-165 {
  min-width: 10.3125rem !important;
}
.min-w-170 {
  min-width: 10.625rem !important;
}
.min-w-175 {
  min-width: 10.9375rem !important;
}
.min-w-180 {
  min-width: 11.25rem !important;
}
.min-w-185 {
  min-width: 11.5625rem !important;
}
.min-w-190 {
  min-width: 11.875rem !important;
}
.min-w-195 {
  min-width: 12.1875rem !important;
}
.min-w-200 {
  min-width: 12.5rem !important;
}
.min-w-205 {
  min-width: 12.8125rem !important;
}
.min-w-210 {
  min-width: 13.125rem !important;
}
.min-w-215 {
  min-width: 13.4375rem !important;
}
.min-w-220 {
  min-width: 13.75rem !important;
}
.min-w-225 {
  min-width: 14.0625rem !important;
}
.min-w-230 {
  min-width: 14.375rem !important;
}
.min-w-235 {
  min-width: 14.6875rem !important;
}
.min-w-240 {
  min-width: 15rem !important;
}
.min-w-245 {
  min-width: 15.3125rem !important;
}
.min-w-250 {
  min-width: 15.625rem !important;
}
.min-w-255 {
  min-width: 15.9375rem !important;
}
.min-w-260 {
  min-width: 16.25rem !important;
}
.min-w-265 {
  min-width: 16.5625rem !important;
}
.min-w-270 {
  min-width: 16.875rem !important;
}
.min-w-275 {
  min-width: 17.1875rem !important;
}
.min-w-280 {
  min-width: 17.5rem !important;
}
.min-w-285 {
  min-width: 17.8125rem !important;
}
.min-w-290 {
  min-width: 18.125rem !important;
}
.min-w-295 {
  min-width: 18.4375rem !important;
}
.min-w-300 {
  min-width: 18.75rem !important;
}
.min-w-305 {
  min-width: 19.0625rem !important;
}
.min-w-310 {
  min-width: 19.375rem !important;
}
.min-w-315 {
  min-width: 19.6875rem !important;
}
.min-w-320 {
  min-width: 20rem !important;
}
.min-w-325 {
  min-width: 20.3125rem !important;
}
.min-w-330 {
  min-width: 20.625rem !important;
}
.min-w-335 {
  min-width: 20.9375rem !important;
}
.min-w-340 {
  min-width: 21.25rem !important;
}
.min-w-345 {
  min-width: 21.5625rem !important;
}
.min-w-350 {
  min-width: 21.875rem !important;
}
.min-w-355 {
  min-width: 22.1875rem !important;
}
.min-w-360 {
  min-width: 22.5rem !important;
}
.min-w-365 {
  min-width: 22.8125rem !important;
}
.min-w-370 {
  min-width: 23.125rem !important;
}
.min-w-375 {
  min-width: 23.4375rem !important;
}
.min-w-380 {
  min-width: 23.75rem !important;
}
.min-w-385 {
  min-width: 24.0625rem !important;
}
.min-w-390 {
  min-width: 24.375rem !important;
}
.min-w-395 {
  min-width: 24.6875rem !important;
}
.min-w-400 {
  min-width: 25rem !important;
}
.min-w-405 {
  min-width: 25.3125rem !important;
}
.min-w-410 {
  min-width: 25.625rem !important;
}
.min-w-415 {
  min-width: 25.9375rem !important;
}
.min-w-420 {
  min-width: 26.25rem !important;
}
.min-w-425 {
  min-width: 26.5625rem !important;
}
.min-w-430 {
  min-width: 26.875rem !important;
}
.min-w-435 {
  min-width: 27.1875rem !important;
}
.min-w-440 {
  min-width: 27.5rem !important;
}
.min-w-445 {
  min-width: 27.8125rem !important;
}
.min-w-450 {
  min-width: 28.125rem !important;
}
.min-w-455 {
  min-width: 28.4375rem !important;
}
.min-w-460 {
  min-width: 28.75rem !important;
}
.min-w-465 {
  min-width: 29.0625rem !important;
}
.min-w-470 {
  min-width: 29.375rem !important;
}
.min-w-475 {
  min-width: 29.6875rem !important;
}
.min-w-480 {
  min-width: 30rem !important;
}
.min-w-485 {
  min-width: 30.3125rem !important;
}
.min-w-490 {
  min-width: 30.625rem !important;
}
.min-w-495 {
  min-width: 30.9375rem !important;
}
.min-w-500 {
  min-width: 31.25rem !important;
}
.min-w-505 {
  min-width: 31.5625rem !important;
}
.min-w-510 {
  min-width: 31.875rem !important;
}
.min-w-515 {
  min-width: 32.1875rem !important;
}
.min-w-520 {
  min-width: 32.5rem !important;
}
.min-w-525 {
  min-width: 32.8125rem !important;
}
.min-w-530 {
  min-width: 33.125rem !important;
}
.min-w-535 {
  min-width: 33.4375rem !important;
}
.min-w-540 {
  min-width: 33.75rem !important;
}
.min-w-545 {
  min-width: 34.0625rem !important;
}
.min-w-550 {
  min-width: 34.375rem !important;
}
.min-w-555 {
  min-width: 34.6875rem !important;
}
.min-w-560 {
  min-width: 35rem !important;
}
.min-w-565 {
  min-width: 35.3125rem !important;
}
.min-w-570 {
  min-width: 35.625rem !important;
}
.min-w-575 {
  min-width: 35.9375rem !important;
}
.min-w-580 {
  min-width: 36.25rem !important;
}
.min-w-585 {
  min-width: 36.5625rem !important;
}
.min-w-590 {
  min-width: 36.875rem !important;
}
.min-w-595 {
  min-width: 37.1875rem !important;
}
.min-w-600 {
  min-width: 37.5rem !important;
}
.min-w-605 {
  min-width: 37.8125rem !important;
}
.min-w-610 {
  min-width: 38.125rem !important;
}
.min-w-615 {
  min-width: 38.4375rem !important;
}
.min-w-620 {
  min-width: 38.75rem !important;
}
.min-w-625 {
  min-width: 39.0625rem !important;
}
.min-w-630 {
  min-width: 39.375rem !important;
}
.min-w-635 {
  min-width: 39.6875rem !important;
}
.min-w-640 {
  min-width: 40rem !important;
}
.min-w-645 {
  min-width: 40.3125rem !important;
}
.min-w-650 {
  min-width: 40.625rem !important;
}
.min-w-655 {
  min-width: 40.9375rem !important;
}
.min-w-660 {
  min-width: 41.25rem !important;
}
.min-w-665 {
  min-width: 41.5625rem !important;
}
.min-w-670 {
  min-width: 41.875rem !important;
}
.min-w-675 {
  min-width: 42.1875rem !important;
}
.min-w-680 {
  min-width: 42.5rem !important;
}
.min-w-685 {
  min-width: 42.8125rem !important;
}
.min-w-690 {
  min-width: 43.125rem !important;
}
.min-w-695 {
  min-width: 43.4375rem !important;
}
.min-w-700 {
  min-width: 43.75rem !important;
}
.min-w-705 {
  min-width: 44.0625rem !important;
}
.min-w-710 {
  min-width: 44.375rem !important;
}
.min-w-715 {
  min-width: 44.6875rem !important;
}
.min-w-720 {
  min-width: 45rem !important;
}
.min-w-725 {
  min-width: 45.3125rem !important;
}
.min-w-730 {
  min-width: 45.625rem !important;
}
.min-w-735 {
  min-width: 45.9375rem !important;
}
.min-w-740 {
  min-width: 46.25rem !important;
}
.min-w-745 {
  min-width: 46.5625rem !important;
}
.min-w-750 {
  min-width: 46.875rem !important;
}
.min-w-755 {
  min-width: 47.1875rem !important;
}
.min-w-760 {
  min-width: 47.5rem !important;
}
.min-w-765 {
  min-width: 47.8125rem !important;
}
.min-w-770 {
  min-width: 48.125rem !important;
}
.min-w-775 {
  min-width: 48.4375rem !important;
}
.min-w-780 {
  min-width: 48.75rem !important;
}
.min-w-785 {
  min-width: 49.0625rem !important;
}
.min-w-790 {
  min-width: 49.375rem !important;
}
.min-w-795 {
  min-width: 49.6875rem !important;
}
.min-w-800 {
  min-width: 50rem !important;
}
.min-w-805 {
  min-width: 50.3125rem !important;
}
.min-w-810 {
  min-width: 50.625rem !important;
}
.min-w-815 {
  min-width: 50.9375rem !important;
}
.min-w-820 {
  min-width: 51.25rem !important;
}
.min-w-825 {
  min-width: 51.5625rem !important;
}
.min-w-830 {
  min-width: 51.875rem !important;
}
.min-w-835 {
  min-width: 52.1875rem !important;
}
.min-w-840 {
  min-width: 52.5rem !important;
}
.min-w-845 {
  min-width: 52.8125rem !important;
}
.min-w-850 {
  min-width: 53.125rem !important;
}
.min-w-855 {
  min-width: 53.4375rem !important;
}
.min-w-860 {
  min-width: 53.75rem !important;
}
.min-w-865 {
  min-width: 54.0625rem !important;
}
.min-w-870 {
  min-width: 54.375rem !important;
}
.min-w-875 {
  min-width: 54.6875rem !important;
}
.min-w-880 {
  min-width: 55rem !important;
}
.min-w-885 {
  min-width: 55.3125rem !important;
}
.min-w-890 {
  min-width: 55.625rem !important;
}
.min-w-895 {
  min-width: 55.9375rem !important;
}
.min-w-900 {
  min-width: 56.25rem !important;
}
.min-w-905 {
  min-width: 56.5625rem !important;
}
.min-w-910 {
  min-width: 56.875rem !important;
}
.min-w-915 {
  min-width: 57.1875rem !important;
}
.min-w-920 {
  min-width: 57.5rem !important;
}
.min-w-925 {
  min-width: 57.8125rem !important;
}
.min-w-930 {
  min-width: 58.125rem !important;
}
.min-w-935 {
  min-width: 58.4375rem !important;
}
.min-w-940 {
  min-width: 58.75rem !important;
}
.min-w-945 {
  min-width: 59.0625rem !important;
}
.min-w-950 {
  min-width: 59.375rem !important;
}
.min-w-955 {
  min-width: 59.6875rem !important;
}
.min-w-960 {
  min-width: 60rem !important;
}
.min-w-965 {
  min-width: 60.3125rem !important;
}
.min-w-970 {
  min-width: 60.625rem !important;
}
.min-w-975 {
  min-width: 60.9375rem !important;
}
.min-w-980 {
  min-width: 61.25rem !important;
}
.min-w-985 {
  min-width: 61.5625rem !important;
}
.min-w-990 {
  min-width: 61.875rem !important;
}
.min-w-995 {
  min-width: 62.1875rem !important;
}
.min-w-1000 {
  min-width: 62.5rem !important;
}
.min-w-1005 {
  min-width: 62.8125rem !important;
}
.min-w-1010 {
  min-width: 63.125rem !important;
}
.min-w-1015 {
  min-width: 63.4375rem !important;
}
.min-w-1020 {
  min-width: 63.75rem !important;
}
.min-w-1025 {
  min-width: 64.0625rem !important;
}
.min-w-1030 {
  min-width: 64.375rem !important;
}
.min-w-1035 {
  min-width: 64.6875rem !important;
}
.min-w-1040 {
  min-width: 65rem !important;
}
.min-w-1045 {
  min-width: 65.3125rem !important;
}
.min-w-1050 {
  min-width: 65.625rem !important;
}
.min-w-1055 {
  min-width: 65.9375rem !important;
}
.min-w-1060 {
  min-width: 66.25rem !important;
}
.min-w-1065 {
  min-width: 66.5625rem !important;
}
.min-w-1070 {
  min-width: 66.875rem !important;
}
.min-w-1075 {
  min-width: 67.1875rem !important;
}
.min-w-1080 {
  min-width: 67.5rem !important;
}
.min-w-1085 {
  min-width: 67.8125rem !important;
}
.min-w-1090 {
  min-width: 68.125rem !important;
}
.min-w-1095 {
  min-width: 68.4375rem !important;
}
.min-w-1100 {
  min-width: 68.75rem !important;
}
.min-w-1105 {
  min-width: 69.0625rem !important;
}
.min-w-1110 {
  min-width: 69.375rem !important;
}
.min-w-1115 {
  min-width: 69.6875rem !important;
}
.min-w-1120 {
  min-width: 70rem !important;
}
.min-w-1125 {
  min-width: 70.3125rem !important;
}
.min-w-1130 {
  min-width: 70.625rem !important;
}
.min-w-1135 {
  min-width: 70.9375rem !important;
}
.min-w-1140 {
  min-width: 71.25rem !important;
}
.min-w-1145 {
  min-width: 71.5625rem !important;
}
.min-w-1150 {
  min-width: 71.875rem !important;
}
.min-w-1155 {
  min-width: 72.1875rem !important;
}
.min-w-1160 {
  min-width: 72.5rem !important;
}
.min-w-1165 {
  min-width: 72.8125rem !important;
}
.min-w-1170 {
  min-width: 73.125rem !important;
}
.min-w-1175 {
  min-width: 73.4375rem !important;
}
.min-w-1180 {
  min-width: 73.75rem !important;
}
.min-w-1185 {
  min-width: 74.0625rem !important;
}
.min-w-1190 {
  min-width: 74.375rem !important;
}
.min-w-1195 {
  min-width: 74.6875rem !important;
}
.min-w-1200 {
  min-width: 75rem !important;
}
.min-w-1205 {
  min-width: 75.3125rem !important;
}
.min-w-1210 {
  min-width: 75.625rem !important;
}
.min-w-1215 {
  min-width: 75.9375rem !important;
}
.min-w-1220 {
  min-width: 76.25rem !important;
}
.min-w-1225 {
  min-width: 76.5625rem !important;
}
.min-w-1230 {
  min-width: 76.875rem !important;
}
.min-w-1235 {
  min-width: 77.1875rem !important;
}
.min-w-1240 {
  min-width: 77.5rem !important;
}
.min-w-1245 {
  min-width: 77.8125rem !important;
}
.min-w-1250 {
  min-width: 78.125rem !important;
}
.min-w-1255 {
  min-width: 78.4375rem !important;
}
.min-w-1260 {
  min-width: 78.75rem !important;
}
.min-w-1265 {
  min-width: 79.0625rem !important;
}
.min-w-1270 {
  min-width: 79.375rem !important;
}
.min-w-1275 {
  min-width: 79.6875rem !important;
}
.min-w-1280 {
  min-width: 80rem !important;
}
.min-w-1285 {
  min-width: 80.3125rem !important;
}
.min-w-1290 {
  min-width: 80.625rem !important;
}
.min-w-1295 {
  min-width: 80.9375rem !important;
}
.min-w-1300 {
  min-width: 81.25rem !important;
}
.min-w-1305 {
  min-width: 81.5625rem !important;
}
.min-w-1310 {
  min-width: 81.875rem !important;
}
.min-w-1315 {
  min-width: 82.1875rem !important;
}
.min-w-1320 {
  min-width: 82.5rem !important;
}
.min-w-1325 {
  min-width: 82.8125rem !important;
}
.min-w-1330 {
  min-width: 83.125rem !important;
}
.min-w-1335 {
  min-width: 83.4375rem !important;
}
.min-w-1340 {
  min-width: 83.75rem !important;
}
.min-w-1345 {
  min-width: 84.0625rem !important;
}
.min-w-1350 {
  min-width: 84.375rem !important;
}
.min-w-1355 {
  min-width: 84.6875rem !important;
}
.min-w-1360 {
  min-width: 85rem !important;
}
.min-w-1365 {
  min-width: 85.3125rem !important;
}
.min-w-1370 {
  min-width: 85.625rem !important;
}
.min-w-1375 {
  min-width: 85.9375rem !important;
}
.min-w-1380 {
  min-width: 86.25rem !important;
}
.min-w-1385 {
  min-width: 86.5625rem !important;
}
.min-w-1390 {
  min-width: 86.875rem !important;
}
.min-w-1395 {
  min-width: 87.1875rem !important;
}
.min-w-1400 {
  min-width: 87.5rem !important;
}
.min-w-1405 {
  min-width: 87.8125rem !important;
}
.min-w-1410 {
  min-width: 88.125rem !important;
}
.min-w-1415 {
  min-width: 88.4375rem !important;
}
.min-w-1420 {
  min-width: 88.75rem !important;
}
.min-w-1425 {
  min-width: 89.0625rem !important;
}
.min-w-1430 {
  min-width: 89.375rem !important;
}
.min-w-1435 {
  min-width: 89.6875rem !important;
}
.min-w-1440 {
  min-width: 90rem !important;
}
.min-w-1445 {
  min-width: 90.3125rem !important;
}
.min-w-1450 {
  min-width: 90.625rem !important;
}
.min-w-1455 {
  min-width: 90.9375rem !important;
}
.min-w-1460 {
  min-width: 91.25rem !important;
}
.min-w-1465 {
  min-width: 91.5625rem !important;
}
.min-w-1470 {
  min-width: 91.875rem !important;
}
.min-w-1475 {
  min-width: 92.1875rem !important;
}
.min-w-1480 {
  min-width: 92.5rem !important;
}
.min-w-1485 {
  min-width: 92.8125rem !important;
}
.min-w-1490 {
  min-width: 93.125rem !important;
}
.min-w-1495 {
  min-width: 93.4375rem !important;
}
.min-w-1500 {
  min-width: 93.75rem !important;
}

@media screen and (min-width: 768px) {
  .pc\:w-auto {
    width: auto !important;
  }
  .pc\:w-full {
    width: 100% !important;
  }
  .pc\:w-0 {
    width: 0rem !important;
  }
  .pc\:w-5 {
    width: 0.3125rem !important;
  }
  .pc\:w-10 {
    width: 0.625rem !important;
  }
  .pc\:w-15 {
    width: 0.9375rem !important;
  }
  .pc\:w-20 {
    width: 1.25rem !important;
  }
  .pc\:w-25 {
    width: 1.5625rem !important;
  }
  .pc\:w-30 {
    width: 1.875rem !important;
  }
  .pc\:w-35 {
    width: 2.1875rem !important;
  }
  .pc\:w-40 {
    width: 2.5rem !important;
  }
  .pc\:w-45 {
    width: 2.8125rem !important;
  }
  .pc\:w-50 {
    width: 3.125rem !important;
  }
  .pc\:w-55 {
    width: 3.4375rem !important;
  }
  .pc\:w-60 {
    width: 3.75rem !important;
  }
  .pc\:w-65 {
    width: 4.0625rem !important;
  }
  .pc\:w-70 {
    width: 4.375rem !important;
  }
  .pc\:w-75 {
    width: 4.6875rem !important;
  }
  .pc\:w-80 {
    width: 5rem !important;
  }
  .pc\:w-85 {
    width: 5.3125rem !important;
  }
  .pc\:w-90 {
    width: 5.625rem !important;
  }
  .pc\:w-95 {
    width: 5.9375rem !important;
  }
  .pc\:w-100 {
    width: 6.25rem !important;
  }
  .pc\:w-105 {
    width: 6.5625rem !important;
  }
  .pc\:w-110 {
    width: 6.875rem !important;
  }
  .pc\:w-115 {
    width: 7.1875rem !important;
  }
  .pc\:w-120 {
    width: 7.5rem !important;
  }
  .pc\:w-125 {
    width: 7.8125rem !important;
  }
  .pc\:w-130 {
    width: 8.125rem !important;
  }
  .pc\:w-135 {
    width: 8.4375rem !important;
  }
  .pc\:w-140 {
    width: 8.75rem !important;
  }
  .pc\:w-145 {
    width: 9.0625rem !important;
  }
  .pc\:w-150 {
    width: 9.375rem !important;
  }
  .pc\:w-155 {
    width: 9.6875rem !important;
  }
  .pc\:w-160 {
    width: 10rem !important;
  }
  .pc\:w-165 {
    width: 10.3125rem !important;
  }
  .pc\:w-170 {
    width: 10.625rem !important;
  }
  .pc\:w-175 {
    width: 10.9375rem !important;
  }
  .pc\:w-180 {
    width: 11.25rem !important;
  }
  .pc\:w-185 {
    width: 11.5625rem !important;
  }
  .pc\:w-190 {
    width: 11.875rem !important;
  }
  .pc\:w-195 {
    width: 12.1875rem !important;
  }
  .pc\:w-200 {
    width: 12.5rem !important;
  }
  .pc\:w-205 {
    width: 12.8125rem !important;
  }
  .pc\:w-210 {
    width: 13.125rem !important;
  }
  .pc\:w-215 {
    width: 13.4375rem !important;
  }
  .pc\:w-220 {
    width: 13.75rem !important;
  }
  .pc\:w-225 {
    width: 14.0625rem !important;
  }
  .pc\:w-230 {
    width: 14.375rem !important;
  }
  .pc\:w-235 {
    width: 14.6875rem !important;
  }
  .pc\:w-240 {
    width: 15rem !important;
  }
  .pc\:w-245 {
    width: 15.3125rem !important;
  }
  .pc\:w-250 {
    width: 15.625rem !important;
  }
  .pc\:w-255 {
    width: 15.9375rem !important;
  }
  .pc\:w-260 {
    width: 16.25rem !important;
  }
  .pc\:w-265 {
    width: 16.5625rem !important;
  }
  .pc\:w-270 {
    width: 16.875rem !important;
  }
  .pc\:w-275 {
    width: 17.1875rem !important;
  }
  .pc\:w-280 {
    width: 17.5rem !important;
  }
  .pc\:w-285 {
    width: 17.8125rem !important;
  }
  .pc\:w-290 {
    width: 18.125rem !important;
  }
  .pc\:w-295 {
    width: 18.4375rem !important;
  }
  .pc\:w-300 {
    width: 18.75rem !important;
  }
  .pc\:w-305 {
    width: 19.0625rem !important;
  }
  .pc\:w-310 {
    width: 19.375rem !important;
  }
  .pc\:w-315 {
    width: 19.6875rem !important;
  }
  .pc\:w-320 {
    width: 20rem !important;
  }
  .pc\:w-325 {
    width: 20.3125rem !important;
  }
  .pc\:w-330 {
    width: 20.625rem !important;
  }
  .pc\:w-335 {
    width: 20.9375rem !important;
  }
  .pc\:w-340 {
    width: 21.25rem !important;
  }
  .pc\:w-345 {
    width: 21.5625rem !important;
  }
  .pc\:w-350 {
    width: 21.875rem !important;
  }
  .pc\:w-355 {
    width: 22.1875rem !important;
  }
  .pc\:w-360 {
    width: 22.5rem !important;
  }
  .pc\:w-365 {
    width: 22.8125rem !important;
  }
  .pc\:w-370 {
    width: 23.125rem !important;
  }
  .pc\:w-375 {
    width: 23.4375rem !important;
  }
  .pc\:w-380 {
    width: 23.75rem !important;
  }
  .pc\:w-385 {
    width: 24.0625rem !important;
  }
  .pc\:w-390 {
    width: 24.375rem !important;
  }
  .pc\:w-395 {
    width: 24.6875rem !important;
  }
  .pc\:w-400 {
    width: 25rem !important;
  }
  .pc\:w-405 {
    width: 25.3125rem !important;
  }
  .pc\:w-410 {
    width: 25.625rem !important;
  }
  .pc\:w-415 {
    width: 25.9375rem !important;
  }
  .pc\:w-420 {
    width: 26.25rem !important;
  }
  .pc\:w-425 {
    width: 26.5625rem !important;
  }
  .pc\:w-430 {
    width: 26.875rem !important;
  }
  .pc\:w-435 {
    width: 27.1875rem !important;
  }
  .pc\:w-440 {
    width: 27.5rem !important;
  }
  .pc\:w-445 {
    width: 27.8125rem !important;
  }
  .pc\:w-450 {
    width: 28.125rem !important;
  }
  .pc\:w-455 {
    width: 28.4375rem !important;
  }
  .pc\:w-460 {
    width: 28.75rem !important;
  }
  .pc\:w-465 {
    width: 29.0625rem !important;
  }
  .pc\:w-470 {
    width: 29.375rem !important;
  }
  .pc\:w-475 {
    width: 29.6875rem !important;
  }
  .pc\:w-480 {
    width: 30rem !important;
  }
  .pc\:w-485 {
    width: 30.3125rem !important;
  }
  .pc\:w-490 {
    width: 30.625rem !important;
  }
  .pc\:w-495 {
    width: 30.9375rem !important;
  }
  .pc\:w-500 {
    width: 31.25rem !important;
  }
  .pc\:w-505 {
    width: 31.5625rem !important;
  }
  .pc\:w-510 {
    width: 31.875rem !important;
  }
  .pc\:w-515 {
    width: 32.1875rem !important;
  }
  .pc\:w-520 {
    width: 32.5rem !important;
  }
  .pc\:w-525 {
    width: 32.8125rem !important;
  }
  .pc\:w-530 {
    width: 33.125rem !important;
  }
  .pc\:w-535 {
    width: 33.4375rem !important;
  }
  .pc\:w-540 {
    width: 33.75rem !important;
  }
  .pc\:w-545 {
    width: 34.0625rem !important;
  }
  .pc\:w-550 {
    width: 34.375rem !important;
  }
  .pc\:w-555 {
    width: 34.6875rem !important;
  }
  .pc\:w-560 {
    width: 35rem !important;
  }
  .pc\:w-565 {
    width: 35.3125rem !important;
  }
  .pc\:w-570 {
    width: 35.625rem !important;
  }
  .pc\:w-575 {
    width: 35.9375rem !important;
  }
  .pc\:w-580 {
    width: 36.25rem !important;
  }
  .pc\:w-585 {
    width: 36.5625rem !important;
  }
  .pc\:w-590 {
    width: 36.875rem !important;
  }
  .pc\:w-595 {
    width: 37.1875rem !important;
  }
  .pc\:w-600 {
    width: 37.5rem !important;
  }
  .pc\:w-605 {
    width: 37.8125rem !important;
  }
  .pc\:w-610 {
    width: 38.125rem !important;
  }
  .pc\:w-615 {
    width: 38.4375rem !important;
  }
  .pc\:w-620 {
    width: 38.75rem !important;
  }
  .pc\:w-625 {
    width: 39.0625rem !important;
  }
  .pc\:w-630 {
    width: 39.375rem !important;
  }
  .pc\:w-635 {
    width: 39.6875rem !important;
  }
  .pc\:w-640 {
    width: 40rem !important;
  }
  .pc\:w-645 {
    width: 40.3125rem !important;
  }
  .pc\:w-650 {
    width: 40.625rem !important;
  }
  .pc\:w-655 {
    width: 40.9375rem !important;
  }
  .pc\:w-660 {
    width: 41.25rem !important;
  }
  .pc\:w-665 {
    width: 41.5625rem !important;
  }
  .pc\:w-670 {
    width: 41.875rem !important;
  }
  .pc\:w-675 {
    width: 42.1875rem !important;
  }
  .pc\:w-680 {
    width: 42.5rem !important;
  }
  .pc\:w-685 {
    width: 42.8125rem !important;
  }
  .pc\:w-690 {
    width: 43.125rem !important;
  }
  .pc\:w-695 {
    width: 43.4375rem !important;
  }
  .pc\:w-700 {
    width: 43.75rem !important;
  }
  .pc\:w-705 {
    width: 44.0625rem !important;
  }
  .pc\:w-710 {
    width: 44.375rem !important;
  }
  .pc\:w-715 {
    width: 44.6875rem !important;
  }
  .pc\:w-720 {
    width: 45rem !important;
  }
  .pc\:w-725 {
    width: 45.3125rem !important;
  }
  .pc\:w-730 {
    width: 45.625rem !important;
  }
  .pc\:w-735 {
    width: 45.9375rem !important;
  }
  .pc\:w-740 {
    width: 46.25rem !important;
  }
  .pc\:w-745 {
    width: 46.5625rem !important;
  }
  .pc\:w-750 {
    width: 46.875rem !important;
  }
  .pc\:w-755 {
    width: 47.1875rem !important;
  }
  .pc\:w-760 {
    width: 47.5rem !important;
  }
  .pc\:w-765 {
    width: 47.8125rem !important;
  }
  .pc\:w-770 {
    width: 48.125rem !important;
  }
  .pc\:w-775 {
    width: 48.4375rem !important;
  }
  .pc\:w-780 {
    width: 48.75rem !important;
  }
  .pc\:w-785 {
    width: 49.0625rem !important;
  }
  .pc\:w-790 {
    width: 49.375rem !important;
  }
  .pc\:w-795 {
    width: 49.6875rem !important;
  }
  .pc\:w-800 {
    width: 50rem !important;
  }
  .pc\:w-805 {
    width: 50.3125rem !important;
  }
  .pc\:w-810 {
    width: 50.625rem !important;
  }
  .pc\:w-815 {
    width: 50.9375rem !important;
  }
  .pc\:w-820 {
    width: 51.25rem !important;
  }
  .pc\:w-825 {
    width: 51.5625rem !important;
  }
  .pc\:w-830 {
    width: 51.875rem !important;
  }
  .pc\:w-835 {
    width: 52.1875rem !important;
  }
  .pc\:w-840 {
    width: 52.5rem !important;
  }
  .pc\:w-845 {
    width: 52.8125rem !important;
  }
  .pc\:w-850 {
    width: 53.125rem !important;
  }
  .pc\:w-855 {
    width: 53.4375rem !important;
  }
  .pc\:w-860 {
    width: 53.75rem !important;
  }
  .pc\:w-865 {
    width: 54.0625rem !important;
  }
  .pc\:w-870 {
    width: 54.375rem !important;
  }
  .pc\:w-875 {
    width: 54.6875rem !important;
  }
  .pc\:w-880 {
    width: 55rem !important;
  }
  .pc\:w-885 {
    width: 55.3125rem !important;
  }
  .pc\:w-890 {
    width: 55.625rem !important;
  }
  .pc\:w-895 {
    width: 55.9375rem !important;
  }
  .pc\:w-900 {
    width: 56.25rem !important;
  }
  .pc\:w-905 {
    width: 56.5625rem !important;
  }
  .pc\:w-910 {
    width: 56.875rem !important;
  }
  .pc\:w-915 {
    width: 57.1875rem !important;
  }
  .pc\:w-920 {
    width: 57.5rem !important;
  }
  .pc\:w-925 {
    width: 57.8125rem !important;
  }
  .pc\:w-930 {
    width: 58.125rem !important;
  }
  .pc\:w-935 {
    width: 58.4375rem !important;
  }
  .pc\:w-940 {
    width: 58.75rem !important;
  }
  .pc\:w-945 {
    width: 59.0625rem !important;
  }
  .pc\:w-950 {
    width: 59.375rem !important;
  }
  .pc\:w-955 {
    width: 59.6875rem !important;
  }
  .pc\:w-960 {
    width: 60rem !important;
  }
  .pc\:w-965 {
    width: 60.3125rem !important;
  }
  .pc\:w-970 {
    width: 60.625rem !important;
  }
  .pc\:w-975 {
    width: 60.9375rem !important;
  }
  .pc\:w-980 {
    width: 61.25rem !important;
  }
  .pc\:w-985 {
    width: 61.5625rem !important;
  }
  .pc\:w-990 {
    width: 61.875rem !important;
  }
  .pc\:w-995 {
    width: 62.1875rem !important;
  }
  .pc\:w-1000 {
    width: 62.5rem !important;
  }
  .pc\:w-1005 {
    width: 62.8125rem !important;
  }
  .pc\:w-1010 {
    width: 63.125rem !important;
  }
  .pc\:w-1015 {
    width: 63.4375rem !important;
  }
  .pc\:w-1020 {
    width: 63.75rem !important;
  }
  .pc\:w-1025 {
    width: 64.0625rem !important;
  }
  .pc\:w-1030 {
    width: 64.375rem !important;
  }
  .pc\:w-1035 {
    width: 64.6875rem !important;
  }
  .pc\:w-1040 {
    width: 65rem !important;
  }
  .pc\:w-1045 {
    width: 65.3125rem !important;
  }
  .pc\:w-1050 {
    width: 65.625rem !important;
  }
  .pc\:w-1055 {
    width: 65.9375rem !important;
  }
  .pc\:w-1060 {
    width: 66.25rem !important;
  }
  .pc\:w-1065 {
    width: 66.5625rem !important;
  }
  .pc\:w-1070 {
    width: 66.875rem !important;
  }
  .pc\:w-1075 {
    width: 67.1875rem !important;
  }
  .pc\:w-1080 {
    width: 67.5rem !important;
  }
  .pc\:w-1085 {
    width: 67.8125rem !important;
  }
  .pc\:w-1090 {
    width: 68.125rem !important;
  }
  .pc\:w-1095 {
    width: 68.4375rem !important;
  }
  .pc\:w-1100 {
    width: 68.75rem !important;
  }
  .pc\:w-1105 {
    width: 69.0625rem !important;
  }
  .pc\:w-1110 {
    width: 69.375rem !important;
  }
  .pc\:w-1115 {
    width: 69.6875rem !important;
  }
  .pc\:w-1120 {
    width: 70rem !important;
  }
  .pc\:w-1125 {
    width: 70.3125rem !important;
  }
  .pc\:w-1130 {
    width: 70.625rem !important;
  }
  .pc\:w-1135 {
    width: 70.9375rem !important;
  }
  .pc\:w-1140 {
    width: 71.25rem !important;
  }
  .pc\:w-1145 {
    width: 71.5625rem !important;
  }
  .pc\:w-1150 {
    width: 71.875rem !important;
  }
  .pc\:w-1155 {
    width: 72.1875rem !important;
  }
  .pc\:w-1160 {
    width: 72.5rem !important;
  }
  .pc\:w-1165 {
    width: 72.8125rem !important;
  }
  .pc\:w-1170 {
    width: 73.125rem !important;
  }
  .pc\:w-1175 {
    width: 73.4375rem !important;
  }
  .pc\:w-1180 {
    width: 73.75rem !important;
  }
  .pc\:w-1185 {
    width: 74.0625rem !important;
  }
  .pc\:w-1190 {
    width: 74.375rem !important;
  }
  .pc\:w-1195 {
    width: 74.6875rem !important;
  }
  .pc\:w-1200 {
    width: 75rem !important;
  }
  .pc\:w-1205 {
    width: 75.3125rem !important;
  }
  .pc\:w-1210 {
    width: 75.625rem !important;
  }
  .pc\:w-1215 {
    width: 75.9375rem !important;
  }
  .pc\:w-1220 {
    width: 76.25rem !important;
  }
  .pc\:w-1225 {
    width: 76.5625rem !important;
  }
  .pc\:w-1230 {
    width: 76.875rem !important;
  }
  .pc\:w-1235 {
    width: 77.1875rem !important;
  }
  .pc\:w-1240 {
    width: 77.5rem !important;
  }
  .pc\:w-1245 {
    width: 77.8125rem !important;
  }
  .pc\:w-1250 {
    width: 78.125rem !important;
  }
  .pc\:w-1255 {
    width: 78.4375rem !important;
  }
  .pc\:w-1260 {
    width: 78.75rem !important;
  }
  .pc\:w-1265 {
    width: 79.0625rem !important;
  }
  .pc\:w-1270 {
    width: 79.375rem !important;
  }
  .pc\:w-1275 {
    width: 79.6875rem !important;
  }
  .pc\:w-1280 {
    width: 80rem !important;
  }
  .pc\:w-1285 {
    width: 80.3125rem !important;
  }
  .pc\:w-1290 {
    width: 80.625rem !important;
  }
  .pc\:w-1295 {
    width: 80.9375rem !important;
  }
  .pc\:w-1300 {
    width: 81.25rem !important;
  }
  .pc\:w-1305 {
    width: 81.5625rem !important;
  }
  .pc\:w-1310 {
    width: 81.875rem !important;
  }
  .pc\:w-1315 {
    width: 82.1875rem !important;
  }
  .pc\:w-1320 {
    width: 82.5rem !important;
  }
  .pc\:w-1325 {
    width: 82.8125rem !important;
  }
  .pc\:w-1330 {
    width: 83.125rem !important;
  }
  .pc\:w-1335 {
    width: 83.4375rem !important;
  }
  .pc\:w-1340 {
    width: 83.75rem !important;
  }
  .pc\:w-1345 {
    width: 84.0625rem !important;
  }
  .pc\:w-1350 {
    width: 84.375rem !important;
  }
  .pc\:w-1355 {
    width: 84.6875rem !important;
  }
  .pc\:w-1360 {
    width: 85rem !important;
  }
  .pc\:w-1365 {
    width: 85.3125rem !important;
  }
  .pc\:w-1370 {
    width: 85.625rem !important;
  }
  .pc\:w-1375 {
    width: 85.9375rem !important;
  }
  .pc\:w-1380 {
    width: 86.25rem !important;
  }
  .pc\:w-1385 {
    width: 86.5625rem !important;
  }
  .pc\:w-1390 {
    width: 86.875rem !important;
  }
  .pc\:w-1395 {
    width: 87.1875rem !important;
  }
  .pc\:w-1400 {
    width: 87.5rem !important;
  }
  .pc\:w-1405 {
    width: 87.8125rem !important;
  }
  .pc\:w-1410 {
    width: 88.125rem !important;
  }
  .pc\:w-1415 {
    width: 88.4375rem !important;
  }
  .pc\:w-1420 {
    width: 88.75rem !important;
  }
  .pc\:w-1425 {
    width: 89.0625rem !important;
  }
  .pc\:w-1430 {
    width: 89.375rem !important;
  }
  .pc\:w-1435 {
    width: 89.6875rem !important;
  }
  .pc\:w-1440 {
    width: 90rem !important;
  }
  .pc\:w-1445 {
    width: 90.3125rem !important;
  }
  .pc\:w-1450 {
    width: 90.625rem !important;
  }
  .pc\:w-1455 {
    width: 90.9375rem !important;
  }
  .pc\:w-1460 {
    width: 91.25rem !important;
  }
  .pc\:w-1465 {
    width: 91.5625rem !important;
  }
  .pc\:w-1470 {
    width: 91.875rem !important;
  }
  .pc\:w-1475 {
    width: 92.1875rem !important;
  }
  .pc\:w-1480 {
    width: 92.5rem !important;
  }
  .pc\:w-1485 {
    width: 92.8125rem !important;
  }
  .pc\:w-1490 {
    width: 93.125rem !important;
  }
  .pc\:w-1495 {
    width: 93.4375rem !important;
  }
  .pc\:w-1500 {
    width: 93.75rem !important;
  }
  .pc\:w-0per {
    width: 0% !important;
  }
  .pc\:w-1per {
    width: 1% !important;
  }
  .pc\:w-2per {
    width: 2% !important;
  }
  .pc\:w-3per {
    width: 3% !important;
  }
  .pc\:w-4per {
    width: 4% !important;
  }
  .pc\:w-5per {
    width: 5% !important;
  }
  .pc\:w-6per {
    width: 6% !important;
  }
  .pc\:w-7per {
    width: 7% !important;
  }
  .pc\:w-8per {
    width: 8% !important;
  }
  .pc\:w-9per {
    width: 9% !important;
  }
  .pc\:w-10per {
    width: 10% !important;
  }
  .pc\:w-11per {
    width: 11% !important;
  }
  .pc\:w-12per {
    width: 12% !important;
  }
  .pc\:w-13per {
    width: 13% !important;
  }
  .pc\:w-14per {
    width: 14% !important;
  }
  .pc\:w-15per {
    width: 15% !important;
  }
  .pc\:w-16per {
    width: 16% !important;
  }
  .pc\:w-17per {
    width: 17% !important;
  }
  .pc\:w-18per {
    width: 18% !important;
  }
  .pc\:w-19per {
    width: 19% !important;
  }
  .pc\:w-20per {
    width: 20% !important;
  }
  .pc\:w-21per {
    width: 21% !important;
  }
  .pc\:w-22per {
    width: 22% !important;
  }
  .pc\:w-23per {
    width: 23% !important;
  }
  .pc\:w-24per {
    width: 24% !important;
  }
  .pc\:w-25per {
    width: 25% !important;
  }
  .pc\:w-26per {
    width: 26% !important;
  }
  .pc\:w-27per {
    width: 27% !important;
  }
  .pc\:w-28per {
    width: 28% !important;
  }
  .pc\:w-29per {
    width: 29% !important;
  }
  .pc\:w-30per {
    width: 30% !important;
  }
  .pc\:w-31per {
    width: 31% !important;
  }
  .pc\:w-32per {
    width: 32% !important;
  }
  .pc\:w-33per {
    width: 33% !important;
  }
  .pc\:w-34per {
    width: 34% !important;
  }
  .pc\:w-35per {
    width: 35% !important;
  }
  .pc\:w-36per {
    width: 36% !important;
  }
  .pc\:w-37per {
    width: 37% !important;
  }
  .pc\:w-38per {
    width: 38% !important;
  }
  .pc\:w-39per {
    width: 39% !important;
  }
  .pc\:w-40per {
    width: 40% !important;
  }
  .pc\:w-41per {
    width: 41% !important;
  }
  .pc\:w-42per {
    width: 42% !important;
  }
  .pc\:w-43per {
    width: 43% !important;
  }
  .pc\:w-44per {
    width: 44% !important;
  }
  .pc\:w-45per {
    width: 45% !important;
  }
  .pc\:w-46per {
    width: 46% !important;
  }
  .pc\:w-47per {
    width: 47% !important;
  }
  .pc\:w-48per {
    width: 48% !important;
  }
  .pc\:w-49per {
    width: 49% !important;
  }
  .pc\:w-50per {
    width: 50% !important;
  }
  .pc\:w-51per {
    width: 51% !important;
  }
  .pc\:w-52per {
    width: 52% !important;
  }
  .pc\:w-53per {
    width: 53% !important;
  }
  .pc\:w-54per {
    width: 54% !important;
  }
  .pc\:w-55per {
    width: 55% !important;
  }
  .pc\:w-56per {
    width: 56% !important;
  }
  .pc\:w-57per {
    width: 57% !important;
  }
  .pc\:w-58per {
    width: 58% !important;
  }
  .pc\:w-59per {
    width: 59% !important;
  }
  .pc\:w-60per {
    width: 60% !important;
  }
  .pc\:w-61per {
    width: 61% !important;
  }
  .pc\:w-62per {
    width: 62% !important;
  }
  .pc\:w-63per {
    width: 63% !important;
  }
  .pc\:w-64per {
    width: 64% !important;
  }
  .pc\:w-65per {
    width: 65% !important;
  }
  .pc\:w-66per {
    width: 66% !important;
  }
  .pc\:w-67per {
    width: 67% !important;
  }
  .pc\:w-68per {
    width: 68% !important;
  }
  .pc\:w-69per {
    width: 69% !important;
  }
  .pc\:w-70per {
    width: 70% !important;
  }
  .pc\:w-71per {
    width: 71% !important;
  }
  .pc\:w-72per {
    width: 72% !important;
  }
  .pc\:w-73per {
    width: 73% !important;
  }
  .pc\:w-74per {
    width: 74% !important;
  }
  .pc\:w-75per {
    width: 75% !important;
  }
  .pc\:w-76per {
    width: 76% !important;
  }
  .pc\:w-77per {
    width: 77% !important;
  }
  .pc\:w-78per {
    width: 78% !important;
  }
  .pc\:w-79per {
    width: 79% !important;
  }
  .pc\:w-80per {
    width: 80% !important;
  }
  .pc\:w-81per {
    width: 81% !important;
  }
  .pc\:w-82per {
    width: 82% !important;
  }
  .pc\:w-83per {
    width: 83% !important;
  }
  .pc\:w-84per {
    width: 84% !important;
  }
  .pc\:w-85per {
    width: 85% !important;
  }
  .pc\:w-86per {
    width: 86% !important;
  }
  .pc\:w-87per {
    width: 87% !important;
  }
  .pc\:w-88per {
    width: 88% !important;
  }
  .pc\:w-89per {
    width: 89% !important;
  }
  .pc\:w-90per {
    width: 90% !important;
  }
  .pc\:w-91per {
    width: 91% !important;
  }
  .pc\:w-92per {
    width: 92% !important;
  }
  .pc\:w-93per {
    width: 93% !important;
  }
  .pc\:w-94per {
    width: 94% !important;
  }
  .pc\:w-95per {
    width: 95% !important;
  }
  .pc\:w-96per {
    width: 96% !important;
  }
  .pc\:w-97per {
    width: 97% !important;
  }
  .pc\:w-98per {
    width: 98% !important;
  }
  .pc\:w-99per {
    width: 99% !important;
  }
  .pc\:w-100per {
    width: 100% !important;
  }
  .pc\:max-w-none {
    max-width: none !important;
  }
  .pc\:max-w-full {
    max-width: 100% !important;
  }
  .pc\:max-w-0 {
    max-width: 0rem !important;
  }
  .pc\:max-w-5 {
    max-width: 0.3125rem !important;
  }
  .pc\:max-w-10 {
    max-width: 0.625rem !important;
  }
  .pc\:max-w-15 {
    max-width: 0.9375rem !important;
  }
  .pc\:max-w-20 {
    max-width: 1.25rem !important;
  }
  .pc\:max-w-25 {
    max-width: 1.5625rem !important;
  }
  .pc\:max-w-30 {
    max-width: 1.875rem !important;
  }
  .pc\:max-w-35 {
    max-width: 2.1875rem !important;
  }
  .pc\:max-w-40 {
    max-width: 2.5rem !important;
  }
  .pc\:max-w-45 {
    max-width: 2.8125rem !important;
  }
  .pc\:max-w-50 {
    max-width: 3.125rem !important;
  }
  .pc\:max-w-55 {
    max-width: 3.4375rem !important;
  }
  .pc\:max-w-60 {
    max-width: 3.75rem !important;
  }
  .pc\:max-w-65 {
    max-width: 4.0625rem !important;
  }
  .pc\:max-w-70 {
    max-width: 4.375rem !important;
  }
  .pc\:max-w-75 {
    max-width: 4.6875rem !important;
  }
  .pc\:max-w-80 {
    max-width: 5rem !important;
  }
  .pc\:max-w-85 {
    max-width: 5.3125rem !important;
  }
  .pc\:max-w-90 {
    max-width: 5.625rem !important;
  }
  .pc\:max-w-95 {
    max-width: 5.9375rem !important;
  }
  .pc\:max-w-100 {
    max-width: 6.25rem !important;
  }
  .pc\:max-w-105 {
    max-width: 6.5625rem !important;
  }
  .pc\:max-w-110 {
    max-width: 6.875rem !important;
  }
  .pc\:max-w-115 {
    max-width: 7.1875rem !important;
  }
  .pc\:max-w-120 {
    max-width: 7.5rem !important;
  }
  .pc\:max-w-125 {
    max-width: 7.8125rem !important;
  }
  .pc\:max-w-130 {
    max-width: 8.125rem !important;
  }
  .pc\:max-w-135 {
    max-width: 8.4375rem !important;
  }
  .pc\:max-w-140 {
    max-width: 8.75rem !important;
  }
  .pc\:max-w-145 {
    max-width: 9.0625rem !important;
  }
  .pc\:max-w-150 {
    max-width: 9.375rem !important;
  }
  .pc\:max-w-155 {
    max-width: 9.6875rem !important;
  }
  .pc\:max-w-160 {
    max-width: 10rem !important;
  }
  .pc\:max-w-165 {
    max-width: 10.3125rem !important;
  }
  .pc\:max-w-170 {
    max-width: 10.625rem !important;
  }
  .pc\:max-w-175 {
    max-width: 10.9375rem !important;
  }
  .pc\:max-w-180 {
    max-width: 11.25rem !important;
  }
  .pc\:max-w-185 {
    max-width: 11.5625rem !important;
  }
  .pc\:max-w-190 {
    max-width: 11.875rem !important;
  }
  .pc\:max-w-195 {
    max-width: 12.1875rem !important;
  }
  .pc\:max-w-200 {
    max-width: 12.5rem !important;
  }
  .pc\:max-w-205 {
    max-width: 12.8125rem !important;
  }
  .pc\:max-w-210 {
    max-width: 13.125rem !important;
  }
  .pc\:max-w-215 {
    max-width: 13.4375rem !important;
  }
  .pc\:max-w-220 {
    max-width: 13.75rem !important;
  }
  .pc\:max-w-225 {
    max-width: 14.0625rem !important;
  }
  .pc\:max-w-230 {
    max-width: 14.375rem !important;
  }
  .pc\:max-w-235 {
    max-width: 14.6875rem !important;
  }
  .pc\:max-w-240 {
    max-width: 15rem !important;
  }
  .pc\:max-w-245 {
    max-width: 15.3125rem !important;
  }
  .pc\:max-w-250 {
    max-width: 15.625rem !important;
  }
  .pc\:max-w-255 {
    max-width: 15.9375rem !important;
  }
  .pc\:max-w-260 {
    max-width: 16.25rem !important;
  }
  .pc\:max-w-265 {
    max-width: 16.5625rem !important;
  }
  .pc\:max-w-270 {
    max-width: 16.875rem !important;
  }
  .pc\:max-w-275 {
    max-width: 17.1875rem !important;
  }
  .pc\:max-w-280 {
    max-width: 17.5rem !important;
  }
  .pc\:max-w-285 {
    max-width: 17.8125rem !important;
  }
  .pc\:max-w-290 {
    max-width: 18.125rem !important;
  }
  .pc\:max-w-295 {
    max-width: 18.4375rem !important;
  }
  .pc\:max-w-300 {
    max-width: 18.75rem !important;
  }
  .pc\:max-w-305 {
    max-width: 19.0625rem !important;
  }
  .pc\:max-w-310 {
    max-width: 19.375rem !important;
  }
  .pc\:max-w-315 {
    max-width: 19.6875rem !important;
  }
  .pc\:max-w-320 {
    max-width: 20rem !important;
  }
  .pc\:max-w-325 {
    max-width: 20.3125rem !important;
  }
  .pc\:max-w-330 {
    max-width: 20.625rem !important;
  }
  .pc\:max-w-335 {
    max-width: 20.9375rem !important;
  }
  .pc\:max-w-340 {
    max-width: 21.25rem !important;
  }
  .pc\:max-w-345 {
    max-width: 21.5625rem !important;
  }
  .pc\:max-w-350 {
    max-width: 21.875rem !important;
  }
  .pc\:max-w-355 {
    max-width: 22.1875rem !important;
  }
  .pc\:max-w-360 {
    max-width: 22.5rem !important;
  }
  .pc\:max-w-365 {
    max-width: 22.8125rem !important;
  }
  .pc\:max-w-370 {
    max-width: 23.125rem !important;
  }
  .pc\:max-w-375 {
    max-width: 23.4375rem !important;
  }
  .pc\:max-w-380 {
    max-width: 23.75rem !important;
  }
  .pc\:max-w-385 {
    max-width: 24.0625rem !important;
  }
  .pc\:max-w-390 {
    max-width: 24.375rem !important;
  }
  .pc\:max-w-395 {
    max-width: 24.6875rem !important;
  }
  .pc\:max-w-400 {
    max-width: 25rem !important;
  }
  .pc\:max-w-405 {
    max-width: 25.3125rem !important;
  }
  .pc\:max-w-410 {
    max-width: 25.625rem !important;
  }
  .pc\:max-w-415 {
    max-width: 25.9375rem !important;
  }
  .pc\:max-w-420 {
    max-width: 26.25rem !important;
  }
  .pc\:max-w-425 {
    max-width: 26.5625rem !important;
  }
  .pc\:max-w-430 {
    max-width: 26.875rem !important;
  }
  .pc\:max-w-435 {
    max-width: 27.1875rem !important;
  }
  .pc\:max-w-440 {
    max-width: 27.5rem !important;
  }
  .pc\:max-w-445 {
    max-width: 27.8125rem !important;
  }
  .pc\:max-w-450 {
    max-width: 28.125rem !important;
  }
  .pc\:max-w-455 {
    max-width: 28.4375rem !important;
  }
  .pc\:max-w-460 {
    max-width: 28.75rem !important;
  }
  .pc\:max-w-465 {
    max-width: 29.0625rem !important;
  }
  .pc\:max-w-470 {
    max-width: 29.375rem !important;
  }
  .pc\:max-w-475 {
    max-width: 29.6875rem !important;
  }
  .pc\:max-w-480 {
    max-width: 30rem !important;
  }
  .pc\:max-w-485 {
    max-width: 30.3125rem !important;
  }
  .pc\:max-w-490 {
    max-width: 30.625rem !important;
  }
  .pc\:max-w-495 {
    max-width: 30.9375rem !important;
  }
  .pc\:max-w-500 {
    max-width: 31.25rem !important;
  }
  .pc\:max-w-505 {
    max-width: 31.5625rem !important;
  }
  .pc\:max-w-510 {
    max-width: 31.875rem !important;
  }
  .pc\:max-w-515 {
    max-width: 32.1875rem !important;
  }
  .pc\:max-w-520 {
    max-width: 32.5rem !important;
  }
  .pc\:max-w-525 {
    max-width: 32.8125rem !important;
  }
  .pc\:max-w-530 {
    max-width: 33.125rem !important;
  }
  .pc\:max-w-535 {
    max-width: 33.4375rem !important;
  }
  .pc\:max-w-540 {
    max-width: 33.75rem !important;
  }
  .pc\:max-w-545 {
    max-width: 34.0625rem !important;
  }
  .pc\:max-w-550 {
    max-width: 34.375rem !important;
  }
  .pc\:max-w-555 {
    max-width: 34.6875rem !important;
  }
  .pc\:max-w-560 {
    max-width: 35rem !important;
  }
  .pc\:max-w-565 {
    max-width: 35.3125rem !important;
  }
  .pc\:max-w-570 {
    max-width: 35.625rem !important;
  }
  .pc\:max-w-575 {
    max-width: 35.9375rem !important;
  }
  .pc\:max-w-580 {
    max-width: 36.25rem !important;
  }
  .pc\:max-w-585 {
    max-width: 36.5625rem !important;
  }
  .pc\:max-w-590 {
    max-width: 36.875rem !important;
  }
  .pc\:max-w-595 {
    max-width: 37.1875rem !important;
  }
  .pc\:max-w-600 {
    max-width: 37.5rem !important;
  }
  .pc\:max-w-605 {
    max-width: 37.8125rem !important;
  }
  .pc\:max-w-610 {
    max-width: 38.125rem !important;
  }
  .pc\:max-w-615 {
    max-width: 38.4375rem !important;
  }
  .pc\:max-w-620 {
    max-width: 38.75rem !important;
  }
  .pc\:max-w-625 {
    max-width: 39.0625rem !important;
  }
  .pc\:max-w-630 {
    max-width: 39.375rem !important;
  }
  .pc\:max-w-635 {
    max-width: 39.6875rem !important;
  }
  .pc\:max-w-640 {
    max-width: 40rem !important;
  }
  .pc\:max-w-645 {
    max-width: 40.3125rem !important;
  }
  .pc\:max-w-650 {
    max-width: 40.625rem !important;
  }
  .pc\:max-w-655 {
    max-width: 40.9375rem !important;
  }
  .pc\:max-w-660 {
    max-width: 41.25rem !important;
  }
  .pc\:max-w-665 {
    max-width: 41.5625rem !important;
  }
  .pc\:max-w-670 {
    max-width: 41.875rem !important;
  }
  .pc\:max-w-675 {
    max-width: 42.1875rem !important;
  }
  .pc\:max-w-680 {
    max-width: 42.5rem !important;
  }
  .pc\:max-w-685 {
    max-width: 42.8125rem !important;
  }
  .pc\:max-w-690 {
    max-width: 43.125rem !important;
  }
  .pc\:max-w-695 {
    max-width: 43.4375rem !important;
  }
  .pc\:max-w-700 {
    max-width: 43.75rem !important;
  }
  .pc\:max-w-705 {
    max-width: 44.0625rem !important;
  }
  .pc\:max-w-710 {
    max-width: 44.375rem !important;
  }
  .pc\:max-w-715 {
    max-width: 44.6875rem !important;
  }
  .pc\:max-w-720 {
    max-width: 45rem !important;
  }
  .pc\:max-w-725 {
    max-width: 45.3125rem !important;
  }
  .pc\:max-w-730 {
    max-width: 45.625rem !important;
  }
  .pc\:max-w-735 {
    max-width: 45.9375rem !important;
  }
  .pc\:max-w-740 {
    max-width: 46.25rem !important;
  }
  .pc\:max-w-745 {
    max-width: 46.5625rem !important;
  }
  .pc\:max-w-750 {
    max-width: 46.875rem !important;
  }
  .pc\:max-w-755 {
    max-width: 47.1875rem !important;
  }
  .pc\:max-w-760 {
    max-width: 47.5rem !important;
  }
  .pc\:max-w-765 {
    max-width: 47.8125rem !important;
  }
  .pc\:max-w-770 {
    max-width: 48.125rem !important;
  }
  .pc\:max-w-775 {
    max-width: 48.4375rem !important;
  }
  .pc\:max-w-780 {
    max-width: 48.75rem !important;
  }
  .pc\:max-w-785 {
    max-width: 49.0625rem !important;
  }
  .pc\:max-w-790 {
    max-width: 49.375rem !important;
  }
  .pc\:max-w-795 {
    max-width: 49.6875rem !important;
  }
  .pc\:max-w-800 {
    max-width: 50rem !important;
  }
  .pc\:max-w-805 {
    max-width: 50.3125rem !important;
  }
  .pc\:max-w-810 {
    max-width: 50.625rem !important;
  }
  .pc\:max-w-815 {
    max-width: 50.9375rem !important;
  }
  .pc\:max-w-820 {
    max-width: 51.25rem !important;
  }
  .pc\:max-w-825 {
    max-width: 51.5625rem !important;
  }
  .pc\:max-w-830 {
    max-width: 51.875rem !important;
  }
  .pc\:max-w-835 {
    max-width: 52.1875rem !important;
  }
  .pc\:max-w-840 {
    max-width: 52.5rem !important;
  }
  .pc\:max-w-845 {
    max-width: 52.8125rem !important;
  }
  .pc\:max-w-850 {
    max-width: 53.125rem !important;
  }
  .pc\:max-w-855 {
    max-width: 53.4375rem !important;
  }
  .pc\:max-w-860 {
    max-width: 53.75rem !important;
  }
  .pc\:max-w-865 {
    max-width: 54.0625rem !important;
  }
  .pc\:max-w-870 {
    max-width: 54.375rem !important;
  }
  .pc\:max-w-875 {
    max-width: 54.6875rem !important;
  }
  .pc\:max-w-880 {
    max-width: 55rem !important;
  }
  .pc\:max-w-885 {
    max-width: 55.3125rem !important;
  }
  .pc\:max-w-890 {
    max-width: 55.625rem !important;
  }
  .pc\:max-w-895 {
    max-width: 55.9375rem !important;
  }
  .pc\:max-w-900 {
    max-width: 56.25rem !important;
  }
  .pc\:max-w-905 {
    max-width: 56.5625rem !important;
  }
  .pc\:max-w-910 {
    max-width: 56.875rem !important;
  }
  .pc\:max-w-915 {
    max-width: 57.1875rem !important;
  }
  .pc\:max-w-920 {
    max-width: 57.5rem !important;
  }
  .pc\:max-w-925 {
    max-width: 57.8125rem !important;
  }
  .pc\:max-w-930 {
    max-width: 58.125rem !important;
  }
  .pc\:max-w-935 {
    max-width: 58.4375rem !important;
  }
  .pc\:max-w-940 {
    max-width: 58.75rem !important;
  }
  .pc\:max-w-945 {
    max-width: 59.0625rem !important;
  }
  .pc\:max-w-950 {
    max-width: 59.375rem !important;
  }
  .pc\:max-w-955 {
    max-width: 59.6875rem !important;
  }
  .pc\:max-w-960 {
    max-width: 60rem !important;
  }
  .pc\:max-w-965 {
    max-width: 60.3125rem !important;
  }
  .pc\:max-w-970 {
    max-width: 60.625rem !important;
  }
  .pc\:max-w-975 {
    max-width: 60.9375rem !important;
  }
  .pc\:max-w-980 {
    max-width: 61.25rem !important;
  }
  .pc\:max-w-985 {
    max-width: 61.5625rem !important;
  }
  .pc\:max-w-990 {
    max-width: 61.875rem !important;
  }
  .pc\:max-w-995 {
    max-width: 62.1875rem !important;
  }
  .pc\:max-w-1000 {
    max-width: 62.5rem !important;
  }
  .pc\:max-w-1005 {
    max-width: 62.8125rem !important;
  }
  .pc\:max-w-1010 {
    max-width: 63.125rem !important;
  }
  .pc\:max-w-1015 {
    max-width: 63.4375rem !important;
  }
  .pc\:max-w-1020 {
    max-width: 63.75rem !important;
  }
  .pc\:max-w-1025 {
    max-width: 64.0625rem !important;
  }
  .pc\:max-w-1030 {
    max-width: 64.375rem !important;
  }
  .pc\:max-w-1035 {
    max-width: 64.6875rem !important;
  }
  .pc\:max-w-1040 {
    max-width: 65rem !important;
  }
  .pc\:max-w-1045 {
    max-width: 65.3125rem !important;
  }
  .pc\:max-w-1050 {
    max-width: 65.625rem !important;
  }
  .pc\:max-w-1055 {
    max-width: 65.9375rem !important;
  }
  .pc\:max-w-1060 {
    max-width: 66.25rem !important;
  }
  .pc\:max-w-1065 {
    max-width: 66.5625rem !important;
  }
  .pc\:max-w-1070 {
    max-width: 66.875rem !important;
  }
  .pc\:max-w-1075 {
    max-width: 67.1875rem !important;
  }
  .pc\:max-w-1080 {
    max-width: 67.5rem !important;
  }
  .pc\:max-w-1085 {
    max-width: 67.8125rem !important;
  }
  .pc\:max-w-1090 {
    max-width: 68.125rem !important;
  }
  .pc\:max-w-1095 {
    max-width: 68.4375rem !important;
  }
  .pc\:max-w-1100 {
    max-width: 68.75rem !important;
  }
  .pc\:max-w-1105 {
    max-width: 69.0625rem !important;
  }
  .pc\:max-w-1110 {
    max-width: 69.375rem !important;
  }
  .pc\:max-w-1115 {
    max-width: 69.6875rem !important;
  }
  .pc\:max-w-1120 {
    max-width: 70rem !important;
  }
  .pc\:max-w-1125 {
    max-width: 70.3125rem !important;
  }
  .pc\:max-w-1130 {
    max-width: 70.625rem !important;
  }
  .pc\:max-w-1135 {
    max-width: 70.9375rem !important;
  }
  .pc\:max-w-1140 {
    max-width: 71.25rem !important;
  }
  .pc\:max-w-1145 {
    max-width: 71.5625rem !important;
  }
  .pc\:max-w-1150 {
    max-width: 71.875rem !important;
  }
  .pc\:max-w-1155 {
    max-width: 72.1875rem !important;
  }
  .pc\:max-w-1160 {
    max-width: 72.5rem !important;
  }
  .pc\:max-w-1165 {
    max-width: 72.8125rem !important;
  }
  .pc\:max-w-1170 {
    max-width: 73.125rem !important;
  }
  .pc\:max-w-1175 {
    max-width: 73.4375rem !important;
  }
  .pc\:max-w-1180 {
    max-width: 73.75rem !important;
  }
  .pc\:max-w-1185 {
    max-width: 74.0625rem !important;
  }
  .pc\:max-w-1190 {
    max-width: 74.375rem !important;
  }
  .pc\:max-w-1195 {
    max-width: 74.6875rem !important;
  }
  .pc\:max-w-1200 {
    max-width: 75rem !important;
  }
  .pc\:max-w-1205 {
    max-width: 75.3125rem !important;
  }
  .pc\:max-w-1210 {
    max-width: 75.625rem !important;
  }
  .pc\:max-w-1215 {
    max-width: 75.9375rem !important;
  }
  .pc\:max-w-1220 {
    max-width: 76.25rem !important;
  }
  .pc\:max-w-1225 {
    max-width: 76.5625rem !important;
  }
  .pc\:max-w-1230 {
    max-width: 76.875rem !important;
  }
  .pc\:max-w-1235 {
    max-width: 77.1875rem !important;
  }
  .pc\:max-w-1240 {
    max-width: 77.5rem !important;
  }
  .pc\:max-w-1245 {
    max-width: 77.8125rem !important;
  }
  .pc\:max-w-1250 {
    max-width: 78.125rem !important;
  }
  .pc\:max-w-1255 {
    max-width: 78.4375rem !important;
  }
  .pc\:max-w-1260 {
    max-width: 78.75rem !important;
  }
  .pc\:max-w-1265 {
    max-width: 79.0625rem !important;
  }
  .pc\:max-w-1270 {
    max-width: 79.375rem !important;
  }
  .pc\:max-w-1275 {
    max-width: 79.6875rem !important;
  }
  .pc\:max-w-1280 {
    max-width: 80rem !important;
  }
  .pc\:max-w-1285 {
    max-width: 80.3125rem !important;
  }
  .pc\:max-w-1290 {
    max-width: 80.625rem !important;
  }
  .pc\:max-w-1295 {
    max-width: 80.9375rem !important;
  }
  .pc\:max-w-1300 {
    max-width: 81.25rem !important;
  }
  .pc\:max-w-1305 {
    max-width: 81.5625rem !important;
  }
  .pc\:max-w-1310 {
    max-width: 81.875rem !important;
  }
  .pc\:max-w-1315 {
    max-width: 82.1875rem !important;
  }
  .pc\:max-w-1320 {
    max-width: 82.5rem !important;
  }
  .pc\:max-w-1325 {
    max-width: 82.8125rem !important;
  }
  .pc\:max-w-1330 {
    max-width: 83.125rem !important;
  }
  .pc\:max-w-1335 {
    max-width: 83.4375rem !important;
  }
  .pc\:max-w-1340 {
    max-width: 83.75rem !important;
  }
  .pc\:max-w-1345 {
    max-width: 84.0625rem !important;
  }
  .pc\:max-w-1350 {
    max-width: 84.375rem !important;
  }
  .pc\:max-w-1355 {
    max-width: 84.6875rem !important;
  }
  .pc\:max-w-1360 {
    max-width: 85rem !important;
  }
  .pc\:max-w-1365 {
    max-width: 85.3125rem !important;
  }
  .pc\:max-w-1370 {
    max-width: 85.625rem !important;
  }
  .pc\:max-w-1375 {
    max-width: 85.9375rem !important;
  }
  .pc\:max-w-1380 {
    max-width: 86.25rem !important;
  }
  .pc\:max-w-1385 {
    max-width: 86.5625rem !important;
  }
  .pc\:max-w-1390 {
    max-width: 86.875rem !important;
  }
  .pc\:max-w-1395 {
    max-width: 87.1875rem !important;
  }
  .pc\:max-w-1400 {
    max-width: 87.5rem !important;
  }
  .pc\:max-w-1405 {
    max-width: 87.8125rem !important;
  }
  .pc\:max-w-1410 {
    max-width: 88.125rem !important;
  }
  .pc\:max-w-1415 {
    max-width: 88.4375rem !important;
  }
  .pc\:max-w-1420 {
    max-width: 88.75rem !important;
  }
  .pc\:max-w-1425 {
    max-width: 89.0625rem !important;
  }
  .pc\:max-w-1430 {
    max-width: 89.375rem !important;
  }
  .pc\:max-w-1435 {
    max-width: 89.6875rem !important;
  }
  .pc\:max-w-1440 {
    max-width: 90rem !important;
  }
  .pc\:max-w-1445 {
    max-width: 90.3125rem !important;
  }
  .pc\:max-w-1450 {
    max-width: 90.625rem !important;
  }
  .pc\:max-w-1455 {
    max-width: 90.9375rem !important;
  }
  .pc\:max-w-1460 {
    max-width: 91.25rem !important;
  }
  .pc\:max-w-1465 {
    max-width: 91.5625rem !important;
  }
  .pc\:max-w-1470 {
    max-width: 91.875rem !important;
  }
  .pc\:max-w-1475 {
    max-width: 92.1875rem !important;
  }
  .pc\:max-w-1480 {
    max-width: 92.5rem !important;
  }
  .pc\:max-w-1485 {
    max-width: 92.8125rem !important;
  }
  .pc\:max-w-1490 {
    max-width: 93.125rem !important;
  }
  .pc\:max-w-1495 {
    max-width: 93.4375rem !important;
  }
  .pc\:max-w-1500 {
    max-width: 93.75rem !important;
  }
  .pc\:min-w-none {
    min-width: none !important;
  }
  .pc\:min-w-full {
    min-width: 100% !important;
  }
  .pc\:min-w-0 {
    min-width: 0rem !important;
  }
  .pc\:min-w-5 {
    min-width: 0.3125rem !important;
  }
  .pc\:min-w-10 {
    min-width: 0.625rem !important;
  }
  .pc\:min-w-15 {
    min-width: 0.9375rem !important;
  }
  .pc\:min-w-20 {
    min-width: 1.25rem !important;
  }
  .pc\:min-w-25 {
    min-width: 1.5625rem !important;
  }
  .pc\:min-w-30 {
    min-width: 1.875rem !important;
  }
  .pc\:min-w-35 {
    min-width: 2.1875rem !important;
  }
  .pc\:min-w-40 {
    min-width: 2.5rem !important;
  }
  .pc\:min-w-45 {
    min-width: 2.8125rem !important;
  }
  .pc\:min-w-50 {
    min-width: 3.125rem !important;
  }
  .pc\:min-w-55 {
    min-width: 3.4375rem !important;
  }
  .pc\:min-w-60 {
    min-width: 3.75rem !important;
  }
  .pc\:min-w-65 {
    min-width: 4.0625rem !important;
  }
  .pc\:min-w-70 {
    min-width: 4.375rem !important;
  }
  .pc\:min-w-75 {
    min-width: 4.6875rem !important;
  }
  .pc\:min-w-80 {
    min-width: 5rem !important;
  }
  .pc\:min-w-85 {
    min-width: 5.3125rem !important;
  }
  .pc\:min-w-90 {
    min-width: 5.625rem !important;
  }
  .pc\:min-w-95 {
    min-width: 5.9375rem !important;
  }
  .pc\:min-w-100 {
    min-width: 6.25rem !important;
  }
  .pc\:min-w-105 {
    min-width: 6.5625rem !important;
  }
  .pc\:min-w-110 {
    min-width: 6.875rem !important;
  }
  .pc\:min-w-115 {
    min-width: 7.1875rem !important;
  }
  .pc\:min-w-120 {
    min-width: 7.5rem !important;
  }
  .pc\:min-w-125 {
    min-width: 7.8125rem !important;
  }
  .pc\:min-w-130 {
    min-width: 8.125rem !important;
  }
  .pc\:min-w-135 {
    min-width: 8.4375rem !important;
  }
  .pc\:min-w-140 {
    min-width: 8.75rem !important;
  }
  .pc\:min-w-145 {
    min-width: 9.0625rem !important;
  }
  .pc\:min-w-150 {
    min-width: 9.375rem !important;
  }
  .pc\:min-w-155 {
    min-width: 9.6875rem !important;
  }
  .pc\:min-w-160 {
    min-width: 10rem !important;
  }
  .pc\:min-w-165 {
    min-width: 10.3125rem !important;
  }
  .pc\:min-w-170 {
    min-width: 10.625rem !important;
  }
  .pc\:min-w-175 {
    min-width: 10.9375rem !important;
  }
  .pc\:min-w-180 {
    min-width: 11.25rem !important;
  }
  .pc\:min-w-185 {
    min-width: 11.5625rem !important;
  }
  .pc\:min-w-190 {
    min-width: 11.875rem !important;
  }
  .pc\:min-w-195 {
    min-width: 12.1875rem !important;
  }
  .pc\:min-w-200 {
    min-width: 12.5rem !important;
  }
  .pc\:min-w-205 {
    min-width: 12.8125rem !important;
  }
  .pc\:min-w-210 {
    min-width: 13.125rem !important;
  }
  .pc\:min-w-215 {
    min-width: 13.4375rem !important;
  }
  .pc\:min-w-220 {
    min-width: 13.75rem !important;
  }
  .pc\:min-w-225 {
    min-width: 14.0625rem !important;
  }
  .pc\:min-w-230 {
    min-width: 14.375rem !important;
  }
  .pc\:min-w-235 {
    min-width: 14.6875rem !important;
  }
  .pc\:min-w-240 {
    min-width: 15rem !important;
  }
  .pc\:min-w-245 {
    min-width: 15.3125rem !important;
  }
  .pc\:min-w-250 {
    min-width: 15.625rem !important;
  }
  .pc\:min-w-255 {
    min-width: 15.9375rem !important;
  }
  .pc\:min-w-260 {
    min-width: 16.25rem !important;
  }
  .pc\:min-w-265 {
    min-width: 16.5625rem !important;
  }
  .pc\:min-w-270 {
    min-width: 16.875rem !important;
  }
  .pc\:min-w-275 {
    min-width: 17.1875rem !important;
  }
  .pc\:min-w-280 {
    min-width: 17.5rem !important;
  }
  .pc\:min-w-285 {
    min-width: 17.8125rem !important;
  }
  .pc\:min-w-290 {
    min-width: 18.125rem !important;
  }
  .pc\:min-w-295 {
    min-width: 18.4375rem !important;
  }
  .pc\:min-w-300 {
    min-width: 18.75rem !important;
  }
  .pc\:min-w-305 {
    min-width: 19.0625rem !important;
  }
  .pc\:min-w-310 {
    min-width: 19.375rem !important;
  }
  .pc\:min-w-315 {
    min-width: 19.6875rem !important;
  }
  .pc\:min-w-320 {
    min-width: 20rem !important;
  }
  .pc\:min-w-325 {
    min-width: 20.3125rem !important;
  }
  .pc\:min-w-330 {
    min-width: 20.625rem !important;
  }
  .pc\:min-w-335 {
    min-width: 20.9375rem !important;
  }
  .pc\:min-w-340 {
    min-width: 21.25rem !important;
  }
  .pc\:min-w-345 {
    min-width: 21.5625rem !important;
  }
  .pc\:min-w-350 {
    min-width: 21.875rem !important;
  }
  .pc\:min-w-355 {
    min-width: 22.1875rem !important;
  }
  .pc\:min-w-360 {
    min-width: 22.5rem !important;
  }
  .pc\:min-w-365 {
    min-width: 22.8125rem !important;
  }
  .pc\:min-w-370 {
    min-width: 23.125rem !important;
  }
  .pc\:min-w-375 {
    min-width: 23.4375rem !important;
  }
  .pc\:min-w-380 {
    min-width: 23.75rem !important;
  }
  .pc\:min-w-385 {
    min-width: 24.0625rem !important;
  }
  .pc\:min-w-390 {
    min-width: 24.375rem !important;
  }
  .pc\:min-w-395 {
    min-width: 24.6875rem !important;
  }
  .pc\:min-w-400 {
    min-width: 25rem !important;
  }
  .pc\:min-w-405 {
    min-width: 25.3125rem !important;
  }
  .pc\:min-w-410 {
    min-width: 25.625rem !important;
  }
  .pc\:min-w-415 {
    min-width: 25.9375rem !important;
  }
  .pc\:min-w-420 {
    min-width: 26.25rem !important;
  }
  .pc\:min-w-425 {
    min-width: 26.5625rem !important;
  }
  .pc\:min-w-430 {
    min-width: 26.875rem !important;
  }
  .pc\:min-w-435 {
    min-width: 27.1875rem !important;
  }
  .pc\:min-w-440 {
    min-width: 27.5rem !important;
  }
  .pc\:min-w-445 {
    min-width: 27.8125rem !important;
  }
  .pc\:min-w-450 {
    min-width: 28.125rem !important;
  }
  .pc\:min-w-455 {
    min-width: 28.4375rem !important;
  }
  .pc\:min-w-460 {
    min-width: 28.75rem !important;
  }
  .pc\:min-w-465 {
    min-width: 29.0625rem !important;
  }
  .pc\:min-w-470 {
    min-width: 29.375rem !important;
  }
  .pc\:min-w-475 {
    min-width: 29.6875rem !important;
  }
  .pc\:min-w-480 {
    min-width: 30rem !important;
  }
  .pc\:min-w-485 {
    min-width: 30.3125rem !important;
  }
  .pc\:min-w-490 {
    min-width: 30.625rem !important;
  }
  .pc\:min-w-495 {
    min-width: 30.9375rem !important;
  }
  .pc\:min-w-500 {
    min-width: 31.25rem !important;
  }
  .pc\:min-w-505 {
    min-width: 31.5625rem !important;
  }
  .pc\:min-w-510 {
    min-width: 31.875rem !important;
  }
  .pc\:min-w-515 {
    min-width: 32.1875rem !important;
  }
  .pc\:min-w-520 {
    min-width: 32.5rem !important;
  }
  .pc\:min-w-525 {
    min-width: 32.8125rem !important;
  }
  .pc\:min-w-530 {
    min-width: 33.125rem !important;
  }
  .pc\:min-w-535 {
    min-width: 33.4375rem !important;
  }
  .pc\:min-w-540 {
    min-width: 33.75rem !important;
  }
  .pc\:min-w-545 {
    min-width: 34.0625rem !important;
  }
  .pc\:min-w-550 {
    min-width: 34.375rem !important;
  }
  .pc\:min-w-555 {
    min-width: 34.6875rem !important;
  }
  .pc\:min-w-560 {
    min-width: 35rem !important;
  }
  .pc\:min-w-565 {
    min-width: 35.3125rem !important;
  }
  .pc\:min-w-570 {
    min-width: 35.625rem !important;
  }
  .pc\:min-w-575 {
    min-width: 35.9375rem !important;
  }
  .pc\:min-w-580 {
    min-width: 36.25rem !important;
  }
  .pc\:min-w-585 {
    min-width: 36.5625rem !important;
  }
  .pc\:min-w-590 {
    min-width: 36.875rem !important;
  }
  .pc\:min-w-595 {
    min-width: 37.1875rem !important;
  }
  .pc\:min-w-600 {
    min-width: 37.5rem !important;
  }
  .pc\:min-w-605 {
    min-width: 37.8125rem !important;
  }
  .pc\:min-w-610 {
    min-width: 38.125rem !important;
  }
  .pc\:min-w-615 {
    min-width: 38.4375rem !important;
  }
  .pc\:min-w-620 {
    min-width: 38.75rem !important;
  }
  .pc\:min-w-625 {
    min-width: 39.0625rem !important;
  }
  .pc\:min-w-630 {
    min-width: 39.375rem !important;
  }
  .pc\:min-w-635 {
    min-width: 39.6875rem !important;
  }
  .pc\:min-w-640 {
    min-width: 40rem !important;
  }
  .pc\:min-w-645 {
    min-width: 40.3125rem !important;
  }
  .pc\:min-w-650 {
    min-width: 40.625rem !important;
  }
  .pc\:min-w-655 {
    min-width: 40.9375rem !important;
  }
  .pc\:min-w-660 {
    min-width: 41.25rem !important;
  }
  .pc\:min-w-665 {
    min-width: 41.5625rem !important;
  }
  .pc\:min-w-670 {
    min-width: 41.875rem !important;
  }
  .pc\:min-w-675 {
    min-width: 42.1875rem !important;
  }
  .pc\:min-w-680 {
    min-width: 42.5rem !important;
  }
  .pc\:min-w-685 {
    min-width: 42.8125rem !important;
  }
  .pc\:min-w-690 {
    min-width: 43.125rem !important;
  }
  .pc\:min-w-695 {
    min-width: 43.4375rem !important;
  }
  .pc\:min-w-700 {
    min-width: 43.75rem !important;
  }
  .pc\:min-w-705 {
    min-width: 44.0625rem !important;
  }
  .pc\:min-w-710 {
    min-width: 44.375rem !important;
  }
  .pc\:min-w-715 {
    min-width: 44.6875rem !important;
  }
  .pc\:min-w-720 {
    min-width: 45rem !important;
  }
  .pc\:min-w-725 {
    min-width: 45.3125rem !important;
  }
  .pc\:min-w-730 {
    min-width: 45.625rem !important;
  }
  .pc\:min-w-735 {
    min-width: 45.9375rem !important;
  }
  .pc\:min-w-740 {
    min-width: 46.25rem !important;
  }
  .pc\:min-w-745 {
    min-width: 46.5625rem !important;
  }
  .pc\:min-w-750 {
    min-width: 46.875rem !important;
  }
  .pc\:min-w-755 {
    min-width: 47.1875rem !important;
  }
  .pc\:min-w-760 {
    min-width: 47.5rem !important;
  }
  .pc\:min-w-765 {
    min-width: 47.8125rem !important;
  }
  .pc\:min-w-770 {
    min-width: 48.125rem !important;
  }
  .pc\:min-w-775 {
    min-width: 48.4375rem !important;
  }
  .pc\:min-w-780 {
    min-width: 48.75rem !important;
  }
  .pc\:min-w-785 {
    min-width: 49.0625rem !important;
  }
  .pc\:min-w-790 {
    min-width: 49.375rem !important;
  }
  .pc\:min-w-795 {
    min-width: 49.6875rem !important;
  }
  .pc\:min-w-800 {
    min-width: 50rem !important;
  }
  .pc\:min-w-805 {
    min-width: 50.3125rem !important;
  }
  .pc\:min-w-810 {
    min-width: 50.625rem !important;
  }
  .pc\:min-w-815 {
    min-width: 50.9375rem !important;
  }
  .pc\:min-w-820 {
    min-width: 51.25rem !important;
  }
  .pc\:min-w-825 {
    min-width: 51.5625rem !important;
  }
  .pc\:min-w-830 {
    min-width: 51.875rem !important;
  }
  .pc\:min-w-835 {
    min-width: 52.1875rem !important;
  }
  .pc\:min-w-840 {
    min-width: 52.5rem !important;
  }
  .pc\:min-w-845 {
    min-width: 52.8125rem !important;
  }
  .pc\:min-w-850 {
    min-width: 53.125rem !important;
  }
  .pc\:min-w-855 {
    min-width: 53.4375rem !important;
  }
  .pc\:min-w-860 {
    min-width: 53.75rem !important;
  }
  .pc\:min-w-865 {
    min-width: 54.0625rem !important;
  }
  .pc\:min-w-870 {
    min-width: 54.375rem !important;
  }
  .pc\:min-w-875 {
    min-width: 54.6875rem !important;
  }
  .pc\:min-w-880 {
    min-width: 55rem !important;
  }
  .pc\:min-w-885 {
    min-width: 55.3125rem !important;
  }
  .pc\:min-w-890 {
    min-width: 55.625rem !important;
  }
  .pc\:min-w-895 {
    min-width: 55.9375rem !important;
  }
  .pc\:min-w-900 {
    min-width: 56.25rem !important;
  }
  .pc\:min-w-905 {
    min-width: 56.5625rem !important;
  }
  .pc\:min-w-910 {
    min-width: 56.875rem !important;
  }
  .pc\:min-w-915 {
    min-width: 57.1875rem !important;
  }
  .pc\:min-w-920 {
    min-width: 57.5rem !important;
  }
  .pc\:min-w-925 {
    min-width: 57.8125rem !important;
  }
  .pc\:min-w-930 {
    min-width: 58.125rem !important;
  }
  .pc\:min-w-935 {
    min-width: 58.4375rem !important;
  }
  .pc\:min-w-940 {
    min-width: 58.75rem !important;
  }
  .pc\:min-w-945 {
    min-width: 59.0625rem !important;
  }
  .pc\:min-w-950 {
    min-width: 59.375rem !important;
  }
  .pc\:min-w-955 {
    min-width: 59.6875rem !important;
  }
  .pc\:min-w-960 {
    min-width: 60rem !important;
  }
  .pc\:min-w-965 {
    min-width: 60.3125rem !important;
  }
  .pc\:min-w-970 {
    min-width: 60.625rem !important;
  }
  .pc\:min-w-975 {
    min-width: 60.9375rem !important;
  }
  .pc\:min-w-980 {
    min-width: 61.25rem !important;
  }
  .pc\:min-w-985 {
    min-width: 61.5625rem !important;
  }
  .pc\:min-w-990 {
    min-width: 61.875rem !important;
  }
  .pc\:min-w-995 {
    min-width: 62.1875rem !important;
  }
  .pc\:min-w-1000 {
    min-width: 62.5rem !important;
  }
  .pc\:min-w-1005 {
    min-width: 62.8125rem !important;
  }
  .pc\:min-w-1010 {
    min-width: 63.125rem !important;
  }
  .pc\:min-w-1015 {
    min-width: 63.4375rem !important;
  }
  .pc\:min-w-1020 {
    min-width: 63.75rem !important;
  }
  .pc\:min-w-1025 {
    min-width: 64.0625rem !important;
  }
  .pc\:min-w-1030 {
    min-width: 64.375rem !important;
  }
  .pc\:min-w-1035 {
    min-width: 64.6875rem !important;
  }
  .pc\:min-w-1040 {
    min-width: 65rem !important;
  }
  .pc\:min-w-1045 {
    min-width: 65.3125rem !important;
  }
  .pc\:min-w-1050 {
    min-width: 65.625rem !important;
  }
  .pc\:min-w-1055 {
    min-width: 65.9375rem !important;
  }
  .pc\:min-w-1060 {
    min-width: 66.25rem !important;
  }
  .pc\:min-w-1065 {
    min-width: 66.5625rem !important;
  }
  .pc\:min-w-1070 {
    min-width: 66.875rem !important;
  }
  .pc\:min-w-1075 {
    min-width: 67.1875rem !important;
  }
  .pc\:min-w-1080 {
    min-width: 67.5rem !important;
  }
  .pc\:min-w-1085 {
    min-width: 67.8125rem !important;
  }
  .pc\:min-w-1090 {
    min-width: 68.125rem !important;
  }
  .pc\:min-w-1095 {
    min-width: 68.4375rem !important;
  }
  .pc\:min-w-1100 {
    min-width: 68.75rem !important;
  }
  .pc\:min-w-1105 {
    min-width: 69.0625rem !important;
  }
  .pc\:min-w-1110 {
    min-width: 69.375rem !important;
  }
  .pc\:min-w-1115 {
    min-width: 69.6875rem !important;
  }
  .pc\:min-w-1120 {
    min-width: 70rem !important;
  }
  .pc\:min-w-1125 {
    min-width: 70.3125rem !important;
  }
  .pc\:min-w-1130 {
    min-width: 70.625rem !important;
  }
  .pc\:min-w-1135 {
    min-width: 70.9375rem !important;
  }
  .pc\:min-w-1140 {
    min-width: 71.25rem !important;
  }
  .pc\:min-w-1145 {
    min-width: 71.5625rem !important;
  }
  .pc\:min-w-1150 {
    min-width: 71.875rem !important;
  }
  .pc\:min-w-1155 {
    min-width: 72.1875rem !important;
  }
  .pc\:min-w-1160 {
    min-width: 72.5rem !important;
  }
  .pc\:min-w-1165 {
    min-width: 72.8125rem !important;
  }
  .pc\:min-w-1170 {
    min-width: 73.125rem !important;
  }
  .pc\:min-w-1175 {
    min-width: 73.4375rem !important;
  }
  .pc\:min-w-1180 {
    min-width: 73.75rem !important;
  }
  .pc\:min-w-1185 {
    min-width: 74.0625rem !important;
  }
  .pc\:min-w-1190 {
    min-width: 74.375rem !important;
  }
  .pc\:min-w-1195 {
    min-width: 74.6875rem !important;
  }
  .pc\:min-w-1200 {
    min-width: 75rem !important;
  }
  .pc\:min-w-1205 {
    min-width: 75.3125rem !important;
  }
  .pc\:min-w-1210 {
    min-width: 75.625rem !important;
  }
  .pc\:min-w-1215 {
    min-width: 75.9375rem !important;
  }
  .pc\:min-w-1220 {
    min-width: 76.25rem !important;
  }
  .pc\:min-w-1225 {
    min-width: 76.5625rem !important;
  }
  .pc\:min-w-1230 {
    min-width: 76.875rem !important;
  }
  .pc\:min-w-1235 {
    min-width: 77.1875rem !important;
  }
  .pc\:min-w-1240 {
    min-width: 77.5rem !important;
  }
  .pc\:min-w-1245 {
    min-width: 77.8125rem !important;
  }
  .pc\:min-w-1250 {
    min-width: 78.125rem !important;
  }
  .pc\:min-w-1255 {
    min-width: 78.4375rem !important;
  }
  .pc\:min-w-1260 {
    min-width: 78.75rem !important;
  }
  .pc\:min-w-1265 {
    min-width: 79.0625rem !important;
  }
  .pc\:min-w-1270 {
    min-width: 79.375rem !important;
  }
  .pc\:min-w-1275 {
    min-width: 79.6875rem !important;
  }
  .pc\:min-w-1280 {
    min-width: 80rem !important;
  }
  .pc\:min-w-1285 {
    min-width: 80.3125rem !important;
  }
  .pc\:min-w-1290 {
    min-width: 80.625rem !important;
  }
  .pc\:min-w-1295 {
    min-width: 80.9375rem !important;
  }
  .pc\:min-w-1300 {
    min-width: 81.25rem !important;
  }
  .pc\:min-w-1305 {
    min-width: 81.5625rem !important;
  }
  .pc\:min-w-1310 {
    min-width: 81.875rem !important;
  }
  .pc\:min-w-1315 {
    min-width: 82.1875rem !important;
  }
  .pc\:min-w-1320 {
    min-width: 82.5rem !important;
  }
  .pc\:min-w-1325 {
    min-width: 82.8125rem !important;
  }
  .pc\:min-w-1330 {
    min-width: 83.125rem !important;
  }
  .pc\:min-w-1335 {
    min-width: 83.4375rem !important;
  }
  .pc\:min-w-1340 {
    min-width: 83.75rem !important;
  }
  .pc\:min-w-1345 {
    min-width: 84.0625rem !important;
  }
  .pc\:min-w-1350 {
    min-width: 84.375rem !important;
  }
  .pc\:min-w-1355 {
    min-width: 84.6875rem !important;
  }
  .pc\:min-w-1360 {
    min-width: 85rem !important;
  }
  .pc\:min-w-1365 {
    min-width: 85.3125rem !important;
  }
  .pc\:min-w-1370 {
    min-width: 85.625rem !important;
  }
  .pc\:min-w-1375 {
    min-width: 85.9375rem !important;
  }
  .pc\:min-w-1380 {
    min-width: 86.25rem !important;
  }
  .pc\:min-w-1385 {
    min-width: 86.5625rem !important;
  }
  .pc\:min-w-1390 {
    min-width: 86.875rem !important;
  }
  .pc\:min-w-1395 {
    min-width: 87.1875rem !important;
  }
  .pc\:min-w-1400 {
    min-width: 87.5rem !important;
  }
  .pc\:min-w-1405 {
    min-width: 87.8125rem !important;
  }
  .pc\:min-w-1410 {
    min-width: 88.125rem !important;
  }
  .pc\:min-w-1415 {
    min-width: 88.4375rem !important;
  }
  .pc\:min-w-1420 {
    min-width: 88.75rem !important;
  }
  .pc\:min-w-1425 {
    min-width: 89.0625rem !important;
  }
  .pc\:min-w-1430 {
    min-width: 89.375rem !important;
  }
  .pc\:min-w-1435 {
    min-width: 89.6875rem !important;
  }
  .pc\:min-w-1440 {
    min-width: 90rem !important;
  }
  .pc\:min-w-1445 {
    min-width: 90.3125rem !important;
  }
  .pc\:min-w-1450 {
    min-width: 90.625rem !important;
  }
  .pc\:min-w-1455 {
    min-width: 90.9375rem !important;
  }
  .pc\:min-w-1460 {
    min-width: 91.25rem !important;
  }
  .pc\:min-w-1465 {
    min-width: 91.5625rem !important;
  }
  .pc\:min-w-1470 {
    min-width: 91.875rem !important;
  }
  .pc\:min-w-1475 {
    min-width: 92.1875rem !important;
  }
  .pc\:min-w-1480 {
    min-width: 92.5rem !important;
  }
  .pc\:min-w-1485 {
    min-width: 92.8125rem !important;
  }
  .pc\:min-w-1490 {
    min-width: 93.125rem !important;
  }
  .pc\:min-w-1495 {
    min-width: 93.4375rem !important;
  }
  .pc\:min-w-1500 {
    min-width: 93.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:w-auto {
    width: auto !important;
  }
  .md\:w-full {
    width: 100% !important;
  }
  .md\:w-0 {
    width: 0rem !important;
  }
  .md\:w-5 {
    width: 0.3125rem !important;
  }
  .md\:w-10 {
    width: 0.625rem !important;
  }
  .md\:w-15 {
    width: 0.9375rem !important;
  }
  .md\:w-20 {
    width: 1.25rem !important;
  }
  .md\:w-25 {
    width: 1.5625rem !important;
  }
  .md\:w-30 {
    width: 1.875rem !important;
  }
  .md\:w-35 {
    width: 2.1875rem !important;
  }
  .md\:w-40 {
    width: 2.5rem !important;
  }
  .md\:w-45 {
    width: 2.8125rem !important;
  }
  .md\:w-50 {
    width: 3.125rem !important;
  }
  .md\:w-55 {
    width: 3.4375rem !important;
  }
  .md\:w-60 {
    width: 3.75rem !important;
  }
  .md\:w-65 {
    width: 4.0625rem !important;
  }
  .md\:w-70 {
    width: 4.375rem !important;
  }
  .md\:w-75 {
    width: 4.6875rem !important;
  }
  .md\:w-80 {
    width: 5rem !important;
  }
  .md\:w-85 {
    width: 5.3125rem !important;
  }
  .md\:w-90 {
    width: 5.625rem !important;
  }
  .md\:w-95 {
    width: 5.9375rem !important;
  }
  .md\:w-100 {
    width: 6.25rem !important;
  }
  .md\:w-105 {
    width: 6.5625rem !important;
  }
  .md\:w-110 {
    width: 6.875rem !important;
  }
  .md\:w-115 {
    width: 7.1875rem !important;
  }
  .md\:w-120 {
    width: 7.5rem !important;
  }
  .md\:w-125 {
    width: 7.8125rem !important;
  }
  .md\:w-130 {
    width: 8.125rem !important;
  }
  .md\:w-135 {
    width: 8.4375rem !important;
  }
  .md\:w-140 {
    width: 8.75rem !important;
  }
  .md\:w-145 {
    width: 9.0625rem !important;
  }
  .md\:w-150 {
    width: 9.375rem !important;
  }
  .md\:w-155 {
    width: 9.6875rem !important;
  }
  .md\:w-160 {
    width: 10rem !important;
  }
  .md\:w-165 {
    width: 10.3125rem !important;
  }
  .md\:w-170 {
    width: 10.625rem !important;
  }
  .md\:w-175 {
    width: 10.9375rem !important;
  }
  .md\:w-180 {
    width: 11.25rem !important;
  }
  .md\:w-185 {
    width: 11.5625rem !important;
  }
  .md\:w-190 {
    width: 11.875rem !important;
  }
  .md\:w-195 {
    width: 12.1875rem !important;
  }
  .md\:w-200 {
    width: 12.5rem !important;
  }
  .md\:w-205 {
    width: 12.8125rem !important;
  }
  .md\:w-210 {
    width: 13.125rem !important;
  }
  .md\:w-215 {
    width: 13.4375rem !important;
  }
  .md\:w-220 {
    width: 13.75rem !important;
  }
  .md\:w-225 {
    width: 14.0625rem !important;
  }
  .md\:w-230 {
    width: 14.375rem !important;
  }
  .md\:w-235 {
    width: 14.6875rem !important;
  }
  .md\:w-240 {
    width: 15rem !important;
  }
  .md\:w-245 {
    width: 15.3125rem !important;
  }
  .md\:w-250 {
    width: 15.625rem !important;
  }
  .md\:w-255 {
    width: 15.9375rem !important;
  }
  .md\:w-260 {
    width: 16.25rem !important;
  }
  .md\:w-265 {
    width: 16.5625rem !important;
  }
  .md\:w-270 {
    width: 16.875rem !important;
  }
  .md\:w-275 {
    width: 17.1875rem !important;
  }
  .md\:w-280 {
    width: 17.5rem !important;
  }
  .md\:w-285 {
    width: 17.8125rem !important;
  }
  .md\:w-290 {
    width: 18.125rem !important;
  }
  .md\:w-295 {
    width: 18.4375rem !important;
  }
  .md\:w-300 {
    width: 18.75rem !important;
  }
  .md\:w-305 {
    width: 19.0625rem !important;
  }
  .md\:w-310 {
    width: 19.375rem !important;
  }
  .md\:w-315 {
    width: 19.6875rem !important;
  }
  .md\:w-320 {
    width: 20rem !important;
  }
  .md\:w-325 {
    width: 20.3125rem !important;
  }
  .md\:w-330 {
    width: 20.625rem !important;
  }
  .md\:w-335 {
    width: 20.9375rem !important;
  }
  .md\:w-340 {
    width: 21.25rem !important;
  }
  .md\:w-345 {
    width: 21.5625rem !important;
  }
  .md\:w-350 {
    width: 21.875rem !important;
  }
  .md\:w-355 {
    width: 22.1875rem !important;
  }
  .md\:w-360 {
    width: 22.5rem !important;
  }
  .md\:w-365 {
    width: 22.8125rem !important;
  }
  .md\:w-370 {
    width: 23.125rem !important;
  }
  .md\:w-375 {
    width: 23.4375rem !important;
  }
  .md\:w-380 {
    width: 23.75rem !important;
  }
  .md\:w-385 {
    width: 24.0625rem !important;
  }
  .md\:w-390 {
    width: 24.375rem !important;
  }
  .md\:w-395 {
    width: 24.6875rem !important;
  }
  .md\:w-400 {
    width: 25rem !important;
  }
  .md\:w-405 {
    width: 25.3125rem !important;
  }
  .md\:w-410 {
    width: 25.625rem !important;
  }
  .md\:w-415 {
    width: 25.9375rem !important;
  }
  .md\:w-420 {
    width: 26.25rem !important;
  }
  .md\:w-425 {
    width: 26.5625rem !important;
  }
  .md\:w-430 {
    width: 26.875rem !important;
  }
  .md\:w-435 {
    width: 27.1875rem !important;
  }
  .md\:w-440 {
    width: 27.5rem !important;
  }
  .md\:w-445 {
    width: 27.8125rem !important;
  }
  .md\:w-450 {
    width: 28.125rem !important;
  }
  .md\:w-455 {
    width: 28.4375rem !important;
  }
  .md\:w-460 {
    width: 28.75rem !important;
  }
  .md\:w-465 {
    width: 29.0625rem !important;
  }
  .md\:w-470 {
    width: 29.375rem !important;
  }
  .md\:w-475 {
    width: 29.6875rem !important;
  }
  .md\:w-480 {
    width: 30rem !important;
  }
  .md\:w-485 {
    width: 30.3125rem !important;
  }
  .md\:w-490 {
    width: 30.625rem !important;
  }
  .md\:w-495 {
    width: 30.9375rem !important;
  }
  .md\:w-500 {
    width: 31.25rem !important;
  }
  .md\:w-505 {
    width: 31.5625rem !important;
  }
  .md\:w-510 {
    width: 31.875rem !important;
  }
  .md\:w-515 {
    width: 32.1875rem !important;
  }
  .md\:w-520 {
    width: 32.5rem !important;
  }
  .md\:w-525 {
    width: 32.8125rem !important;
  }
  .md\:w-530 {
    width: 33.125rem !important;
  }
  .md\:w-535 {
    width: 33.4375rem !important;
  }
  .md\:w-540 {
    width: 33.75rem !important;
  }
  .md\:w-545 {
    width: 34.0625rem !important;
  }
  .md\:w-550 {
    width: 34.375rem !important;
  }
  .md\:w-555 {
    width: 34.6875rem !important;
  }
  .md\:w-560 {
    width: 35rem !important;
  }
  .md\:w-565 {
    width: 35.3125rem !important;
  }
  .md\:w-570 {
    width: 35.625rem !important;
  }
  .md\:w-575 {
    width: 35.9375rem !important;
  }
  .md\:w-580 {
    width: 36.25rem !important;
  }
  .md\:w-585 {
    width: 36.5625rem !important;
  }
  .md\:w-590 {
    width: 36.875rem !important;
  }
  .md\:w-595 {
    width: 37.1875rem !important;
  }
  .md\:w-600 {
    width: 37.5rem !important;
  }
  .md\:w-605 {
    width: 37.8125rem !important;
  }
  .md\:w-610 {
    width: 38.125rem !important;
  }
  .md\:w-615 {
    width: 38.4375rem !important;
  }
  .md\:w-620 {
    width: 38.75rem !important;
  }
  .md\:w-625 {
    width: 39.0625rem !important;
  }
  .md\:w-630 {
    width: 39.375rem !important;
  }
  .md\:w-635 {
    width: 39.6875rem !important;
  }
  .md\:w-640 {
    width: 40rem !important;
  }
  .md\:w-645 {
    width: 40.3125rem !important;
  }
  .md\:w-650 {
    width: 40.625rem !important;
  }
  .md\:w-655 {
    width: 40.9375rem !important;
  }
  .md\:w-660 {
    width: 41.25rem !important;
  }
  .md\:w-665 {
    width: 41.5625rem !important;
  }
  .md\:w-670 {
    width: 41.875rem !important;
  }
  .md\:w-675 {
    width: 42.1875rem !important;
  }
  .md\:w-680 {
    width: 42.5rem !important;
  }
  .md\:w-685 {
    width: 42.8125rem !important;
  }
  .md\:w-690 {
    width: 43.125rem !important;
  }
  .md\:w-695 {
    width: 43.4375rem !important;
  }
  .md\:w-700 {
    width: 43.75rem !important;
  }
  .md\:w-705 {
    width: 44.0625rem !important;
  }
  .md\:w-710 {
    width: 44.375rem !important;
  }
  .md\:w-715 {
    width: 44.6875rem !important;
  }
  .md\:w-720 {
    width: 45rem !important;
  }
  .md\:w-725 {
    width: 45.3125rem !important;
  }
  .md\:w-730 {
    width: 45.625rem !important;
  }
  .md\:w-735 {
    width: 45.9375rem !important;
  }
  .md\:w-740 {
    width: 46.25rem !important;
  }
  .md\:w-745 {
    width: 46.5625rem !important;
  }
  .md\:w-750 {
    width: 46.875rem !important;
  }
  .md\:w-755 {
    width: 47.1875rem !important;
  }
  .md\:w-760 {
    width: 47.5rem !important;
  }
  .md\:w-765 {
    width: 47.8125rem !important;
  }
  .md\:w-770 {
    width: 48.125rem !important;
  }
  .md\:w-775 {
    width: 48.4375rem !important;
  }
  .md\:w-780 {
    width: 48.75rem !important;
  }
  .md\:w-785 {
    width: 49.0625rem !important;
  }
  .md\:w-790 {
    width: 49.375rem !important;
  }
  .md\:w-795 {
    width: 49.6875rem !important;
  }
  .md\:w-800 {
    width: 50rem !important;
  }
  .md\:w-805 {
    width: 50.3125rem !important;
  }
  .md\:w-810 {
    width: 50.625rem !important;
  }
  .md\:w-815 {
    width: 50.9375rem !important;
  }
  .md\:w-820 {
    width: 51.25rem !important;
  }
  .md\:w-825 {
    width: 51.5625rem !important;
  }
  .md\:w-830 {
    width: 51.875rem !important;
  }
  .md\:w-835 {
    width: 52.1875rem !important;
  }
  .md\:w-840 {
    width: 52.5rem !important;
  }
  .md\:w-845 {
    width: 52.8125rem !important;
  }
  .md\:w-850 {
    width: 53.125rem !important;
  }
  .md\:w-855 {
    width: 53.4375rem !important;
  }
  .md\:w-860 {
    width: 53.75rem !important;
  }
  .md\:w-865 {
    width: 54.0625rem !important;
  }
  .md\:w-870 {
    width: 54.375rem !important;
  }
  .md\:w-875 {
    width: 54.6875rem !important;
  }
  .md\:w-880 {
    width: 55rem !important;
  }
  .md\:w-885 {
    width: 55.3125rem !important;
  }
  .md\:w-890 {
    width: 55.625rem !important;
  }
  .md\:w-895 {
    width: 55.9375rem !important;
  }
  .md\:w-900 {
    width: 56.25rem !important;
  }
  .md\:w-905 {
    width: 56.5625rem !important;
  }
  .md\:w-910 {
    width: 56.875rem !important;
  }
  .md\:w-915 {
    width: 57.1875rem !important;
  }
  .md\:w-920 {
    width: 57.5rem !important;
  }
  .md\:w-925 {
    width: 57.8125rem !important;
  }
  .md\:w-930 {
    width: 58.125rem !important;
  }
  .md\:w-935 {
    width: 58.4375rem !important;
  }
  .md\:w-940 {
    width: 58.75rem !important;
  }
  .md\:w-945 {
    width: 59.0625rem !important;
  }
  .md\:w-950 {
    width: 59.375rem !important;
  }
  .md\:w-955 {
    width: 59.6875rem !important;
  }
  .md\:w-960 {
    width: 60rem !important;
  }
  .md\:w-965 {
    width: 60.3125rem !important;
  }
  .md\:w-970 {
    width: 60.625rem !important;
  }
  .md\:w-975 {
    width: 60.9375rem !important;
  }
  .md\:w-980 {
    width: 61.25rem !important;
  }
  .md\:w-985 {
    width: 61.5625rem !important;
  }
  .md\:w-990 {
    width: 61.875rem !important;
  }
  .md\:w-995 {
    width: 62.1875rem !important;
  }
  .md\:w-1000 {
    width: 62.5rem !important;
  }
  .md\:w-1005 {
    width: 62.8125rem !important;
  }
  .md\:w-1010 {
    width: 63.125rem !important;
  }
  .md\:w-1015 {
    width: 63.4375rem !important;
  }
  .md\:w-1020 {
    width: 63.75rem !important;
  }
  .md\:w-1025 {
    width: 64.0625rem !important;
  }
  .md\:w-1030 {
    width: 64.375rem !important;
  }
  .md\:w-1035 {
    width: 64.6875rem !important;
  }
  .md\:w-1040 {
    width: 65rem !important;
  }
  .md\:w-1045 {
    width: 65.3125rem !important;
  }
  .md\:w-1050 {
    width: 65.625rem !important;
  }
  .md\:w-1055 {
    width: 65.9375rem !important;
  }
  .md\:w-1060 {
    width: 66.25rem !important;
  }
  .md\:w-1065 {
    width: 66.5625rem !important;
  }
  .md\:w-1070 {
    width: 66.875rem !important;
  }
  .md\:w-1075 {
    width: 67.1875rem !important;
  }
  .md\:w-1080 {
    width: 67.5rem !important;
  }
  .md\:w-1085 {
    width: 67.8125rem !important;
  }
  .md\:w-1090 {
    width: 68.125rem !important;
  }
  .md\:w-1095 {
    width: 68.4375rem !important;
  }
  .md\:w-1100 {
    width: 68.75rem !important;
  }
  .md\:w-1105 {
    width: 69.0625rem !important;
  }
  .md\:w-1110 {
    width: 69.375rem !important;
  }
  .md\:w-1115 {
    width: 69.6875rem !important;
  }
  .md\:w-1120 {
    width: 70rem !important;
  }
  .md\:w-1125 {
    width: 70.3125rem !important;
  }
  .md\:w-1130 {
    width: 70.625rem !important;
  }
  .md\:w-1135 {
    width: 70.9375rem !important;
  }
  .md\:w-1140 {
    width: 71.25rem !important;
  }
  .md\:w-1145 {
    width: 71.5625rem !important;
  }
  .md\:w-1150 {
    width: 71.875rem !important;
  }
  .md\:w-1155 {
    width: 72.1875rem !important;
  }
  .md\:w-1160 {
    width: 72.5rem !important;
  }
  .md\:w-1165 {
    width: 72.8125rem !important;
  }
  .md\:w-1170 {
    width: 73.125rem !important;
  }
  .md\:w-1175 {
    width: 73.4375rem !important;
  }
  .md\:w-1180 {
    width: 73.75rem !important;
  }
  .md\:w-1185 {
    width: 74.0625rem !important;
  }
  .md\:w-1190 {
    width: 74.375rem !important;
  }
  .md\:w-1195 {
    width: 74.6875rem !important;
  }
  .md\:w-1200 {
    width: 75rem !important;
  }
  .md\:w-1205 {
    width: 75.3125rem !important;
  }
  .md\:w-1210 {
    width: 75.625rem !important;
  }
  .md\:w-1215 {
    width: 75.9375rem !important;
  }
  .md\:w-1220 {
    width: 76.25rem !important;
  }
  .md\:w-1225 {
    width: 76.5625rem !important;
  }
  .md\:w-1230 {
    width: 76.875rem !important;
  }
  .md\:w-1235 {
    width: 77.1875rem !important;
  }
  .md\:w-1240 {
    width: 77.5rem !important;
  }
  .md\:w-1245 {
    width: 77.8125rem !important;
  }
  .md\:w-1250 {
    width: 78.125rem !important;
  }
  .md\:w-1255 {
    width: 78.4375rem !important;
  }
  .md\:w-1260 {
    width: 78.75rem !important;
  }
  .md\:w-1265 {
    width: 79.0625rem !important;
  }
  .md\:w-1270 {
    width: 79.375rem !important;
  }
  .md\:w-1275 {
    width: 79.6875rem !important;
  }
  .md\:w-1280 {
    width: 80rem !important;
  }
  .md\:w-1285 {
    width: 80.3125rem !important;
  }
  .md\:w-1290 {
    width: 80.625rem !important;
  }
  .md\:w-1295 {
    width: 80.9375rem !important;
  }
  .md\:w-1300 {
    width: 81.25rem !important;
  }
  .md\:w-1305 {
    width: 81.5625rem !important;
  }
  .md\:w-1310 {
    width: 81.875rem !important;
  }
  .md\:w-1315 {
    width: 82.1875rem !important;
  }
  .md\:w-1320 {
    width: 82.5rem !important;
  }
  .md\:w-1325 {
    width: 82.8125rem !important;
  }
  .md\:w-1330 {
    width: 83.125rem !important;
  }
  .md\:w-1335 {
    width: 83.4375rem !important;
  }
  .md\:w-1340 {
    width: 83.75rem !important;
  }
  .md\:w-1345 {
    width: 84.0625rem !important;
  }
  .md\:w-1350 {
    width: 84.375rem !important;
  }
  .md\:w-1355 {
    width: 84.6875rem !important;
  }
  .md\:w-1360 {
    width: 85rem !important;
  }
  .md\:w-1365 {
    width: 85.3125rem !important;
  }
  .md\:w-1370 {
    width: 85.625rem !important;
  }
  .md\:w-1375 {
    width: 85.9375rem !important;
  }
  .md\:w-1380 {
    width: 86.25rem !important;
  }
  .md\:w-1385 {
    width: 86.5625rem !important;
  }
  .md\:w-1390 {
    width: 86.875rem !important;
  }
  .md\:w-1395 {
    width: 87.1875rem !important;
  }
  .md\:w-1400 {
    width: 87.5rem !important;
  }
  .md\:w-1405 {
    width: 87.8125rem !important;
  }
  .md\:w-1410 {
    width: 88.125rem !important;
  }
  .md\:w-1415 {
    width: 88.4375rem !important;
  }
  .md\:w-1420 {
    width: 88.75rem !important;
  }
  .md\:w-1425 {
    width: 89.0625rem !important;
  }
  .md\:w-1430 {
    width: 89.375rem !important;
  }
  .md\:w-1435 {
    width: 89.6875rem !important;
  }
  .md\:w-1440 {
    width: 90rem !important;
  }
  .md\:w-1445 {
    width: 90.3125rem !important;
  }
  .md\:w-1450 {
    width: 90.625rem !important;
  }
  .md\:w-1455 {
    width: 90.9375rem !important;
  }
  .md\:w-1460 {
    width: 91.25rem !important;
  }
  .md\:w-1465 {
    width: 91.5625rem !important;
  }
  .md\:w-1470 {
    width: 91.875rem !important;
  }
  .md\:w-1475 {
    width: 92.1875rem !important;
  }
  .md\:w-1480 {
    width: 92.5rem !important;
  }
  .md\:w-1485 {
    width: 92.8125rem !important;
  }
  .md\:w-1490 {
    width: 93.125rem !important;
  }
  .md\:w-1495 {
    width: 93.4375rem !important;
  }
  .md\:w-1500 {
    width: 93.75rem !important;
  }
  .md\:w-0per {
    width: 0% !important;
  }
  .md\:w-1per {
    width: 1% !important;
  }
  .md\:w-2per {
    width: 2% !important;
  }
  .md\:w-3per {
    width: 3% !important;
  }
  .md\:w-4per {
    width: 4% !important;
  }
  .md\:w-5per {
    width: 5% !important;
  }
  .md\:w-6per {
    width: 6% !important;
  }
  .md\:w-7per {
    width: 7% !important;
  }
  .md\:w-8per {
    width: 8% !important;
  }
  .md\:w-9per {
    width: 9% !important;
  }
  .md\:w-10per {
    width: 10% !important;
  }
  .md\:w-11per {
    width: 11% !important;
  }
  .md\:w-12per {
    width: 12% !important;
  }
  .md\:w-13per {
    width: 13% !important;
  }
  .md\:w-14per {
    width: 14% !important;
  }
  .md\:w-15per {
    width: 15% !important;
  }
  .md\:w-16per {
    width: 16% !important;
  }
  .md\:w-17per {
    width: 17% !important;
  }
  .md\:w-18per {
    width: 18% !important;
  }
  .md\:w-19per {
    width: 19% !important;
  }
  .md\:w-20per {
    width: 20% !important;
  }
  .md\:w-21per {
    width: 21% !important;
  }
  .md\:w-22per {
    width: 22% !important;
  }
  .md\:w-23per {
    width: 23% !important;
  }
  .md\:w-24per {
    width: 24% !important;
  }
  .md\:w-25per {
    width: 25% !important;
  }
  .md\:w-26per {
    width: 26% !important;
  }
  .md\:w-27per {
    width: 27% !important;
  }
  .md\:w-28per {
    width: 28% !important;
  }
  .md\:w-29per {
    width: 29% !important;
  }
  .md\:w-30per {
    width: 30% !important;
  }
  .md\:w-31per {
    width: 31% !important;
  }
  .md\:w-32per {
    width: 32% !important;
  }
  .md\:w-33per {
    width: 33% !important;
  }
  .md\:w-34per {
    width: 34% !important;
  }
  .md\:w-35per {
    width: 35% !important;
  }
  .md\:w-36per {
    width: 36% !important;
  }
  .md\:w-37per {
    width: 37% !important;
  }
  .md\:w-38per {
    width: 38% !important;
  }
  .md\:w-39per {
    width: 39% !important;
  }
  .md\:w-40per {
    width: 40% !important;
  }
  .md\:w-41per {
    width: 41% !important;
  }
  .md\:w-42per {
    width: 42% !important;
  }
  .md\:w-43per {
    width: 43% !important;
  }
  .md\:w-44per {
    width: 44% !important;
  }
  .md\:w-45per {
    width: 45% !important;
  }
  .md\:w-46per {
    width: 46% !important;
  }
  .md\:w-47per {
    width: 47% !important;
  }
  .md\:w-48per {
    width: 48% !important;
  }
  .md\:w-49per {
    width: 49% !important;
  }
  .md\:w-50per {
    width: 50% !important;
  }
  .md\:w-51per {
    width: 51% !important;
  }
  .md\:w-52per {
    width: 52% !important;
  }
  .md\:w-53per {
    width: 53% !important;
  }
  .md\:w-54per {
    width: 54% !important;
  }
  .md\:w-55per {
    width: 55% !important;
  }
  .md\:w-56per {
    width: 56% !important;
  }
  .md\:w-57per {
    width: 57% !important;
  }
  .md\:w-58per {
    width: 58% !important;
  }
  .md\:w-59per {
    width: 59% !important;
  }
  .md\:w-60per {
    width: 60% !important;
  }
  .md\:w-61per {
    width: 61% !important;
  }
  .md\:w-62per {
    width: 62% !important;
  }
  .md\:w-63per {
    width: 63% !important;
  }
  .md\:w-64per {
    width: 64% !important;
  }
  .md\:w-65per {
    width: 65% !important;
  }
  .md\:w-66per {
    width: 66% !important;
  }
  .md\:w-67per {
    width: 67% !important;
  }
  .md\:w-68per {
    width: 68% !important;
  }
  .md\:w-69per {
    width: 69% !important;
  }
  .md\:w-70per {
    width: 70% !important;
  }
  .md\:w-71per {
    width: 71% !important;
  }
  .md\:w-72per {
    width: 72% !important;
  }
  .md\:w-73per {
    width: 73% !important;
  }
  .md\:w-74per {
    width: 74% !important;
  }
  .md\:w-75per {
    width: 75% !important;
  }
  .md\:w-76per {
    width: 76% !important;
  }
  .md\:w-77per {
    width: 77% !important;
  }
  .md\:w-78per {
    width: 78% !important;
  }
  .md\:w-79per {
    width: 79% !important;
  }
  .md\:w-80per {
    width: 80% !important;
  }
  .md\:w-81per {
    width: 81% !important;
  }
  .md\:w-82per {
    width: 82% !important;
  }
  .md\:w-83per {
    width: 83% !important;
  }
  .md\:w-84per {
    width: 84% !important;
  }
  .md\:w-85per {
    width: 85% !important;
  }
  .md\:w-86per {
    width: 86% !important;
  }
  .md\:w-87per {
    width: 87% !important;
  }
  .md\:w-88per {
    width: 88% !important;
  }
  .md\:w-89per {
    width: 89% !important;
  }
  .md\:w-90per {
    width: 90% !important;
  }
  .md\:w-91per {
    width: 91% !important;
  }
  .md\:w-92per {
    width: 92% !important;
  }
  .md\:w-93per {
    width: 93% !important;
  }
  .md\:w-94per {
    width: 94% !important;
  }
  .md\:w-95per {
    width: 95% !important;
  }
  .md\:w-96per {
    width: 96% !important;
  }
  .md\:w-97per {
    width: 97% !important;
  }
  .md\:w-98per {
    width: 98% !important;
  }
  .md\:w-99per {
    width: 99% !important;
  }
  .md\:w-100per {
    width: 100% !important;
  }
  .md\:max-w-none {
    max-width: none !important;
  }
  .md\:max-w-full {
    max-width: 100% !important;
  }
  .md\:max-w-0 {
    max-width: 0rem !important;
  }
  .md\:max-w-5 {
    max-width: 0.3125rem !important;
  }
  .md\:max-w-10 {
    max-width: 0.625rem !important;
  }
  .md\:max-w-15 {
    max-width: 0.9375rem !important;
  }
  .md\:max-w-20 {
    max-width: 1.25rem !important;
  }
  .md\:max-w-25 {
    max-width: 1.5625rem !important;
  }
  .md\:max-w-30 {
    max-width: 1.875rem !important;
  }
  .md\:max-w-35 {
    max-width: 2.1875rem !important;
  }
  .md\:max-w-40 {
    max-width: 2.5rem !important;
  }
  .md\:max-w-45 {
    max-width: 2.8125rem !important;
  }
  .md\:max-w-50 {
    max-width: 3.125rem !important;
  }
  .md\:max-w-55 {
    max-width: 3.4375rem !important;
  }
  .md\:max-w-60 {
    max-width: 3.75rem !important;
  }
  .md\:max-w-65 {
    max-width: 4.0625rem !important;
  }
  .md\:max-w-70 {
    max-width: 4.375rem !important;
  }
  .md\:max-w-75 {
    max-width: 4.6875rem !important;
  }
  .md\:max-w-80 {
    max-width: 5rem !important;
  }
  .md\:max-w-85 {
    max-width: 5.3125rem !important;
  }
  .md\:max-w-90 {
    max-width: 5.625rem !important;
  }
  .md\:max-w-95 {
    max-width: 5.9375rem !important;
  }
  .md\:max-w-100 {
    max-width: 6.25rem !important;
  }
  .md\:max-w-105 {
    max-width: 6.5625rem !important;
  }
  .md\:max-w-110 {
    max-width: 6.875rem !important;
  }
  .md\:max-w-115 {
    max-width: 7.1875rem !important;
  }
  .md\:max-w-120 {
    max-width: 7.5rem !important;
  }
  .md\:max-w-125 {
    max-width: 7.8125rem !important;
  }
  .md\:max-w-130 {
    max-width: 8.125rem !important;
  }
  .md\:max-w-135 {
    max-width: 8.4375rem !important;
  }
  .md\:max-w-140 {
    max-width: 8.75rem !important;
  }
  .md\:max-w-145 {
    max-width: 9.0625rem !important;
  }
  .md\:max-w-150 {
    max-width: 9.375rem !important;
  }
  .md\:max-w-155 {
    max-width: 9.6875rem !important;
  }
  .md\:max-w-160 {
    max-width: 10rem !important;
  }
  .md\:max-w-165 {
    max-width: 10.3125rem !important;
  }
  .md\:max-w-170 {
    max-width: 10.625rem !important;
  }
  .md\:max-w-175 {
    max-width: 10.9375rem !important;
  }
  .md\:max-w-180 {
    max-width: 11.25rem !important;
  }
  .md\:max-w-185 {
    max-width: 11.5625rem !important;
  }
  .md\:max-w-190 {
    max-width: 11.875rem !important;
  }
  .md\:max-w-195 {
    max-width: 12.1875rem !important;
  }
  .md\:max-w-200 {
    max-width: 12.5rem !important;
  }
  .md\:max-w-205 {
    max-width: 12.8125rem !important;
  }
  .md\:max-w-210 {
    max-width: 13.125rem !important;
  }
  .md\:max-w-215 {
    max-width: 13.4375rem !important;
  }
  .md\:max-w-220 {
    max-width: 13.75rem !important;
  }
  .md\:max-w-225 {
    max-width: 14.0625rem !important;
  }
  .md\:max-w-230 {
    max-width: 14.375rem !important;
  }
  .md\:max-w-235 {
    max-width: 14.6875rem !important;
  }
  .md\:max-w-240 {
    max-width: 15rem !important;
  }
  .md\:max-w-245 {
    max-width: 15.3125rem !important;
  }
  .md\:max-w-250 {
    max-width: 15.625rem !important;
  }
  .md\:max-w-255 {
    max-width: 15.9375rem !important;
  }
  .md\:max-w-260 {
    max-width: 16.25rem !important;
  }
  .md\:max-w-265 {
    max-width: 16.5625rem !important;
  }
  .md\:max-w-270 {
    max-width: 16.875rem !important;
  }
  .md\:max-w-275 {
    max-width: 17.1875rem !important;
  }
  .md\:max-w-280 {
    max-width: 17.5rem !important;
  }
  .md\:max-w-285 {
    max-width: 17.8125rem !important;
  }
  .md\:max-w-290 {
    max-width: 18.125rem !important;
  }
  .md\:max-w-295 {
    max-width: 18.4375rem !important;
  }
  .md\:max-w-300 {
    max-width: 18.75rem !important;
  }
  .md\:max-w-305 {
    max-width: 19.0625rem !important;
  }
  .md\:max-w-310 {
    max-width: 19.375rem !important;
  }
  .md\:max-w-315 {
    max-width: 19.6875rem !important;
  }
  .md\:max-w-320 {
    max-width: 20rem !important;
  }
  .md\:max-w-325 {
    max-width: 20.3125rem !important;
  }
  .md\:max-w-330 {
    max-width: 20.625rem !important;
  }
  .md\:max-w-335 {
    max-width: 20.9375rem !important;
  }
  .md\:max-w-340 {
    max-width: 21.25rem !important;
  }
  .md\:max-w-345 {
    max-width: 21.5625rem !important;
  }
  .md\:max-w-350 {
    max-width: 21.875rem !important;
  }
  .md\:max-w-355 {
    max-width: 22.1875rem !important;
  }
  .md\:max-w-360 {
    max-width: 22.5rem !important;
  }
  .md\:max-w-365 {
    max-width: 22.8125rem !important;
  }
  .md\:max-w-370 {
    max-width: 23.125rem !important;
  }
  .md\:max-w-375 {
    max-width: 23.4375rem !important;
  }
  .md\:max-w-380 {
    max-width: 23.75rem !important;
  }
  .md\:max-w-385 {
    max-width: 24.0625rem !important;
  }
  .md\:max-w-390 {
    max-width: 24.375rem !important;
  }
  .md\:max-w-395 {
    max-width: 24.6875rem !important;
  }
  .md\:max-w-400 {
    max-width: 25rem !important;
  }
  .md\:max-w-405 {
    max-width: 25.3125rem !important;
  }
  .md\:max-w-410 {
    max-width: 25.625rem !important;
  }
  .md\:max-w-415 {
    max-width: 25.9375rem !important;
  }
  .md\:max-w-420 {
    max-width: 26.25rem !important;
  }
  .md\:max-w-425 {
    max-width: 26.5625rem !important;
  }
  .md\:max-w-430 {
    max-width: 26.875rem !important;
  }
  .md\:max-w-435 {
    max-width: 27.1875rem !important;
  }
  .md\:max-w-440 {
    max-width: 27.5rem !important;
  }
  .md\:max-w-445 {
    max-width: 27.8125rem !important;
  }
  .md\:max-w-450 {
    max-width: 28.125rem !important;
  }
  .md\:max-w-455 {
    max-width: 28.4375rem !important;
  }
  .md\:max-w-460 {
    max-width: 28.75rem !important;
  }
  .md\:max-w-465 {
    max-width: 29.0625rem !important;
  }
  .md\:max-w-470 {
    max-width: 29.375rem !important;
  }
  .md\:max-w-475 {
    max-width: 29.6875rem !important;
  }
  .md\:max-w-480 {
    max-width: 30rem !important;
  }
  .md\:max-w-485 {
    max-width: 30.3125rem !important;
  }
  .md\:max-w-490 {
    max-width: 30.625rem !important;
  }
  .md\:max-w-495 {
    max-width: 30.9375rem !important;
  }
  .md\:max-w-500 {
    max-width: 31.25rem !important;
  }
  .md\:max-w-505 {
    max-width: 31.5625rem !important;
  }
  .md\:max-w-510 {
    max-width: 31.875rem !important;
  }
  .md\:max-w-515 {
    max-width: 32.1875rem !important;
  }
  .md\:max-w-520 {
    max-width: 32.5rem !important;
  }
  .md\:max-w-525 {
    max-width: 32.8125rem !important;
  }
  .md\:max-w-530 {
    max-width: 33.125rem !important;
  }
  .md\:max-w-535 {
    max-width: 33.4375rem !important;
  }
  .md\:max-w-540 {
    max-width: 33.75rem !important;
  }
  .md\:max-w-545 {
    max-width: 34.0625rem !important;
  }
  .md\:max-w-550 {
    max-width: 34.375rem !important;
  }
  .md\:max-w-555 {
    max-width: 34.6875rem !important;
  }
  .md\:max-w-560 {
    max-width: 35rem !important;
  }
  .md\:max-w-565 {
    max-width: 35.3125rem !important;
  }
  .md\:max-w-570 {
    max-width: 35.625rem !important;
  }
  .md\:max-w-575 {
    max-width: 35.9375rem !important;
  }
  .md\:max-w-580 {
    max-width: 36.25rem !important;
  }
  .md\:max-w-585 {
    max-width: 36.5625rem !important;
  }
  .md\:max-w-590 {
    max-width: 36.875rem !important;
  }
  .md\:max-w-595 {
    max-width: 37.1875rem !important;
  }
  .md\:max-w-600 {
    max-width: 37.5rem !important;
  }
  .md\:max-w-605 {
    max-width: 37.8125rem !important;
  }
  .md\:max-w-610 {
    max-width: 38.125rem !important;
  }
  .md\:max-w-615 {
    max-width: 38.4375rem !important;
  }
  .md\:max-w-620 {
    max-width: 38.75rem !important;
  }
  .md\:max-w-625 {
    max-width: 39.0625rem !important;
  }
  .md\:max-w-630 {
    max-width: 39.375rem !important;
  }
  .md\:max-w-635 {
    max-width: 39.6875rem !important;
  }
  .md\:max-w-640 {
    max-width: 40rem !important;
  }
  .md\:max-w-645 {
    max-width: 40.3125rem !important;
  }
  .md\:max-w-650 {
    max-width: 40.625rem !important;
  }
  .md\:max-w-655 {
    max-width: 40.9375rem !important;
  }
  .md\:max-w-660 {
    max-width: 41.25rem !important;
  }
  .md\:max-w-665 {
    max-width: 41.5625rem !important;
  }
  .md\:max-w-670 {
    max-width: 41.875rem !important;
  }
  .md\:max-w-675 {
    max-width: 42.1875rem !important;
  }
  .md\:max-w-680 {
    max-width: 42.5rem !important;
  }
  .md\:max-w-685 {
    max-width: 42.8125rem !important;
  }
  .md\:max-w-690 {
    max-width: 43.125rem !important;
  }
  .md\:max-w-695 {
    max-width: 43.4375rem !important;
  }
  .md\:max-w-700 {
    max-width: 43.75rem !important;
  }
  .md\:max-w-705 {
    max-width: 44.0625rem !important;
  }
  .md\:max-w-710 {
    max-width: 44.375rem !important;
  }
  .md\:max-w-715 {
    max-width: 44.6875rem !important;
  }
  .md\:max-w-720 {
    max-width: 45rem !important;
  }
  .md\:max-w-725 {
    max-width: 45.3125rem !important;
  }
  .md\:max-w-730 {
    max-width: 45.625rem !important;
  }
  .md\:max-w-735 {
    max-width: 45.9375rem !important;
  }
  .md\:max-w-740 {
    max-width: 46.25rem !important;
  }
  .md\:max-w-745 {
    max-width: 46.5625rem !important;
  }
  .md\:max-w-750 {
    max-width: 46.875rem !important;
  }
  .md\:max-w-755 {
    max-width: 47.1875rem !important;
  }
  .md\:max-w-760 {
    max-width: 47.5rem !important;
  }
  .md\:max-w-765 {
    max-width: 47.8125rem !important;
  }
  .md\:max-w-770 {
    max-width: 48.125rem !important;
  }
  .md\:max-w-775 {
    max-width: 48.4375rem !important;
  }
  .md\:max-w-780 {
    max-width: 48.75rem !important;
  }
  .md\:max-w-785 {
    max-width: 49.0625rem !important;
  }
  .md\:max-w-790 {
    max-width: 49.375rem !important;
  }
  .md\:max-w-795 {
    max-width: 49.6875rem !important;
  }
  .md\:max-w-800 {
    max-width: 50rem !important;
  }
  .md\:max-w-805 {
    max-width: 50.3125rem !important;
  }
  .md\:max-w-810 {
    max-width: 50.625rem !important;
  }
  .md\:max-w-815 {
    max-width: 50.9375rem !important;
  }
  .md\:max-w-820 {
    max-width: 51.25rem !important;
  }
  .md\:max-w-825 {
    max-width: 51.5625rem !important;
  }
  .md\:max-w-830 {
    max-width: 51.875rem !important;
  }
  .md\:max-w-835 {
    max-width: 52.1875rem !important;
  }
  .md\:max-w-840 {
    max-width: 52.5rem !important;
  }
  .md\:max-w-845 {
    max-width: 52.8125rem !important;
  }
  .md\:max-w-850 {
    max-width: 53.125rem !important;
  }
  .md\:max-w-855 {
    max-width: 53.4375rem !important;
  }
  .md\:max-w-860 {
    max-width: 53.75rem !important;
  }
  .md\:max-w-865 {
    max-width: 54.0625rem !important;
  }
  .md\:max-w-870 {
    max-width: 54.375rem !important;
  }
  .md\:max-w-875 {
    max-width: 54.6875rem !important;
  }
  .md\:max-w-880 {
    max-width: 55rem !important;
  }
  .md\:max-w-885 {
    max-width: 55.3125rem !important;
  }
  .md\:max-w-890 {
    max-width: 55.625rem !important;
  }
  .md\:max-w-895 {
    max-width: 55.9375rem !important;
  }
  .md\:max-w-900 {
    max-width: 56.25rem !important;
  }
  .md\:max-w-905 {
    max-width: 56.5625rem !important;
  }
  .md\:max-w-910 {
    max-width: 56.875rem !important;
  }
  .md\:max-w-915 {
    max-width: 57.1875rem !important;
  }
  .md\:max-w-920 {
    max-width: 57.5rem !important;
  }
  .md\:max-w-925 {
    max-width: 57.8125rem !important;
  }
  .md\:max-w-930 {
    max-width: 58.125rem !important;
  }
  .md\:max-w-935 {
    max-width: 58.4375rem !important;
  }
  .md\:max-w-940 {
    max-width: 58.75rem !important;
  }
  .md\:max-w-945 {
    max-width: 59.0625rem !important;
  }
  .md\:max-w-950 {
    max-width: 59.375rem !important;
  }
  .md\:max-w-955 {
    max-width: 59.6875rem !important;
  }
  .md\:max-w-960 {
    max-width: 60rem !important;
  }
  .md\:max-w-965 {
    max-width: 60.3125rem !important;
  }
  .md\:max-w-970 {
    max-width: 60.625rem !important;
  }
  .md\:max-w-975 {
    max-width: 60.9375rem !important;
  }
  .md\:max-w-980 {
    max-width: 61.25rem !important;
  }
  .md\:max-w-985 {
    max-width: 61.5625rem !important;
  }
  .md\:max-w-990 {
    max-width: 61.875rem !important;
  }
  .md\:max-w-995 {
    max-width: 62.1875rem !important;
  }
  .md\:max-w-1000 {
    max-width: 62.5rem !important;
  }
  .md\:max-w-1005 {
    max-width: 62.8125rem !important;
  }
  .md\:max-w-1010 {
    max-width: 63.125rem !important;
  }
  .md\:max-w-1015 {
    max-width: 63.4375rem !important;
  }
  .md\:max-w-1020 {
    max-width: 63.75rem !important;
  }
  .md\:max-w-1025 {
    max-width: 64.0625rem !important;
  }
  .md\:max-w-1030 {
    max-width: 64.375rem !important;
  }
  .md\:max-w-1035 {
    max-width: 64.6875rem !important;
  }
  .md\:max-w-1040 {
    max-width: 65rem !important;
  }
  .md\:max-w-1045 {
    max-width: 65.3125rem !important;
  }
  .md\:max-w-1050 {
    max-width: 65.625rem !important;
  }
  .md\:max-w-1055 {
    max-width: 65.9375rem !important;
  }
  .md\:max-w-1060 {
    max-width: 66.25rem !important;
  }
  .md\:max-w-1065 {
    max-width: 66.5625rem !important;
  }
  .md\:max-w-1070 {
    max-width: 66.875rem !important;
  }
  .md\:max-w-1075 {
    max-width: 67.1875rem !important;
  }
  .md\:max-w-1080 {
    max-width: 67.5rem !important;
  }
  .md\:max-w-1085 {
    max-width: 67.8125rem !important;
  }
  .md\:max-w-1090 {
    max-width: 68.125rem !important;
  }
  .md\:max-w-1095 {
    max-width: 68.4375rem !important;
  }
  .md\:max-w-1100 {
    max-width: 68.75rem !important;
  }
  .md\:max-w-1105 {
    max-width: 69.0625rem !important;
  }
  .md\:max-w-1110 {
    max-width: 69.375rem !important;
  }
  .md\:max-w-1115 {
    max-width: 69.6875rem !important;
  }
  .md\:max-w-1120 {
    max-width: 70rem !important;
  }
  .md\:max-w-1125 {
    max-width: 70.3125rem !important;
  }
  .md\:max-w-1130 {
    max-width: 70.625rem !important;
  }
  .md\:max-w-1135 {
    max-width: 70.9375rem !important;
  }
  .md\:max-w-1140 {
    max-width: 71.25rem !important;
  }
  .md\:max-w-1145 {
    max-width: 71.5625rem !important;
  }
  .md\:max-w-1150 {
    max-width: 71.875rem !important;
  }
  .md\:max-w-1155 {
    max-width: 72.1875rem !important;
  }
  .md\:max-w-1160 {
    max-width: 72.5rem !important;
  }
  .md\:max-w-1165 {
    max-width: 72.8125rem !important;
  }
  .md\:max-w-1170 {
    max-width: 73.125rem !important;
  }
  .md\:max-w-1175 {
    max-width: 73.4375rem !important;
  }
  .md\:max-w-1180 {
    max-width: 73.75rem !important;
  }
  .md\:max-w-1185 {
    max-width: 74.0625rem !important;
  }
  .md\:max-w-1190 {
    max-width: 74.375rem !important;
  }
  .md\:max-w-1195 {
    max-width: 74.6875rem !important;
  }
  .md\:max-w-1200 {
    max-width: 75rem !important;
  }
  .md\:max-w-1205 {
    max-width: 75.3125rem !important;
  }
  .md\:max-w-1210 {
    max-width: 75.625rem !important;
  }
  .md\:max-w-1215 {
    max-width: 75.9375rem !important;
  }
  .md\:max-w-1220 {
    max-width: 76.25rem !important;
  }
  .md\:max-w-1225 {
    max-width: 76.5625rem !important;
  }
  .md\:max-w-1230 {
    max-width: 76.875rem !important;
  }
  .md\:max-w-1235 {
    max-width: 77.1875rem !important;
  }
  .md\:max-w-1240 {
    max-width: 77.5rem !important;
  }
  .md\:max-w-1245 {
    max-width: 77.8125rem !important;
  }
  .md\:max-w-1250 {
    max-width: 78.125rem !important;
  }
  .md\:max-w-1255 {
    max-width: 78.4375rem !important;
  }
  .md\:max-w-1260 {
    max-width: 78.75rem !important;
  }
  .md\:max-w-1265 {
    max-width: 79.0625rem !important;
  }
  .md\:max-w-1270 {
    max-width: 79.375rem !important;
  }
  .md\:max-w-1275 {
    max-width: 79.6875rem !important;
  }
  .md\:max-w-1280 {
    max-width: 80rem !important;
  }
  .md\:max-w-1285 {
    max-width: 80.3125rem !important;
  }
  .md\:max-w-1290 {
    max-width: 80.625rem !important;
  }
  .md\:max-w-1295 {
    max-width: 80.9375rem !important;
  }
  .md\:max-w-1300 {
    max-width: 81.25rem !important;
  }
  .md\:max-w-1305 {
    max-width: 81.5625rem !important;
  }
  .md\:max-w-1310 {
    max-width: 81.875rem !important;
  }
  .md\:max-w-1315 {
    max-width: 82.1875rem !important;
  }
  .md\:max-w-1320 {
    max-width: 82.5rem !important;
  }
  .md\:max-w-1325 {
    max-width: 82.8125rem !important;
  }
  .md\:max-w-1330 {
    max-width: 83.125rem !important;
  }
  .md\:max-w-1335 {
    max-width: 83.4375rem !important;
  }
  .md\:max-w-1340 {
    max-width: 83.75rem !important;
  }
  .md\:max-w-1345 {
    max-width: 84.0625rem !important;
  }
  .md\:max-w-1350 {
    max-width: 84.375rem !important;
  }
  .md\:max-w-1355 {
    max-width: 84.6875rem !important;
  }
  .md\:max-w-1360 {
    max-width: 85rem !important;
  }
  .md\:max-w-1365 {
    max-width: 85.3125rem !important;
  }
  .md\:max-w-1370 {
    max-width: 85.625rem !important;
  }
  .md\:max-w-1375 {
    max-width: 85.9375rem !important;
  }
  .md\:max-w-1380 {
    max-width: 86.25rem !important;
  }
  .md\:max-w-1385 {
    max-width: 86.5625rem !important;
  }
  .md\:max-w-1390 {
    max-width: 86.875rem !important;
  }
  .md\:max-w-1395 {
    max-width: 87.1875rem !important;
  }
  .md\:max-w-1400 {
    max-width: 87.5rem !important;
  }
  .md\:max-w-1405 {
    max-width: 87.8125rem !important;
  }
  .md\:max-w-1410 {
    max-width: 88.125rem !important;
  }
  .md\:max-w-1415 {
    max-width: 88.4375rem !important;
  }
  .md\:max-w-1420 {
    max-width: 88.75rem !important;
  }
  .md\:max-w-1425 {
    max-width: 89.0625rem !important;
  }
  .md\:max-w-1430 {
    max-width: 89.375rem !important;
  }
  .md\:max-w-1435 {
    max-width: 89.6875rem !important;
  }
  .md\:max-w-1440 {
    max-width: 90rem !important;
  }
  .md\:max-w-1445 {
    max-width: 90.3125rem !important;
  }
  .md\:max-w-1450 {
    max-width: 90.625rem !important;
  }
  .md\:max-w-1455 {
    max-width: 90.9375rem !important;
  }
  .md\:max-w-1460 {
    max-width: 91.25rem !important;
  }
  .md\:max-w-1465 {
    max-width: 91.5625rem !important;
  }
  .md\:max-w-1470 {
    max-width: 91.875rem !important;
  }
  .md\:max-w-1475 {
    max-width: 92.1875rem !important;
  }
  .md\:max-w-1480 {
    max-width: 92.5rem !important;
  }
  .md\:max-w-1485 {
    max-width: 92.8125rem !important;
  }
  .md\:max-w-1490 {
    max-width: 93.125rem !important;
  }
  .md\:max-w-1495 {
    max-width: 93.4375rem !important;
  }
  .md\:max-w-1500 {
    max-width: 93.75rem !important;
  }
  .md\:min-w-none {
    min-width: none !important;
  }
  .md\:min-w-full {
    min-width: 100% !important;
  }
  .md\:min-w-0 {
    min-width: 0rem !important;
  }
  .md\:min-w-5 {
    min-width: 0.3125rem !important;
  }
  .md\:min-w-10 {
    min-width: 0.625rem !important;
  }
  .md\:min-w-15 {
    min-width: 0.9375rem !important;
  }
  .md\:min-w-20 {
    min-width: 1.25rem !important;
  }
  .md\:min-w-25 {
    min-width: 1.5625rem !important;
  }
  .md\:min-w-30 {
    min-width: 1.875rem !important;
  }
  .md\:min-w-35 {
    min-width: 2.1875rem !important;
  }
  .md\:min-w-40 {
    min-width: 2.5rem !important;
  }
  .md\:min-w-45 {
    min-width: 2.8125rem !important;
  }
  .md\:min-w-50 {
    min-width: 3.125rem !important;
  }
  .md\:min-w-55 {
    min-width: 3.4375rem !important;
  }
  .md\:min-w-60 {
    min-width: 3.75rem !important;
  }
  .md\:min-w-65 {
    min-width: 4.0625rem !important;
  }
  .md\:min-w-70 {
    min-width: 4.375rem !important;
  }
  .md\:min-w-75 {
    min-width: 4.6875rem !important;
  }
  .md\:min-w-80 {
    min-width: 5rem !important;
  }
  .md\:min-w-85 {
    min-width: 5.3125rem !important;
  }
  .md\:min-w-90 {
    min-width: 5.625rem !important;
  }
  .md\:min-w-95 {
    min-width: 5.9375rem !important;
  }
  .md\:min-w-100 {
    min-width: 6.25rem !important;
  }
  .md\:min-w-105 {
    min-width: 6.5625rem !important;
  }
  .md\:min-w-110 {
    min-width: 6.875rem !important;
  }
  .md\:min-w-115 {
    min-width: 7.1875rem !important;
  }
  .md\:min-w-120 {
    min-width: 7.5rem !important;
  }
  .md\:min-w-125 {
    min-width: 7.8125rem !important;
  }
  .md\:min-w-130 {
    min-width: 8.125rem !important;
  }
  .md\:min-w-135 {
    min-width: 8.4375rem !important;
  }
  .md\:min-w-140 {
    min-width: 8.75rem !important;
  }
  .md\:min-w-145 {
    min-width: 9.0625rem !important;
  }
  .md\:min-w-150 {
    min-width: 9.375rem !important;
  }
  .md\:min-w-155 {
    min-width: 9.6875rem !important;
  }
  .md\:min-w-160 {
    min-width: 10rem !important;
  }
  .md\:min-w-165 {
    min-width: 10.3125rem !important;
  }
  .md\:min-w-170 {
    min-width: 10.625rem !important;
  }
  .md\:min-w-175 {
    min-width: 10.9375rem !important;
  }
  .md\:min-w-180 {
    min-width: 11.25rem !important;
  }
  .md\:min-w-185 {
    min-width: 11.5625rem !important;
  }
  .md\:min-w-190 {
    min-width: 11.875rem !important;
  }
  .md\:min-w-195 {
    min-width: 12.1875rem !important;
  }
  .md\:min-w-200 {
    min-width: 12.5rem !important;
  }
  .md\:min-w-205 {
    min-width: 12.8125rem !important;
  }
  .md\:min-w-210 {
    min-width: 13.125rem !important;
  }
  .md\:min-w-215 {
    min-width: 13.4375rem !important;
  }
  .md\:min-w-220 {
    min-width: 13.75rem !important;
  }
  .md\:min-w-225 {
    min-width: 14.0625rem !important;
  }
  .md\:min-w-230 {
    min-width: 14.375rem !important;
  }
  .md\:min-w-235 {
    min-width: 14.6875rem !important;
  }
  .md\:min-w-240 {
    min-width: 15rem !important;
  }
  .md\:min-w-245 {
    min-width: 15.3125rem !important;
  }
  .md\:min-w-250 {
    min-width: 15.625rem !important;
  }
  .md\:min-w-255 {
    min-width: 15.9375rem !important;
  }
  .md\:min-w-260 {
    min-width: 16.25rem !important;
  }
  .md\:min-w-265 {
    min-width: 16.5625rem !important;
  }
  .md\:min-w-270 {
    min-width: 16.875rem !important;
  }
  .md\:min-w-275 {
    min-width: 17.1875rem !important;
  }
  .md\:min-w-280 {
    min-width: 17.5rem !important;
  }
  .md\:min-w-285 {
    min-width: 17.8125rem !important;
  }
  .md\:min-w-290 {
    min-width: 18.125rem !important;
  }
  .md\:min-w-295 {
    min-width: 18.4375rem !important;
  }
  .md\:min-w-300 {
    min-width: 18.75rem !important;
  }
  .md\:min-w-305 {
    min-width: 19.0625rem !important;
  }
  .md\:min-w-310 {
    min-width: 19.375rem !important;
  }
  .md\:min-w-315 {
    min-width: 19.6875rem !important;
  }
  .md\:min-w-320 {
    min-width: 20rem !important;
  }
  .md\:min-w-325 {
    min-width: 20.3125rem !important;
  }
  .md\:min-w-330 {
    min-width: 20.625rem !important;
  }
  .md\:min-w-335 {
    min-width: 20.9375rem !important;
  }
  .md\:min-w-340 {
    min-width: 21.25rem !important;
  }
  .md\:min-w-345 {
    min-width: 21.5625rem !important;
  }
  .md\:min-w-350 {
    min-width: 21.875rem !important;
  }
  .md\:min-w-355 {
    min-width: 22.1875rem !important;
  }
  .md\:min-w-360 {
    min-width: 22.5rem !important;
  }
  .md\:min-w-365 {
    min-width: 22.8125rem !important;
  }
  .md\:min-w-370 {
    min-width: 23.125rem !important;
  }
  .md\:min-w-375 {
    min-width: 23.4375rem !important;
  }
  .md\:min-w-380 {
    min-width: 23.75rem !important;
  }
  .md\:min-w-385 {
    min-width: 24.0625rem !important;
  }
  .md\:min-w-390 {
    min-width: 24.375rem !important;
  }
  .md\:min-w-395 {
    min-width: 24.6875rem !important;
  }
  .md\:min-w-400 {
    min-width: 25rem !important;
  }
  .md\:min-w-405 {
    min-width: 25.3125rem !important;
  }
  .md\:min-w-410 {
    min-width: 25.625rem !important;
  }
  .md\:min-w-415 {
    min-width: 25.9375rem !important;
  }
  .md\:min-w-420 {
    min-width: 26.25rem !important;
  }
  .md\:min-w-425 {
    min-width: 26.5625rem !important;
  }
  .md\:min-w-430 {
    min-width: 26.875rem !important;
  }
  .md\:min-w-435 {
    min-width: 27.1875rem !important;
  }
  .md\:min-w-440 {
    min-width: 27.5rem !important;
  }
  .md\:min-w-445 {
    min-width: 27.8125rem !important;
  }
  .md\:min-w-450 {
    min-width: 28.125rem !important;
  }
  .md\:min-w-455 {
    min-width: 28.4375rem !important;
  }
  .md\:min-w-460 {
    min-width: 28.75rem !important;
  }
  .md\:min-w-465 {
    min-width: 29.0625rem !important;
  }
  .md\:min-w-470 {
    min-width: 29.375rem !important;
  }
  .md\:min-w-475 {
    min-width: 29.6875rem !important;
  }
  .md\:min-w-480 {
    min-width: 30rem !important;
  }
  .md\:min-w-485 {
    min-width: 30.3125rem !important;
  }
  .md\:min-w-490 {
    min-width: 30.625rem !important;
  }
  .md\:min-w-495 {
    min-width: 30.9375rem !important;
  }
  .md\:min-w-500 {
    min-width: 31.25rem !important;
  }
  .md\:min-w-505 {
    min-width: 31.5625rem !important;
  }
  .md\:min-w-510 {
    min-width: 31.875rem !important;
  }
  .md\:min-w-515 {
    min-width: 32.1875rem !important;
  }
  .md\:min-w-520 {
    min-width: 32.5rem !important;
  }
  .md\:min-w-525 {
    min-width: 32.8125rem !important;
  }
  .md\:min-w-530 {
    min-width: 33.125rem !important;
  }
  .md\:min-w-535 {
    min-width: 33.4375rem !important;
  }
  .md\:min-w-540 {
    min-width: 33.75rem !important;
  }
  .md\:min-w-545 {
    min-width: 34.0625rem !important;
  }
  .md\:min-w-550 {
    min-width: 34.375rem !important;
  }
  .md\:min-w-555 {
    min-width: 34.6875rem !important;
  }
  .md\:min-w-560 {
    min-width: 35rem !important;
  }
  .md\:min-w-565 {
    min-width: 35.3125rem !important;
  }
  .md\:min-w-570 {
    min-width: 35.625rem !important;
  }
  .md\:min-w-575 {
    min-width: 35.9375rem !important;
  }
  .md\:min-w-580 {
    min-width: 36.25rem !important;
  }
  .md\:min-w-585 {
    min-width: 36.5625rem !important;
  }
  .md\:min-w-590 {
    min-width: 36.875rem !important;
  }
  .md\:min-w-595 {
    min-width: 37.1875rem !important;
  }
  .md\:min-w-600 {
    min-width: 37.5rem !important;
  }
  .md\:min-w-605 {
    min-width: 37.8125rem !important;
  }
  .md\:min-w-610 {
    min-width: 38.125rem !important;
  }
  .md\:min-w-615 {
    min-width: 38.4375rem !important;
  }
  .md\:min-w-620 {
    min-width: 38.75rem !important;
  }
  .md\:min-w-625 {
    min-width: 39.0625rem !important;
  }
  .md\:min-w-630 {
    min-width: 39.375rem !important;
  }
  .md\:min-w-635 {
    min-width: 39.6875rem !important;
  }
  .md\:min-w-640 {
    min-width: 40rem !important;
  }
  .md\:min-w-645 {
    min-width: 40.3125rem !important;
  }
  .md\:min-w-650 {
    min-width: 40.625rem !important;
  }
  .md\:min-w-655 {
    min-width: 40.9375rem !important;
  }
  .md\:min-w-660 {
    min-width: 41.25rem !important;
  }
  .md\:min-w-665 {
    min-width: 41.5625rem !important;
  }
  .md\:min-w-670 {
    min-width: 41.875rem !important;
  }
  .md\:min-w-675 {
    min-width: 42.1875rem !important;
  }
  .md\:min-w-680 {
    min-width: 42.5rem !important;
  }
  .md\:min-w-685 {
    min-width: 42.8125rem !important;
  }
  .md\:min-w-690 {
    min-width: 43.125rem !important;
  }
  .md\:min-w-695 {
    min-width: 43.4375rem !important;
  }
  .md\:min-w-700 {
    min-width: 43.75rem !important;
  }
  .md\:min-w-705 {
    min-width: 44.0625rem !important;
  }
  .md\:min-w-710 {
    min-width: 44.375rem !important;
  }
  .md\:min-w-715 {
    min-width: 44.6875rem !important;
  }
  .md\:min-w-720 {
    min-width: 45rem !important;
  }
  .md\:min-w-725 {
    min-width: 45.3125rem !important;
  }
  .md\:min-w-730 {
    min-width: 45.625rem !important;
  }
  .md\:min-w-735 {
    min-width: 45.9375rem !important;
  }
  .md\:min-w-740 {
    min-width: 46.25rem !important;
  }
  .md\:min-w-745 {
    min-width: 46.5625rem !important;
  }
  .md\:min-w-750 {
    min-width: 46.875rem !important;
  }
  .md\:min-w-755 {
    min-width: 47.1875rem !important;
  }
  .md\:min-w-760 {
    min-width: 47.5rem !important;
  }
  .md\:min-w-765 {
    min-width: 47.8125rem !important;
  }
  .md\:min-w-770 {
    min-width: 48.125rem !important;
  }
  .md\:min-w-775 {
    min-width: 48.4375rem !important;
  }
  .md\:min-w-780 {
    min-width: 48.75rem !important;
  }
  .md\:min-w-785 {
    min-width: 49.0625rem !important;
  }
  .md\:min-w-790 {
    min-width: 49.375rem !important;
  }
  .md\:min-w-795 {
    min-width: 49.6875rem !important;
  }
  .md\:min-w-800 {
    min-width: 50rem !important;
  }
  .md\:min-w-805 {
    min-width: 50.3125rem !important;
  }
  .md\:min-w-810 {
    min-width: 50.625rem !important;
  }
  .md\:min-w-815 {
    min-width: 50.9375rem !important;
  }
  .md\:min-w-820 {
    min-width: 51.25rem !important;
  }
  .md\:min-w-825 {
    min-width: 51.5625rem !important;
  }
  .md\:min-w-830 {
    min-width: 51.875rem !important;
  }
  .md\:min-w-835 {
    min-width: 52.1875rem !important;
  }
  .md\:min-w-840 {
    min-width: 52.5rem !important;
  }
  .md\:min-w-845 {
    min-width: 52.8125rem !important;
  }
  .md\:min-w-850 {
    min-width: 53.125rem !important;
  }
  .md\:min-w-855 {
    min-width: 53.4375rem !important;
  }
  .md\:min-w-860 {
    min-width: 53.75rem !important;
  }
  .md\:min-w-865 {
    min-width: 54.0625rem !important;
  }
  .md\:min-w-870 {
    min-width: 54.375rem !important;
  }
  .md\:min-w-875 {
    min-width: 54.6875rem !important;
  }
  .md\:min-w-880 {
    min-width: 55rem !important;
  }
  .md\:min-w-885 {
    min-width: 55.3125rem !important;
  }
  .md\:min-w-890 {
    min-width: 55.625rem !important;
  }
  .md\:min-w-895 {
    min-width: 55.9375rem !important;
  }
  .md\:min-w-900 {
    min-width: 56.25rem !important;
  }
  .md\:min-w-905 {
    min-width: 56.5625rem !important;
  }
  .md\:min-w-910 {
    min-width: 56.875rem !important;
  }
  .md\:min-w-915 {
    min-width: 57.1875rem !important;
  }
  .md\:min-w-920 {
    min-width: 57.5rem !important;
  }
  .md\:min-w-925 {
    min-width: 57.8125rem !important;
  }
  .md\:min-w-930 {
    min-width: 58.125rem !important;
  }
  .md\:min-w-935 {
    min-width: 58.4375rem !important;
  }
  .md\:min-w-940 {
    min-width: 58.75rem !important;
  }
  .md\:min-w-945 {
    min-width: 59.0625rem !important;
  }
  .md\:min-w-950 {
    min-width: 59.375rem !important;
  }
  .md\:min-w-955 {
    min-width: 59.6875rem !important;
  }
  .md\:min-w-960 {
    min-width: 60rem !important;
  }
  .md\:min-w-965 {
    min-width: 60.3125rem !important;
  }
  .md\:min-w-970 {
    min-width: 60.625rem !important;
  }
  .md\:min-w-975 {
    min-width: 60.9375rem !important;
  }
  .md\:min-w-980 {
    min-width: 61.25rem !important;
  }
  .md\:min-w-985 {
    min-width: 61.5625rem !important;
  }
  .md\:min-w-990 {
    min-width: 61.875rem !important;
  }
  .md\:min-w-995 {
    min-width: 62.1875rem !important;
  }
  .md\:min-w-1000 {
    min-width: 62.5rem !important;
  }
  .md\:min-w-1005 {
    min-width: 62.8125rem !important;
  }
  .md\:min-w-1010 {
    min-width: 63.125rem !important;
  }
  .md\:min-w-1015 {
    min-width: 63.4375rem !important;
  }
  .md\:min-w-1020 {
    min-width: 63.75rem !important;
  }
  .md\:min-w-1025 {
    min-width: 64.0625rem !important;
  }
  .md\:min-w-1030 {
    min-width: 64.375rem !important;
  }
  .md\:min-w-1035 {
    min-width: 64.6875rem !important;
  }
  .md\:min-w-1040 {
    min-width: 65rem !important;
  }
  .md\:min-w-1045 {
    min-width: 65.3125rem !important;
  }
  .md\:min-w-1050 {
    min-width: 65.625rem !important;
  }
  .md\:min-w-1055 {
    min-width: 65.9375rem !important;
  }
  .md\:min-w-1060 {
    min-width: 66.25rem !important;
  }
  .md\:min-w-1065 {
    min-width: 66.5625rem !important;
  }
  .md\:min-w-1070 {
    min-width: 66.875rem !important;
  }
  .md\:min-w-1075 {
    min-width: 67.1875rem !important;
  }
  .md\:min-w-1080 {
    min-width: 67.5rem !important;
  }
  .md\:min-w-1085 {
    min-width: 67.8125rem !important;
  }
  .md\:min-w-1090 {
    min-width: 68.125rem !important;
  }
  .md\:min-w-1095 {
    min-width: 68.4375rem !important;
  }
  .md\:min-w-1100 {
    min-width: 68.75rem !important;
  }
  .md\:min-w-1105 {
    min-width: 69.0625rem !important;
  }
  .md\:min-w-1110 {
    min-width: 69.375rem !important;
  }
  .md\:min-w-1115 {
    min-width: 69.6875rem !important;
  }
  .md\:min-w-1120 {
    min-width: 70rem !important;
  }
  .md\:min-w-1125 {
    min-width: 70.3125rem !important;
  }
  .md\:min-w-1130 {
    min-width: 70.625rem !important;
  }
  .md\:min-w-1135 {
    min-width: 70.9375rem !important;
  }
  .md\:min-w-1140 {
    min-width: 71.25rem !important;
  }
  .md\:min-w-1145 {
    min-width: 71.5625rem !important;
  }
  .md\:min-w-1150 {
    min-width: 71.875rem !important;
  }
  .md\:min-w-1155 {
    min-width: 72.1875rem !important;
  }
  .md\:min-w-1160 {
    min-width: 72.5rem !important;
  }
  .md\:min-w-1165 {
    min-width: 72.8125rem !important;
  }
  .md\:min-w-1170 {
    min-width: 73.125rem !important;
  }
  .md\:min-w-1175 {
    min-width: 73.4375rem !important;
  }
  .md\:min-w-1180 {
    min-width: 73.75rem !important;
  }
  .md\:min-w-1185 {
    min-width: 74.0625rem !important;
  }
  .md\:min-w-1190 {
    min-width: 74.375rem !important;
  }
  .md\:min-w-1195 {
    min-width: 74.6875rem !important;
  }
  .md\:min-w-1200 {
    min-width: 75rem !important;
  }
  .md\:min-w-1205 {
    min-width: 75.3125rem !important;
  }
  .md\:min-w-1210 {
    min-width: 75.625rem !important;
  }
  .md\:min-w-1215 {
    min-width: 75.9375rem !important;
  }
  .md\:min-w-1220 {
    min-width: 76.25rem !important;
  }
  .md\:min-w-1225 {
    min-width: 76.5625rem !important;
  }
  .md\:min-w-1230 {
    min-width: 76.875rem !important;
  }
  .md\:min-w-1235 {
    min-width: 77.1875rem !important;
  }
  .md\:min-w-1240 {
    min-width: 77.5rem !important;
  }
  .md\:min-w-1245 {
    min-width: 77.8125rem !important;
  }
  .md\:min-w-1250 {
    min-width: 78.125rem !important;
  }
  .md\:min-w-1255 {
    min-width: 78.4375rem !important;
  }
  .md\:min-w-1260 {
    min-width: 78.75rem !important;
  }
  .md\:min-w-1265 {
    min-width: 79.0625rem !important;
  }
  .md\:min-w-1270 {
    min-width: 79.375rem !important;
  }
  .md\:min-w-1275 {
    min-width: 79.6875rem !important;
  }
  .md\:min-w-1280 {
    min-width: 80rem !important;
  }
  .md\:min-w-1285 {
    min-width: 80.3125rem !important;
  }
  .md\:min-w-1290 {
    min-width: 80.625rem !important;
  }
  .md\:min-w-1295 {
    min-width: 80.9375rem !important;
  }
  .md\:min-w-1300 {
    min-width: 81.25rem !important;
  }
  .md\:min-w-1305 {
    min-width: 81.5625rem !important;
  }
  .md\:min-w-1310 {
    min-width: 81.875rem !important;
  }
  .md\:min-w-1315 {
    min-width: 82.1875rem !important;
  }
  .md\:min-w-1320 {
    min-width: 82.5rem !important;
  }
  .md\:min-w-1325 {
    min-width: 82.8125rem !important;
  }
  .md\:min-w-1330 {
    min-width: 83.125rem !important;
  }
  .md\:min-w-1335 {
    min-width: 83.4375rem !important;
  }
  .md\:min-w-1340 {
    min-width: 83.75rem !important;
  }
  .md\:min-w-1345 {
    min-width: 84.0625rem !important;
  }
  .md\:min-w-1350 {
    min-width: 84.375rem !important;
  }
  .md\:min-w-1355 {
    min-width: 84.6875rem !important;
  }
  .md\:min-w-1360 {
    min-width: 85rem !important;
  }
  .md\:min-w-1365 {
    min-width: 85.3125rem !important;
  }
  .md\:min-w-1370 {
    min-width: 85.625rem !important;
  }
  .md\:min-w-1375 {
    min-width: 85.9375rem !important;
  }
  .md\:min-w-1380 {
    min-width: 86.25rem !important;
  }
  .md\:min-w-1385 {
    min-width: 86.5625rem !important;
  }
  .md\:min-w-1390 {
    min-width: 86.875rem !important;
  }
  .md\:min-w-1395 {
    min-width: 87.1875rem !important;
  }
  .md\:min-w-1400 {
    min-width: 87.5rem !important;
  }
  .md\:min-w-1405 {
    min-width: 87.8125rem !important;
  }
  .md\:min-w-1410 {
    min-width: 88.125rem !important;
  }
  .md\:min-w-1415 {
    min-width: 88.4375rem !important;
  }
  .md\:min-w-1420 {
    min-width: 88.75rem !important;
  }
  .md\:min-w-1425 {
    min-width: 89.0625rem !important;
  }
  .md\:min-w-1430 {
    min-width: 89.375rem !important;
  }
  .md\:min-w-1435 {
    min-width: 89.6875rem !important;
  }
  .md\:min-w-1440 {
    min-width: 90rem !important;
  }
  .md\:min-w-1445 {
    min-width: 90.3125rem !important;
  }
  .md\:min-w-1450 {
    min-width: 90.625rem !important;
  }
  .md\:min-w-1455 {
    min-width: 90.9375rem !important;
  }
  .md\:min-w-1460 {
    min-width: 91.25rem !important;
  }
  .md\:min-w-1465 {
    min-width: 91.5625rem !important;
  }
  .md\:min-w-1470 {
    min-width: 91.875rem !important;
  }
  .md\:min-w-1475 {
    min-width: 92.1875rem !important;
  }
  .md\:min-w-1480 {
    min-width: 92.5rem !important;
  }
  .md\:min-w-1485 {
    min-width: 92.8125rem !important;
  }
  .md\:min-w-1490 {
    min-width: 93.125rem !important;
  }
  .md\:min-w-1495 {
    min-width: 93.4375rem !important;
  }
  .md\:min-w-1500 {
    min-width: 93.75rem !important;
  }
}
@media screen and (max-width: 640px) {
  .sm\:w-auto {
    width: auto !important;
  }
  .sm\:w-full {
    width: 100% !important;
  }
  .sm\:w-0 {
    width: 0rem !important;
  }
  .sm\:w-5 {
    width: 0.3125rem !important;
  }
  .sm\:w-10 {
    width: 0.625rem !important;
  }
  .sm\:w-15 {
    width: 0.9375rem !important;
  }
  .sm\:w-20 {
    width: 1.25rem !important;
  }
  .sm\:w-25 {
    width: 1.5625rem !important;
  }
  .sm\:w-30 {
    width: 1.875rem !important;
  }
  .sm\:w-35 {
    width: 2.1875rem !important;
  }
  .sm\:w-40 {
    width: 2.5rem !important;
  }
  .sm\:w-45 {
    width: 2.8125rem !important;
  }
  .sm\:w-50 {
    width: 3.125rem !important;
  }
  .sm\:w-55 {
    width: 3.4375rem !important;
  }
  .sm\:w-60 {
    width: 3.75rem !important;
  }
  .sm\:w-65 {
    width: 4.0625rem !important;
  }
  .sm\:w-70 {
    width: 4.375rem !important;
  }
  .sm\:w-75 {
    width: 4.6875rem !important;
  }
  .sm\:w-80 {
    width: 5rem !important;
  }
  .sm\:w-85 {
    width: 5.3125rem !important;
  }
  .sm\:w-90 {
    width: 5.625rem !important;
  }
  .sm\:w-95 {
    width: 5.9375rem !important;
  }
  .sm\:w-100 {
    width: 6.25rem !important;
  }
  .sm\:w-105 {
    width: 6.5625rem !important;
  }
  .sm\:w-110 {
    width: 6.875rem !important;
  }
  .sm\:w-115 {
    width: 7.1875rem !important;
  }
  .sm\:w-120 {
    width: 7.5rem !important;
  }
  .sm\:w-125 {
    width: 7.8125rem !important;
  }
  .sm\:w-130 {
    width: 8.125rem !important;
  }
  .sm\:w-135 {
    width: 8.4375rem !important;
  }
  .sm\:w-140 {
    width: 8.75rem !important;
  }
  .sm\:w-145 {
    width: 9.0625rem !important;
  }
  .sm\:w-150 {
    width: 9.375rem !important;
  }
  .sm\:w-155 {
    width: 9.6875rem !important;
  }
  .sm\:w-160 {
    width: 10rem !important;
  }
  .sm\:w-165 {
    width: 10.3125rem !important;
  }
  .sm\:w-170 {
    width: 10.625rem !important;
  }
  .sm\:w-175 {
    width: 10.9375rem !important;
  }
  .sm\:w-180 {
    width: 11.25rem !important;
  }
  .sm\:w-185 {
    width: 11.5625rem !important;
  }
  .sm\:w-190 {
    width: 11.875rem !important;
  }
  .sm\:w-195 {
    width: 12.1875rem !important;
  }
  .sm\:w-200 {
    width: 12.5rem !important;
  }
  .sm\:w-205 {
    width: 12.8125rem !important;
  }
  .sm\:w-210 {
    width: 13.125rem !important;
  }
  .sm\:w-215 {
    width: 13.4375rem !important;
  }
  .sm\:w-220 {
    width: 13.75rem !important;
  }
  .sm\:w-225 {
    width: 14.0625rem !important;
  }
  .sm\:w-230 {
    width: 14.375rem !important;
  }
  .sm\:w-235 {
    width: 14.6875rem !important;
  }
  .sm\:w-240 {
    width: 15rem !important;
  }
  .sm\:w-245 {
    width: 15.3125rem !important;
  }
  .sm\:w-250 {
    width: 15.625rem !important;
  }
  .sm\:w-255 {
    width: 15.9375rem !important;
  }
  .sm\:w-260 {
    width: 16.25rem !important;
  }
  .sm\:w-265 {
    width: 16.5625rem !important;
  }
  .sm\:w-270 {
    width: 16.875rem !important;
  }
  .sm\:w-275 {
    width: 17.1875rem !important;
  }
  .sm\:w-280 {
    width: 17.5rem !important;
  }
  .sm\:w-285 {
    width: 17.8125rem !important;
  }
  .sm\:w-290 {
    width: 18.125rem !important;
  }
  .sm\:w-295 {
    width: 18.4375rem !important;
  }
  .sm\:w-300 {
    width: 18.75rem !important;
  }
  .sm\:w-305 {
    width: 19.0625rem !important;
  }
  .sm\:w-310 {
    width: 19.375rem !important;
  }
  .sm\:w-315 {
    width: 19.6875rem !important;
  }
  .sm\:w-320 {
    width: 20rem !important;
  }
  .sm\:w-325 {
    width: 20.3125rem !important;
  }
  .sm\:w-330 {
    width: 20.625rem !important;
  }
  .sm\:w-335 {
    width: 20.9375rem !important;
  }
  .sm\:w-340 {
    width: 21.25rem !important;
  }
  .sm\:w-345 {
    width: 21.5625rem !important;
  }
  .sm\:w-350 {
    width: 21.875rem !important;
  }
  .sm\:w-355 {
    width: 22.1875rem !important;
  }
  .sm\:w-360 {
    width: 22.5rem !important;
  }
  .sm\:w-365 {
    width: 22.8125rem !important;
  }
  .sm\:w-370 {
    width: 23.125rem !important;
  }
  .sm\:w-375 {
    width: 23.4375rem !important;
  }
  .sm\:w-380 {
    width: 23.75rem !important;
  }
  .sm\:w-385 {
    width: 24.0625rem !important;
  }
  .sm\:w-390 {
    width: 24.375rem !important;
  }
  .sm\:w-395 {
    width: 24.6875rem !important;
  }
  .sm\:w-400 {
    width: 25rem !important;
  }
  .sm\:w-405 {
    width: 25.3125rem !important;
  }
  .sm\:w-410 {
    width: 25.625rem !important;
  }
  .sm\:w-415 {
    width: 25.9375rem !important;
  }
  .sm\:w-420 {
    width: 26.25rem !important;
  }
  .sm\:w-425 {
    width: 26.5625rem !important;
  }
  .sm\:w-430 {
    width: 26.875rem !important;
  }
  .sm\:w-435 {
    width: 27.1875rem !important;
  }
  .sm\:w-440 {
    width: 27.5rem !important;
  }
  .sm\:w-445 {
    width: 27.8125rem !important;
  }
  .sm\:w-450 {
    width: 28.125rem !important;
  }
  .sm\:w-455 {
    width: 28.4375rem !important;
  }
  .sm\:w-460 {
    width: 28.75rem !important;
  }
  .sm\:w-465 {
    width: 29.0625rem !important;
  }
  .sm\:w-470 {
    width: 29.375rem !important;
  }
  .sm\:w-475 {
    width: 29.6875rem !important;
  }
  .sm\:w-480 {
    width: 30rem !important;
  }
  .sm\:w-485 {
    width: 30.3125rem !important;
  }
  .sm\:w-490 {
    width: 30.625rem !important;
  }
  .sm\:w-495 {
    width: 30.9375rem !important;
  }
  .sm\:w-500 {
    width: 31.25rem !important;
  }
  .sm\:w-505 {
    width: 31.5625rem !important;
  }
  .sm\:w-510 {
    width: 31.875rem !important;
  }
  .sm\:w-515 {
    width: 32.1875rem !important;
  }
  .sm\:w-520 {
    width: 32.5rem !important;
  }
  .sm\:w-525 {
    width: 32.8125rem !important;
  }
  .sm\:w-530 {
    width: 33.125rem !important;
  }
  .sm\:w-535 {
    width: 33.4375rem !important;
  }
  .sm\:w-540 {
    width: 33.75rem !important;
  }
  .sm\:w-545 {
    width: 34.0625rem !important;
  }
  .sm\:w-550 {
    width: 34.375rem !important;
  }
  .sm\:w-555 {
    width: 34.6875rem !important;
  }
  .sm\:w-560 {
    width: 35rem !important;
  }
  .sm\:w-565 {
    width: 35.3125rem !important;
  }
  .sm\:w-570 {
    width: 35.625rem !important;
  }
  .sm\:w-575 {
    width: 35.9375rem !important;
  }
  .sm\:w-580 {
    width: 36.25rem !important;
  }
  .sm\:w-585 {
    width: 36.5625rem !important;
  }
  .sm\:w-590 {
    width: 36.875rem !important;
  }
  .sm\:w-595 {
    width: 37.1875rem !important;
  }
  .sm\:w-600 {
    width: 37.5rem !important;
  }
  .sm\:w-605 {
    width: 37.8125rem !important;
  }
  .sm\:w-610 {
    width: 38.125rem !important;
  }
  .sm\:w-615 {
    width: 38.4375rem !important;
  }
  .sm\:w-620 {
    width: 38.75rem !important;
  }
  .sm\:w-625 {
    width: 39.0625rem !important;
  }
  .sm\:w-630 {
    width: 39.375rem !important;
  }
  .sm\:w-635 {
    width: 39.6875rem !important;
  }
  .sm\:w-640 {
    width: 40rem !important;
  }
  .sm\:w-645 {
    width: 40.3125rem !important;
  }
  .sm\:w-650 {
    width: 40.625rem !important;
  }
  .sm\:w-655 {
    width: 40.9375rem !important;
  }
  .sm\:w-660 {
    width: 41.25rem !important;
  }
  .sm\:w-665 {
    width: 41.5625rem !important;
  }
  .sm\:w-670 {
    width: 41.875rem !important;
  }
  .sm\:w-675 {
    width: 42.1875rem !important;
  }
  .sm\:w-680 {
    width: 42.5rem !important;
  }
  .sm\:w-685 {
    width: 42.8125rem !important;
  }
  .sm\:w-690 {
    width: 43.125rem !important;
  }
  .sm\:w-695 {
    width: 43.4375rem !important;
  }
  .sm\:w-700 {
    width: 43.75rem !important;
  }
  .sm\:w-705 {
    width: 44.0625rem !important;
  }
  .sm\:w-710 {
    width: 44.375rem !important;
  }
  .sm\:w-715 {
    width: 44.6875rem !important;
  }
  .sm\:w-720 {
    width: 45rem !important;
  }
  .sm\:w-725 {
    width: 45.3125rem !important;
  }
  .sm\:w-730 {
    width: 45.625rem !important;
  }
  .sm\:w-735 {
    width: 45.9375rem !important;
  }
  .sm\:w-740 {
    width: 46.25rem !important;
  }
  .sm\:w-745 {
    width: 46.5625rem !important;
  }
  .sm\:w-750 {
    width: 46.875rem !important;
  }
  .sm\:w-755 {
    width: 47.1875rem !important;
  }
  .sm\:w-760 {
    width: 47.5rem !important;
  }
  .sm\:w-765 {
    width: 47.8125rem !important;
  }
  .sm\:w-770 {
    width: 48.125rem !important;
  }
  .sm\:w-775 {
    width: 48.4375rem !important;
  }
  .sm\:w-780 {
    width: 48.75rem !important;
  }
  .sm\:w-785 {
    width: 49.0625rem !important;
  }
  .sm\:w-790 {
    width: 49.375rem !important;
  }
  .sm\:w-795 {
    width: 49.6875rem !important;
  }
  .sm\:w-800 {
    width: 50rem !important;
  }
  .sm\:w-805 {
    width: 50.3125rem !important;
  }
  .sm\:w-810 {
    width: 50.625rem !important;
  }
  .sm\:w-815 {
    width: 50.9375rem !important;
  }
  .sm\:w-820 {
    width: 51.25rem !important;
  }
  .sm\:w-825 {
    width: 51.5625rem !important;
  }
  .sm\:w-830 {
    width: 51.875rem !important;
  }
  .sm\:w-835 {
    width: 52.1875rem !important;
  }
  .sm\:w-840 {
    width: 52.5rem !important;
  }
  .sm\:w-845 {
    width: 52.8125rem !important;
  }
  .sm\:w-850 {
    width: 53.125rem !important;
  }
  .sm\:w-855 {
    width: 53.4375rem !important;
  }
  .sm\:w-860 {
    width: 53.75rem !important;
  }
  .sm\:w-865 {
    width: 54.0625rem !important;
  }
  .sm\:w-870 {
    width: 54.375rem !important;
  }
  .sm\:w-875 {
    width: 54.6875rem !important;
  }
  .sm\:w-880 {
    width: 55rem !important;
  }
  .sm\:w-885 {
    width: 55.3125rem !important;
  }
  .sm\:w-890 {
    width: 55.625rem !important;
  }
  .sm\:w-895 {
    width: 55.9375rem !important;
  }
  .sm\:w-900 {
    width: 56.25rem !important;
  }
  .sm\:w-905 {
    width: 56.5625rem !important;
  }
  .sm\:w-910 {
    width: 56.875rem !important;
  }
  .sm\:w-915 {
    width: 57.1875rem !important;
  }
  .sm\:w-920 {
    width: 57.5rem !important;
  }
  .sm\:w-925 {
    width: 57.8125rem !important;
  }
  .sm\:w-930 {
    width: 58.125rem !important;
  }
  .sm\:w-935 {
    width: 58.4375rem !important;
  }
  .sm\:w-940 {
    width: 58.75rem !important;
  }
  .sm\:w-945 {
    width: 59.0625rem !important;
  }
  .sm\:w-950 {
    width: 59.375rem !important;
  }
  .sm\:w-955 {
    width: 59.6875rem !important;
  }
  .sm\:w-960 {
    width: 60rem !important;
  }
  .sm\:w-965 {
    width: 60.3125rem !important;
  }
  .sm\:w-970 {
    width: 60.625rem !important;
  }
  .sm\:w-975 {
    width: 60.9375rem !important;
  }
  .sm\:w-980 {
    width: 61.25rem !important;
  }
  .sm\:w-985 {
    width: 61.5625rem !important;
  }
  .sm\:w-990 {
    width: 61.875rem !important;
  }
  .sm\:w-995 {
    width: 62.1875rem !important;
  }
  .sm\:w-1000 {
    width: 62.5rem !important;
  }
  .sm\:w-1005 {
    width: 62.8125rem !important;
  }
  .sm\:w-1010 {
    width: 63.125rem !important;
  }
  .sm\:w-1015 {
    width: 63.4375rem !important;
  }
  .sm\:w-1020 {
    width: 63.75rem !important;
  }
  .sm\:w-1025 {
    width: 64.0625rem !important;
  }
  .sm\:w-1030 {
    width: 64.375rem !important;
  }
  .sm\:w-1035 {
    width: 64.6875rem !important;
  }
  .sm\:w-1040 {
    width: 65rem !important;
  }
  .sm\:w-1045 {
    width: 65.3125rem !important;
  }
  .sm\:w-1050 {
    width: 65.625rem !important;
  }
  .sm\:w-1055 {
    width: 65.9375rem !important;
  }
  .sm\:w-1060 {
    width: 66.25rem !important;
  }
  .sm\:w-1065 {
    width: 66.5625rem !important;
  }
  .sm\:w-1070 {
    width: 66.875rem !important;
  }
  .sm\:w-1075 {
    width: 67.1875rem !important;
  }
  .sm\:w-1080 {
    width: 67.5rem !important;
  }
  .sm\:w-1085 {
    width: 67.8125rem !important;
  }
  .sm\:w-1090 {
    width: 68.125rem !important;
  }
  .sm\:w-1095 {
    width: 68.4375rem !important;
  }
  .sm\:w-1100 {
    width: 68.75rem !important;
  }
  .sm\:w-1105 {
    width: 69.0625rem !important;
  }
  .sm\:w-1110 {
    width: 69.375rem !important;
  }
  .sm\:w-1115 {
    width: 69.6875rem !important;
  }
  .sm\:w-1120 {
    width: 70rem !important;
  }
  .sm\:w-1125 {
    width: 70.3125rem !important;
  }
  .sm\:w-1130 {
    width: 70.625rem !important;
  }
  .sm\:w-1135 {
    width: 70.9375rem !important;
  }
  .sm\:w-1140 {
    width: 71.25rem !important;
  }
  .sm\:w-1145 {
    width: 71.5625rem !important;
  }
  .sm\:w-1150 {
    width: 71.875rem !important;
  }
  .sm\:w-1155 {
    width: 72.1875rem !important;
  }
  .sm\:w-1160 {
    width: 72.5rem !important;
  }
  .sm\:w-1165 {
    width: 72.8125rem !important;
  }
  .sm\:w-1170 {
    width: 73.125rem !important;
  }
  .sm\:w-1175 {
    width: 73.4375rem !important;
  }
  .sm\:w-1180 {
    width: 73.75rem !important;
  }
  .sm\:w-1185 {
    width: 74.0625rem !important;
  }
  .sm\:w-1190 {
    width: 74.375rem !important;
  }
  .sm\:w-1195 {
    width: 74.6875rem !important;
  }
  .sm\:w-1200 {
    width: 75rem !important;
  }
  .sm\:w-1205 {
    width: 75.3125rem !important;
  }
  .sm\:w-1210 {
    width: 75.625rem !important;
  }
  .sm\:w-1215 {
    width: 75.9375rem !important;
  }
  .sm\:w-1220 {
    width: 76.25rem !important;
  }
  .sm\:w-1225 {
    width: 76.5625rem !important;
  }
  .sm\:w-1230 {
    width: 76.875rem !important;
  }
  .sm\:w-1235 {
    width: 77.1875rem !important;
  }
  .sm\:w-1240 {
    width: 77.5rem !important;
  }
  .sm\:w-1245 {
    width: 77.8125rem !important;
  }
  .sm\:w-1250 {
    width: 78.125rem !important;
  }
  .sm\:w-1255 {
    width: 78.4375rem !important;
  }
  .sm\:w-1260 {
    width: 78.75rem !important;
  }
  .sm\:w-1265 {
    width: 79.0625rem !important;
  }
  .sm\:w-1270 {
    width: 79.375rem !important;
  }
  .sm\:w-1275 {
    width: 79.6875rem !important;
  }
  .sm\:w-1280 {
    width: 80rem !important;
  }
  .sm\:w-1285 {
    width: 80.3125rem !important;
  }
  .sm\:w-1290 {
    width: 80.625rem !important;
  }
  .sm\:w-1295 {
    width: 80.9375rem !important;
  }
  .sm\:w-1300 {
    width: 81.25rem !important;
  }
  .sm\:w-1305 {
    width: 81.5625rem !important;
  }
  .sm\:w-1310 {
    width: 81.875rem !important;
  }
  .sm\:w-1315 {
    width: 82.1875rem !important;
  }
  .sm\:w-1320 {
    width: 82.5rem !important;
  }
  .sm\:w-1325 {
    width: 82.8125rem !important;
  }
  .sm\:w-1330 {
    width: 83.125rem !important;
  }
  .sm\:w-1335 {
    width: 83.4375rem !important;
  }
  .sm\:w-1340 {
    width: 83.75rem !important;
  }
  .sm\:w-1345 {
    width: 84.0625rem !important;
  }
  .sm\:w-1350 {
    width: 84.375rem !important;
  }
  .sm\:w-1355 {
    width: 84.6875rem !important;
  }
  .sm\:w-1360 {
    width: 85rem !important;
  }
  .sm\:w-1365 {
    width: 85.3125rem !important;
  }
  .sm\:w-1370 {
    width: 85.625rem !important;
  }
  .sm\:w-1375 {
    width: 85.9375rem !important;
  }
  .sm\:w-1380 {
    width: 86.25rem !important;
  }
  .sm\:w-1385 {
    width: 86.5625rem !important;
  }
  .sm\:w-1390 {
    width: 86.875rem !important;
  }
  .sm\:w-1395 {
    width: 87.1875rem !important;
  }
  .sm\:w-1400 {
    width: 87.5rem !important;
  }
  .sm\:w-1405 {
    width: 87.8125rem !important;
  }
  .sm\:w-1410 {
    width: 88.125rem !important;
  }
  .sm\:w-1415 {
    width: 88.4375rem !important;
  }
  .sm\:w-1420 {
    width: 88.75rem !important;
  }
  .sm\:w-1425 {
    width: 89.0625rem !important;
  }
  .sm\:w-1430 {
    width: 89.375rem !important;
  }
  .sm\:w-1435 {
    width: 89.6875rem !important;
  }
  .sm\:w-1440 {
    width: 90rem !important;
  }
  .sm\:w-1445 {
    width: 90.3125rem !important;
  }
  .sm\:w-1450 {
    width: 90.625rem !important;
  }
  .sm\:w-1455 {
    width: 90.9375rem !important;
  }
  .sm\:w-1460 {
    width: 91.25rem !important;
  }
  .sm\:w-1465 {
    width: 91.5625rem !important;
  }
  .sm\:w-1470 {
    width: 91.875rem !important;
  }
  .sm\:w-1475 {
    width: 92.1875rem !important;
  }
  .sm\:w-1480 {
    width: 92.5rem !important;
  }
  .sm\:w-1485 {
    width: 92.8125rem !important;
  }
  .sm\:w-1490 {
    width: 93.125rem !important;
  }
  .sm\:w-1495 {
    width: 93.4375rem !important;
  }
  .sm\:w-1500 {
    width: 93.75rem !important;
  }
  .sm\:w-0per {
    width: 0% !important;
  }
  .sm\:w-1per {
    width: 1% !important;
  }
  .sm\:w-2per {
    width: 2% !important;
  }
  .sm\:w-3per {
    width: 3% !important;
  }
  .sm\:w-4per {
    width: 4% !important;
  }
  .sm\:w-5per {
    width: 5% !important;
  }
  .sm\:w-6per {
    width: 6% !important;
  }
  .sm\:w-7per {
    width: 7% !important;
  }
  .sm\:w-8per {
    width: 8% !important;
  }
  .sm\:w-9per {
    width: 9% !important;
  }
  .sm\:w-10per {
    width: 10% !important;
  }
  .sm\:w-11per {
    width: 11% !important;
  }
  .sm\:w-12per {
    width: 12% !important;
  }
  .sm\:w-13per {
    width: 13% !important;
  }
  .sm\:w-14per {
    width: 14% !important;
  }
  .sm\:w-15per {
    width: 15% !important;
  }
  .sm\:w-16per {
    width: 16% !important;
  }
  .sm\:w-17per {
    width: 17% !important;
  }
  .sm\:w-18per {
    width: 18% !important;
  }
  .sm\:w-19per {
    width: 19% !important;
  }
  .sm\:w-20per {
    width: 20% !important;
  }
  .sm\:w-21per {
    width: 21% !important;
  }
  .sm\:w-22per {
    width: 22% !important;
  }
  .sm\:w-23per {
    width: 23% !important;
  }
  .sm\:w-24per {
    width: 24% !important;
  }
  .sm\:w-25per {
    width: 25% !important;
  }
  .sm\:w-26per {
    width: 26% !important;
  }
  .sm\:w-27per {
    width: 27% !important;
  }
  .sm\:w-28per {
    width: 28% !important;
  }
  .sm\:w-29per {
    width: 29% !important;
  }
  .sm\:w-30per {
    width: 30% !important;
  }
  .sm\:w-31per {
    width: 31% !important;
  }
  .sm\:w-32per {
    width: 32% !important;
  }
  .sm\:w-33per {
    width: 33% !important;
  }
  .sm\:w-34per {
    width: 34% !important;
  }
  .sm\:w-35per {
    width: 35% !important;
  }
  .sm\:w-36per {
    width: 36% !important;
  }
  .sm\:w-37per {
    width: 37% !important;
  }
  .sm\:w-38per {
    width: 38% !important;
  }
  .sm\:w-39per {
    width: 39% !important;
  }
  .sm\:w-40per {
    width: 40% !important;
  }
  .sm\:w-41per {
    width: 41% !important;
  }
  .sm\:w-42per {
    width: 42% !important;
  }
  .sm\:w-43per {
    width: 43% !important;
  }
  .sm\:w-44per {
    width: 44% !important;
  }
  .sm\:w-45per {
    width: 45% !important;
  }
  .sm\:w-46per {
    width: 46% !important;
  }
  .sm\:w-47per {
    width: 47% !important;
  }
  .sm\:w-48per {
    width: 48% !important;
  }
  .sm\:w-49per {
    width: 49% !important;
  }
  .sm\:w-50per {
    width: 50% !important;
  }
  .sm\:w-51per {
    width: 51% !important;
  }
  .sm\:w-52per {
    width: 52% !important;
  }
  .sm\:w-53per {
    width: 53% !important;
  }
  .sm\:w-54per {
    width: 54% !important;
  }
  .sm\:w-55per {
    width: 55% !important;
  }
  .sm\:w-56per {
    width: 56% !important;
  }
  .sm\:w-57per {
    width: 57% !important;
  }
  .sm\:w-58per {
    width: 58% !important;
  }
  .sm\:w-59per {
    width: 59% !important;
  }
  .sm\:w-60per {
    width: 60% !important;
  }
  .sm\:w-61per {
    width: 61% !important;
  }
  .sm\:w-62per {
    width: 62% !important;
  }
  .sm\:w-63per {
    width: 63% !important;
  }
  .sm\:w-64per {
    width: 64% !important;
  }
  .sm\:w-65per {
    width: 65% !important;
  }
  .sm\:w-66per {
    width: 66% !important;
  }
  .sm\:w-67per {
    width: 67% !important;
  }
  .sm\:w-68per {
    width: 68% !important;
  }
  .sm\:w-69per {
    width: 69% !important;
  }
  .sm\:w-70per {
    width: 70% !important;
  }
  .sm\:w-71per {
    width: 71% !important;
  }
  .sm\:w-72per {
    width: 72% !important;
  }
  .sm\:w-73per {
    width: 73% !important;
  }
  .sm\:w-74per {
    width: 74% !important;
  }
  .sm\:w-75per {
    width: 75% !important;
  }
  .sm\:w-76per {
    width: 76% !important;
  }
  .sm\:w-77per {
    width: 77% !important;
  }
  .sm\:w-78per {
    width: 78% !important;
  }
  .sm\:w-79per {
    width: 79% !important;
  }
  .sm\:w-80per {
    width: 80% !important;
  }
  .sm\:w-81per {
    width: 81% !important;
  }
  .sm\:w-82per {
    width: 82% !important;
  }
  .sm\:w-83per {
    width: 83% !important;
  }
  .sm\:w-84per {
    width: 84% !important;
  }
  .sm\:w-85per {
    width: 85% !important;
  }
  .sm\:w-86per {
    width: 86% !important;
  }
  .sm\:w-87per {
    width: 87% !important;
  }
  .sm\:w-88per {
    width: 88% !important;
  }
  .sm\:w-89per {
    width: 89% !important;
  }
  .sm\:w-90per {
    width: 90% !important;
  }
  .sm\:w-91per {
    width: 91% !important;
  }
  .sm\:w-92per {
    width: 92% !important;
  }
  .sm\:w-93per {
    width: 93% !important;
  }
  .sm\:w-94per {
    width: 94% !important;
  }
  .sm\:w-95per {
    width: 95% !important;
  }
  .sm\:w-96per {
    width: 96% !important;
  }
  .sm\:w-97per {
    width: 97% !important;
  }
  .sm\:w-98per {
    width: 98% !important;
  }
  .sm\:w-99per {
    width: 99% !important;
  }
  .sm\:w-100per {
    width: 100% !important;
  }
  .sm\:max-w-none {
    max-width: none !important;
  }
  .sm\:max-w-full {
    max-width: 100% !important;
  }
  .sm\:max-w-0 {
    max-width: 0rem !important;
  }
  .sm\:max-w-5 {
    max-width: 0.3125rem !important;
  }
  .sm\:max-w-10 {
    max-width: 0.625rem !important;
  }
  .sm\:max-w-15 {
    max-width: 0.9375rem !important;
  }
  .sm\:max-w-20 {
    max-width: 1.25rem !important;
  }
  .sm\:max-w-25 {
    max-width: 1.5625rem !important;
  }
  .sm\:max-w-30 {
    max-width: 1.875rem !important;
  }
  .sm\:max-w-35 {
    max-width: 2.1875rem !important;
  }
  .sm\:max-w-40 {
    max-width: 2.5rem !important;
  }
  .sm\:max-w-45 {
    max-width: 2.8125rem !important;
  }
  .sm\:max-w-50 {
    max-width: 3.125rem !important;
  }
  .sm\:max-w-55 {
    max-width: 3.4375rem !important;
  }
  .sm\:max-w-60 {
    max-width: 3.75rem !important;
  }
  .sm\:max-w-65 {
    max-width: 4.0625rem !important;
  }
  .sm\:max-w-70 {
    max-width: 4.375rem !important;
  }
  .sm\:max-w-75 {
    max-width: 4.6875rem !important;
  }
  .sm\:max-w-80 {
    max-width: 5rem !important;
  }
  .sm\:max-w-85 {
    max-width: 5.3125rem !important;
  }
  .sm\:max-w-90 {
    max-width: 5.625rem !important;
  }
  .sm\:max-w-95 {
    max-width: 5.9375rem !important;
  }
  .sm\:max-w-100 {
    max-width: 6.25rem !important;
  }
  .sm\:max-w-105 {
    max-width: 6.5625rem !important;
  }
  .sm\:max-w-110 {
    max-width: 6.875rem !important;
  }
  .sm\:max-w-115 {
    max-width: 7.1875rem !important;
  }
  .sm\:max-w-120 {
    max-width: 7.5rem !important;
  }
  .sm\:max-w-125 {
    max-width: 7.8125rem !important;
  }
  .sm\:max-w-130 {
    max-width: 8.125rem !important;
  }
  .sm\:max-w-135 {
    max-width: 8.4375rem !important;
  }
  .sm\:max-w-140 {
    max-width: 8.75rem !important;
  }
  .sm\:max-w-145 {
    max-width: 9.0625rem !important;
  }
  .sm\:max-w-150 {
    max-width: 9.375rem !important;
  }
  .sm\:max-w-155 {
    max-width: 9.6875rem !important;
  }
  .sm\:max-w-160 {
    max-width: 10rem !important;
  }
  .sm\:max-w-165 {
    max-width: 10.3125rem !important;
  }
  .sm\:max-w-170 {
    max-width: 10.625rem !important;
  }
  .sm\:max-w-175 {
    max-width: 10.9375rem !important;
  }
  .sm\:max-w-180 {
    max-width: 11.25rem !important;
  }
  .sm\:max-w-185 {
    max-width: 11.5625rem !important;
  }
  .sm\:max-w-190 {
    max-width: 11.875rem !important;
  }
  .sm\:max-w-195 {
    max-width: 12.1875rem !important;
  }
  .sm\:max-w-200 {
    max-width: 12.5rem !important;
  }
  .sm\:max-w-205 {
    max-width: 12.8125rem !important;
  }
  .sm\:max-w-210 {
    max-width: 13.125rem !important;
  }
  .sm\:max-w-215 {
    max-width: 13.4375rem !important;
  }
  .sm\:max-w-220 {
    max-width: 13.75rem !important;
  }
  .sm\:max-w-225 {
    max-width: 14.0625rem !important;
  }
  .sm\:max-w-230 {
    max-width: 14.375rem !important;
  }
  .sm\:max-w-235 {
    max-width: 14.6875rem !important;
  }
  .sm\:max-w-240 {
    max-width: 15rem !important;
  }
  .sm\:max-w-245 {
    max-width: 15.3125rem !important;
  }
  .sm\:max-w-250 {
    max-width: 15.625rem !important;
  }
  .sm\:max-w-255 {
    max-width: 15.9375rem !important;
  }
  .sm\:max-w-260 {
    max-width: 16.25rem !important;
  }
  .sm\:max-w-265 {
    max-width: 16.5625rem !important;
  }
  .sm\:max-w-270 {
    max-width: 16.875rem !important;
  }
  .sm\:max-w-275 {
    max-width: 17.1875rem !important;
  }
  .sm\:max-w-280 {
    max-width: 17.5rem !important;
  }
  .sm\:max-w-285 {
    max-width: 17.8125rem !important;
  }
  .sm\:max-w-290 {
    max-width: 18.125rem !important;
  }
  .sm\:max-w-295 {
    max-width: 18.4375rem !important;
  }
  .sm\:max-w-300 {
    max-width: 18.75rem !important;
  }
  .sm\:max-w-305 {
    max-width: 19.0625rem !important;
  }
  .sm\:max-w-310 {
    max-width: 19.375rem !important;
  }
  .sm\:max-w-315 {
    max-width: 19.6875rem !important;
  }
  .sm\:max-w-320 {
    max-width: 20rem !important;
  }
  .sm\:max-w-325 {
    max-width: 20.3125rem !important;
  }
  .sm\:max-w-330 {
    max-width: 20.625rem !important;
  }
  .sm\:max-w-335 {
    max-width: 20.9375rem !important;
  }
  .sm\:max-w-340 {
    max-width: 21.25rem !important;
  }
  .sm\:max-w-345 {
    max-width: 21.5625rem !important;
  }
  .sm\:max-w-350 {
    max-width: 21.875rem !important;
  }
  .sm\:max-w-355 {
    max-width: 22.1875rem !important;
  }
  .sm\:max-w-360 {
    max-width: 22.5rem !important;
  }
  .sm\:max-w-365 {
    max-width: 22.8125rem !important;
  }
  .sm\:max-w-370 {
    max-width: 23.125rem !important;
  }
  .sm\:max-w-375 {
    max-width: 23.4375rem !important;
  }
  .sm\:max-w-380 {
    max-width: 23.75rem !important;
  }
  .sm\:max-w-385 {
    max-width: 24.0625rem !important;
  }
  .sm\:max-w-390 {
    max-width: 24.375rem !important;
  }
  .sm\:max-w-395 {
    max-width: 24.6875rem !important;
  }
  .sm\:max-w-400 {
    max-width: 25rem !important;
  }
  .sm\:max-w-405 {
    max-width: 25.3125rem !important;
  }
  .sm\:max-w-410 {
    max-width: 25.625rem !important;
  }
  .sm\:max-w-415 {
    max-width: 25.9375rem !important;
  }
  .sm\:max-w-420 {
    max-width: 26.25rem !important;
  }
  .sm\:max-w-425 {
    max-width: 26.5625rem !important;
  }
  .sm\:max-w-430 {
    max-width: 26.875rem !important;
  }
  .sm\:max-w-435 {
    max-width: 27.1875rem !important;
  }
  .sm\:max-w-440 {
    max-width: 27.5rem !important;
  }
  .sm\:max-w-445 {
    max-width: 27.8125rem !important;
  }
  .sm\:max-w-450 {
    max-width: 28.125rem !important;
  }
  .sm\:max-w-455 {
    max-width: 28.4375rem !important;
  }
  .sm\:max-w-460 {
    max-width: 28.75rem !important;
  }
  .sm\:max-w-465 {
    max-width: 29.0625rem !important;
  }
  .sm\:max-w-470 {
    max-width: 29.375rem !important;
  }
  .sm\:max-w-475 {
    max-width: 29.6875rem !important;
  }
  .sm\:max-w-480 {
    max-width: 30rem !important;
  }
  .sm\:max-w-485 {
    max-width: 30.3125rem !important;
  }
  .sm\:max-w-490 {
    max-width: 30.625rem !important;
  }
  .sm\:max-w-495 {
    max-width: 30.9375rem !important;
  }
  .sm\:max-w-500 {
    max-width: 31.25rem !important;
  }
  .sm\:max-w-505 {
    max-width: 31.5625rem !important;
  }
  .sm\:max-w-510 {
    max-width: 31.875rem !important;
  }
  .sm\:max-w-515 {
    max-width: 32.1875rem !important;
  }
  .sm\:max-w-520 {
    max-width: 32.5rem !important;
  }
  .sm\:max-w-525 {
    max-width: 32.8125rem !important;
  }
  .sm\:max-w-530 {
    max-width: 33.125rem !important;
  }
  .sm\:max-w-535 {
    max-width: 33.4375rem !important;
  }
  .sm\:max-w-540 {
    max-width: 33.75rem !important;
  }
  .sm\:max-w-545 {
    max-width: 34.0625rem !important;
  }
  .sm\:max-w-550 {
    max-width: 34.375rem !important;
  }
  .sm\:max-w-555 {
    max-width: 34.6875rem !important;
  }
  .sm\:max-w-560 {
    max-width: 35rem !important;
  }
  .sm\:max-w-565 {
    max-width: 35.3125rem !important;
  }
  .sm\:max-w-570 {
    max-width: 35.625rem !important;
  }
  .sm\:max-w-575 {
    max-width: 35.9375rem !important;
  }
  .sm\:max-w-580 {
    max-width: 36.25rem !important;
  }
  .sm\:max-w-585 {
    max-width: 36.5625rem !important;
  }
  .sm\:max-w-590 {
    max-width: 36.875rem !important;
  }
  .sm\:max-w-595 {
    max-width: 37.1875rem !important;
  }
  .sm\:max-w-600 {
    max-width: 37.5rem !important;
  }
  .sm\:max-w-605 {
    max-width: 37.8125rem !important;
  }
  .sm\:max-w-610 {
    max-width: 38.125rem !important;
  }
  .sm\:max-w-615 {
    max-width: 38.4375rem !important;
  }
  .sm\:max-w-620 {
    max-width: 38.75rem !important;
  }
  .sm\:max-w-625 {
    max-width: 39.0625rem !important;
  }
  .sm\:max-w-630 {
    max-width: 39.375rem !important;
  }
  .sm\:max-w-635 {
    max-width: 39.6875rem !important;
  }
  .sm\:max-w-640 {
    max-width: 40rem !important;
  }
  .sm\:max-w-645 {
    max-width: 40.3125rem !important;
  }
  .sm\:max-w-650 {
    max-width: 40.625rem !important;
  }
  .sm\:max-w-655 {
    max-width: 40.9375rem !important;
  }
  .sm\:max-w-660 {
    max-width: 41.25rem !important;
  }
  .sm\:max-w-665 {
    max-width: 41.5625rem !important;
  }
  .sm\:max-w-670 {
    max-width: 41.875rem !important;
  }
  .sm\:max-w-675 {
    max-width: 42.1875rem !important;
  }
  .sm\:max-w-680 {
    max-width: 42.5rem !important;
  }
  .sm\:max-w-685 {
    max-width: 42.8125rem !important;
  }
  .sm\:max-w-690 {
    max-width: 43.125rem !important;
  }
  .sm\:max-w-695 {
    max-width: 43.4375rem !important;
  }
  .sm\:max-w-700 {
    max-width: 43.75rem !important;
  }
  .sm\:max-w-705 {
    max-width: 44.0625rem !important;
  }
  .sm\:max-w-710 {
    max-width: 44.375rem !important;
  }
  .sm\:max-w-715 {
    max-width: 44.6875rem !important;
  }
  .sm\:max-w-720 {
    max-width: 45rem !important;
  }
  .sm\:max-w-725 {
    max-width: 45.3125rem !important;
  }
  .sm\:max-w-730 {
    max-width: 45.625rem !important;
  }
  .sm\:max-w-735 {
    max-width: 45.9375rem !important;
  }
  .sm\:max-w-740 {
    max-width: 46.25rem !important;
  }
  .sm\:max-w-745 {
    max-width: 46.5625rem !important;
  }
  .sm\:max-w-750 {
    max-width: 46.875rem !important;
  }
  .sm\:max-w-755 {
    max-width: 47.1875rem !important;
  }
  .sm\:max-w-760 {
    max-width: 47.5rem !important;
  }
  .sm\:max-w-765 {
    max-width: 47.8125rem !important;
  }
  .sm\:max-w-770 {
    max-width: 48.125rem !important;
  }
  .sm\:max-w-775 {
    max-width: 48.4375rem !important;
  }
  .sm\:max-w-780 {
    max-width: 48.75rem !important;
  }
  .sm\:max-w-785 {
    max-width: 49.0625rem !important;
  }
  .sm\:max-w-790 {
    max-width: 49.375rem !important;
  }
  .sm\:max-w-795 {
    max-width: 49.6875rem !important;
  }
  .sm\:max-w-800 {
    max-width: 50rem !important;
  }
  .sm\:max-w-805 {
    max-width: 50.3125rem !important;
  }
  .sm\:max-w-810 {
    max-width: 50.625rem !important;
  }
  .sm\:max-w-815 {
    max-width: 50.9375rem !important;
  }
  .sm\:max-w-820 {
    max-width: 51.25rem !important;
  }
  .sm\:max-w-825 {
    max-width: 51.5625rem !important;
  }
  .sm\:max-w-830 {
    max-width: 51.875rem !important;
  }
  .sm\:max-w-835 {
    max-width: 52.1875rem !important;
  }
  .sm\:max-w-840 {
    max-width: 52.5rem !important;
  }
  .sm\:max-w-845 {
    max-width: 52.8125rem !important;
  }
  .sm\:max-w-850 {
    max-width: 53.125rem !important;
  }
  .sm\:max-w-855 {
    max-width: 53.4375rem !important;
  }
  .sm\:max-w-860 {
    max-width: 53.75rem !important;
  }
  .sm\:max-w-865 {
    max-width: 54.0625rem !important;
  }
  .sm\:max-w-870 {
    max-width: 54.375rem !important;
  }
  .sm\:max-w-875 {
    max-width: 54.6875rem !important;
  }
  .sm\:max-w-880 {
    max-width: 55rem !important;
  }
  .sm\:max-w-885 {
    max-width: 55.3125rem !important;
  }
  .sm\:max-w-890 {
    max-width: 55.625rem !important;
  }
  .sm\:max-w-895 {
    max-width: 55.9375rem !important;
  }
  .sm\:max-w-900 {
    max-width: 56.25rem !important;
  }
  .sm\:max-w-905 {
    max-width: 56.5625rem !important;
  }
  .sm\:max-w-910 {
    max-width: 56.875rem !important;
  }
  .sm\:max-w-915 {
    max-width: 57.1875rem !important;
  }
  .sm\:max-w-920 {
    max-width: 57.5rem !important;
  }
  .sm\:max-w-925 {
    max-width: 57.8125rem !important;
  }
  .sm\:max-w-930 {
    max-width: 58.125rem !important;
  }
  .sm\:max-w-935 {
    max-width: 58.4375rem !important;
  }
  .sm\:max-w-940 {
    max-width: 58.75rem !important;
  }
  .sm\:max-w-945 {
    max-width: 59.0625rem !important;
  }
  .sm\:max-w-950 {
    max-width: 59.375rem !important;
  }
  .sm\:max-w-955 {
    max-width: 59.6875rem !important;
  }
  .sm\:max-w-960 {
    max-width: 60rem !important;
  }
  .sm\:max-w-965 {
    max-width: 60.3125rem !important;
  }
  .sm\:max-w-970 {
    max-width: 60.625rem !important;
  }
  .sm\:max-w-975 {
    max-width: 60.9375rem !important;
  }
  .sm\:max-w-980 {
    max-width: 61.25rem !important;
  }
  .sm\:max-w-985 {
    max-width: 61.5625rem !important;
  }
  .sm\:max-w-990 {
    max-width: 61.875rem !important;
  }
  .sm\:max-w-995 {
    max-width: 62.1875rem !important;
  }
  .sm\:max-w-1000 {
    max-width: 62.5rem !important;
  }
  .sm\:max-w-1005 {
    max-width: 62.8125rem !important;
  }
  .sm\:max-w-1010 {
    max-width: 63.125rem !important;
  }
  .sm\:max-w-1015 {
    max-width: 63.4375rem !important;
  }
  .sm\:max-w-1020 {
    max-width: 63.75rem !important;
  }
  .sm\:max-w-1025 {
    max-width: 64.0625rem !important;
  }
  .sm\:max-w-1030 {
    max-width: 64.375rem !important;
  }
  .sm\:max-w-1035 {
    max-width: 64.6875rem !important;
  }
  .sm\:max-w-1040 {
    max-width: 65rem !important;
  }
  .sm\:max-w-1045 {
    max-width: 65.3125rem !important;
  }
  .sm\:max-w-1050 {
    max-width: 65.625rem !important;
  }
  .sm\:max-w-1055 {
    max-width: 65.9375rem !important;
  }
  .sm\:max-w-1060 {
    max-width: 66.25rem !important;
  }
  .sm\:max-w-1065 {
    max-width: 66.5625rem !important;
  }
  .sm\:max-w-1070 {
    max-width: 66.875rem !important;
  }
  .sm\:max-w-1075 {
    max-width: 67.1875rem !important;
  }
  .sm\:max-w-1080 {
    max-width: 67.5rem !important;
  }
  .sm\:max-w-1085 {
    max-width: 67.8125rem !important;
  }
  .sm\:max-w-1090 {
    max-width: 68.125rem !important;
  }
  .sm\:max-w-1095 {
    max-width: 68.4375rem !important;
  }
  .sm\:max-w-1100 {
    max-width: 68.75rem !important;
  }
  .sm\:max-w-1105 {
    max-width: 69.0625rem !important;
  }
  .sm\:max-w-1110 {
    max-width: 69.375rem !important;
  }
  .sm\:max-w-1115 {
    max-width: 69.6875rem !important;
  }
  .sm\:max-w-1120 {
    max-width: 70rem !important;
  }
  .sm\:max-w-1125 {
    max-width: 70.3125rem !important;
  }
  .sm\:max-w-1130 {
    max-width: 70.625rem !important;
  }
  .sm\:max-w-1135 {
    max-width: 70.9375rem !important;
  }
  .sm\:max-w-1140 {
    max-width: 71.25rem !important;
  }
  .sm\:max-w-1145 {
    max-width: 71.5625rem !important;
  }
  .sm\:max-w-1150 {
    max-width: 71.875rem !important;
  }
  .sm\:max-w-1155 {
    max-width: 72.1875rem !important;
  }
  .sm\:max-w-1160 {
    max-width: 72.5rem !important;
  }
  .sm\:max-w-1165 {
    max-width: 72.8125rem !important;
  }
  .sm\:max-w-1170 {
    max-width: 73.125rem !important;
  }
  .sm\:max-w-1175 {
    max-width: 73.4375rem !important;
  }
  .sm\:max-w-1180 {
    max-width: 73.75rem !important;
  }
  .sm\:max-w-1185 {
    max-width: 74.0625rem !important;
  }
  .sm\:max-w-1190 {
    max-width: 74.375rem !important;
  }
  .sm\:max-w-1195 {
    max-width: 74.6875rem !important;
  }
  .sm\:max-w-1200 {
    max-width: 75rem !important;
  }
  .sm\:max-w-1205 {
    max-width: 75.3125rem !important;
  }
  .sm\:max-w-1210 {
    max-width: 75.625rem !important;
  }
  .sm\:max-w-1215 {
    max-width: 75.9375rem !important;
  }
  .sm\:max-w-1220 {
    max-width: 76.25rem !important;
  }
  .sm\:max-w-1225 {
    max-width: 76.5625rem !important;
  }
  .sm\:max-w-1230 {
    max-width: 76.875rem !important;
  }
  .sm\:max-w-1235 {
    max-width: 77.1875rem !important;
  }
  .sm\:max-w-1240 {
    max-width: 77.5rem !important;
  }
  .sm\:max-w-1245 {
    max-width: 77.8125rem !important;
  }
  .sm\:max-w-1250 {
    max-width: 78.125rem !important;
  }
  .sm\:max-w-1255 {
    max-width: 78.4375rem !important;
  }
  .sm\:max-w-1260 {
    max-width: 78.75rem !important;
  }
  .sm\:max-w-1265 {
    max-width: 79.0625rem !important;
  }
  .sm\:max-w-1270 {
    max-width: 79.375rem !important;
  }
  .sm\:max-w-1275 {
    max-width: 79.6875rem !important;
  }
  .sm\:max-w-1280 {
    max-width: 80rem !important;
  }
  .sm\:max-w-1285 {
    max-width: 80.3125rem !important;
  }
  .sm\:max-w-1290 {
    max-width: 80.625rem !important;
  }
  .sm\:max-w-1295 {
    max-width: 80.9375rem !important;
  }
  .sm\:max-w-1300 {
    max-width: 81.25rem !important;
  }
  .sm\:max-w-1305 {
    max-width: 81.5625rem !important;
  }
  .sm\:max-w-1310 {
    max-width: 81.875rem !important;
  }
  .sm\:max-w-1315 {
    max-width: 82.1875rem !important;
  }
  .sm\:max-w-1320 {
    max-width: 82.5rem !important;
  }
  .sm\:max-w-1325 {
    max-width: 82.8125rem !important;
  }
  .sm\:max-w-1330 {
    max-width: 83.125rem !important;
  }
  .sm\:max-w-1335 {
    max-width: 83.4375rem !important;
  }
  .sm\:max-w-1340 {
    max-width: 83.75rem !important;
  }
  .sm\:max-w-1345 {
    max-width: 84.0625rem !important;
  }
  .sm\:max-w-1350 {
    max-width: 84.375rem !important;
  }
  .sm\:max-w-1355 {
    max-width: 84.6875rem !important;
  }
  .sm\:max-w-1360 {
    max-width: 85rem !important;
  }
  .sm\:max-w-1365 {
    max-width: 85.3125rem !important;
  }
  .sm\:max-w-1370 {
    max-width: 85.625rem !important;
  }
  .sm\:max-w-1375 {
    max-width: 85.9375rem !important;
  }
  .sm\:max-w-1380 {
    max-width: 86.25rem !important;
  }
  .sm\:max-w-1385 {
    max-width: 86.5625rem !important;
  }
  .sm\:max-w-1390 {
    max-width: 86.875rem !important;
  }
  .sm\:max-w-1395 {
    max-width: 87.1875rem !important;
  }
  .sm\:max-w-1400 {
    max-width: 87.5rem !important;
  }
  .sm\:max-w-1405 {
    max-width: 87.8125rem !important;
  }
  .sm\:max-w-1410 {
    max-width: 88.125rem !important;
  }
  .sm\:max-w-1415 {
    max-width: 88.4375rem !important;
  }
  .sm\:max-w-1420 {
    max-width: 88.75rem !important;
  }
  .sm\:max-w-1425 {
    max-width: 89.0625rem !important;
  }
  .sm\:max-w-1430 {
    max-width: 89.375rem !important;
  }
  .sm\:max-w-1435 {
    max-width: 89.6875rem !important;
  }
  .sm\:max-w-1440 {
    max-width: 90rem !important;
  }
  .sm\:max-w-1445 {
    max-width: 90.3125rem !important;
  }
  .sm\:max-w-1450 {
    max-width: 90.625rem !important;
  }
  .sm\:max-w-1455 {
    max-width: 90.9375rem !important;
  }
  .sm\:max-w-1460 {
    max-width: 91.25rem !important;
  }
  .sm\:max-w-1465 {
    max-width: 91.5625rem !important;
  }
  .sm\:max-w-1470 {
    max-width: 91.875rem !important;
  }
  .sm\:max-w-1475 {
    max-width: 92.1875rem !important;
  }
  .sm\:max-w-1480 {
    max-width: 92.5rem !important;
  }
  .sm\:max-w-1485 {
    max-width: 92.8125rem !important;
  }
  .sm\:max-w-1490 {
    max-width: 93.125rem !important;
  }
  .sm\:max-w-1495 {
    max-width: 93.4375rem !important;
  }
  .sm\:max-w-1500 {
    max-width: 93.75rem !important;
  }
  .sm\:min-w-none {
    min-width: none !important;
  }
  .sm\:min-w-full {
    min-width: 100% !important;
  }
  .sm\:min-w-0 {
    min-width: 0rem !important;
  }
  .sm\:min-w-5 {
    min-width: 0.3125rem !important;
  }
  .sm\:min-w-10 {
    min-width: 0.625rem !important;
  }
  .sm\:min-w-15 {
    min-width: 0.9375rem !important;
  }
  .sm\:min-w-20 {
    min-width: 1.25rem !important;
  }
  .sm\:min-w-25 {
    min-width: 1.5625rem !important;
  }
  .sm\:min-w-30 {
    min-width: 1.875rem !important;
  }
  .sm\:min-w-35 {
    min-width: 2.1875rem !important;
  }
  .sm\:min-w-40 {
    min-width: 2.5rem !important;
  }
  .sm\:min-w-45 {
    min-width: 2.8125rem !important;
  }
  .sm\:min-w-50 {
    min-width: 3.125rem !important;
  }
  .sm\:min-w-55 {
    min-width: 3.4375rem !important;
  }
  .sm\:min-w-60 {
    min-width: 3.75rem !important;
  }
  .sm\:min-w-65 {
    min-width: 4.0625rem !important;
  }
  .sm\:min-w-70 {
    min-width: 4.375rem !important;
  }
  .sm\:min-w-75 {
    min-width: 4.6875rem !important;
  }
  .sm\:min-w-80 {
    min-width: 5rem !important;
  }
  .sm\:min-w-85 {
    min-width: 5.3125rem !important;
  }
  .sm\:min-w-90 {
    min-width: 5.625rem !important;
  }
  .sm\:min-w-95 {
    min-width: 5.9375rem !important;
  }
  .sm\:min-w-100 {
    min-width: 6.25rem !important;
  }
  .sm\:min-w-105 {
    min-width: 6.5625rem !important;
  }
  .sm\:min-w-110 {
    min-width: 6.875rem !important;
  }
  .sm\:min-w-115 {
    min-width: 7.1875rem !important;
  }
  .sm\:min-w-120 {
    min-width: 7.5rem !important;
  }
  .sm\:min-w-125 {
    min-width: 7.8125rem !important;
  }
  .sm\:min-w-130 {
    min-width: 8.125rem !important;
  }
  .sm\:min-w-135 {
    min-width: 8.4375rem !important;
  }
  .sm\:min-w-140 {
    min-width: 8.75rem !important;
  }
  .sm\:min-w-145 {
    min-width: 9.0625rem !important;
  }
  .sm\:min-w-150 {
    min-width: 9.375rem !important;
  }
  .sm\:min-w-155 {
    min-width: 9.6875rem !important;
  }
  .sm\:min-w-160 {
    min-width: 10rem !important;
  }
  .sm\:min-w-165 {
    min-width: 10.3125rem !important;
  }
  .sm\:min-w-170 {
    min-width: 10.625rem !important;
  }
  .sm\:min-w-175 {
    min-width: 10.9375rem !important;
  }
  .sm\:min-w-180 {
    min-width: 11.25rem !important;
  }
  .sm\:min-w-185 {
    min-width: 11.5625rem !important;
  }
  .sm\:min-w-190 {
    min-width: 11.875rem !important;
  }
  .sm\:min-w-195 {
    min-width: 12.1875rem !important;
  }
  .sm\:min-w-200 {
    min-width: 12.5rem !important;
  }
  .sm\:min-w-205 {
    min-width: 12.8125rem !important;
  }
  .sm\:min-w-210 {
    min-width: 13.125rem !important;
  }
  .sm\:min-w-215 {
    min-width: 13.4375rem !important;
  }
  .sm\:min-w-220 {
    min-width: 13.75rem !important;
  }
  .sm\:min-w-225 {
    min-width: 14.0625rem !important;
  }
  .sm\:min-w-230 {
    min-width: 14.375rem !important;
  }
  .sm\:min-w-235 {
    min-width: 14.6875rem !important;
  }
  .sm\:min-w-240 {
    min-width: 15rem !important;
  }
  .sm\:min-w-245 {
    min-width: 15.3125rem !important;
  }
  .sm\:min-w-250 {
    min-width: 15.625rem !important;
  }
  .sm\:min-w-255 {
    min-width: 15.9375rem !important;
  }
  .sm\:min-w-260 {
    min-width: 16.25rem !important;
  }
  .sm\:min-w-265 {
    min-width: 16.5625rem !important;
  }
  .sm\:min-w-270 {
    min-width: 16.875rem !important;
  }
  .sm\:min-w-275 {
    min-width: 17.1875rem !important;
  }
  .sm\:min-w-280 {
    min-width: 17.5rem !important;
  }
  .sm\:min-w-285 {
    min-width: 17.8125rem !important;
  }
  .sm\:min-w-290 {
    min-width: 18.125rem !important;
  }
  .sm\:min-w-295 {
    min-width: 18.4375rem !important;
  }
  .sm\:min-w-300 {
    min-width: 18.75rem !important;
  }
  .sm\:min-w-305 {
    min-width: 19.0625rem !important;
  }
  .sm\:min-w-310 {
    min-width: 19.375rem !important;
  }
  .sm\:min-w-315 {
    min-width: 19.6875rem !important;
  }
  .sm\:min-w-320 {
    min-width: 20rem !important;
  }
  .sm\:min-w-325 {
    min-width: 20.3125rem !important;
  }
  .sm\:min-w-330 {
    min-width: 20.625rem !important;
  }
  .sm\:min-w-335 {
    min-width: 20.9375rem !important;
  }
  .sm\:min-w-340 {
    min-width: 21.25rem !important;
  }
  .sm\:min-w-345 {
    min-width: 21.5625rem !important;
  }
  .sm\:min-w-350 {
    min-width: 21.875rem !important;
  }
  .sm\:min-w-355 {
    min-width: 22.1875rem !important;
  }
  .sm\:min-w-360 {
    min-width: 22.5rem !important;
  }
  .sm\:min-w-365 {
    min-width: 22.8125rem !important;
  }
  .sm\:min-w-370 {
    min-width: 23.125rem !important;
  }
  .sm\:min-w-375 {
    min-width: 23.4375rem !important;
  }
  .sm\:min-w-380 {
    min-width: 23.75rem !important;
  }
  .sm\:min-w-385 {
    min-width: 24.0625rem !important;
  }
  .sm\:min-w-390 {
    min-width: 24.375rem !important;
  }
  .sm\:min-w-395 {
    min-width: 24.6875rem !important;
  }
  .sm\:min-w-400 {
    min-width: 25rem !important;
  }
  .sm\:min-w-405 {
    min-width: 25.3125rem !important;
  }
  .sm\:min-w-410 {
    min-width: 25.625rem !important;
  }
  .sm\:min-w-415 {
    min-width: 25.9375rem !important;
  }
  .sm\:min-w-420 {
    min-width: 26.25rem !important;
  }
  .sm\:min-w-425 {
    min-width: 26.5625rem !important;
  }
  .sm\:min-w-430 {
    min-width: 26.875rem !important;
  }
  .sm\:min-w-435 {
    min-width: 27.1875rem !important;
  }
  .sm\:min-w-440 {
    min-width: 27.5rem !important;
  }
  .sm\:min-w-445 {
    min-width: 27.8125rem !important;
  }
  .sm\:min-w-450 {
    min-width: 28.125rem !important;
  }
  .sm\:min-w-455 {
    min-width: 28.4375rem !important;
  }
  .sm\:min-w-460 {
    min-width: 28.75rem !important;
  }
  .sm\:min-w-465 {
    min-width: 29.0625rem !important;
  }
  .sm\:min-w-470 {
    min-width: 29.375rem !important;
  }
  .sm\:min-w-475 {
    min-width: 29.6875rem !important;
  }
  .sm\:min-w-480 {
    min-width: 30rem !important;
  }
  .sm\:min-w-485 {
    min-width: 30.3125rem !important;
  }
  .sm\:min-w-490 {
    min-width: 30.625rem !important;
  }
  .sm\:min-w-495 {
    min-width: 30.9375rem !important;
  }
  .sm\:min-w-500 {
    min-width: 31.25rem !important;
  }
  .sm\:min-w-505 {
    min-width: 31.5625rem !important;
  }
  .sm\:min-w-510 {
    min-width: 31.875rem !important;
  }
  .sm\:min-w-515 {
    min-width: 32.1875rem !important;
  }
  .sm\:min-w-520 {
    min-width: 32.5rem !important;
  }
  .sm\:min-w-525 {
    min-width: 32.8125rem !important;
  }
  .sm\:min-w-530 {
    min-width: 33.125rem !important;
  }
  .sm\:min-w-535 {
    min-width: 33.4375rem !important;
  }
  .sm\:min-w-540 {
    min-width: 33.75rem !important;
  }
  .sm\:min-w-545 {
    min-width: 34.0625rem !important;
  }
  .sm\:min-w-550 {
    min-width: 34.375rem !important;
  }
  .sm\:min-w-555 {
    min-width: 34.6875rem !important;
  }
  .sm\:min-w-560 {
    min-width: 35rem !important;
  }
  .sm\:min-w-565 {
    min-width: 35.3125rem !important;
  }
  .sm\:min-w-570 {
    min-width: 35.625rem !important;
  }
  .sm\:min-w-575 {
    min-width: 35.9375rem !important;
  }
  .sm\:min-w-580 {
    min-width: 36.25rem !important;
  }
  .sm\:min-w-585 {
    min-width: 36.5625rem !important;
  }
  .sm\:min-w-590 {
    min-width: 36.875rem !important;
  }
  .sm\:min-w-595 {
    min-width: 37.1875rem !important;
  }
  .sm\:min-w-600 {
    min-width: 37.5rem !important;
  }
  .sm\:min-w-605 {
    min-width: 37.8125rem !important;
  }
  .sm\:min-w-610 {
    min-width: 38.125rem !important;
  }
  .sm\:min-w-615 {
    min-width: 38.4375rem !important;
  }
  .sm\:min-w-620 {
    min-width: 38.75rem !important;
  }
  .sm\:min-w-625 {
    min-width: 39.0625rem !important;
  }
  .sm\:min-w-630 {
    min-width: 39.375rem !important;
  }
  .sm\:min-w-635 {
    min-width: 39.6875rem !important;
  }
  .sm\:min-w-640 {
    min-width: 40rem !important;
  }
  .sm\:min-w-645 {
    min-width: 40.3125rem !important;
  }
  .sm\:min-w-650 {
    min-width: 40.625rem !important;
  }
  .sm\:min-w-655 {
    min-width: 40.9375rem !important;
  }
  .sm\:min-w-660 {
    min-width: 41.25rem !important;
  }
  .sm\:min-w-665 {
    min-width: 41.5625rem !important;
  }
  .sm\:min-w-670 {
    min-width: 41.875rem !important;
  }
  .sm\:min-w-675 {
    min-width: 42.1875rem !important;
  }
  .sm\:min-w-680 {
    min-width: 42.5rem !important;
  }
  .sm\:min-w-685 {
    min-width: 42.8125rem !important;
  }
  .sm\:min-w-690 {
    min-width: 43.125rem !important;
  }
  .sm\:min-w-695 {
    min-width: 43.4375rem !important;
  }
  .sm\:min-w-700 {
    min-width: 43.75rem !important;
  }
  .sm\:min-w-705 {
    min-width: 44.0625rem !important;
  }
  .sm\:min-w-710 {
    min-width: 44.375rem !important;
  }
  .sm\:min-w-715 {
    min-width: 44.6875rem !important;
  }
  .sm\:min-w-720 {
    min-width: 45rem !important;
  }
  .sm\:min-w-725 {
    min-width: 45.3125rem !important;
  }
  .sm\:min-w-730 {
    min-width: 45.625rem !important;
  }
  .sm\:min-w-735 {
    min-width: 45.9375rem !important;
  }
  .sm\:min-w-740 {
    min-width: 46.25rem !important;
  }
  .sm\:min-w-745 {
    min-width: 46.5625rem !important;
  }
  .sm\:min-w-750 {
    min-width: 46.875rem !important;
  }
  .sm\:min-w-755 {
    min-width: 47.1875rem !important;
  }
  .sm\:min-w-760 {
    min-width: 47.5rem !important;
  }
  .sm\:min-w-765 {
    min-width: 47.8125rem !important;
  }
  .sm\:min-w-770 {
    min-width: 48.125rem !important;
  }
  .sm\:min-w-775 {
    min-width: 48.4375rem !important;
  }
  .sm\:min-w-780 {
    min-width: 48.75rem !important;
  }
  .sm\:min-w-785 {
    min-width: 49.0625rem !important;
  }
  .sm\:min-w-790 {
    min-width: 49.375rem !important;
  }
  .sm\:min-w-795 {
    min-width: 49.6875rem !important;
  }
  .sm\:min-w-800 {
    min-width: 50rem !important;
  }
  .sm\:min-w-805 {
    min-width: 50.3125rem !important;
  }
  .sm\:min-w-810 {
    min-width: 50.625rem !important;
  }
  .sm\:min-w-815 {
    min-width: 50.9375rem !important;
  }
  .sm\:min-w-820 {
    min-width: 51.25rem !important;
  }
  .sm\:min-w-825 {
    min-width: 51.5625rem !important;
  }
  .sm\:min-w-830 {
    min-width: 51.875rem !important;
  }
  .sm\:min-w-835 {
    min-width: 52.1875rem !important;
  }
  .sm\:min-w-840 {
    min-width: 52.5rem !important;
  }
  .sm\:min-w-845 {
    min-width: 52.8125rem !important;
  }
  .sm\:min-w-850 {
    min-width: 53.125rem !important;
  }
  .sm\:min-w-855 {
    min-width: 53.4375rem !important;
  }
  .sm\:min-w-860 {
    min-width: 53.75rem !important;
  }
  .sm\:min-w-865 {
    min-width: 54.0625rem !important;
  }
  .sm\:min-w-870 {
    min-width: 54.375rem !important;
  }
  .sm\:min-w-875 {
    min-width: 54.6875rem !important;
  }
  .sm\:min-w-880 {
    min-width: 55rem !important;
  }
  .sm\:min-w-885 {
    min-width: 55.3125rem !important;
  }
  .sm\:min-w-890 {
    min-width: 55.625rem !important;
  }
  .sm\:min-w-895 {
    min-width: 55.9375rem !important;
  }
  .sm\:min-w-900 {
    min-width: 56.25rem !important;
  }
  .sm\:min-w-905 {
    min-width: 56.5625rem !important;
  }
  .sm\:min-w-910 {
    min-width: 56.875rem !important;
  }
  .sm\:min-w-915 {
    min-width: 57.1875rem !important;
  }
  .sm\:min-w-920 {
    min-width: 57.5rem !important;
  }
  .sm\:min-w-925 {
    min-width: 57.8125rem !important;
  }
  .sm\:min-w-930 {
    min-width: 58.125rem !important;
  }
  .sm\:min-w-935 {
    min-width: 58.4375rem !important;
  }
  .sm\:min-w-940 {
    min-width: 58.75rem !important;
  }
  .sm\:min-w-945 {
    min-width: 59.0625rem !important;
  }
  .sm\:min-w-950 {
    min-width: 59.375rem !important;
  }
  .sm\:min-w-955 {
    min-width: 59.6875rem !important;
  }
  .sm\:min-w-960 {
    min-width: 60rem !important;
  }
  .sm\:min-w-965 {
    min-width: 60.3125rem !important;
  }
  .sm\:min-w-970 {
    min-width: 60.625rem !important;
  }
  .sm\:min-w-975 {
    min-width: 60.9375rem !important;
  }
  .sm\:min-w-980 {
    min-width: 61.25rem !important;
  }
  .sm\:min-w-985 {
    min-width: 61.5625rem !important;
  }
  .sm\:min-w-990 {
    min-width: 61.875rem !important;
  }
  .sm\:min-w-995 {
    min-width: 62.1875rem !important;
  }
  .sm\:min-w-1000 {
    min-width: 62.5rem !important;
  }
  .sm\:min-w-1005 {
    min-width: 62.8125rem !important;
  }
  .sm\:min-w-1010 {
    min-width: 63.125rem !important;
  }
  .sm\:min-w-1015 {
    min-width: 63.4375rem !important;
  }
  .sm\:min-w-1020 {
    min-width: 63.75rem !important;
  }
  .sm\:min-w-1025 {
    min-width: 64.0625rem !important;
  }
  .sm\:min-w-1030 {
    min-width: 64.375rem !important;
  }
  .sm\:min-w-1035 {
    min-width: 64.6875rem !important;
  }
  .sm\:min-w-1040 {
    min-width: 65rem !important;
  }
  .sm\:min-w-1045 {
    min-width: 65.3125rem !important;
  }
  .sm\:min-w-1050 {
    min-width: 65.625rem !important;
  }
  .sm\:min-w-1055 {
    min-width: 65.9375rem !important;
  }
  .sm\:min-w-1060 {
    min-width: 66.25rem !important;
  }
  .sm\:min-w-1065 {
    min-width: 66.5625rem !important;
  }
  .sm\:min-w-1070 {
    min-width: 66.875rem !important;
  }
  .sm\:min-w-1075 {
    min-width: 67.1875rem !important;
  }
  .sm\:min-w-1080 {
    min-width: 67.5rem !important;
  }
  .sm\:min-w-1085 {
    min-width: 67.8125rem !important;
  }
  .sm\:min-w-1090 {
    min-width: 68.125rem !important;
  }
  .sm\:min-w-1095 {
    min-width: 68.4375rem !important;
  }
  .sm\:min-w-1100 {
    min-width: 68.75rem !important;
  }
  .sm\:min-w-1105 {
    min-width: 69.0625rem !important;
  }
  .sm\:min-w-1110 {
    min-width: 69.375rem !important;
  }
  .sm\:min-w-1115 {
    min-width: 69.6875rem !important;
  }
  .sm\:min-w-1120 {
    min-width: 70rem !important;
  }
  .sm\:min-w-1125 {
    min-width: 70.3125rem !important;
  }
  .sm\:min-w-1130 {
    min-width: 70.625rem !important;
  }
  .sm\:min-w-1135 {
    min-width: 70.9375rem !important;
  }
  .sm\:min-w-1140 {
    min-width: 71.25rem !important;
  }
  .sm\:min-w-1145 {
    min-width: 71.5625rem !important;
  }
  .sm\:min-w-1150 {
    min-width: 71.875rem !important;
  }
  .sm\:min-w-1155 {
    min-width: 72.1875rem !important;
  }
  .sm\:min-w-1160 {
    min-width: 72.5rem !important;
  }
  .sm\:min-w-1165 {
    min-width: 72.8125rem !important;
  }
  .sm\:min-w-1170 {
    min-width: 73.125rem !important;
  }
  .sm\:min-w-1175 {
    min-width: 73.4375rem !important;
  }
  .sm\:min-w-1180 {
    min-width: 73.75rem !important;
  }
  .sm\:min-w-1185 {
    min-width: 74.0625rem !important;
  }
  .sm\:min-w-1190 {
    min-width: 74.375rem !important;
  }
  .sm\:min-w-1195 {
    min-width: 74.6875rem !important;
  }
  .sm\:min-w-1200 {
    min-width: 75rem !important;
  }
  .sm\:min-w-1205 {
    min-width: 75.3125rem !important;
  }
  .sm\:min-w-1210 {
    min-width: 75.625rem !important;
  }
  .sm\:min-w-1215 {
    min-width: 75.9375rem !important;
  }
  .sm\:min-w-1220 {
    min-width: 76.25rem !important;
  }
  .sm\:min-w-1225 {
    min-width: 76.5625rem !important;
  }
  .sm\:min-w-1230 {
    min-width: 76.875rem !important;
  }
  .sm\:min-w-1235 {
    min-width: 77.1875rem !important;
  }
  .sm\:min-w-1240 {
    min-width: 77.5rem !important;
  }
  .sm\:min-w-1245 {
    min-width: 77.8125rem !important;
  }
  .sm\:min-w-1250 {
    min-width: 78.125rem !important;
  }
  .sm\:min-w-1255 {
    min-width: 78.4375rem !important;
  }
  .sm\:min-w-1260 {
    min-width: 78.75rem !important;
  }
  .sm\:min-w-1265 {
    min-width: 79.0625rem !important;
  }
  .sm\:min-w-1270 {
    min-width: 79.375rem !important;
  }
  .sm\:min-w-1275 {
    min-width: 79.6875rem !important;
  }
  .sm\:min-w-1280 {
    min-width: 80rem !important;
  }
  .sm\:min-w-1285 {
    min-width: 80.3125rem !important;
  }
  .sm\:min-w-1290 {
    min-width: 80.625rem !important;
  }
  .sm\:min-w-1295 {
    min-width: 80.9375rem !important;
  }
  .sm\:min-w-1300 {
    min-width: 81.25rem !important;
  }
  .sm\:min-w-1305 {
    min-width: 81.5625rem !important;
  }
  .sm\:min-w-1310 {
    min-width: 81.875rem !important;
  }
  .sm\:min-w-1315 {
    min-width: 82.1875rem !important;
  }
  .sm\:min-w-1320 {
    min-width: 82.5rem !important;
  }
  .sm\:min-w-1325 {
    min-width: 82.8125rem !important;
  }
  .sm\:min-w-1330 {
    min-width: 83.125rem !important;
  }
  .sm\:min-w-1335 {
    min-width: 83.4375rem !important;
  }
  .sm\:min-w-1340 {
    min-width: 83.75rem !important;
  }
  .sm\:min-w-1345 {
    min-width: 84.0625rem !important;
  }
  .sm\:min-w-1350 {
    min-width: 84.375rem !important;
  }
  .sm\:min-w-1355 {
    min-width: 84.6875rem !important;
  }
  .sm\:min-w-1360 {
    min-width: 85rem !important;
  }
  .sm\:min-w-1365 {
    min-width: 85.3125rem !important;
  }
  .sm\:min-w-1370 {
    min-width: 85.625rem !important;
  }
  .sm\:min-w-1375 {
    min-width: 85.9375rem !important;
  }
  .sm\:min-w-1380 {
    min-width: 86.25rem !important;
  }
  .sm\:min-w-1385 {
    min-width: 86.5625rem !important;
  }
  .sm\:min-w-1390 {
    min-width: 86.875rem !important;
  }
  .sm\:min-w-1395 {
    min-width: 87.1875rem !important;
  }
  .sm\:min-w-1400 {
    min-width: 87.5rem !important;
  }
  .sm\:min-w-1405 {
    min-width: 87.8125rem !important;
  }
  .sm\:min-w-1410 {
    min-width: 88.125rem !important;
  }
  .sm\:min-w-1415 {
    min-width: 88.4375rem !important;
  }
  .sm\:min-w-1420 {
    min-width: 88.75rem !important;
  }
  .sm\:min-w-1425 {
    min-width: 89.0625rem !important;
  }
  .sm\:min-w-1430 {
    min-width: 89.375rem !important;
  }
  .sm\:min-w-1435 {
    min-width: 89.6875rem !important;
  }
  .sm\:min-w-1440 {
    min-width: 90rem !important;
  }
  .sm\:min-w-1445 {
    min-width: 90.3125rem !important;
  }
  .sm\:min-w-1450 {
    min-width: 90.625rem !important;
  }
  .sm\:min-w-1455 {
    min-width: 90.9375rem !important;
  }
  .sm\:min-w-1460 {
    min-width: 91.25rem !important;
  }
  .sm\:min-w-1465 {
    min-width: 91.5625rem !important;
  }
  .sm\:min-w-1470 {
    min-width: 91.875rem !important;
  }
  .sm\:min-w-1475 {
    min-width: 92.1875rem !important;
  }
  .sm\:min-w-1480 {
    min-width: 92.5rem !important;
  }
  .sm\:min-w-1485 {
    min-width: 92.8125rem !important;
  }
  .sm\:min-w-1490 {
    min-width: 93.125rem !important;
  }
  .sm\:min-w-1495 {
    min-width: 93.4375rem !important;
  }
  .sm\:min-w-1500 {
    min-width: 93.75rem !important;
  }
}
.aligncenter {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  display: block;
  text-align: left;
  margin-right: auto;
}

.alignright {
  display: block;
  text-align: right;
  margin-left: auto;
}