.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.none {
  display: none !important;
}

.inline {
  display: inline !important;
}

.block {
  display: block !important;
}

.flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.object-cover {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.object-contain {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

@media screen and (max-width: 1599px) {
  .xxl\:relative {
    position: relative !important;
  }
  .xxl\:absolute {
    position: absolute !important;
  }
  .xxl\:none {
    display: none !important;
  }
  .xxl\:inline {
    display: inline !important;
  }
  .xxl\:block {
    display: block !important;
  }
  .xxl\:flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .xxl\:object-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .xxl\:object-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:relative {
    position: relative !important;
  }
  .xl\:absolute {
    position: absolute !important;
  }
  .xl\:none {
    display: none !important;
  }
  .xl\:inline {
    display: inline !important;
  }
  .xl\:block {
    display: block !important;
  }
  .xl\:flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .xl\:object-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .xl\:object-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:relative {
    position: relative !important;
  }
  .lg\:absolute {
    position: absolute !important;
  }
  .lg\:none {
    display: none !important;
  }
  .lg\:inline {
    display: inline !important;
  }
  .lg\:block {
    display: block !important;
  }
  .lg\:flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lg\:object-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .lg\:object-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:relative {
    position: relative !important;
  }
  .md\:absolute {
    position: absolute !important;
  }
  .md\:inline {
    display: inline !important;
  }
  .md\:block {
    display: block !important;
  }
  .md\:flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .md\:object-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .md\:object-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
}
@media screen and (max-width: 768px) {
  .md\:none {
    display: none !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:relative {
    position: relative !important;
  }
  .sm\:absolute {
    position: absolute !important;
  }
  .sm\:none {
    display: none !important;
  }
  .sm\:inline {
    display: inline !important;
  }
  .sm\:block {
    display: block !important;
  }
  .sm\:flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .sm\:object-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .sm\:object-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:relative {
    position: relative !important;
  }
  .xs\:absolute {
    position: absolute !important;
  }
  .xs\:none {
    display: none !important;
  }
  .xs\:inline {
    display: inline !important;
  }
  .xs\:block {
    display: block !important;
  }
  .xs\:flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .xs\:object-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .xs\:object-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
}
.justify-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.justify-evenly {
  -webkit-box-pack: space-evenly !important;
      -ms-flex-pack: space-evenly !important;
          justify-content: space-evenly !important;
}

.align-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-col {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-col-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-grow {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

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

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

@media screen and (max-width: 1599px) {
  .xxl\:justify-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .xxl\:justify-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .xxl\:justify-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .xxl\:justify-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .xxl\:justify-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .xxl\:justify-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .xxl\:align-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .xxl\:align-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .xxl\:flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .xxl\:flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .xxl\:flex-col {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .xxl\:flex-col-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .xxl\:flex-grow {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .xxl\:flex-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .xxl\:flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:justify-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .xl\:justify-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .xl\:justify-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .xl\:justify-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .xl\:justify-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .xl\:justify-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .xl\:align-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .xl\:align-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .xl\:flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .xl\:flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .xl\:flex-col {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .xl\:flex-col-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .xl\:flex-grow {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .xl\:flex-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .xl\:flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:justify-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .lg\:justify-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .lg\:justify-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .lg\:justify-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .lg\:justify-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .lg\:justify-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .lg\:align-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .lg\:align-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .lg\:flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .lg\:flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .lg\:flex-col {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .lg\:flex-col-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .lg\:flex-grow {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .lg\:flex-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .lg\:flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:justify-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .md\:justify-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .md\:justify-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .md\:justify-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .md\:justify-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .md\:justify-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .md\:align-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .md\:align-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .md\:flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .md\:flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .md\:flex-col {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .md\:flex-col-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .md\:flex-grow {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .md\:flex-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .md\:flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:justify-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .sm\:justify-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .sm\:justify-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .sm\:justify-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .sm\:justify-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .sm\:justify-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .sm\:align-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .sm\:align-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .sm\:flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .sm\:flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .sm\:flex-col {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .sm\:flex-col-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .sm\:flex-grow {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .sm\:flex-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .sm\:flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:justify-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .xs\:justify-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .xs\:justify-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .xs\:justify-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .xs\:justify-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .xs\:justify-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .xs\:align-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .xs\:align-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .xs\:flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .xs\:flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .xs\:flex-col {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .xs\:flex-col-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .xs\:flex-grow {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .xs\:flex-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .xs\:flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
}
.w-auto {
  width: auto !important;
}

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

.w-0 {
  width: 0px !important;
}

.w-1 {
  width: 0.25rem !important;
}

.w-2 {
  width: 0.5rem !important;
}

.w-3 {
  width: 0.75rem !important;
}

.w-4 {
  width: 1rem !important;
}

.w-5 {
  width: 1.25rem !important;
}

.w-6 {
  width: 1.5rem !important;
}

.w-7 {
  width: 1.75rem !important;
}

.w-8 {
  width: 2rem !important;
}

.w-9 {
  width: 2.25rem !important;
}

.w-10 {
  width: 2.5rem !important;
}

.w-11 {
  width: 2.75rem !important;
}

.w-12 {
  width: 3rem !important;
}

.w-14 {
  width: 3.5rem !important;
}

.w-16 {
  width: 4rem !important;
}

.w-20 {
  width: 5rem !important;
}

.w-24 {
  width: 6rem !important;
}

.w-28 {
  width: 7rem !important;
}

.w-32 {
  width: 8rem !important;
}

.w-36 {
  width: 9rem !important;
}

.w-40 {
  width: 10rem !important;
}

.w-44 {
  width: 11rem !important;
}

.w-48 {
  width: 12rem !important;
}

.w-52 {
  width: 13rem !important;
}

.w-56 {
  width: 14rem !important;
}

.w-60 {
  width: 15rem !important;
}

.w-1\/5 {
  width: 20% !important;
}

.w-2\/5 {
  width: 40% !important;
}

.w-3\/5 {
  width: 60% !important;
}

.w-4\/5 {
  width: 80% !important;
}

.w-1\/6, .w-1\/12 {
  width: 8.333333% !important;
}

.w-2\/12 {
  width: 16.666667% !important;
}

.w-1\/4, .w-3\/12 {
  width: 25% !important;
}

.w-1\/3, .w-2\/6, .w-4\/12 {
  width: 33.333333% !important;
}

.w-5\/12 {
  width: 41.666667% !important;
}

.w-1\/2, .w-2\/4, .w-3\/6, .w-6\/12 {
  width: 50% !important;
}

.w-7\/12 {
  width: 58.333333% !important;
}

.w-2\/3, .w-4\/6, .w-8\/12 {
  width: 66.666667% !important;
}

.w-3\/4, .w-9\/12 {
  width: 75% !important;
}

.w-5\/6, .w-10\/12 {
  width: 83.333333% !important;
}

.w-11\/12 {
  width: 91.666667% !important;
}

@media screen and (max-width: 1599px) {
  .xxl\:w-auto {
    width: auto !important;
  }
  .xxl\:w-full {
    width: 100% !important;
  }
  .xxl\:w-0 {
    width: 0px !important;
  }
  .xxl\:w-1 {
    width: 0.25rem !important;
  }
  .xxl\:w-2 {
    width: 0.5rem !important;
  }
  .xxl\:w-3 {
    width: 0.75rem !important;
  }
  .xxl\:w-4 {
    width: 1rem !important;
  }
  .xxl\:w-5 {
    width: 1.25rem !important;
  }
  .xxl\:w-6 {
    width: 1.5rem !important;
  }
  .xxl\:w-7 {
    width: 1.75rem !important;
  }
  .xxl\:w-8 {
    width: 2rem !important;
  }
  .xxl\:w-9 {
    width: 2.25rem !important;
  }
  .xxl\:w-10 {
    width: 2.5rem !important;
  }
  .xxl\:w-11 {
    width: 2.75rem !important;
  }
  .xxl\:w-12 {
    width: 3rem !important;
  }
  .xxl\:w-14 {
    width: 3.5rem !important;
  }
  .xxl\:w-16 {
    width: 4rem !important;
  }
  .xxl\:w-20 {
    width: 5rem !important;
  }
  .xxl\:w-24 {
    width: 6rem !important;
  }
  .xxl\:w-28 {
    width: 7rem !important;
  }
  .xxl\:w-32 {
    width: 8rem !important;
  }
  .xxl\:w-36 {
    width: 9rem !important;
  }
  .xxl\:w-40 {
    width: 10rem !important;
  }
  .xxl\:w-44 {
    width: 11rem !important;
  }
  .xxl\:w-48 {
    width: 12rem !important;
  }
  .xxl\:w-52 {
    width: 13rem !important;
  }
  .xxl\:w-56 {
    width: 14rem !important;
  }
  .xxl\:w-60 {
    width: 15rem !important;
  }
  .xxl\:w-1\/5 {
    width: 20% !important;
  }
  .xxl\:w-2\/5 {
    width: 40% !important;
  }
  .xxl\:w-3\/5 {
    width: 60% !important;
  }
  .xxl\:w-4\/5 {
    width: 80% !important;
  }
  .xxl\:w-1\/6, .xxl\:w-1\/12 {
    width: 8.333333% !important;
  }
  .xxl\:w-2\/12 {
    width: 16.666667% !important;
  }
  .xxl\:w-1\/4, .xxl\:w-3\/12 {
    width: 25% !important;
  }
  .xxl\:w-1\/3, .xxl\:w-2\/6, .xxl\:w-4\/12 {
    width: 33.333333% !important;
  }
  .xxl\:w-5\/12 {
    width: 41.666667% !important;
  }
  .xxl\:w-1\/2, .xxl\:w-2\/4, .xxl\:w-3\/6, .xxl\:w-6\/12 {
    width: 50% !important;
  }
  .xxl\:w-7\/12 {
    width: 58.333333% !important;
  }
  .xxl\:w-2\/3, .xxl\:w-4\/6, .xxl\:w-8\/12 {
    width: 66.666667% !important;
  }
  .xxl\:w-3\/4, .xxl\:w-9\/12 {
    width: 75% !important;
  }
  .xxl\:w-5\/6, .xxl\:w-10\/12 {
    width: 83.333333% !important;
  }
  .xxl\:w-11\/12 {
    width: 91.666667% !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:w-auto {
    width: auto !important;
  }
  .xl\:w-full {
    width: 100% !important;
  }
  .xl\:w-0 {
    width: 0px !important;
  }
  .xl\:w-1 {
    width: 0.25rem !important;
  }
  .xl\:w-2 {
    width: 0.5rem !important;
  }
  .xl\:w-3 {
    width: 0.75rem !important;
  }
  .xl\:w-4 {
    width: 1rem !important;
  }
  .xl\:w-5 {
    width: 1.25rem !important;
  }
  .xl\:w-6 {
    width: 1.5rem !important;
  }
  .xl\:w-7 {
    width: 1.75rem !important;
  }
  .xl\:w-8 {
    width: 2rem !important;
  }
  .xl\:w-9 {
    width: 2.25rem !important;
  }
  .xl\:w-10 {
    width: 2.5rem !important;
  }
  .xl\:w-11 {
    width: 2.75rem !important;
  }
  .xl\:w-12 {
    width: 3rem !important;
  }
  .xl\:w-14 {
    width: 3.5rem !important;
  }
  .xl\:w-16 {
    width: 4rem !important;
  }
  .xl\:w-20 {
    width: 5rem !important;
  }
  .xl\:w-24 {
    width: 6rem !important;
  }
  .xl\:w-28 {
    width: 7rem !important;
  }
  .xl\:w-32 {
    width: 8rem !important;
  }
  .xl\:w-36 {
    width: 9rem !important;
  }
  .xl\:w-40 {
    width: 10rem !important;
  }
  .xl\:w-44 {
    width: 11rem !important;
  }
  .xl\:w-48 {
    width: 12rem !important;
  }
  .xl\:w-52 {
    width: 13rem !important;
  }
  .xl\:w-56 {
    width: 14rem !important;
  }
  .xl\:w-60 {
    width: 15rem !important;
  }
  .xl\:w-1\/5 {
    width: 20% !important;
  }
  .xl\:w-2\/5 {
    width: 40% !important;
  }
  .xl\:w-3\/5 {
    width: 60% !important;
  }
  .xl\:w-4\/5 {
    width: 80% !important;
  }
  .xl\:w-1\/6, .xl\:w-1\/12 {
    width: 8.333333% !important;
  }
  .xl\:w-2\/12 {
    width: 16.666667% !important;
  }
  .xl\:w-1\/4, .xl\:w-3\/12 {
    width: 25% !important;
  }
  .xl\:w-1\/3, .xl\:w-2\/6, .xl\:w-4\/12 {
    width: 33.333333% !important;
  }
  .xl\:w-5\/12 {
    width: 41.666667% !important;
  }
  .xl\:w-1\/2, .xl\:w-2\/4, .xl\:w-3\/6, .xl\:w-6\/12 {
    width: 50% !important;
  }
  .xl\:w-7\/12 {
    width: 58.333333% !important;
  }
  .xl\:w-2\/3, .xl\:w-4\/6, .xl\:w-8\/12 {
    width: 66.666667% !important;
  }
  .xl\:w-3\/4, .xl\:w-9\/12 {
    width: 75% !important;
  }
  .xl\:w-5\/6, .xl\:w-10\/12 {
    width: 83.333333% !important;
  }
  .xl\:w-11\/12 {
    width: 91.666667% !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:w-auto {
    width: auto !important;
  }
  .lg\:w-full {
    width: 100% !important;
  }
  .lg\:w-0 {
    width: 0px !important;
  }
  .lg\:w-1 {
    width: 0.25rem !important;
  }
  .lg\:w-2 {
    width: 0.5rem !important;
  }
  .lg\:w-3 {
    width: 0.75rem !important;
  }
  .lg\:w-4 {
    width: 1rem !important;
  }
  .lg\:w-5 {
    width: 1.25rem !important;
  }
  .lg\:w-6 {
    width: 1.5rem !important;
  }
  .lg\:w-7 {
    width: 1.75rem !important;
  }
  .lg\:w-8 {
    width: 2rem !important;
  }
  .lg\:w-9 {
    width: 2.25rem !important;
  }
  .lg\:w-10 {
    width: 2.5rem !important;
  }
  .lg\:w-11 {
    width: 2.75rem !important;
  }
  .lg\:w-12 {
    width: 3rem !important;
  }
  .lg\:w-14 {
    width: 3.5rem !important;
  }
  .lg\:w-16 {
    width: 4rem !important;
  }
  .lg\:w-20 {
    width: 5rem !important;
  }
  .lg\:w-24 {
    width: 6rem !important;
  }
  .lg\:w-28 {
    width: 7rem !important;
  }
  .lg\:w-32 {
    width: 8rem !important;
  }
  .lg\:w-36 {
    width: 9rem !important;
  }
  .lg\:w-40 {
    width: 10rem !important;
  }
  .lg\:w-44 {
    width: 11rem !important;
  }
  .lg\:w-48 {
    width: 12rem !important;
  }
  .lg\:w-52 {
    width: 13rem !important;
  }
  .lg\:w-56 {
    width: 14rem !important;
  }
  .lg\:w-60 {
    width: 15rem !important;
  }
  .lg\:w-1\/5 {
    width: 20% !important;
  }
  .lg\:w-2\/5 {
    width: 40% !important;
  }
  .lg\:w-3\/5 {
    width: 60% !important;
  }
  .lg\:w-4\/5 {
    width: 80% !important;
  }
  .lg\:w-1\/6, .lg\:w-1\/12 {
    width: 8.333333% !important;
  }
  .lg\:w-2\/12 {
    width: 16.666667% !important;
  }
  .lg\:w-1\/4, .lg\:w-3\/12 {
    width: 25% !important;
  }
  .lg\:w-1\/3, .lg\:w-2\/6, .lg\:w-4\/12 {
    width: 33.333333% !important;
  }
  .lg\:w-5\/12 {
    width: 41.666667% !important;
  }
  .lg\:w-1\/2, .lg\:w-2\/4, .lg\:w-3\/6, .lg\:w-6\/12 {
    width: 50% !important;
  }
  .lg\:w-7\/12 {
    width: 58.333333% !important;
  }
  .lg\:w-2\/3, .lg\:w-4\/6, .lg\:w-8\/12 {
    width: 66.666667% !important;
  }
  .lg\:w-3\/4, .lg\:w-9\/12 {
    width: 75% !important;
  }
  .lg\:w-5\/6, .lg\:w-10\/12 {
    width: 83.333333% !important;
  }
  .lg\:w-11\/12 {
    width: 91.666667% !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:w-auto {
    width: auto !important;
  }
  .md\:w-full {
    width: 100% !important;
  }
  .md\:w-0 {
    width: 0px !important;
  }
  .md\:w-1 {
    width: 0.25rem !important;
  }
  .md\:w-2 {
    width: 0.5rem !important;
  }
  .md\:w-3 {
    width: 0.75rem !important;
  }
  .md\:w-4 {
    width: 1rem !important;
  }
  .md\:w-5 {
    width: 1.25rem !important;
  }
  .md\:w-6 {
    width: 1.5rem !important;
  }
  .md\:w-7 {
    width: 1.75rem !important;
  }
  .md\:w-8 {
    width: 2rem !important;
  }
  .md\:w-9 {
    width: 2.25rem !important;
  }
  .md\:w-10 {
    width: 2.5rem !important;
  }
  .md\:w-11 {
    width: 2.75rem !important;
  }
  .md\:w-12 {
    width: 3rem !important;
  }
  .md\:w-14 {
    width: 3.5rem !important;
  }
  .md\:w-16 {
    width: 4rem !important;
  }
  .md\:w-20 {
    width: 5rem !important;
  }
  .md\:w-24 {
    width: 6rem !important;
  }
  .md\:w-28 {
    width: 7rem !important;
  }
  .md\:w-32 {
    width: 8rem !important;
  }
  .md\:w-36 {
    width: 9rem !important;
  }
  .md\:w-40 {
    width: 10rem !important;
  }
  .md\:w-44 {
    width: 11rem !important;
  }
  .md\:w-48 {
    width: 12rem !important;
  }
  .md\:w-52 {
    width: 13rem !important;
  }
  .md\:w-56 {
    width: 14rem !important;
  }
  .md\:w-60 {
    width: 15rem !important;
  }
  .md\:w-1\/5 {
    width: 20% !important;
  }
  .md\:w-2\/5 {
    width: 40% !important;
  }
  .md\:w-3\/5 {
    width: 60% !important;
  }
  .md\:w-4\/5 {
    width: 80% !important;
  }
  .md\:w-1\/6, .md\:w-1\/12 {
    width: 8.333333% !important;
  }
  .md\:w-2\/12 {
    width: 16.666667% !important;
  }
  .md\:w-1\/4, .md\:w-3\/12 {
    width: 25% !important;
  }
  .md\:w-1\/3, .md\:w-2\/6, .md\:w-4\/12 {
    width: 33.333333% !important;
  }
  .md\:w-5\/12 {
    width: 41.666667% !important;
  }
  .md\:w-1\/2, .md\:w-2\/4, .md\:w-3\/6, .md\:w-6\/12 {
    width: 50% !important;
  }
  .md\:w-7\/12 {
    width: 58.333333% !important;
  }
  .md\:w-2\/3, .md\:w-4\/6, .md\:w-8\/12 {
    width: 66.666667% !important;
  }
  .md\:w-3\/4, .md\:w-9\/12 {
    width: 75% !important;
  }
  .md\:w-5\/6, .md\:w-10\/12 {
    width: 83.333333% !important;
  }
  .md\:w-11\/12 {
    width: 91.666667% !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:w-auto {
    width: auto !important;
  }
  .sm\:w-full {
    width: 100% !important;
  }
  .sm\:w-0 {
    width: 0px !important;
  }
  .sm\:w-1 {
    width: 0.25rem !important;
  }
  .sm\:w-2 {
    width: 0.5rem !important;
  }
  .sm\:w-3 {
    width: 0.75rem !important;
  }
  .sm\:w-4 {
    width: 1rem !important;
  }
  .sm\:w-5 {
    width: 1.25rem !important;
  }
  .sm\:w-6 {
    width: 1.5rem !important;
  }
  .sm\:w-7 {
    width: 1.75rem !important;
  }
  .sm\:w-8 {
    width: 2rem !important;
  }
  .sm\:w-9 {
    width: 2.25rem !important;
  }
  .sm\:w-10 {
    width: 2.5rem !important;
  }
  .sm\:w-11 {
    width: 2.75rem !important;
  }
  .sm\:w-12 {
    width: 3rem !important;
  }
  .sm\:w-14 {
    width: 3.5rem !important;
  }
  .sm\:w-16 {
    width: 4rem !important;
  }
  .sm\:w-20 {
    width: 5rem !important;
  }
  .sm\:w-24 {
    width: 6rem !important;
  }
  .sm\:w-28 {
    width: 7rem !important;
  }
  .sm\:w-32 {
    width: 8rem !important;
  }
  .sm\:w-36 {
    width: 9rem !important;
  }
  .sm\:w-40 {
    width: 10rem !important;
  }
  .sm\:w-44 {
    width: 11rem !important;
  }
  .sm\:w-48 {
    width: 12rem !important;
  }
  .sm\:w-52 {
    width: 13rem !important;
  }
  .sm\:w-56 {
    width: 14rem !important;
  }
  .sm\:w-60 {
    width: 15rem !important;
  }
  .sm\:w-1\/5 {
    width: 20% !important;
  }
  .sm\:w-2\/5 {
    width: 40% !important;
  }
  .sm\:w-3\/5 {
    width: 60% !important;
  }
  .sm\:w-4\/5 {
    width: 80% !important;
  }
  .sm\:w-1\/6, .sm\:w-1\/12 {
    width: 8.333333% !important;
  }
  .sm\:w-2\/12 {
    width: 16.666667% !important;
  }
  .sm\:w-1\/4, .sm\:w-3\/12 {
    width: 25% !important;
  }
  .sm\:w-1\/3, .sm\:w-2\/6, .sm\:w-4\/12 {
    width: 33.333333% !important;
  }
  .sm\:w-5\/12 {
    width: 41.666667% !important;
  }
  .sm\:w-1\/2, .sm\:w-2\/4, .sm\:w-3\/6, .sm\:w-6\/12 {
    width: 50% !important;
  }
  .sm\:w-7\/12 {
    width: 58.333333% !important;
  }
  .sm\:w-2\/3, .sm\:w-4\/6, .sm\:w-8\/12 {
    width: 66.666667% !important;
  }
  .sm\:w-3\/4, .sm\:w-9\/12 {
    width: 75% !important;
  }
  .sm\:w-5\/6, .sm\:w-10\/12 {
    width: 83.333333% !important;
  }
  .sm\:w-11\/12 {
    width: 91.666667% !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:w-auto {
    width: auto !important;
  }
  .xs\:w-full {
    width: 100% !important;
  }
  .xs\:w-0 {
    width: 0px !important;
  }
  .xs\:w-1 {
    width: 0.25rem !important;
  }
  .xs\:w-2 {
    width: 0.5rem !important;
  }
  .xs\:w-3 {
    width: 0.75rem !important;
  }
  .xs\:w-4 {
    width: 1rem !important;
  }
  .xs\:w-5 {
    width: 1.25rem !important;
  }
  .xs\:w-6 {
    width: 1.5rem !important;
  }
  .xs\:w-7 {
    width: 1.75rem !important;
  }
  .xs\:w-8 {
    width: 2rem !important;
  }
  .xs\:w-9 {
    width: 2.25rem !important;
  }
  .xs\:w-10 {
    width: 2.5rem !important;
  }
  .xs\:w-11 {
    width: 2.75rem !important;
  }
  .xs\:w-12 {
    width: 3rem !important;
  }
  .xs\:w-14 {
    width: 3.5rem !important;
  }
  .xs\:w-16 {
    width: 4rem !important;
  }
  .xs\:w-20 {
    width: 5rem !important;
  }
  .xs\:w-24 {
    width: 6rem !important;
  }
  .xs\:w-28 {
    width: 7rem !important;
  }
  .xs\:w-32 {
    width: 8rem !important;
  }
  .xs\:w-36 {
    width: 9rem !important;
  }
  .xs\:w-40 {
    width: 10rem !important;
  }
  .xs\:w-44 {
    width: 11rem !important;
  }
  .xs\:w-48 {
    width: 12rem !important;
  }
  .xs\:w-52 {
    width: 13rem !important;
  }
  .xs\:w-56 {
    width: 14rem !important;
  }
  .xs\:w-60 {
    width: 15rem !important;
  }
  .xs\:w-1\/5 {
    width: 20% !important;
  }
  .xs\:w-2\/5 {
    width: 40% !important;
  }
  .xs\:w-3\/5 {
    width: 60% !important;
  }
  .xs\:w-4\/5 {
    width: 80% !important;
  }
  .xs\:w-1\/6, .xs\:w-1\/12 {
    width: 8.333333% !important;
  }
  .xs\:w-2\/12 {
    width: 16.666667% !important;
  }
  .xs\:w-1\/4, .xs\:w-3\/12 {
    width: 25% !important;
  }
  .xs\:w-1\/3, .xs\:w-2\/6, .xs\:w-4\/12 {
    width: 33.333333% !important;
  }
  .xs\:w-5\/12 {
    width: 41.666667% !important;
  }
  .xs\:w-1\/2, .xs\:w-2\/4, .xs\:w-3\/6, .xs\:w-6\/12 {
    width: 50% !important;
  }
  .xs\:w-7\/12 {
    width: 58.333333% !important;
  }
  .xs\:w-2\/3, .xs\:w-4\/6, .xs\:w-8\/12 {
    width: 66.666667% !important;
  }
  .xs\:w-3\/4, .xs\:w-9\/12 {
    width: 75% !important;
  }
  .xs\:w-5\/6, .xs\:w-10\/12 {
    width: 83.333333% !important;
  }
  .xs\:w-11\/12 {
    width: 91.666667% !important;
  }
}
.inset--8 {
  inset: -2rem !important;
}

.top--8 {
  top: -2rem !important;
}

.right--8 {
  right: -2rem !important;
}

.bottom--8 {
  bottom: -2rem !important;
}

.left--8 {
  left: -2rem !important;
}

.inset-x--8 {
  left: -2rem !important;
  right: -2rem !important;
}

.inset-y--8 {
  top: -2rem !important;
  bottom: -2rem !important;
}

.inset--7 {
  inset: -1.75rem !important;
}

.top--7 {
  top: -1.75rem !important;
}

.right--7 {
  right: -1.75rem !important;
}

.bottom--7 {
  bottom: -1.75rem !important;
}

.left--7 {
  left: -1.75rem !important;
}

.inset-x--7 {
  left: -1.75rem !important;
  right: -1.75rem !important;
}

.inset-y--7 {
  top: -1.75rem !important;
  bottom: -1.75rem !important;
}

.inset--6 {
  inset: -1.5rem !important;
}

.top--6 {
  top: -1.5rem !important;
}

.right--6 {
  right: -1.5rem !important;
}

.bottom--6 {
  bottom: -1.5rem !important;
}

.left--6 {
  left: -1.5rem !important;
}

.inset-x--6 {
  left: -1.5rem !important;
  right: -1.5rem !important;
}

.inset-y--6 {
  top: -1.5rem !important;
  bottom: -1.5rem !important;
}

.inset--5 {
  inset: -1.25rem !important;
}

.top--5 {
  top: -1.25rem !important;
}

.right--5 {
  right: -1.25rem !important;
}

.bottom--5 {
  bottom: -1.25rem !important;
}

.left--5 {
  left: -1.25rem !important;
}

.inset-x--5 {
  left: -1.25rem !important;
  right: -1.25rem !important;
}

.inset-y--5 {
  top: -1.25rem !important;
  bottom: -1.25rem !important;
}

.inset--4 {
  inset: -1rem !important;
}

.top--4 {
  top: -1rem !important;
}

.right--4 {
  right: -1rem !important;
}

.bottom--4 {
  bottom: -1rem !important;
}

.left--4 {
  left: -1rem !important;
}

.inset-x--4 {
  left: -1rem !important;
  right: -1rem !important;
}

.inset-y--4 {
  top: -1rem !important;
  bottom: -1rem !important;
}

.inset--3 {
  inset: -0.75rem !important;
}

.top--3 {
  top: -0.75rem !important;
}

.right--3 {
  right: -0.75rem !important;
}

.bottom--3 {
  bottom: -0.75rem !important;
}

.left--3 {
  left: -0.75rem !important;
}

.inset-x--3 {
  left: -0.75rem !important;
  right: -0.75rem !important;
}

.inset-y--3 {
  top: -0.75rem !important;
  bottom: -0.75rem !important;
}

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

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

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

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

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

.inset-x--2 {
  left: -0.5rem !important;
  right: -0.5rem !important;
}

.inset-y--2 {
  top: -0.5rem !important;
  bottom: -0.5rem !important;
}

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

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

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

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

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

.inset-x--1 {
  left: -0.25rem !important;
  right: -0.25rem !important;
}

.inset-y--1 {
  top: -0.25rem !important;
  bottom: -0.25rem !important;
}

.inset-0 {
  inset: 0rem !important;
}

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

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

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

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

.inset-x-0 {
  left: 0rem !important;
  right: 0rem !important;
}

.inset-y-0 {
  top: 0rem !important;
  bottom: 0rem !important;
}

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

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

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

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

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

.inset-x-1 {
  left: 0.25rem !important;
  right: 0.25rem !important;
}

.inset-y-1 {
  top: 0.25rem !important;
  bottom: 0.25rem !important;
}

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

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

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

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

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

.inset-x-2 {
  left: 0.5rem !important;
  right: 0.5rem !important;
}

.inset-y-2 {
  top: 0.5rem !important;
  bottom: 0.5rem !important;
}

.inset-3 {
  inset: 0.75rem !important;
}

.top-3 {
  top: 0.75rem !important;
}

.right-3 {
  right: 0.75rem !important;
}

.bottom-3 {
  bottom: 0.75rem !important;
}

.left-3 {
  left: 0.75rem !important;
}

.inset-x-3 {
  left: 0.75rem !important;
  right: 0.75rem !important;
}

.inset-y-3 {
  top: 0.75rem !important;
  bottom: 0.75rem !important;
}

.inset-4 {
  inset: 1rem !important;
}

.top-4 {
  top: 1rem !important;
}

.right-4 {
  right: 1rem !important;
}

.bottom-4 {
  bottom: 1rem !important;
}

.left-4 {
  left: 1rem !important;
}

.inset-x-4 {
  left: 1rem !important;
  right: 1rem !important;
}

.inset-y-4 {
  top: 1rem !important;
  bottom: 1rem !important;
}

.inset-5 {
  inset: 1.25rem !important;
}

.top-5 {
  top: 1.25rem !important;
}

.right-5 {
  right: 1.25rem !important;
}

.bottom-5 {
  bottom: 1.25rem !important;
}

.left-5 {
  left: 1.25rem !important;
}

.inset-x-5 {
  left: 1.25rem !important;
  right: 1.25rem !important;
}

.inset-y-5 {
  top: 1.25rem !important;
  bottom: 1.25rem !important;
}

.inset-6 {
  inset: 1.5rem !important;
}

.top-6 {
  top: 1.5rem !important;
}

.right-6 {
  right: 1.5rem !important;
}

.bottom-6 {
  bottom: 1.5rem !important;
}

.left-6 {
  left: 1.5rem !important;
}

.inset-x-6 {
  left: 1.5rem !important;
  right: 1.5rem !important;
}

.inset-y-6 {
  top: 1.5rem !important;
  bottom: 1.5rem !important;
}

.inset-7 {
  inset: 1.75rem !important;
}

.top-7 {
  top: 1.75rem !important;
}

.right-7 {
  right: 1.75rem !important;
}

.bottom-7 {
  bottom: 1.75rem !important;
}

.left-7 {
  left: 1.75rem !important;
}

.inset-x-7 {
  left: 1.75rem !important;
  right: 1.75rem !important;
}

.inset-y-7 {
  top: 1.75rem !important;
  bottom: 1.75rem !important;
}

.inset-8 {
  inset: 2rem !important;
}

.top-8 {
  top: 2rem !important;
}

.right-8 {
  right: 2rem !important;
}

.bottom-8 {
  bottom: 2rem !important;
}

.left-8 {
  left: 2rem !important;
}

.inset-x-8 {
  left: 2rem !important;
  right: 2rem !important;
}

.inset-y-8 {
  top: 2rem !important;
  bottom: 2rem !important;
}

.inset-9 {
  inset: 2.25rem !important;
}

.top-9 {
  top: 2.25rem !important;
}

.right-9 {
  right: 2.25rem !important;
}

.bottom-9 {
  bottom: 2.25rem !important;
}

.left-9 {
  left: 2.25rem !important;
}

.inset-x-9 {
  left: 2.25rem !important;
  right: 2.25rem !important;
}

.inset-y-9 {
  top: 2.25rem !important;
  bottom: 2.25rem !important;
}

.inset-10 {
  inset: 2.5rem !important;
}

.top-10 {
  top: 2.5rem !important;
}

.right-10 {
  right: 2.5rem !important;
}

.bottom-10 {
  bottom: 2.5rem !important;
}

.left-10 {
  left: 2.5rem !important;
}

.inset-x-10 {
  left: 2.5rem !important;
  right: 2.5rem !important;
}

.inset-y-10 {
  top: 2.5rem !important;
  bottom: 2.5rem !important;
}

.inset-11 {
  inset: 2.75rem !important;
}

.top-11 {
  top: 2.75rem !important;
}

.right-11 {
  right: 2.75rem !important;
}

.bottom-11 {
  bottom: 2.75rem !important;
}

.left-11 {
  left: 2.75rem !important;
}

.inset-x-11 {
  left: 2.75rem !important;
  right: 2.75rem !important;
}

.inset-y-11 {
  top: 2.75rem !important;
  bottom: 2.75rem !important;
}

.inset-12 {
  inset: 3rem !important;
}

.top-12 {
  top: 3rem !important;
}

.right-12 {
  right: 3rem !important;
}

.bottom-12 {
  bottom: 3rem !important;
}

.left-12 {
  left: 3rem !important;
}

.inset-x-12 {
  left: 3rem !important;
  right: 3rem !important;
}

.inset-y-12 {
  top: 3rem !important;
  bottom: 3rem !important;
}

.inset-13 {
  inset: 3.25rem !important;
}

.top-13 {
  top: 3.25rem !important;
}

.right-13 {
  right: 3.25rem !important;
}

.bottom-13 {
  bottom: 3.25rem !important;
}

.left-13 {
  left: 3.25rem !important;
}

.inset-x-13 {
  left: 3.25rem !important;
  right: 3.25rem !important;
}

.inset-y-13 {
  top: 3.25rem !important;
  bottom: 3.25rem !important;
}

.inset-14 {
  inset: 3.5rem !important;
}

.top-14 {
  top: 3.5rem !important;
}

.right-14 {
  right: 3.5rem !important;
}

.bottom-14 {
  bottom: 3.5rem !important;
}

.left-14 {
  left: 3.5rem !important;
}

.inset-x-14 {
  left: 3.5rem !important;
  right: 3.5rem !important;
}

.inset-y-14 {
  top: 3.5rem !important;
  bottom: 3.5rem !important;
}

.inset-15 {
  inset: 3.75rem !important;
}

.top-15 {
  top: 3.75rem !important;
}

.right-15 {
  right: 3.75rem !important;
}

.bottom-15 {
  bottom: 3.75rem !important;
}

.left-15 {
  left: 3.75rem !important;
}

.inset-x-15 {
  left: 3.75rem !important;
  right: 3.75rem !important;
}

.inset-y-15 {
  top: 3.75rem !important;
  bottom: 3.75rem !important;
}

.inset-16 {
  inset: 4rem !important;
}

.top-16 {
  top: 4rem !important;
}

.right-16 {
  right: 4rem !important;
}

.bottom-16 {
  bottom: 4rem !important;
}

.left-16 {
  left: 4rem !important;
}

.inset-x-16 {
  left: 4rem !important;
  right: 4rem !important;
}

.inset-y-16 {
  top: 4rem !important;
  bottom: 4rem !important;
}

.inset-17 {
  inset: 4.25rem !important;
}

.top-17 {
  top: 4.25rem !important;
}

.right-17 {
  right: 4.25rem !important;
}

.bottom-17 {
  bottom: 4.25rem !important;
}

.left-17 {
  left: 4.25rem !important;
}

.inset-x-17 {
  left: 4.25rem !important;
  right: 4.25rem !important;
}

.inset-y-17 {
  top: 4.25rem !important;
  bottom: 4.25rem !important;
}

.inset-18 {
  inset: 4.5rem !important;
}

.top-18 {
  top: 4.5rem !important;
}

.right-18 {
  right: 4.5rem !important;
}

.bottom-18 {
  bottom: 4.5rem !important;
}

.left-18 {
  left: 4.5rem !important;
}

.inset-x-18 {
  left: 4.5rem !important;
  right: 4.5rem !important;
}

.inset-y-18 {
  top: 4.5rem !important;
  bottom: 4.5rem !important;
}

.inset-19 {
  inset: 4.75rem !important;
}

.top-19 {
  top: 4.75rem !important;
}

.right-19 {
  right: 4.75rem !important;
}

.bottom-19 {
  bottom: 4.75rem !important;
}

.left-19 {
  left: 4.75rem !important;
}

.inset-x-19 {
  left: 4.75rem !important;
  right: 4.75rem !important;
}

.inset-y-19 {
  top: 4.75rem !important;
  bottom: 4.75rem !important;
}

.inset-20 {
  inset: 5rem !important;
}

.top-20 {
  top: 5rem !important;
}

.right-20 {
  right: 5rem !important;
}

.bottom-20 {
  bottom: 5rem !important;
}

.left-20 {
  left: 5rem !important;
}

.inset-x-20 {
  left: 5rem !important;
  right: 5rem !important;
}

.inset-y-20 {
  top: 5rem !important;
  bottom: 5rem !important;
}

.inset-21 {
  inset: 5.25rem !important;
}

.top-21 {
  top: 5.25rem !important;
}

.right-21 {
  right: 5.25rem !important;
}

.bottom-21 {
  bottom: 5.25rem !important;
}

.left-21 {
  left: 5.25rem !important;
}

.inset-x-21 {
  left: 5.25rem !important;
  right: 5.25rem !important;
}

.inset-y-21 {
  top: 5.25rem !important;
  bottom: 5.25rem !important;
}

.inset-22 {
  inset: 5.5rem !important;
}

.top-22 {
  top: 5.5rem !important;
}

.right-22 {
  right: 5.5rem !important;
}

.bottom-22 {
  bottom: 5.5rem !important;
}

.left-22 {
  left: 5.5rem !important;
}

.inset-x-22 {
  left: 5.5rem !important;
  right: 5.5rem !important;
}

.inset-y-22 {
  top: 5.5rem !important;
  bottom: 5.5rem !important;
}

.inset-23 {
  inset: 5.75rem !important;
}

.top-23 {
  top: 5.75rem !important;
}

.right-23 {
  right: 5.75rem !important;
}

.bottom-23 {
  bottom: 5.75rem !important;
}

.left-23 {
  left: 5.75rem !important;
}

.inset-x-23 {
  left: 5.75rem !important;
  right: 5.75rem !important;
}

.inset-y-23 {
  top: 5.75rem !important;
  bottom: 5.75rem !important;
}

.inset-24 {
  inset: 6rem !important;
}

.top-24 {
  top: 6rem !important;
}

.right-24 {
  right: 6rem !important;
}

.bottom-24 {
  bottom: 6rem !important;
}

.left-24 {
  left: 6rem !important;
}

.inset-x-24 {
  left: 6rem !important;
  right: 6rem !important;
}

.inset-y-24 {
  top: 6rem !important;
  bottom: 6rem !important;
}

@media screen and (max-width: 1599px) {
  .xxl\:inset--8 {
    inset: -2rem !important;
  }
  .xxl\:top--8 {
    top: -2rem !important;
  }
  .xxl\:right--8 {
    right: -2rem !important;
  }
  .xxl\:bottom--8 {
    bottom: -2rem !important;
  }
  .xxl\:left--8 {
    left: -2rem !important;
  }
  .xxl\:inset-x--8 {
    left: -2rem !important;
    right: -2rem !important;
  }
  .xxl\:inset-y--8 {
    top: -2rem !important;
    bottom: -2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset--7 {
    inset: -1.75rem !important;
  }
  .xxl\:top--7 {
    top: -1.75rem !important;
  }
  .xxl\:right--7 {
    right: -1.75rem !important;
  }
  .xxl\:bottom--7 {
    bottom: -1.75rem !important;
  }
  .xxl\:left--7 {
    left: -1.75rem !important;
  }
  .xxl\:inset-x--7 {
    left: -1.75rem !important;
    right: -1.75rem !important;
  }
  .xxl\:inset-y--7 {
    top: -1.75rem !important;
    bottom: -1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset--6 {
    inset: -1.5rem !important;
  }
  .xxl\:top--6 {
    top: -1.5rem !important;
  }
  .xxl\:right--6 {
    right: -1.5rem !important;
  }
  .xxl\:bottom--6 {
    bottom: -1.5rem !important;
  }
  .xxl\:left--6 {
    left: -1.5rem !important;
  }
  .xxl\:inset-x--6 {
    left: -1.5rem !important;
    right: -1.5rem !important;
  }
  .xxl\:inset-y--6 {
    top: -1.5rem !important;
    bottom: -1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset--5 {
    inset: -1.25rem !important;
  }
  .xxl\:top--5 {
    top: -1.25rem !important;
  }
  .xxl\:right--5 {
    right: -1.25rem !important;
  }
  .xxl\:bottom--5 {
    bottom: -1.25rem !important;
  }
  .xxl\:left--5 {
    left: -1.25rem !important;
  }
  .xxl\:inset-x--5 {
    left: -1.25rem !important;
    right: -1.25rem !important;
  }
  .xxl\:inset-y--5 {
    top: -1.25rem !important;
    bottom: -1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset--4 {
    inset: -1rem !important;
  }
  .xxl\:top--4 {
    top: -1rem !important;
  }
  .xxl\:right--4 {
    right: -1rem !important;
  }
  .xxl\:bottom--4 {
    bottom: -1rem !important;
  }
  .xxl\:left--4 {
    left: -1rem !important;
  }
  .xxl\:inset-x--4 {
    left: -1rem !important;
    right: -1rem !important;
  }
  .xxl\:inset-y--4 {
    top: -1rem !important;
    bottom: -1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset--3 {
    inset: -0.75rem !important;
  }
  .xxl\:top--3 {
    top: -0.75rem !important;
  }
  .xxl\:right--3 {
    right: -0.75rem !important;
  }
  .xxl\:bottom--3 {
    bottom: -0.75rem !important;
  }
  .xxl\:left--3 {
    left: -0.75rem !important;
  }
  .xxl\:inset-x--3 {
    left: -0.75rem !important;
    right: -0.75rem !important;
  }
  .xxl\:inset-y--3 {
    top: -0.75rem !important;
    bottom: -0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset--2 {
    inset: -0.5rem !important;
  }
  .xxl\:top--2 {
    top: -0.5rem !important;
  }
  .xxl\:right--2 {
    right: -0.5rem !important;
  }
  .xxl\:bottom--2 {
    bottom: -0.5rem !important;
  }
  .xxl\:left--2 {
    left: -0.5rem !important;
  }
  .xxl\:inset-x--2 {
    left: -0.5rem !important;
    right: -0.5rem !important;
  }
  .xxl\:inset-y--2 {
    top: -0.5rem !important;
    bottom: -0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset--1 {
    inset: -0.25rem !important;
  }
  .xxl\:top--1 {
    top: -0.25rem !important;
  }
  .xxl\:right--1 {
    right: -0.25rem !important;
  }
  .xxl\:bottom--1 {
    bottom: -0.25rem !important;
  }
  .xxl\:left--1 {
    left: -0.25rem !important;
  }
  .xxl\:inset-x--1 {
    left: -0.25rem !important;
    right: -0.25rem !important;
  }
  .xxl\:inset-y--1 {
    top: -0.25rem !important;
    bottom: -0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-0 {
    inset: 0rem !important;
  }
  .xxl\:top-0 {
    top: 0rem !important;
  }
  .xxl\:right-0 {
    right: 0rem !important;
  }
  .xxl\:bottom-0 {
    bottom: 0rem !important;
  }
  .xxl\:left-0 {
    left: 0rem !important;
  }
  .xxl\:inset-x-0 {
    left: 0rem !important;
    right: 0rem !important;
  }
  .xxl\:inset-y-0 {
    top: 0rem !important;
    bottom: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-1 {
    inset: 0.25rem !important;
  }
  .xxl\:top-1 {
    top: 0.25rem !important;
  }
  .xxl\:right-1 {
    right: 0.25rem !important;
  }
  .xxl\:bottom-1 {
    bottom: 0.25rem !important;
  }
  .xxl\:left-1 {
    left: 0.25rem !important;
  }
  .xxl\:inset-x-1 {
    left: 0.25rem !important;
    right: 0.25rem !important;
  }
  .xxl\:inset-y-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-2 {
    inset: 0.5rem !important;
  }
  .xxl\:top-2 {
    top: 0.5rem !important;
  }
  .xxl\:right-2 {
    right: 0.5rem !important;
  }
  .xxl\:bottom-2 {
    bottom: 0.5rem !important;
  }
  .xxl\:left-2 {
    left: 0.5rem !important;
  }
  .xxl\:inset-x-2 {
    left: 0.5rem !important;
    right: 0.5rem !important;
  }
  .xxl\:inset-y-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-3 {
    inset: 0.75rem !important;
  }
  .xxl\:top-3 {
    top: 0.75rem !important;
  }
  .xxl\:right-3 {
    right: 0.75rem !important;
  }
  .xxl\:bottom-3 {
    bottom: 0.75rem !important;
  }
  .xxl\:left-3 {
    left: 0.75rem !important;
  }
  .xxl\:inset-x-3 {
    left: 0.75rem !important;
    right: 0.75rem !important;
  }
  .xxl\:inset-y-3 {
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-4 {
    inset: 1rem !important;
  }
  .xxl\:top-4 {
    top: 1rem !important;
  }
  .xxl\:right-4 {
    right: 1rem !important;
  }
  .xxl\:bottom-4 {
    bottom: 1rem !important;
  }
  .xxl\:left-4 {
    left: 1rem !important;
  }
  .xxl\:inset-x-4 {
    left: 1rem !important;
    right: 1rem !important;
  }
  .xxl\:inset-y-4 {
    top: 1rem !important;
    bottom: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-5 {
    inset: 1.25rem !important;
  }
  .xxl\:top-5 {
    top: 1.25rem !important;
  }
  .xxl\:right-5 {
    right: 1.25rem !important;
  }
  .xxl\:bottom-5 {
    bottom: 1.25rem !important;
  }
  .xxl\:left-5 {
    left: 1.25rem !important;
  }
  .xxl\:inset-x-5 {
    left: 1.25rem !important;
    right: 1.25rem !important;
  }
  .xxl\:inset-y-5 {
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-6 {
    inset: 1.5rem !important;
  }
  .xxl\:top-6 {
    top: 1.5rem !important;
  }
  .xxl\:right-6 {
    right: 1.5rem !important;
  }
  .xxl\:bottom-6 {
    bottom: 1.5rem !important;
  }
  .xxl\:left-6 {
    left: 1.5rem !important;
  }
  .xxl\:inset-x-6 {
    left: 1.5rem !important;
    right: 1.5rem !important;
  }
  .xxl\:inset-y-6 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-7 {
    inset: 1.75rem !important;
  }
  .xxl\:top-7 {
    top: 1.75rem !important;
  }
  .xxl\:right-7 {
    right: 1.75rem !important;
  }
  .xxl\:bottom-7 {
    bottom: 1.75rem !important;
  }
  .xxl\:left-7 {
    left: 1.75rem !important;
  }
  .xxl\:inset-x-7 {
    left: 1.75rem !important;
    right: 1.75rem !important;
  }
  .xxl\:inset-y-7 {
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-8 {
    inset: 2rem !important;
  }
  .xxl\:top-8 {
    top: 2rem !important;
  }
  .xxl\:right-8 {
    right: 2rem !important;
  }
  .xxl\:bottom-8 {
    bottom: 2rem !important;
  }
  .xxl\:left-8 {
    left: 2rem !important;
  }
  .xxl\:inset-x-8 {
    left: 2rem !important;
    right: 2rem !important;
  }
  .xxl\:inset-y-8 {
    top: 2rem !important;
    bottom: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-9 {
    inset: 2.25rem !important;
  }
  .xxl\:top-9 {
    top: 2.25rem !important;
  }
  .xxl\:right-9 {
    right: 2.25rem !important;
  }
  .xxl\:bottom-9 {
    bottom: 2.25rem !important;
  }
  .xxl\:left-9 {
    left: 2.25rem !important;
  }
  .xxl\:inset-x-9 {
    left: 2.25rem !important;
    right: 2.25rem !important;
  }
  .xxl\:inset-y-9 {
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-10 {
    inset: 2.5rem !important;
  }
  .xxl\:top-10 {
    top: 2.5rem !important;
  }
  .xxl\:right-10 {
    right: 2.5rem !important;
  }
  .xxl\:bottom-10 {
    bottom: 2.5rem !important;
  }
  .xxl\:left-10 {
    left: 2.5rem !important;
  }
  .xxl\:inset-x-10 {
    left: 2.5rem !important;
    right: 2.5rem !important;
  }
  .xxl\:inset-y-10 {
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-11 {
    inset: 2.75rem !important;
  }
  .xxl\:top-11 {
    top: 2.75rem !important;
  }
  .xxl\:right-11 {
    right: 2.75rem !important;
  }
  .xxl\:bottom-11 {
    bottom: 2.75rem !important;
  }
  .xxl\:left-11 {
    left: 2.75rem !important;
  }
  .xxl\:inset-x-11 {
    left: 2.75rem !important;
    right: 2.75rem !important;
  }
  .xxl\:inset-y-11 {
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-12 {
    inset: 3rem !important;
  }
  .xxl\:top-12 {
    top: 3rem !important;
  }
  .xxl\:right-12 {
    right: 3rem !important;
  }
  .xxl\:bottom-12 {
    bottom: 3rem !important;
  }
  .xxl\:left-12 {
    left: 3rem !important;
  }
  .xxl\:inset-x-12 {
    left: 3rem !important;
    right: 3rem !important;
  }
  .xxl\:inset-y-12 {
    top: 3rem !important;
    bottom: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-13 {
    inset: 3.25rem !important;
  }
  .xxl\:top-13 {
    top: 3.25rem !important;
  }
  .xxl\:right-13 {
    right: 3.25rem !important;
  }
  .xxl\:bottom-13 {
    bottom: 3.25rem !important;
  }
  .xxl\:left-13 {
    left: 3.25rem !important;
  }
  .xxl\:inset-x-13 {
    left: 3.25rem !important;
    right: 3.25rem !important;
  }
  .xxl\:inset-y-13 {
    top: 3.25rem !important;
    bottom: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-14 {
    inset: 3.5rem !important;
  }
  .xxl\:top-14 {
    top: 3.5rem !important;
  }
  .xxl\:right-14 {
    right: 3.5rem !important;
  }
  .xxl\:bottom-14 {
    bottom: 3.5rem !important;
  }
  .xxl\:left-14 {
    left: 3.5rem !important;
  }
  .xxl\:inset-x-14 {
    left: 3.5rem !important;
    right: 3.5rem !important;
  }
  .xxl\:inset-y-14 {
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-15 {
    inset: 3.75rem !important;
  }
  .xxl\:top-15 {
    top: 3.75rem !important;
  }
  .xxl\:right-15 {
    right: 3.75rem !important;
  }
  .xxl\:bottom-15 {
    bottom: 3.75rem !important;
  }
  .xxl\:left-15 {
    left: 3.75rem !important;
  }
  .xxl\:inset-x-15 {
    left: 3.75rem !important;
    right: 3.75rem !important;
  }
  .xxl\:inset-y-15 {
    top: 3.75rem !important;
    bottom: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-16 {
    inset: 4rem !important;
  }
  .xxl\:top-16 {
    top: 4rem !important;
  }
  .xxl\:right-16 {
    right: 4rem !important;
  }
  .xxl\:bottom-16 {
    bottom: 4rem !important;
  }
  .xxl\:left-16 {
    left: 4rem !important;
  }
  .xxl\:inset-x-16 {
    left: 4rem !important;
    right: 4rem !important;
  }
  .xxl\:inset-y-16 {
    top: 4rem !important;
    bottom: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-17 {
    inset: 4.25rem !important;
  }
  .xxl\:top-17 {
    top: 4.25rem !important;
  }
  .xxl\:right-17 {
    right: 4.25rem !important;
  }
  .xxl\:bottom-17 {
    bottom: 4.25rem !important;
  }
  .xxl\:left-17 {
    left: 4.25rem !important;
  }
  .xxl\:inset-x-17 {
    left: 4.25rem !important;
    right: 4.25rem !important;
  }
  .xxl\:inset-y-17 {
    top: 4.25rem !important;
    bottom: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-18 {
    inset: 4.5rem !important;
  }
  .xxl\:top-18 {
    top: 4.5rem !important;
  }
  .xxl\:right-18 {
    right: 4.5rem !important;
  }
  .xxl\:bottom-18 {
    bottom: 4.5rem !important;
  }
  .xxl\:left-18 {
    left: 4.5rem !important;
  }
  .xxl\:inset-x-18 {
    left: 4.5rem !important;
    right: 4.5rem !important;
  }
  .xxl\:inset-y-18 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-19 {
    inset: 4.75rem !important;
  }
  .xxl\:top-19 {
    top: 4.75rem !important;
  }
  .xxl\:right-19 {
    right: 4.75rem !important;
  }
  .xxl\:bottom-19 {
    bottom: 4.75rem !important;
  }
  .xxl\:left-19 {
    left: 4.75rem !important;
  }
  .xxl\:inset-x-19 {
    left: 4.75rem !important;
    right: 4.75rem !important;
  }
  .xxl\:inset-y-19 {
    top: 4.75rem !important;
    bottom: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-20 {
    inset: 5rem !important;
  }
  .xxl\:top-20 {
    top: 5rem !important;
  }
  .xxl\:right-20 {
    right: 5rem !important;
  }
  .xxl\:bottom-20 {
    bottom: 5rem !important;
  }
  .xxl\:left-20 {
    left: 5rem !important;
  }
  .xxl\:inset-x-20 {
    left: 5rem !important;
    right: 5rem !important;
  }
  .xxl\:inset-y-20 {
    top: 5rem !important;
    bottom: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-21 {
    inset: 5.25rem !important;
  }
  .xxl\:top-21 {
    top: 5.25rem !important;
  }
  .xxl\:right-21 {
    right: 5.25rem !important;
  }
  .xxl\:bottom-21 {
    bottom: 5.25rem !important;
  }
  .xxl\:left-21 {
    left: 5.25rem !important;
  }
  .xxl\:inset-x-21 {
    left: 5.25rem !important;
    right: 5.25rem !important;
  }
  .xxl\:inset-y-21 {
    top: 5.25rem !important;
    bottom: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-22 {
    inset: 5.5rem !important;
  }
  .xxl\:top-22 {
    top: 5.5rem !important;
  }
  .xxl\:right-22 {
    right: 5.5rem !important;
  }
  .xxl\:bottom-22 {
    bottom: 5.5rem !important;
  }
  .xxl\:left-22 {
    left: 5.5rem !important;
  }
  .xxl\:inset-x-22 {
    left: 5.5rem !important;
    right: 5.5rem !important;
  }
  .xxl\:inset-y-22 {
    top: 5.5rem !important;
    bottom: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-23 {
    inset: 5.75rem !important;
  }
  .xxl\:top-23 {
    top: 5.75rem !important;
  }
  .xxl\:right-23 {
    right: 5.75rem !important;
  }
  .xxl\:bottom-23 {
    bottom: 5.75rem !important;
  }
  .xxl\:left-23 {
    left: 5.75rem !important;
  }
  .xxl\:inset-x-23 {
    left: 5.75rem !important;
    right: 5.75rem !important;
  }
  .xxl\:inset-y-23 {
    top: 5.75rem !important;
    bottom: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:inset-24 {
    inset: 6rem !important;
  }
  .xxl\:top-24 {
    top: 6rem !important;
  }
  .xxl\:right-24 {
    right: 6rem !important;
  }
  .xxl\:bottom-24 {
    bottom: 6rem !important;
  }
  .xxl\:left-24 {
    left: 6rem !important;
  }
  .xxl\:inset-x-24 {
    left: 6rem !important;
    right: 6rem !important;
  }
  .xxl\:inset-y-24 {
    top: 6rem !important;
    bottom: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset--8 {
    inset: -2rem !important;
  }
  .xl\:top--8 {
    top: -2rem !important;
  }
  .xl\:right--8 {
    right: -2rem !important;
  }
  .xl\:bottom--8 {
    bottom: -2rem !important;
  }
  .xl\:left--8 {
    left: -2rem !important;
  }
  .xl\:inset-x--8 {
    left: -2rem !important;
    right: -2rem !important;
  }
  .xl\:inset-y--8 {
    top: -2rem !important;
    bottom: -2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset--7 {
    inset: -1.75rem !important;
  }
  .xl\:top--7 {
    top: -1.75rem !important;
  }
  .xl\:right--7 {
    right: -1.75rem !important;
  }
  .xl\:bottom--7 {
    bottom: -1.75rem !important;
  }
  .xl\:left--7 {
    left: -1.75rem !important;
  }
  .xl\:inset-x--7 {
    left: -1.75rem !important;
    right: -1.75rem !important;
  }
  .xl\:inset-y--7 {
    top: -1.75rem !important;
    bottom: -1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset--6 {
    inset: -1.5rem !important;
  }
  .xl\:top--6 {
    top: -1.5rem !important;
  }
  .xl\:right--6 {
    right: -1.5rem !important;
  }
  .xl\:bottom--6 {
    bottom: -1.5rem !important;
  }
  .xl\:left--6 {
    left: -1.5rem !important;
  }
  .xl\:inset-x--6 {
    left: -1.5rem !important;
    right: -1.5rem !important;
  }
  .xl\:inset-y--6 {
    top: -1.5rem !important;
    bottom: -1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset--5 {
    inset: -1.25rem !important;
  }
  .xl\:top--5 {
    top: -1.25rem !important;
  }
  .xl\:right--5 {
    right: -1.25rem !important;
  }
  .xl\:bottom--5 {
    bottom: -1.25rem !important;
  }
  .xl\:left--5 {
    left: -1.25rem !important;
  }
  .xl\:inset-x--5 {
    left: -1.25rem !important;
    right: -1.25rem !important;
  }
  .xl\:inset-y--5 {
    top: -1.25rem !important;
    bottom: -1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset--4 {
    inset: -1rem !important;
  }
  .xl\:top--4 {
    top: -1rem !important;
  }
  .xl\:right--4 {
    right: -1rem !important;
  }
  .xl\:bottom--4 {
    bottom: -1rem !important;
  }
  .xl\:left--4 {
    left: -1rem !important;
  }
  .xl\:inset-x--4 {
    left: -1rem !important;
    right: -1rem !important;
  }
  .xl\:inset-y--4 {
    top: -1rem !important;
    bottom: -1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset--3 {
    inset: -0.75rem !important;
  }
  .xl\:top--3 {
    top: -0.75rem !important;
  }
  .xl\:right--3 {
    right: -0.75rem !important;
  }
  .xl\:bottom--3 {
    bottom: -0.75rem !important;
  }
  .xl\:left--3 {
    left: -0.75rem !important;
  }
  .xl\:inset-x--3 {
    left: -0.75rem !important;
    right: -0.75rem !important;
  }
  .xl\:inset-y--3 {
    top: -0.75rem !important;
    bottom: -0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset--2 {
    inset: -0.5rem !important;
  }
  .xl\:top--2 {
    top: -0.5rem !important;
  }
  .xl\:right--2 {
    right: -0.5rem !important;
  }
  .xl\:bottom--2 {
    bottom: -0.5rem !important;
  }
  .xl\:left--2 {
    left: -0.5rem !important;
  }
  .xl\:inset-x--2 {
    left: -0.5rem !important;
    right: -0.5rem !important;
  }
  .xl\:inset-y--2 {
    top: -0.5rem !important;
    bottom: -0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset--1 {
    inset: -0.25rem !important;
  }
  .xl\:top--1 {
    top: -0.25rem !important;
  }
  .xl\:right--1 {
    right: -0.25rem !important;
  }
  .xl\:bottom--1 {
    bottom: -0.25rem !important;
  }
  .xl\:left--1 {
    left: -0.25rem !important;
  }
  .xl\:inset-x--1 {
    left: -0.25rem !important;
    right: -0.25rem !important;
  }
  .xl\:inset-y--1 {
    top: -0.25rem !important;
    bottom: -0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-0 {
    inset: 0rem !important;
  }
  .xl\:top-0 {
    top: 0rem !important;
  }
  .xl\:right-0 {
    right: 0rem !important;
  }
  .xl\:bottom-0 {
    bottom: 0rem !important;
  }
  .xl\:left-0 {
    left: 0rem !important;
  }
  .xl\:inset-x-0 {
    left: 0rem !important;
    right: 0rem !important;
  }
  .xl\:inset-y-0 {
    top: 0rem !important;
    bottom: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-1 {
    inset: 0.25rem !important;
  }
  .xl\:top-1 {
    top: 0.25rem !important;
  }
  .xl\:right-1 {
    right: 0.25rem !important;
  }
  .xl\:bottom-1 {
    bottom: 0.25rem !important;
  }
  .xl\:left-1 {
    left: 0.25rem !important;
  }
  .xl\:inset-x-1 {
    left: 0.25rem !important;
    right: 0.25rem !important;
  }
  .xl\:inset-y-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-2 {
    inset: 0.5rem !important;
  }
  .xl\:top-2 {
    top: 0.5rem !important;
  }
  .xl\:right-2 {
    right: 0.5rem !important;
  }
  .xl\:bottom-2 {
    bottom: 0.5rem !important;
  }
  .xl\:left-2 {
    left: 0.5rem !important;
  }
  .xl\:inset-x-2 {
    left: 0.5rem !important;
    right: 0.5rem !important;
  }
  .xl\:inset-y-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-3 {
    inset: 0.75rem !important;
  }
  .xl\:top-3 {
    top: 0.75rem !important;
  }
  .xl\:right-3 {
    right: 0.75rem !important;
  }
  .xl\:bottom-3 {
    bottom: 0.75rem !important;
  }
  .xl\:left-3 {
    left: 0.75rem !important;
  }
  .xl\:inset-x-3 {
    left: 0.75rem !important;
    right: 0.75rem !important;
  }
  .xl\:inset-y-3 {
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-4 {
    inset: 1rem !important;
  }
  .xl\:top-4 {
    top: 1rem !important;
  }
  .xl\:right-4 {
    right: 1rem !important;
  }
  .xl\:bottom-4 {
    bottom: 1rem !important;
  }
  .xl\:left-4 {
    left: 1rem !important;
  }
  .xl\:inset-x-4 {
    left: 1rem !important;
    right: 1rem !important;
  }
  .xl\:inset-y-4 {
    top: 1rem !important;
    bottom: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-5 {
    inset: 1.25rem !important;
  }
  .xl\:top-5 {
    top: 1.25rem !important;
  }
  .xl\:right-5 {
    right: 1.25rem !important;
  }
  .xl\:bottom-5 {
    bottom: 1.25rem !important;
  }
  .xl\:left-5 {
    left: 1.25rem !important;
  }
  .xl\:inset-x-5 {
    left: 1.25rem !important;
    right: 1.25rem !important;
  }
  .xl\:inset-y-5 {
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-6 {
    inset: 1.5rem !important;
  }
  .xl\:top-6 {
    top: 1.5rem !important;
  }
  .xl\:right-6 {
    right: 1.5rem !important;
  }
  .xl\:bottom-6 {
    bottom: 1.5rem !important;
  }
  .xl\:left-6 {
    left: 1.5rem !important;
  }
  .xl\:inset-x-6 {
    left: 1.5rem !important;
    right: 1.5rem !important;
  }
  .xl\:inset-y-6 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-7 {
    inset: 1.75rem !important;
  }
  .xl\:top-7 {
    top: 1.75rem !important;
  }
  .xl\:right-7 {
    right: 1.75rem !important;
  }
  .xl\:bottom-7 {
    bottom: 1.75rem !important;
  }
  .xl\:left-7 {
    left: 1.75rem !important;
  }
  .xl\:inset-x-7 {
    left: 1.75rem !important;
    right: 1.75rem !important;
  }
  .xl\:inset-y-7 {
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-8 {
    inset: 2rem !important;
  }
  .xl\:top-8 {
    top: 2rem !important;
  }
  .xl\:right-8 {
    right: 2rem !important;
  }
  .xl\:bottom-8 {
    bottom: 2rem !important;
  }
  .xl\:left-8 {
    left: 2rem !important;
  }
  .xl\:inset-x-8 {
    left: 2rem !important;
    right: 2rem !important;
  }
  .xl\:inset-y-8 {
    top: 2rem !important;
    bottom: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-9 {
    inset: 2.25rem !important;
  }
  .xl\:top-9 {
    top: 2.25rem !important;
  }
  .xl\:right-9 {
    right: 2.25rem !important;
  }
  .xl\:bottom-9 {
    bottom: 2.25rem !important;
  }
  .xl\:left-9 {
    left: 2.25rem !important;
  }
  .xl\:inset-x-9 {
    left: 2.25rem !important;
    right: 2.25rem !important;
  }
  .xl\:inset-y-9 {
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-10 {
    inset: 2.5rem !important;
  }
  .xl\:top-10 {
    top: 2.5rem !important;
  }
  .xl\:right-10 {
    right: 2.5rem !important;
  }
  .xl\:bottom-10 {
    bottom: 2.5rem !important;
  }
  .xl\:left-10 {
    left: 2.5rem !important;
  }
  .xl\:inset-x-10 {
    left: 2.5rem !important;
    right: 2.5rem !important;
  }
  .xl\:inset-y-10 {
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-11 {
    inset: 2.75rem !important;
  }
  .xl\:top-11 {
    top: 2.75rem !important;
  }
  .xl\:right-11 {
    right: 2.75rem !important;
  }
  .xl\:bottom-11 {
    bottom: 2.75rem !important;
  }
  .xl\:left-11 {
    left: 2.75rem !important;
  }
  .xl\:inset-x-11 {
    left: 2.75rem !important;
    right: 2.75rem !important;
  }
  .xl\:inset-y-11 {
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-12 {
    inset: 3rem !important;
  }
  .xl\:top-12 {
    top: 3rem !important;
  }
  .xl\:right-12 {
    right: 3rem !important;
  }
  .xl\:bottom-12 {
    bottom: 3rem !important;
  }
  .xl\:left-12 {
    left: 3rem !important;
  }
  .xl\:inset-x-12 {
    left: 3rem !important;
    right: 3rem !important;
  }
  .xl\:inset-y-12 {
    top: 3rem !important;
    bottom: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-13 {
    inset: 3.25rem !important;
  }
  .xl\:top-13 {
    top: 3.25rem !important;
  }
  .xl\:right-13 {
    right: 3.25rem !important;
  }
  .xl\:bottom-13 {
    bottom: 3.25rem !important;
  }
  .xl\:left-13 {
    left: 3.25rem !important;
  }
  .xl\:inset-x-13 {
    left: 3.25rem !important;
    right: 3.25rem !important;
  }
  .xl\:inset-y-13 {
    top: 3.25rem !important;
    bottom: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-14 {
    inset: 3.5rem !important;
  }
  .xl\:top-14 {
    top: 3.5rem !important;
  }
  .xl\:right-14 {
    right: 3.5rem !important;
  }
  .xl\:bottom-14 {
    bottom: 3.5rem !important;
  }
  .xl\:left-14 {
    left: 3.5rem !important;
  }
  .xl\:inset-x-14 {
    left: 3.5rem !important;
    right: 3.5rem !important;
  }
  .xl\:inset-y-14 {
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-15 {
    inset: 3.75rem !important;
  }
  .xl\:top-15 {
    top: 3.75rem !important;
  }
  .xl\:right-15 {
    right: 3.75rem !important;
  }
  .xl\:bottom-15 {
    bottom: 3.75rem !important;
  }
  .xl\:left-15 {
    left: 3.75rem !important;
  }
  .xl\:inset-x-15 {
    left: 3.75rem !important;
    right: 3.75rem !important;
  }
  .xl\:inset-y-15 {
    top: 3.75rem !important;
    bottom: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-16 {
    inset: 4rem !important;
  }
  .xl\:top-16 {
    top: 4rem !important;
  }
  .xl\:right-16 {
    right: 4rem !important;
  }
  .xl\:bottom-16 {
    bottom: 4rem !important;
  }
  .xl\:left-16 {
    left: 4rem !important;
  }
  .xl\:inset-x-16 {
    left: 4rem !important;
    right: 4rem !important;
  }
  .xl\:inset-y-16 {
    top: 4rem !important;
    bottom: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-17 {
    inset: 4.25rem !important;
  }
  .xl\:top-17 {
    top: 4.25rem !important;
  }
  .xl\:right-17 {
    right: 4.25rem !important;
  }
  .xl\:bottom-17 {
    bottom: 4.25rem !important;
  }
  .xl\:left-17 {
    left: 4.25rem !important;
  }
  .xl\:inset-x-17 {
    left: 4.25rem !important;
    right: 4.25rem !important;
  }
  .xl\:inset-y-17 {
    top: 4.25rem !important;
    bottom: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-18 {
    inset: 4.5rem !important;
  }
  .xl\:top-18 {
    top: 4.5rem !important;
  }
  .xl\:right-18 {
    right: 4.5rem !important;
  }
  .xl\:bottom-18 {
    bottom: 4.5rem !important;
  }
  .xl\:left-18 {
    left: 4.5rem !important;
  }
  .xl\:inset-x-18 {
    left: 4.5rem !important;
    right: 4.5rem !important;
  }
  .xl\:inset-y-18 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-19 {
    inset: 4.75rem !important;
  }
  .xl\:top-19 {
    top: 4.75rem !important;
  }
  .xl\:right-19 {
    right: 4.75rem !important;
  }
  .xl\:bottom-19 {
    bottom: 4.75rem !important;
  }
  .xl\:left-19 {
    left: 4.75rem !important;
  }
  .xl\:inset-x-19 {
    left: 4.75rem !important;
    right: 4.75rem !important;
  }
  .xl\:inset-y-19 {
    top: 4.75rem !important;
    bottom: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-20 {
    inset: 5rem !important;
  }
  .xl\:top-20 {
    top: 5rem !important;
  }
  .xl\:right-20 {
    right: 5rem !important;
  }
  .xl\:bottom-20 {
    bottom: 5rem !important;
  }
  .xl\:left-20 {
    left: 5rem !important;
  }
  .xl\:inset-x-20 {
    left: 5rem !important;
    right: 5rem !important;
  }
  .xl\:inset-y-20 {
    top: 5rem !important;
    bottom: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-21 {
    inset: 5.25rem !important;
  }
  .xl\:top-21 {
    top: 5.25rem !important;
  }
  .xl\:right-21 {
    right: 5.25rem !important;
  }
  .xl\:bottom-21 {
    bottom: 5.25rem !important;
  }
  .xl\:left-21 {
    left: 5.25rem !important;
  }
  .xl\:inset-x-21 {
    left: 5.25rem !important;
    right: 5.25rem !important;
  }
  .xl\:inset-y-21 {
    top: 5.25rem !important;
    bottom: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-22 {
    inset: 5.5rem !important;
  }
  .xl\:top-22 {
    top: 5.5rem !important;
  }
  .xl\:right-22 {
    right: 5.5rem !important;
  }
  .xl\:bottom-22 {
    bottom: 5.5rem !important;
  }
  .xl\:left-22 {
    left: 5.5rem !important;
  }
  .xl\:inset-x-22 {
    left: 5.5rem !important;
    right: 5.5rem !important;
  }
  .xl\:inset-y-22 {
    top: 5.5rem !important;
    bottom: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-23 {
    inset: 5.75rem !important;
  }
  .xl\:top-23 {
    top: 5.75rem !important;
  }
  .xl\:right-23 {
    right: 5.75rem !important;
  }
  .xl\:bottom-23 {
    bottom: 5.75rem !important;
  }
  .xl\:left-23 {
    left: 5.75rem !important;
  }
  .xl\:inset-x-23 {
    left: 5.75rem !important;
    right: 5.75rem !important;
  }
  .xl\:inset-y-23 {
    top: 5.75rem !important;
    bottom: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:inset-24 {
    inset: 6rem !important;
  }
  .xl\:top-24 {
    top: 6rem !important;
  }
  .xl\:right-24 {
    right: 6rem !important;
  }
  .xl\:bottom-24 {
    bottom: 6rem !important;
  }
  .xl\:left-24 {
    left: 6rem !important;
  }
  .xl\:inset-x-24 {
    left: 6rem !important;
    right: 6rem !important;
  }
  .xl\:inset-y-24 {
    top: 6rem !important;
    bottom: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset--8 {
    inset: -2rem !important;
  }
  .lg\:top--8 {
    top: -2rem !important;
  }
  .lg\:right--8 {
    right: -2rem !important;
  }
  .lg\:bottom--8 {
    bottom: -2rem !important;
  }
  .lg\:left--8 {
    left: -2rem !important;
  }
  .lg\:inset-x--8 {
    left: -2rem !important;
    right: -2rem !important;
  }
  .lg\:inset-y--8 {
    top: -2rem !important;
    bottom: -2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset--7 {
    inset: -1.75rem !important;
  }
  .lg\:top--7 {
    top: -1.75rem !important;
  }
  .lg\:right--7 {
    right: -1.75rem !important;
  }
  .lg\:bottom--7 {
    bottom: -1.75rem !important;
  }
  .lg\:left--7 {
    left: -1.75rem !important;
  }
  .lg\:inset-x--7 {
    left: -1.75rem !important;
    right: -1.75rem !important;
  }
  .lg\:inset-y--7 {
    top: -1.75rem !important;
    bottom: -1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset--6 {
    inset: -1.5rem !important;
  }
  .lg\:top--6 {
    top: -1.5rem !important;
  }
  .lg\:right--6 {
    right: -1.5rem !important;
  }
  .lg\:bottom--6 {
    bottom: -1.5rem !important;
  }
  .lg\:left--6 {
    left: -1.5rem !important;
  }
  .lg\:inset-x--6 {
    left: -1.5rem !important;
    right: -1.5rem !important;
  }
  .lg\:inset-y--6 {
    top: -1.5rem !important;
    bottom: -1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset--5 {
    inset: -1.25rem !important;
  }
  .lg\:top--5 {
    top: -1.25rem !important;
  }
  .lg\:right--5 {
    right: -1.25rem !important;
  }
  .lg\:bottom--5 {
    bottom: -1.25rem !important;
  }
  .lg\:left--5 {
    left: -1.25rem !important;
  }
  .lg\:inset-x--5 {
    left: -1.25rem !important;
    right: -1.25rem !important;
  }
  .lg\:inset-y--5 {
    top: -1.25rem !important;
    bottom: -1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset--4 {
    inset: -1rem !important;
  }
  .lg\:top--4 {
    top: -1rem !important;
  }
  .lg\:right--4 {
    right: -1rem !important;
  }
  .lg\:bottom--4 {
    bottom: -1rem !important;
  }
  .lg\:left--4 {
    left: -1rem !important;
  }
  .lg\:inset-x--4 {
    left: -1rem !important;
    right: -1rem !important;
  }
  .lg\:inset-y--4 {
    top: -1rem !important;
    bottom: -1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset--3 {
    inset: -0.75rem !important;
  }
  .lg\:top--3 {
    top: -0.75rem !important;
  }
  .lg\:right--3 {
    right: -0.75rem !important;
  }
  .lg\:bottom--3 {
    bottom: -0.75rem !important;
  }
  .lg\:left--3 {
    left: -0.75rem !important;
  }
  .lg\:inset-x--3 {
    left: -0.75rem !important;
    right: -0.75rem !important;
  }
  .lg\:inset-y--3 {
    top: -0.75rem !important;
    bottom: -0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset--2 {
    inset: -0.5rem !important;
  }
  .lg\:top--2 {
    top: -0.5rem !important;
  }
  .lg\:right--2 {
    right: -0.5rem !important;
  }
  .lg\:bottom--2 {
    bottom: -0.5rem !important;
  }
  .lg\:left--2 {
    left: -0.5rem !important;
  }
  .lg\:inset-x--2 {
    left: -0.5rem !important;
    right: -0.5rem !important;
  }
  .lg\:inset-y--2 {
    top: -0.5rem !important;
    bottom: -0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset--1 {
    inset: -0.25rem !important;
  }
  .lg\:top--1 {
    top: -0.25rem !important;
  }
  .lg\:right--1 {
    right: -0.25rem !important;
  }
  .lg\:bottom--1 {
    bottom: -0.25rem !important;
  }
  .lg\:left--1 {
    left: -0.25rem !important;
  }
  .lg\:inset-x--1 {
    left: -0.25rem !important;
    right: -0.25rem !important;
  }
  .lg\:inset-y--1 {
    top: -0.25rem !important;
    bottom: -0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-0 {
    inset: 0rem !important;
  }
  .lg\:top-0 {
    top: 0rem !important;
  }
  .lg\:right-0 {
    right: 0rem !important;
  }
  .lg\:bottom-0 {
    bottom: 0rem !important;
  }
  .lg\:left-0 {
    left: 0rem !important;
  }
  .lg\:inset-x-0 {
    left: 0rem !important;
    right: 0rem !important;
  }
  .lg\:inset-y-0 {
    top: 0rem !important;
    bottom: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-1 {
    inset: 0.25rem !important;
  }
  .lg\:top-1 {
    top: 0.25rem !important;
  }
  .lg\:right-1 {
    right: 0.25rem !important;
  }
  .lg\:bottom-1 {
    bottom: 0.25rem !important;
  }
  .lg\:left-1 {
    left: 0.25rem !important;
  }
  .lg\:inset-x-1 {
    left: 0.25rem !important;
    right: 0.25rem !important;
  }
  .lg\:inset-y-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-2 {
    inset: 0.5rem !important;
  }
  .lg\:top-2 {
    top: 0.5rem !important;
  }
  .lg\:right-2 {
    right: 0.5rem !important;
  }
  .lg\:bottom-2 {
    bottom: 0.5rem !important;
  }
  .lg\:left-2 {
    left: 0.5rem !important;
  }
  .lg\:inset-x-2 {
    left: 0.5rem !important;
    right: 0.5rem !important;
  }
  .lg\:inset-y-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-3 {
    inset: 0.75rem !important;
  }
  .lg\:top-3 {
    top: 0.75rem !important;
  }
  .lg\:right-3 {
    right: 0.75rem !important;
  }
  .lg\:bottom-3 {
    bottom: 0.75rem !important;
  }
  .lg\:left-3 {
    left: 0.75rem !important;
  }
  .lg\:inset-x-3 {
    left: 0.75rem !important;
    right: 0.75rem !important;
  }
  .lg\:inset-y-3 {
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-4 {
    inset: 1rem !important;
  }
  .lg\:top-4 {
    top: 1rem !important;
  }
  .lg\:right-4 {
    right: 1rem !important;
  }
  .lg\:bottom-4 {
    bottom: 1rem !important;
  }
  .lg\:left-4 {
    left: 1rem !important;
  }
  .lg\:inset-x-4 {
    left: 1rem !important;
    right: 1rem !important;
  }
  .lg\:inset-y-4 {
    top: 1rem !important;
    bottom: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-5 {
    inset: 1.25rem !important;
  }
  .lg\:top-5 {
    top: 1.25rem !important;
  }
  .lg\:right-5 {
    right: 1.25rem !important;
  }
  .lg\:bottom-5 {
    bottom: 1.25rem !important;
  }
  .lg\:left-5 {
    left: 1.25rem !important;
  }
  .lg\:inset-x-5 {
    left: 1.25rem !important;
    right: 1.25rem !important;
  }
  .lg\:inset-y-5 {
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-6 {
    inset: 1.5rem !important;
  }
  .lg\:top-6 {
    top: 1.5rem !important;
  }
  .lg\:right-6 {
    right: 1.5rem !important;
  }
  .lg\:bottom-6 {
    bottom: 1.5rem !important;
  }
  .lg\:left-6 {
    left: 1.5rem !important;
  }
  .lg\:inset-x-6 {
    left: 1.5rem !important;
    right: 1.5rem !important;
  }
  .lg\:inset-y-6 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-7 {
    inset: 1.75rem !important;
  }
  .lg\:top-7 {
    top: 1.75rem !important;
  }
  .lg\:right-7 {
    right: 1.75rem !important;
  }
  .lg\:bottom-7 {
    bottom: 1.75rem !important;
  }
  .lg\:left-7 {
    left: 1.75rem !important;
  }
  .lg\:inset-x-7 {
    left: 1.75rem !important;
    right: 1.75rem !important;
  }
  .lg\:inset-y-7 {
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-8 {
    inset: 2rem !important;
  }
  .lg\:top-8 {
    top: 2rem !important;
  }
  .lg\:right-8 {
    right: 2rem !important;
  }
  .lg\:bottom-8 {
    bottom: 2rem !important;
  }
  .lg\:left-8 {
    left: 2rem !important;
  }
  .lg\:inset-x-8 {
    left: 2rem !important;
    right: 2rem !important;
  }
  .lg\:inset-y-8 {
    top: 2rem !important;
    bottom: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-9 {
    inset: 2.25rem !important;
  }
  .lg\:top-9 {
    top: 2.25rem !important;
  }
  .lg\:right-9 {
    right: 2.25rem !important;
  }
  .lg\:bottom-9 {
    bottom: 2.25rem !important;
  }
  .lg\:left-9 {
    left: 2.25rem !important;
  }
  .lg\:inset-x-9 {
    left: 2.25rem !important;
    right: 2.25rem !important;
  }
  .lg\:inset-y-9 {
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-10 {
    inset: 2.5rem !important;
  }
  .lg\:top-10 {
    top: 2.5rem !important;
  }
  .lg\:right-10 {
    right: 2.5rem !important;
  }
  .lg\:bottom-10 {
    bottom: 2.5rem !important;
  }
  .lg\:left-10 {
    left: 2.5rem !important;
  }
  .lg\:inset-x-10 {
    left: 2.5rem !important;
    right: 2.5rem !important;
  }
  .lg\:inset-y-10 {
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-11 {
    inset: 2.75rem !important;
  }
  .lg\:top-11 {
    top: 2.75rem !important;
  }
  .lg\:right-11 {
    right: 2.75rem !important;
  }
  .lg\:bottom-11 {
    bottom: 2.75rem !important;
  }
  .lg\:left-11 {
    left: 2.75rem !important;
  }
  .lg\:inset-x-11 {
    left: 2.75rem !important;
    right: 2.75rem !important;
  }
  .lg\:inset-y-11 {
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-12 {
    inset: 3rem !important;
  }
  .lg\:top-12 {
    top: 3rem !important;
  }
  .lg\:right-12 {
    right: 3rem !important;
  }
  .lg\:bottom-12 {
    bottom: 3rem !important;
  }
  .lg\:left-12 {
    left: 3rem !important;
  }
  .lg\:inset-x-12 {
    left: 3rem !important;
    right: 3rem !important;
  }
  .lg\:inset-y-12 {
    top: 3rem !important;
    bottom: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-13 {
    inset: 3.25rem !important;
  }
  .lg\:top-13 {
    top: 3.25rem !important;
  }
  .lg\:right-13 {
    right: 3.25rem !important;
  }
  .lg\:bottom-13 {
    bottom: 3.25rem !important;
  }
  .lg\:left-13 {
    left: 3.25rem !important;
  }
  .lg\:inset-x-13 {
    left: 3.25rem !important;
    right: 3.25rem !important;
  }
  .lg\:inset-y-13 {
    top: 3.25rem !important;
    bottom: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-14 {
    inset: 3.5rem !important;
  }
  .lg\:top-14 {
    top: 3.5rem !important;
  }
  .lg\:right-14 {
    right: 3.5rem !important;
  }
  .lg\:bottom-14 {
    bottom: 3.5rem !important;
  }
  .lg\:left-14 {
    left: 3.5rem !important;
  }
  .lg\:inset-x-14 {
    left: 3.5rem !important;
    right: 3.5rem !important;
  }
  .lg\:inset-y-14 {
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-15 {
    inset: 3.75rem !important;
  }
  .lg\:top-15 {
    top: 3.75rem !important;
  }
  .lg\:right-15 {
    right: 3.75rem !important;
  }
  .lg\:bottom-15 {
    bottom: 3.75rem !important;
  }
  .lg\:left-15 {
    left: 3.75rem !important;
  }
  .lg\:inset-x-15 {
    left: 3.75rem !important;
    right: 3.75rem !important;
  }
  .lg\:inset-y-15 {
    top: 3.75rem !important;
    bottom: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-16 {
    inset: 4rem !important;
  }
  .lg\:top-16 {
    top: 4rem !important;
  }
  .lg\:right-16 {
    right: 4rem !important;
  }
  .lg\:bottom-16 {
    bottom: 4rem !important;
  }
  .lg\:left-16 {
    left: 4rem !important;
  }
  .lg\:inset-x-16 {
    left: 4rem !important;
    right: 4rem !important;
  }
  .lg\:inset-y-16 {
    top: 4rem !important;
    bottom: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-17 {
    inset: 4.25rem !important;
  }
  .lg\:top-17 {
    top: 4.25rem !important;
  }
  .lg\:right-17 {
    right: 4.25rem !important;
  }
  .lg\:bottom-17 {
    bottom: 4.25rem !important;
  }
  .lg\:left-17 {
    left: 4.25rem !important;
  }
  .lg\:inset-x-17 {
    left: 4.25rem !important;
    right: 4.25rem !important;
  }
  .lg\:inset-y-17 {
    top: 4.25rem !important;
    bottom: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-18 {
    inset: 4.5rem !important;
  }
  .lg\:top-18 {
    top: 4.5rem !important;
  }
  .lg\:right-18 {
    right: 4.5rem !important;
  }
  .lg\:bottom-18 {
    bottom: 4.5rem !important;
  }
  .lg\:left-18 {
    left: 4.5rem !important;
  }
  .lg\:inset-x-18 {
    left: 4.5rem !important;
    right: 4.5rem !important;
  }
  .lg\:inset-y-18 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-19 {
    inset: 4.75rem !important;
  }
  .lg\:top-19 {
    top: 4.75rem !important;
  }
  .lg\:right-19 {
    right: 4.75rem !important;
  }
  .lg\:bottom-19 {
    bottom: 4.75rem !important;
  }
  .lg\:left-19 {
    left: 4.75rem !important;
  }
  .lg\:inset-x-19 {
    left: 4.75rem !important;
    right: 4.75rem !important;
  }
  .lg\:inset-y-19 {
    top: 4.75rem !important;
    bottom: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-20 {
    inset: 5rem !important;
  }
  .lg\:top-20 {
    top: 5rem !important;
  }
  .lg\:right-20 {
    right: 5rem !important;
  }
  .lg\:bottom-20 {
    bottom: 5rem !important;
  }
  .lg\:left-20 {
    left: 5rem !important;
  }
  .lg\:inset-x-20 {
    left: 5rem !important;
    right: 5rem !important;
  }
  .lg\:inset-y-20 {
    top: 5rem !important;
    bottom: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-21 {
    inset: 5.25rem !important;
  }
  .lg\:top-21 {
    top: 5.25rem !important;
  }
  .lg\:right-21 {
    right: 5.25rem !important;
  }
  .lg\:bottom-21 {
    bottom: 5.25rem !important;
  }
  .lg\:left-21 {
    left: 5.25rem !important;
  }
  .lg\:inset-x-21 {
    left: 5.25rem !important;
    right: 5.25rem !important;
  }
  .lg\:inset-y-21 {
    top: 5.25rem !important;
    bottom: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-22 {
    inset: 5.5rem !important;
  }
  .lg\:top-22 {
    top: 5.5rem !important;
  }
  .lg\:right-22 {
    right: 5.5rem !important;
  }
  .lg\:bottom-22 {
    bottom: 5.5rem !important;
  }
  .lg\:left-22 {
    left: 5.5rem !important;
  }
  .lg\:inset-x-22 {
    left: 5.5rem !important;
    right: 5.5rem !important;
  }
  .lg\:inset-y-22 {
    top: 5.5rem !important;
    bottom: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-23 {
    inset: 5.75rem !important;
  }
  .lg\:top-23 {
    top: 5.75rem !important;
  }
  .lg\:right-23 {
    right: 5.75rem !important;
  }
  .lg\:bottom-23 {
    bottom: 5.75rem !important;
  }
  .lg\:left-23 {
    left: 5.75rem !important;
  }
  .lg\:inset-x-23 {
    left: 5.75rem !important;
    right: 5.75rem !important;
  }
  .lg\:inset-y-23 {
    top: 5.75rem !important;
    bottom: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:inset-24 {
    inset: 6rem !important;
  }
  .lg\:top-24 {
    top: 6rem !important;
  }
  .lg\:right-24 {
    right: 6rem !important;
  }
  .lg\:bottom-24 {
    bottom: 6rem !important;
  }
  .lg\:left-24 {
    left: 6rem !important;
  }
  .lg\:inset-x-24 {
    left: 6rem !important;
    right: 6rem !important;
  }
  .lg\:inset-y-24 {
    top: 6rem !important;
    bottom: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset--8 {
    inset: -2rem !important;
  }
  .md\:top--8 {
    top: -2rem !important;
  }
  .md\:right--8 {
    right: -2rem !important;
  }
  .md\:bottom--8 {
    bottom: -2rem !important;
  }
  .md\:left--8 {
    left: -2rem !important;
  }
  .md\:inset-x--8 {
    left: -2rem !important;
    right: -2rem !important;
  }
  .md\:inset-y--8 {
    top: -2rem !important;
    bottom: -2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset--7 {
    inset: -1.75rem !important;
  }
  .md\:top--7 {
    top: -1.75rem !important;
  }
  .md\:right--7 {
    right: -1.75rem !important;
  }
  .md\:bottom--7 {
    bottom: -1.75rem !important;
  }
  .md\:left--7 {
    left: -1.75rem !important;
  }
  .md\:inset-x--7 {
    left: -1.75rem !important;
    right: -1.75rem !important;
  }
  .md\:inset-y--7 {
    top: -1.75rem !important;
    bottom: -1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset--6 {
    inset: -1.5rem !important;
  }
  .md\:top--6 {
    top: -1.5rem !important;
  }
  .md\:right--6 {
    right: -1.5rem !important;
  }
  .md\:bottom--6 {
    bottom: -1.5rem !important;
  }
  .md\:left--6 {
    left: -1.5rem !important;
  }
  .md\:inset-x--6 {
    left: -1.5rem !important;
    right: -1.5rem !important;
  }
  .md\:inset-y--6 {
    top: -1.5rem !important;
    bottom: -1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset--5 {
    inset: -1.25rem !important;
  }
  .md\:top--5 {
    top: -1.25rem !important;
  }
  .md\:right--5 {
    right: -1.25rem !important;
  }
  .md\:bottom--5 {
    bottom: -1.25rem !important;
  }
  .md\:left--5 {
    left: -1.25rem !important;
  }
  .md\:inset-x--5 {
    left: -1.25rem !important;
    right: -1.25rem !important;
  }
  .md\:inset-y--5 {
    top: -1.25rem !important;
    bottom: -1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset--4 {
    inset: -1rem !important;
  }
  .md\:top--4 {
    top: -1rem !important;
  }
  .md\:right--4 {
    right: -1rem !important;
  }
  .md\:bottom--4 {
    bottom: -1rem !important;
  }
  .md\:left--4 {
    left: -1rem !important;
  }
  .md\:inset-x--4 {
    left: -1rem !important;
    right: -1rem !important;
  }
  .md\:inset-y--4 {
    top: -1rem !important;
    bottom: -1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset--3 {
    inset: -0.75rem !important;
  }
  .md\:top--3 {
    top: -0.75rem !important;
  }
  .md\:right--3 {
    right: -0.75rem !important;
  }
  .md\:bottom--3 {
    bottom: -0.75rem !important;
  }
  .md\:left--3 {
    left: -0.75rem !important;
  }
  .md\:inset-x--3 {
    left: -0.75rem !important;
    right: -0.75rem !important;
  }
  .md\:inset-y--3 {
    top: -0.75rem !important;
    bottom: -0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset--2 {
    inset: -0.5rem !important;
  }
  .md\:top--2 {
    top: -0.5rem !important;
  }
  .md\:right--2 {
    right: -0.5rem !important;
  }
  .md\:bottom--2 {
    bottom: -0.5rem !important;
  }
  .md\:left--2 {
    left: -0.5rem !important;
  }
  .md\:inset-x--2 {
    left: -0.5rem !important;
    right: -0.5rem !important;
  }
  .md\:inset-y--2 {
    top: -0.5rem !important;
    bottom: -0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset--1 {
    inset: -0.25rem !important;
  }
  .md\:top--1 {
    top: -0.25rem !important;
  }
  .md\:right--1 {
    right: -0.25rem !important;
  }
  .md\:bottom--1 {
    bottom: -0.25rem !important;
  }
  .md\:left--1 {
    left: -0.25rem !important;
  }
  .md\:inset-x--1 {
    left: -0.25rem !important;
    right: -0.25rem !important;
  }
  .md\:inset-y--1 {
    top: -0.25rem !important;
    bottom: -0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-0 {
    inset: 0rem !important;
  }
  .md\:top-0 {
    top: 0rem !important;
  }
  .md\:right-0 {
    right: 0rem !important;
  }
  .md\:bottom-0 {
    bottom: 0rem !important;
  }
  .md\:left-0 {
    left: 0rem !important;
  }
  .md\:inset-x-0 {
    left: 0rem !important;
    right: 0rem !important;
  }
  .md\:inset-y-0 {
    top: 0rem !important;
    bottom: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-1 {
    inset: 0.25rem !important;
  }
  .md\:top-1 {
    top: 0.25rem !important;
  }
  .md\:right-1 {
    right: 0.25rem !important;
  }
  .md\:bottom-1 {
    bottom: 0.25rem !important;
  }
  .md\:left-1 {
    left: 0.25rem !important;
  }
  .md\:inset-x-1 {
    left: 0.25rem !important;
    right: 0.25rem !important;
  }
  .md\:inset-y-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-2 {
    inset: 0.5rem !important;
  }
  .md\:top-2 {
    top: 0.5rem !important;
  }
  .md\:right-2 {
    right: 0.5rem !important;
  }
  .md\:bottom-2 {
    bottom: 0.5rem !important;
  }
  .md\:left-2 {
    left: 0.5rem !important;
  }
  .md\:inset-x-2 {
    left: 0.5rem !important;
    right: 0.5rem !important;
  }
  .md\:inset-y-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-3 {
    inset: 0.75rem !important;
  }
  .md\:top-3 {
    top: 0.75rem !important;
  }
  .md\:right-3 {
    right: 0.75rem !important;
  }
  .md\:bottom-3 {
    bottom: 0.75rem !important;
  }
  .md\:left-3 {
    left: 0.75rem !important;
  }
  .md\:inset-x-3 {
    left: 0.75rem !important;
    right: 0.75rem !important;
  }
  .md\:inset-y-3 {
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-4 {
    inset: 1rem !important;
  }
  .md\:top-4 {
    top: 1rem !important;
  }
  .md\:right-4 {
    right: 1rem !important;
  }
  .md\:bottom-4 {
    bottom: 1rem !important;
  }
  .md\:left-4 {
    left: 1rem !important;
  }
  .md\:inset-x-4 {
    left: 1rem !important;
    right: 1rem !important;
  }
  .md\:inset-y-4 {
    top: 1rem !important;
    bottom: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-5 {
    inset: 1.25rem !important;
  }
  .md\:top-5 {
    top: 1.25rem !important;
  }
  .md\:right-5 {
    right: 1.25rem !important;
  }
  .md\:bottom-5 {
    bottom: 1.25rem !important;
  }
  .md\:left-5 {
    left: 1.25rem !important;
  }
  .md\:inset-x-5 {
    left: 1.25rem !important;
    right: 1.25rem !important;
  }
  .md\:inset-y-5 {
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-6 {
    inset: 1.5rem !important;
  }
  .md\:top-6 {
    top: 1.5rem !important;
  }
  .md\:right-6 {
    right: 1.5rem !important;
  }
  .md\:bottom-6 {
    bottom: 1.5rem !important;
  }
  .md\:left-6 {
    left: 1.5rem !important;
  }
  .md\:inset-x-6 {
    left: 1.5rem !important;
    right: 1.5rem !important;
  }
  .md\:inset-y-6 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-7 {
    inset: 1.75rem !important;
  }
  .md\:top-7 {
    top: 1.75rem !important;
  }
  .md\:right-7 {
    right: 1.75rem !important;
  }
  .md\:bottom-7 {
    bottom: 1.75rem !important;
  }
  .md\:left-7 {
    left: 1.75rem !important;
  }
  .md\:inset-x-7 {
    left: 1.75rem !important;
    right: 1.75rem !important;
  }
  .md\:inset-y-7 {
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-8 {
    inset: 2rem !important;
  }
  .md\:top-8 {
    top: 2rem !important;
  }
  .md\:right-8 {
    right: 2rem !important;
  }
  .md\:bottom-8 {
    bottom: 2rem !important;
  }
  .md\:left-8 {
    left: 2rem !important;
  }
  .md\:inset-x-8 {
    left: 2rem !important;
    right: 2rem !important;
  }
  .md\:inset-y-8 {
    top: 2rem !important;
    bottom: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-9 {
    inset: 2.25rem !important;
  }
  .md\:top-9 {
    top: 2.25rem !important;
  }
  .md\:right-9 {
    right: 2.25rem !important;
  }
  .md\:bottom-9 {
    bottom: 2.25rem !important;
  }
  .md\:left-9 {
    left: 2.25rem !important;
  }
  .md\:inset-x-9 {
    left: 2.25rem !important;
    right: 2.25rem !important;
  }
  .md\:inset-y-9 {
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-10 {
    inset: 2.5rem !important;
  }
  .md\:top-10 {
    top: 2.5rem !important;
  }
  .md\:right-10 {
    right: 2.5rem !important;
  }
  .md\:bottom-10 {
    bottom: 2.5rem !important;
  }
  .md\:left-10 {
    left: 2.5rem !important;
  }
  .md\:inset-x-10 {
    left: 2.5rem !important;
    right: 2.5rem !important;
  }
  .md\:inset-y-10 {
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-11 {
    inset: 2.75rem !important;
  }
  .md\:top-11 {
    top: 2.75rem !important;
  }
  .md\:right-11 {
    right: 2.75rem !important;
  }
  .md\:bottom-11 {
    bottom: 2.75rem !important;
  }
  .md\:left-11 {
    left: 2.75rem !important;
  }
  .md\:inset-x-11 {
    left: 2.75rem !important;
    right: 2.75rem !important;
  }
  .md\:inset-y-11 {
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-12 {
    inset: 3rem !important;
  }
  .md\:top-12 {
    top: 3rem !important;
  }
  .md\:right-12 {
    right: 3rem !important;
  }
  .md\:bottom-12 {
    bottom: 3rem !important;
  }
  .md\:left-12 {
    left: 3rem !important;
  }
  .md\:inset-x-12 {
    left: 3rem !important;
    right: 3rem !important;
  }
  .md\:inset-y-12 {
    top: 3rem !important;
    bottom: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-13 {
    inset: 3.25rem !important;
  }
  .md\:top-13 {
    top: 3.25rem !important;
  }
  .md\:right-13 {
    right: 3.25rem !important;
  }
  .md\:bottom-13 {
    bottom: 3.25rem !important;
  }
  .md\:left-13 {
    left: 3.25rem !important;
  }
  .md\:inset-x-13 {
    left: 3.25rem !important;
    right: 3.25rem !important;
  }
  .md\:inset-y-13 {
    top: 3.25rem !important;
    bottom: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-14 {
    inset: 3.5rem !important;
  }
  .md\:top-14 {
    top: 3.5rem !important;
  }
  .md\:right-14 {
    right: 3.5rem !important;
  }
  .md\:bottom-14 {
    bottom: 3.5rem !important;
  }
  .md\:left-14 {
    left: 3.5rem !important;
  }
  .md\:inset-x-14 {
    left: 3.5rem !important;
    right: 3.5rem !important;
  }
  .md\:inset-y-14 {
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-15 {
    inset: 3.75rem !important;
  }
  .md\:top-15 {
    top: 3.75rem !important;
  }
  .md\:right-15 {
    right: 3.75rem !important;
  }
  .md\:bottom-15 {
    bottom: 3.75rem !important;
  }
  .md\:left-15 {
    left: 3.75rem !important;
  }
  .md\:inset-x-15 {
    left: 3.75rem !important;
    right: 3.75rem !important;
  }
  .md\:inset-y-15 {
    top: 3.75rem !important;
    bottom: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-16 {
    inset: 4rem !important;
  }
  .md\:top-16 {
    top: 4rem !important;
  }
  .md\:right-16 {
    right: 4rem !important;
  }
  .md\:bottom-16 {
    bottom: 4rem !important;
  }
  .md\:left-16 {
    left: 4rem !important;
  }
  .md\:inset-x-16 {
    left: 4rem !important;
    right: 4rem !important;
  }
  .md\:inset-y-16 {
    top: 4rem !important;
    bottom: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-17 {
    inset: 4.25rem !important;
  }
  .md\:top-17 {
    top: 4.25rem !important;
  }
  .md\:right-17 {
    right: 4.25rem !important;
  }
  .md\:bottom-17 {
    bottom: 4.25rem !important;
  }
  .md\:left-17 {
    left: 4.25rem !important;
  }
  .md\:inset-x-17 {
    left: 4.25rem !important;
    right: 4.25rem !important;
  }
  .md\:inset-y-17 {
    top: 4.25rem !important;
    bottom: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-18 {
    inset: 4.5rem !important;
  }
  .md\:top-18 {
    top: 4.5rem !important;
  }
  .md\:right-18 {
    right: 4.5rem !important;
  }
  .md\:bottom-18 {
    bottom: 4.5rem !important;
  }
  .md\:left-18 {
    left: 4.5rem !important;
  }
  .md\:inset-x-18 {
    left: 4.5rem !important;
    right: 4.5rem !important;
  }
  .md\:inset-y-18 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-19 {
    inset: 4.75rem !important;
  }
  .md\:top-19 {
    top: 4.75rem !important;
  }
  .md\:right-19 {
    right: 4.75rem !important;
  }
  .md\:bottom-19 {
    bottom: 4.75rem !important;
  }
  .md\:left-19 {
    left: 4.75rem !important;
  }
  .md\:inset-x-19 {
    left: 4.75rem !important;
    right: 4.75rem !important;
  }
  .md\:inset-y-19 {
    top: 4.75rem !important;
    bottom: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-20 {
    inset: 5rem !important;
  }
  .md\:top-20 {
    top: 5rem !important;
  }
  .md\:right-20 {
    right: 5rem !important;
  }
  .md\:bottom-20 {
    bottom: 5rem !important;
  }
  .md\:left-20 {
    left: 5rem !important;
  }
  .md\:inset-x-20 {
    left: 5rem !important;
    right: 5rem !important;
  }
  .md\:inset-y-20 {
    top: 5rem !important;
    bottom: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-21 {
    inset: 5.25rem !important;
  }
  .md\:top-21 {
    top: 5.25rem !important;
  }
  .md\:right-21 {
    right: 5.25rem !important;
  }
  .md\:bottom-21 {
    bottom: 5.25rem !important;
  }
  .md\:left-21 {
    left: 5.25rem !important;
  }
  .md\:inset-x-21 {
    left: 5.25rem !important;
    right: 5.25rem !important;
  }
  .md\:inset-y-21 {
    top: 5.25rem !important;
    bottom: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-22 {
    inset: 5.5rem !important;
  }
  .md\:top-22 {
    top: 5.5rem !important;
  }
  .md\:right-22 {
    right: 5.5rem !important;
  }
  .md\:bottom-22 {
    bottom: 5.5rem !important;
  }
  .md\:left-22 {
    left: 5.5rem !important;
  }
  .md\:inset-x-22 {
    left: 5.5rem !important;
    right: 5.5rem !important;
  }
  .md\:inset-y-22 {
    top: 5.5rem !important;
    bottom: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-23 {
    inset: 5.75rem !important;
  }
  .md\:top-23 {
    top: 5.75rem !important;
  }
  .md\:right-23 {
    right: 5.75rem !important;
  }
  .md\:bottom-23 {
    bottom: 5.75rem !important;
  }
  .md\:left-23 {
    left: 5.75rem !important;
  }
  .md\:inset-x-23 {
    left: 5.75rem !important;
    right: 5.75rem !important;
  }
  .md\:inset-y-23 {
    top: 5.75rem !important;
    bottom: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:inset-24 {
    inset: 6rem !important;
  }
  .md\:top-24 {
    top: 6rem !important;
  }
  .md\:right-24 {
    right: 6rem !important;
  }
  .md\:bottom-24 {
    bottom: 6rem !important;
  }
  .md\:left-24 {
    left: 6rem !important;
  }
  .md\:inset-x-24 {
    left: 6rem !important;
    right: 6rem !important;
  }
  .md\:inset-y-24 {
    top: 6rem !important;
    bottom: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset--8 {
    inset: -2rem !important;
  }
  .sm\:top--8 {
    top: -2rem !important;
  }
  .sm\:right--8 {
    right: -2rem !important;
  }
  .sm\:bottom--8 {
    bottom: -2rem !important;
  }
  .sm\:left--8 {
    left: -2rem !important;
  }
  .sm\:inset-x--8 {
    left: -2rem !important;
    right: -2rem !important;
  }
  .sm\:inset-y--8 {
    top: -2rem !important;
    bottom: -2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset--7 {
    inset: -1.75rem !important;
  }
  .sm\:top--7 {
    top: -1.75rem !important;
  }
  .sm\:right--7 {
    right: -1.75rem !important;
  }
  .sm\:bottom--7 {
    bottom: -1.75rem !important;
  }
  .sm\:left--7 {
    left: -1.75rem !important;
  }
  .sm\:inset-x--7 {
    left: -1.75rem !important;
    right: -1.75rem !important;
  }
  .sm\:inset-y--7 {
    top: -1.75rem !important;
    bottom: -1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset--6 {
    inset: -1.5rem !important;
  }
  .sm\:top--6 {
    top: -1.5rem !important;
  }
  .sm\:right--6 {
    right: -1.5rem !important;
  }
  .sm\:bottom--6 {
    bottom: -1.5rem !important;
  }
  .sm\:left--6 {
    left: -1.5rem !important;
  }
  .sm\:inset-x--6 {
    left: -1.5rem !important;
    right: -1.5rem !important;
  }
  .sm\:inset-y--6 {
    top: -1.5rem !important;
    bottom: -1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset--5 {
    inset: -1.25rem !important;
  }
  .sm\:top--5 {
    top: -1.25rem !important;
  }
  .sm\:right--5 {
    right: -1.25rem !important;
  }
  .sm\:bottom--5 {
    bottom: -1.25rem !important;
  }
  .sm\:left--5 {
    left: -1.25rem !important;
  }
  .sm\:inset-x--5 {
    left: -1.25rem !important;
    right: -1.25rem !important;
  }
  .sm\:inset-y--5 {
    top: -1.25rem !important;
    bottom: -1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset--4 {
    inset: -1rem !important;
  }
  .sm\:top--4 {
    top: -1rem !important;
  }
  .sm\:right--4 {
    right: -1rem !important;
  }
  .sm\:bottom--4 {
    bottom: -1rem !important;
  }
  .sm\:left--4 {
    left: -1rem !important;
  }
  .sm\:inset-x--4 {
    left: -1rem !important;
    right: -1rem !important;
  }
  .sm\:inset-y--4 {
    top: -1rem !important;
    bottom: -1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset--3 {
    inset: -0.75rem !important;
  }
  .sm\:top--3 {
    top: -0.75rem !important;
  }
  .sm\:right--3 {
    right: -0.75rem !important;
  }
  .sm\:bottom--3 {
    bottom: -0.75rem !important;
  }
  .sm\:left--3 {
    left: -0.75rem !important;
  }
  .sm\:inset-x--3 {
    left: -0.75rem !important;
    right: -0.75rem !important;
  }
  .sm\:inset-y--3 {
    top: -0.75rem !important;
    bottom: -0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset--2 {
    inset: -0.5rem !important;
  }
  .sm\:top--2 {
    top: -0.5rem !important;
  }
  .sm\:right--2 {
    right: -0.5rem !important;
  }
  .sm\:bottom--2 {
    bottom: -0.5rem !important;
  }
  .sm\:left--2 {
    left: -0.5rem !important;
  }
  .sm\:inset-x--2 {
    left: -0.5rem !important;
    right: -0.5rem !important;
  }
  .sm\:inset-y--2 {
    top: -0.5rem !important;
    bottom: -0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset--1 {
    inset: -0.25rem !important;
  }
  .sm\:top--1 {
    top: -0.25rem !important;
  }
  .sm\:right--1 {
    right: -0.25rem !important;
  }
  .sm\:bottom--1 {
    bottom: -0.25rem !important;
  }
  .sm\:left--1 {
    left: -0.25rem !important;
  }
  .sm\:inset-x--1 {
    left: -0.25rem !important;
    right: -0.25rem !important;
  }
  .sm\:inset-y--1 {
    top: -0.25rem !important;
    bottom: -0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-0 {
    inset: 0rem !important;
  }
  .sm\:top-0 {
    top: 0rem !important;
  }
  .sm\:right-0 {
    right: 0rem !important;
  }
  .sm\:bottom-0 {
    bottom: 0rem !important;
  }
  .sm\:left-0 {
    left: 0rem !important;
  }
  .sm\:inset-x-0 {
    left: 0rem !important;
    right: 0rem !important;
  }
  .sm\:inset-y-0 {
    top: 0rem !important;
    bottom: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-1 {
    inset: 0.25rem !important;
  }
  .sm\:top-1 {
    top: 0.25rem !important;
  }
  .sm\:right-1 {
    right: 0.25rem !important;
  }
  .sm\:bottom-1 {
    bottom: 0.25rem !important;
  }
  .sm\:left-1 {
    left: 0.25rem !important;
  }
  .sm\:inset-x-1 {
    left: 0.25rem !important;
    right: 0.25rem !important;
  }
  .sm\:inset-y-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-2 {
    inset: 0.5rem !important;
  }
  .sm\:top-2 {
    top: 0.5rem !important;
  }
  .sm\:right-2 {
    right: 0.5rem !important;
  }
  .sm\:bottom-2 {
    bottom: 0.5rem !important;
  }
  .sm\:left-2 {
    left: 0.5rem !important;
  }
  .sm\:inset-x-2 {
    left: 0.5rem !important;
    right: 0.5rem !important;
  }
  .sm\:inset-y-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-3 {
    inset: 0.75rem !important;
  }
  .sm\:top-3 {
    top: 0.75rem !important;
  }
  .sm\:right-3 {
    right: 0.75rem !important;
  }
  .sm\:bottom-3 {
    bottom: 0.75rem !important;
  }
  .sm\:left-3 {
    left: 0.75rem !important;
  }
  .sm\:inset-x-3 {
    left: 0.75rem !important;
    right: 0.75rem !important;
  }
  .sm\:inset-y-3 {
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-4 {
    inset: 1rem !important;
  }
  .sm\:top-4 {
    top: 1rem !important;
  }
  .sm\:right-4 {
    right: 1rem !important;
  }
  .sm\:bottom-4 {
    bottom: 1rem !important;
  }
  .sm\:left-4 {
    left: 1rem !important;
  }
  .sm\:inset-x-4 {
    left: 1rem !important;
    right: 1rem !important;
  }
  .sm\:inset-y-4 {
    top: 1rem !important;
    bottom: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-5 {
    inset: 1.25rem !important;
  }
  .sm\:top-5 {
    top: 1.25rem !important;
  }
  .sm\:right-5 {
    right: 1.25rem !important;
  }
  .sm\:bottom-5 {
    bottom: 1.25rem !important;
  }
  .sm\:left-5 {
    left: 1.25rem !important;
  }
  .sm\:inset-x-5 {
    left: 1.25rem !important;
    right: 1.25rem !important;
  }
  .sm\:inset-y-5 {
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-6 {
    inset: 1.5rem !important;
  }
  .sm\:top-6 {
    top: 1.5rem !important;
  }
  .sm\:right-6 {
    right: 1.5rem !important;
  }
  .sm\:bottom-6 {
    bottom: 1.5rem !important;
  }
  .sm\:left-6 {
    left: 1.5rem !important;
  }
  .sm\:inset-x-6 {
    left: 1.5rem !important;
    right: 1.5rem !important;
  }
  .sm\:inset-y-6 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-7 {
    inset: 1.75rem !important;
  }
  .sm\:top-7 {
    top: 1.75rem !important;
  }
  .sm\:right-7 {
    right: 1.75rem !important;
  }
  .sm\:bottom-7 {
    bottom: 1.75rem !important;
  }
  .sm\:left-7 {
    left: 1.75rem !important;
  }
  .sm\:inset-x-7 {
    left: 1.75rem !important;
    right: 1.75rem !important;
  }
  .sm\:inset-y-7 {
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-8 {
    inset: 2rem !important;
  }
  .sm\:top-8 {
    top: 2rem !important;
  }
  .sm\:right-8 {
    right: 2rem !important;
  }
  .sm\:bottom-8 {
    bottom: 2rem !important;
  }
  .sm\:left-8 {
    left: 2rem !important;
  }
  .sm\:inset-x-8 {
    left: 2rem !important;
    right: 2rem !important;
  }
  .sm\:inset-y-8 {
    top: 2rem !important;
    bottom: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-9 {
    inset: 2.25rem !important;
  }
  .sm\:top-9 {
    top: 2.25rem !important;
  }
  .sm\:right-9 {
    right: 2.25rem !important;
  }
  .sm\:bottom-9 {
    bottom: 2.25rem !important;
  }
  .sm\:left-9 {
    left: 2.25rem !important;
  }
  .sm\:inset-x-9 {
    left: 2.25rem !important;
    right: 2.25rem !important;
  }
  .sm\:inset-y-9 {
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-10 {
    inset: 2.5rem !important;
  }
  .sm\:top-10 {
    top: 2.5rem !important;
  }
  .sm\:right-10 {
    right: 2.5rem !important;
  }
  .sm\:bottom-10 {
    bottom: 2.5rem !important;
  }
  .sm\:left-10 {
    left: 2.5rem !important;
  }
  .sm\:inset-x-10 {
    left: 2.5rem !important;
    right: 2.5rem !important;
  }
  .sm\:inset-y-10 {
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-11 {
    inset: 2.75rem !important;
  }
  .sm\:top-11 {
    top: 2.75rem !important;
  }
  .sm\:right-11 {
    right: 2.75rem !important;
  }
  .sm\:bottom-11 {
    bottom: 2.75rem !important;
  }
  .sm\:left-11 {
    left: 2.75rem !important;
  }
  .sm\:inset-x-11 {
    left: 2.75rem !important;
    right: 2.75rem !important;
  }
  .sm\:inset-y-11 {
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-12 {
    inset: 3rem !important;
  }
  .sm\:top-12 {
    top: 3rem !important;
  }
  .sm\:right-12 {
    right: 3rem !important;
  }
  .sm\:bottom-12 {
    bottom: 3rem !important;
  }
  .sm\:left-12 {
    left: 3rem !important;
  }
  .sm\:inset-x-12 {
    left: 3rem !important;
    right: 3rem !important;
  }
  .sm\:inset-y-12 {
    top: 3rem !important;
    bottom: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-13 {
    inset: 3.25rem !important;
  }
  .sm\:top-13 {
    top: 3.25rem !important;
  }
  .sm\:right-13 {
    right: 3.25rem !important;
  }
  .sm\:bottom-13 {
    bottom: 3.25rem !important;
  }
  .sm\:left-13 {
    left: 3.25rem !important;
  }
  .sm\:inset-x-13 {
    left: 3.25rem !important;
    right: 3.25rem !important;
  }
  .sm\:inset-y-13 {
    top: 3.25rem !important;
    bottom: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-14 {
    inset: 3.5rem !important;
  }
  .sm\:top-14 {
    top: 3.5rem !important;
  }
  .sm\:right-14 {
    right: 3.5rem !important;
  }
  .sm\:bottom-14 {
    bottom: 3.5rem !important;
  }
  .sm\:left-14 {
    left: 3.5rem !important;
  }
  .sm\:inset-x-14 {
    left: 3.5rem !important;
    right: 3.5rem !important;
  }
  .sm\:inset-y-14 {
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-15 {
    inset: 3.75rem !important;
  }
  .sm\:top-15 {
    top: 3.75rem !important;
  }
  .sm\:right-15 {
    right: 3.75rem !important;
  }
  .sm\:bottom-15 {
    bottom: 3.75rem !important;
  }
  .sm\:left-15 {
    left: 3.75rem !important;
  }
  .sm\:inset-x-15 {
    left: 3.75rem !important;
    right: 3.75rem !important;
  }
  .sm\:inset-y-15 {
    top: 3.75rem !important;
    bottom: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-16 {
    inset: 4rem !important;
  }
  .sm\:top-16 {
    top: 4rem !important;
  }
  .sm\:right-16 {
    right: 4rem !important;
  }
  .sm\:bottom-16 {
    bottom: 4rem !important;
  }
  .sm\:left-16 {
    left: 4rem !important;
  }
  .sm\:inset-x-16 {
    left: 4rem !important;
    right: 4rem !important;
  }
  .sm\:inset-y-16 {
    top: 4rem !important;
    bottom: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-17 {
    inset: 4.25rem !important;
  }
  .sm\:top-17 {
    top: 4.25rem !important;
  }
  .sm\:right-17 {
    right: 4.25rem !important;
  }
  .sm\:bottom-17 {
    bottom: 4.25rem !important;
  }
  .sm\:left-17 {
    left: 4.25rem !important;
  }
  .sm\:inset-x-17 {
    left: 4.25rem !important;
    right: 4.25rem !important;
  }
  .sm\:inset-y-17 {
    top: 4.25rem !important;
    bottom: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-18 {
    inset: 4.5rem !important;
  }
  .sm\:top-18 {
    top: 4.5rem !important;
  }
  .sm\:right-18 {
    right: 4.5rem !important;
  }
  .sm\:bottom-18 {
    bottom: 4.5rem !important;
  }
  .sm\:left-18 {
    left: 4.5rem !important;
  }
  .sm\:inset-x-18 {
    left: 4.5rem !important;
    right: 4.5rem !important;
  }
  .sm\:inset-y-18 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-19 {
    inset: 4.75rem !important;
  }
  .sm\:top-19 {
    top: 4.75rem !important;
  }
  .sm\:right-19 {
    right: 4.75rem !important;
  }
  .sm\:bottom-19 {
    bottom: 4.75rem !important;
  }
  .sm\:left-19 {
    left: 4.75rem !important;
  }
  .sm\:inset-x-19 {
    left: 4.75rem !important;
    right: 4.75rem !important;
  }
  .sm\:inset-y-19 {
    top: 4.75rem !important;
    bottom: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-20 {
    inset: 5rem !important;
  }
  .sm\:top-20 {
    top: 5rem !important;
  }
  .sm\:right-20 {
    right: 5rem !important;
  }
  .sm\:bottom-20 {
    bottom: 5rem !important;
  }
  .sm\:left-20 {
    left: 5rem !important;
  }
  .sm\:inset-x-20 {
    left: 5rem !important;
    right: 5rem !important;
  }
  .sm\:inset-y-20 {
    top: 5rem !important;
    bottom: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-21 {
    inset: 5.25rem !important;
  }
  .sm\:top-21 {
    top: 5.25rem !important;
  }
  .sm\:right-21 {
    right: 5.25rem !important;
  }
  .sm\:bottom-21 {
    bottom: 5.25rem !important;
  }
  .sm\:left-21 {
    left: 5.25rem !important;
  }
  .sm\:inset-x-21 {
    left: 5.25rem !important;
    right: 5.25rem !important;
  }
  .sm\:inset-y-21 {
    top: 5.25rem !important;
    bottom: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-22 {
    inset: 5.5rem !important;
  }
  .sm\:top-22 {
    top: 5.5rem !important;
  }
  .sm\:right-22 {
    right: 5.5rem !important;
  }
  .sm\:bottom-22 {
    bottom: 5.5rem !important;
  }
  .sm\:left-22 {
    left: 5.5rem !important;
  }
  .sm\:inset-x-22 {
    left: 5.5rem !important;
    right: 5.5rem !important;
  }
  .sm\:inset-y-22 {
    top: 5.5rem !important;
    bottom: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-23 {
    inset: 5.75rem !important;
  }
  .sm\:top-23 {
    top: 5.75rem !important;
  }
  .sm\:right-23 {
    right: 5.75rem !important;
  }
  .sm\:bottom-23 {
    bottom: 5.75rem !important;
  }
  .sm\:left-23 {
    left: 5.75rem !important;
  }
  .sm\:inset-x-23 {
    left: 5.75rem !important;
    right: 5.75rem !important;
  }
  .sm\:inset-y-23 {
    top: 5.75rem !important;
    bottom: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:inset-24 {
    inset: 6rem !important;
  }
  .sm\:top-24 {
    top: 6rem !important;
  }
  .sm\:right-24 {
    right: 6rem !important;
  }
  .sm\:bottom-24 {
    bottom: 6rem !important;
  }
  .sm\:left-24 {
    left: 6rem !important;
  }
  .sm\:inset-x-24 {
    left: 6rem !important;
    right: 6rem !important;
  }
  .sm\:inset-y-24 {
    top: 6rem !important;
    bottom: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset--8 {
    inset: -2rem !important;
  }
  .xs\:top--8 {
    top: -2rem !important;
  }
  .xs\:right--8 {
    right: -2rem !important;
  }
  .xs\:bottom--8 {
    bottom: -2rem !important;
  }
  .xs\:left--8 {
    left: -2rem !important;
  }
  .xs\:inset-x--8 {
    left: -2rem !important;
    right: -2rem !important;
  }
  .xs\:inset-y--8 {
    top: -2rem !important;
    bottom: -2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset--7 {
    inset: -1.75rem !important;
  }
  .xs\:top--7 {
    top: -1.75rem !important;
  }
  .xs\:right--7 {
    right: -1.75rem !important;
  }
  .xs\:bottom--7 {
    bottom: -1.75rem !important;
  }
  .xs\:left--7 {
    left: -1.75rem !important;
  }
  .xs\:inset-x--7 {
    left: -1.75rem !important;
    right: -1.75rem !important;
  }
  .xs\:inset-y--7 {
    top: -1.75rem !important;
    bottom: -1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset--6 {
    inset: -1.5rem !important;
  }
  .xs\:top--6 {
    top: -1.5rem !important;
  }
  .xs\:right--6 {
    right: -1.5rem !important;
  }
  .xs\:bottom--6 {
    bottom: -1.5rem !important;
  }
  .xs\:left--6 {
    left: -1.5rem !important;
  }
  .xs\:inset-x--6 {
    left: -1.5rem !important;
    right: -1.5rem !important;
  }
  .xs\:inset-y--6 {
    top: -1.5rem !important;
    bottom: -1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset--5 {
    inset: -1.25rem !important;
  }
  .xs\:top--5 {
    top: -1.25rem !important;
  }
  .xs\:right--5 {
    right: -1.25rem !important;
  }
  .xs\:bottom--5 {
    bottom: -1.25rem !important;
  }
  .xs\:left--5 {
    left: -1.25rem !important;
  }
  .xs\:inset-x--5 {
    left: -1.25rem !important;
    right: -1.25rem !important;
  }
  .xs\:inset-y--5 {
    top: -1.25rem !important;
    bottom: -1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset--4 {
    inset: -1rem !important;
  }
  .xs\:top--4 {
    top: -1rem !important;
  }
  .xs\:right--4 {
    right: -1rem !important;
  }
  .xs\:bottom--4 {
    bottom: -1rem !important;
  }
  .xs\:left--4 {
    left: -1rem !important;
  }
  .xs\:inset-x--4 {
    left: -1rem !important;
    right: -1rem !important;
  }
  .xs\:inset-y--4 {
    top: -1rem !important;
    bottom: -1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset--3 {
    inset: -0.75rem !important;
  }
  .xs\:top--3 {
    top: -0.75rem !important;
  }
  .xs\:right--3 {
    right: -0.75rem !important;
  }
  .xs\:bottom--3 {
    bottom: -0.75rem !important;
  }
  .xs\:left--3 {
    left: -0.75rem !important;
  }
  .xs\:inset-x--3 {
    left: -0.75rem !important;
    right: -0.75rem !important;
  }
  .xs\:inset-y--3 {
    top: -0.75rem !important;
    bottom: -0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset--2 {
    inset: -0.5rem !important;
  }
  .xs\:top--2 {
    top: -0.5rem !important;
  }
  .xs\:right--2 {
    right: -0.5rem !important;
  }
  .xs\:bottom--2 {
    bottom: -0.5rem !important;
  }
  .xs\:left--2 {
    left: -0.5rem !important;
  }
  .xs\:inset-x--2 {
    left: -0.5rem !important;
    right: -0.5rem !important;
  }
  .xs\:inset-y--2 {
    top: -0.5rem !important;
    bottom: -0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset--1 {
    inset: -0.25rem !important;
  }
  .xs\:top--1 {
    top: -0.25rem !important;
  }
  .xs\:right--1 {
    right: -0.25rem !important;
  }
  .xs\:bottom--1 {
    bottom: -0.25rem !important;
  }
  .xs\:left--1 {
    left: -0.25rem !important;
  }
  .xs\:inset-x--1 {
    left: -0.25rem !important;
    right: -0.25rem !important;
  }
  .xs\:inset-y--1 {
    top: -0.25rem !important;
    bottom: -0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-0 {
    inset: 0rem !important;
  }
  .xs\:top-0 {
    top: 0rem !important;
  }
  .xs\:right-0 {
    right: 0rem !important;
  }
  .xs\:bottom-0 {
    bottom: 0rem !important;
  }
  .xs\:left-0 {
    left: 0rem !important;
  }
  .xs\:inset-x-0 {
    left: 0rem !important;
    right: 0rem !important;
  }
  .xs\:inset-y-0 {
    top: 0rem !important;
    bottom: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-1 {
    inset: 0.25rem !important;
  }
  .xs\:top-1 {
    top: 0.25rem !important;
  }
  .xs\:right-1 {
    right: 0.25rem !important;
  }
  .xs\:bottom-1 {
    bottom: 0.25rem !important;
  }
  .xs\:left-1 {
    left: 0.25rem !important;
  }
  .xs\:inset-x-1 {
    left: 0.25rem !important;
    right: 0.25rem !important;
  }
  .xs\:inset-y-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-2 {
    inset: 0.5rem !important;
  }
  .xs\:top-2 {
    top: 0.5rem !important;
  }
  .xs\:right-2 {
    right: 0.5rem !important;
  }
  .xs\:bottom-2 {
    bottom: 0.5rem !important;
  }
  .xs\:left-2 {
    left: 0.5rem !important;
  }
  .xs\:inset-x-2 {
    left: 0.5rem !important;
    right: 0.5rem !important;
  }
  .xs\:inset-y-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-3 {
    inset: 0.75rem !important;
  }
  .xs\:top-3 {
    top: 0.75rem !important;
  }
  .xs\:right-3 {
    right: 0.75rem !important;
  }
  .xs\:bottom-3 {
    bottom: 0.75rem !important;
  }
  .xs\:left-3 {
    left: 0.75rem !important;
  }
  .xs\:inset-x-3 {
    left: 0.75rem !important;
    right: 0.75rem !important;
  }
  .xs\:inset-y-3 {
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-4 {
    inset: 1rem !important;
  }
  .xs\:top-4 {
    top: 1rem !important;
  }
  .xs\:right-4 {
    right: 1rem !important;
  }
  .xs\:bottom-4 {
    bottom: 1rem !important;
  }
  .xs\:left-4 {
    left: 1rem !important;
  }
  .xs\:inset-x-4 {
    left: 1rem !important;
    right: 1rem !important;
  }
  .xs\:inset-y-4 {
    top: 1rem !important;
    bottom: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-5 {
    inset: 1.25rem !important;
  }
  .xs\:top-5 {
    top: 1.25rem !important;
  }
  .xs\:right-5 {
    right: 1.25rem !important;
  }
  .xs\:bottom-5 {
    bottom: 1.25rem !important;
  }
  .xs\:left-5 {
    left: 1.25rem !important;
  }
  .xs\:inset-x-5 {
    left: 1.25rem !important;
    right: 1.25rem !important;
  }
  .xs\:inset-y-5 {
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-6 {
    inset: 1.5rem !important;
  }
  .xs\:top-6 {
    top: 1.5rem !important;
  }
  .xs\:right-6 {
    right: 1.5rem !important;
  }
  .xs\:bottom-6 {
    bottom: 1.5rem !important;
  }
  .xs\:left-6 {
    left: 1.5rem !important;
  }
  .xs\:inset-x-6 {
    left: 1.5rem !important;
    right: 1.5rem !important;
  }
  .xs\:inset-y-6 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-7 {
    inset: 1.75rem !important;
  }
  .xs\:top-7 {
    top: 1.75rem !important;
  }
  .xs\:right-7 {
    right: 1.75rem !important;
  }
  .xs\:bottom-7 {
    bottom: 1.75rem !important;
  }
  .xs\:left-7 {
    left: 1.75rem !important;
  }
  .xs\:inset-x-7 {
    left: 1.75rem !important;
    right: 1.75rem !important;
  }
  .xs\:inset-y-7 {
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-8 {
    inset: 2rem !important;
  }
  .xs\:top-8 {
    top: 2rem !important;
  }
  .xs\:right-8 {
    right: 2rem !important;
  }
  .xs\:bottom-8 {
    bottom: 2rem !important;
  }
  .xs\:left-8 {
    left: 2rem !important;
  }
  .xs\:inset-x-8 {
    left: 2rem !important;
    right: 2rem !important;
  }
  .xs\:inset-y-8 {
    top: 2rem !important;
    bottom: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-9 {
    inset: 2.25rem !important;
  }
  .xs\:top-9 {
    top: 2.25rem !important;
  }
  .xs\:right-9 {
    right: 2.25rem !important;
  }
  .xs\:bottom-9 {
    bottom: 2.25rem !important;
  }
  .xs\:left-9 {
    left: 2.25rem !important;
  }
  .xs\:inset-x-9 {
    left: 2.25rem !important;
    right: 2.25rem !important;
  }
  .xs\:inset-y-9 {
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-10 {
    inset: 2.5rem !important;
  }
  .xs\:top-10 {
    top: 2.5rem !important;
  }
  .xs\:right-10 {
    right: 2.5rem !important;
  }
  .xs\:bottom-10 {
    bottom: 2.5rem !important;
  }
  .xs\:left-10 {
    left: 2.5rem !important;
  }
  .xs\:inset-x-10 {
    left: 2.5rem !important;
    right: 2.5rem !important;
  }
  .xs\:inset-y-10 {
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-11 {
    inset: 2.75rem !important;
  }
  .xs\:top-11 {
    top: 2.75rem !important;
  }
  .xs\:right-11 {
    right: 2.75rem !important;
  }
  .xs\:bottom-11 {
    bottom: 2.75rem !important;
  }
  .xs\:left-11 {
    left: 2.75rem !important;
  }
  .xs\:inset-x-11 {
    left: 2.75rem !important;
    right: 2.75rem !important;
  }
  .xs\:inset-y-11 {
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-12 {
    inset: 3rem !important;
  }
  .xs\:top-12 {
    top: 3rem !important;
  }
  .xs\:right-12 {
    right: 3rem !important;
  }
  .xs\:bottom-12 {
    bottom: 3rem !important;
  }
  .xs\:left-12 {
    left: 3rem !important;
  }
  .xs\:inset-x-12 {
    left: 3rem !important;
    right: 3rem !important;
  }
  .xs\:inset-y-12 {
    top: 3rem !important;
    bottom: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-13 {
    inset: 3.25rem !important;
  }
  .xs\:top-13 {
    top: 3.25rem !important;
  }
  .xs\:right-13 {
    right: 3.25rem !important;
  }
  .xs\:bottom-13 {
    bottom: 3.25rem !important;
  }
  .xs\:left-13 {
    left: 3.25rem !important;
  }
  .xs\:inset-x-13 {
    left: 3.25rem !important;
    right: 3.25rem !important;
  }
  .xs\:inset-y-13 {
    top: 3.25rem !important;
    bottom: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-14 {
    inset: 3.5rem !important;
  }
  .xs\:top-14 {
    top: 3.5rem !important;
  }
  .xs\:right-14 {
    right: 3.5rem !important;
  }
  .xs\:bottom-14 {
    bottom: 3.5rem !important;
  }
  .xs\:left-14 {
    left: 3.5rem !important;
  }
  .xs\:inset-x-14 {
    left: 3.5rem !important;
    right: 3.5rem !important;
  }
  .xs\:inset-y-14 {
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-15 {
    inset: 3.75rem !important;
  }
  .xs\:top-15 {
    top: 3.75rem !important;
  }
  .xs\:right-15 {
    right: 3.75rem !important;
  }
  .xs\:bottom-15 {
    bottom: 3.75rem !important;
  }
  .xs\:left-15 {
    left: 3.75rem !important;
  }
  .xs\:inset-x-15 {
    left: 3.75rem !important;
    right: 3.75rem !important;
  }
  .xs\:inset-y-15 {
    top: 3.75rem !important;
    bottom: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-16 {
    inset: 4rem !important;
  }
  .xs\:top-16 {
    top: 4rem !important;
  }
  .xs\:right-16 {
    right: 4rem !important;
  }
  .xs\:bottom-16 {
    bottom: 4rem !important;
  }
  .xs\:left-16 {
    left: 4rem !important;
  }
  .xs\:inset-x-16 {
    left: 4rem !important;
    right: 4rem !important;
  }
  .xs\:inset-y-16 {
    top: 4rem !important;
    bottom: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-17 {
    inset: 4.25rem !important;
  }
  .xs\:top-17 {
    top: 4.25rem !important;
  }
  .xs\:right-17 {
    right: 4.25rem !important;
  }
  .xs\:bottom-17 {
    bottom: 4.25rem !important;
  }
  .xs\:left-17 {
    left: 4.25rem !important;
  }
  .xs\:inset-x-17 {
    left: 4.25rem !important;
    right: 4.25rem !important;
  }
  .xs\:inset-y-17 {
    top: 4.25rem !important;
    bottom: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-18 {
    inset: 4.5rem !important;
  }
  .xs\:top-18 {
    top: 4.5rem !important;
  }
  .xs\:right-18 {
    right: 4.5rem !important;
  }
  .xs\:bottom-18 {
    bottom: 4.5rem !important;
  }
  .xs\:left-18 {
    left: 4.5rem !important;
  }
  .xs\:inset-x-18 {
    left: 4.5rem !important;
    right: 4.5rem !important;
  }
  .xs\:inset-y-18 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-19 {
    inset: 4.75rem !important;
  }
  .xs\:top-19 {
    top: 4.75rem !important;
  }
  .xs\:right-19 {
    right: 4.75rem !important;
  }
  .xs\:bottom-19 {
    bottom: 4.75rem !important;
  }
  .xs\:left-19 {
    left: 4.75rem !important;
  }
  .xs\:inset-x-19 {
    left: 4.75rem !important;
    right: 4.75rem !important;
  }
  .xs\:inset-y-19 {
    top: 4.75rem !important;
    bottom: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-20 {
    inset: 5rem !important;
  }
  .xs\:top-20 {
    top: 5rem !important;
  }
  .xs\:right-20 {
    right: 5rem !important;
  }
  .xs\:bottom-20 {
    bottom: 5rem !important;
  }
  .xs\:left-20 {
    left: 5rem !important;
  }
  .xs\:inset-x-20 {
    left: 5rem !important;
    right: 5rem !important;
  }
  .xs\:inset-y-20 {
    top: 5rem !important;
    bottom: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-21 {
    inset: 5.25rem !important;
  }
  .xs\:top-21 {
    top: 5.25rem !important;
  }
  .xs\:right-21 {
    right: 5.25rem !important;
  }
  .xs\:bottom-21 {
    bottom: 5.25rem !important;
  }
  .xs\:left-21 {
    left: 5.25rem !important;
  }
  .xs\:inset-x-21 {
    left: 5.25rem !important;
    right: 5.25rem !important;
  }
  .xs\:inset-y-21 {
    top: 5.25rem !important;
    bottom: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-22 {
    inset: 5.5rem !important;
  }
  .xs\:top-22 {
    top: 5.5rem !important;
  }
  .xs\:right-22 {
    right: 5.5rem !important;
  }
  .xs\:bottom-22 {
    bottom: 5.5rem !important;
  }
  .xs\:left-22 {
    left: 5.5rem !important;
  }
  .xs\:inset-x-22 {
    left: 5.5rem !important;
    right: 5.5rem !important;
  }
  .xs\:inset-y-22 {
    top: 5.5rem !important;
    bottom: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-23 {
    inset: 5.75rem !important;
  }
  .xs\:top-23 {
    top: 5.75rem !important;
  }
  .xs\:right-23 {
    right: 5.75rem !important;
  }
  .xs\:bottom-23 {
    bottom: 5.75rem !important;
  }
  .xs\:left-23 {
    left: 5.75rem !important;
  }
  .xs\:inset-x-23 {
    left: 5.75rem !important;
    right: 5.75rem !important;
  }
  .xs\:inset-y-23 {
    top: 5.75rem !important;
    bottom: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:inset-24 {
    inset: 6rem !important;
  }
  .xs\:top-24 {
    top: 6rem !important;
  }
  .xs\:right-24 {
    right: 6rem !important;
  }
  .xs\:bottom-24 {
    bottom: 6rem !important;
  }
  .xs\:left-24 {
    left: 6rem !important;
  }
  .xs\:inset-x-24 {
    left: 6rem !important;
    right: 6rem !important;
  }
  .xs\:inset-y-24 {
    top: 6rem !important;
    bottom: 6rem !important;
  }
}
.pt-auto {
  padding-top: auto !important;
}

.pr-auto {
  padding-right: auto !important;
}

.pb-auto {
  padding-bottom: auto !important;
}

.pl-auto {
  padding-left: auto !important;
}

.px-auto {
  padding-right: auto !important;
  padding-left: auto !important;
}

.py-auto {
  padding-top: auto !important;
  padding-bottom: auto !important;
}

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

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

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

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

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.p-0 {
  padding: 0rem !important;
}

.pt-0 {
  padding-top: 0rem !important;
}

.pr-0 {
  padding-right: 0rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}

.pl-0 {
  padding-left: 0rem !important;
}

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

.py-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.m-0 {
  margin: 0rem !important;
}

.mt-0 {
  margin-top: 0rem !important;
}

.mr-0 {
  margin-right: 0rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.ml-0 {
  margin-left: 0rem !important;
}

.mx-0 {
  margin-right: 0rem !important;
  margin-left: 0rem !important;
}

.my-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

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

.pt-1 {
  padding-top: 0.25rem !important;
}

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

.pb-1 {
  padding-bottom: 0.25rem !important;
}

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

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

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

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

.mt-1 {
  margin-top: 0.25rem !important;
}

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

.mb-1 {
  margin-bottom: 0.25rem !important;
}

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

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

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

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

.pt-2 {
  padding-top: 0.5rem !important;
}

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

.pb-2 {
  padding-bottom: 0.5rem !important;
}

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

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

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

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

.mt-2 {
  margin-top: 0.5rem !important;
}

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

.mb-2 {
  margin-bottom: 0.5rem !important;
}

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

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

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

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

.pt-3 {
  padding-top: 0.75rem !important;
}

.pr-3 {
  padding-right: 0.75rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.pl-3 {
  padding-left: 0.75rem !important;
}

.px-3 {
  padding-right: 0.75rem !important;
  padding-left: 0.75rem !important;
}

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

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

.mt-3 {
  margin-top: 0.75rem !important;
}

.mr-3 {
  margin-right: 0.75rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.ml-3 {
  margin-left: 0.75rem !important;
}

.mx-3 {
  margin-right: 0.75rem !important;
  margin-left: 0.75rem !important;
}

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

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

.pt-4 {
  padding-top: 1rem !important;
}

.pr-4 {
  padding-right: 1rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pl-4 {
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

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

.mt-4 {
  margin-top: 1rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

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

.pt-5 {
  padding-top: 1.25rem !important;
}

.pr-5 {
  padding-right: 1.25rem !important;
}

.pb-5 {
  padding-bottom: 1.25rem !important;
}

.pl-5 {
  padding-left: 1.25rem !important;
}

.px-5 {
  padding-right: 1.25rem !important;
  padding-left: 1.25rem !important;
}

.py-5 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

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

.mt-5 {
  margin-top: 1.25rem !important;
}

.mr-5 {
  margin-right: 1.25rem !important;
}

.mb-5 {
  margin-bottom: 1.25rem !important;
}

.ml-5 {
  margin-left: 1.25rem !important;
}

.mx-5 {
  margin-right: 1.25rem !important;
  margin-left: 1.25rem !important;
}

.my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

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

.pt-6 {
  padding-top: 1.5rem !important;
}

.pr-6 {
  padding-right: 1.5rem !important;
}

.pb-6 {
  padding-bottom: 1.5rem !important;
}

.pl-6 {
  padding-left: 1.5rem !important;
}

.px-6 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.py-6 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

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

.mt-6 {
  margin-top: 1.5rem !important;
}

.mr-6 {
  margin-right: 1.5rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.ml-6 {
  margin-left: 1.5rem !important;
}

.mx-6 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

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

.pt-7 {
  padding-top: 1.75rem !important;
}

.pr-7 {
  padding-right: 1.75rem !important;
}

.pb-7 {
  padding-bottom: 1.75rem !important;
}

.pl-7 {
  padding-left: 1.75rem !important;
}

.px-7 {
  padding-right: 1.75rem !important;
  padding-left: 1.75rem !important;
}

.py-7 {
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

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

.mt-7 {
  margin-top: 1.75rem !important;
}

.mr-7 {
  margin-right: 1.75rem !important;
}

.mb-7 {
  margin-bottom: 1.75rem !important;
}

.ml-7 {
  margin-left: 1.75rem !important;
}

.mx-7 {
  margin-right: 1.75rem !important;
  margin-left: 1.75rem !important;
}

.my-7 {
  margin-top: 1.75rem !important;
  margin-bottom: 1.75rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

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

.pt-8 {
  padding-top: 2rem !important;
}

.pr-8 {
  padding-right: 2rem !important;
}

.pb-8 {
  padding-bottom: 2rem !important;
}

.pl-8 {
  padding-left: 2rem !important;
}

.px-8 {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}

.py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

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

.mt-8 {
  margin-top: 2rem !important;
}

.mr-8 {
  margin-right: 2rem !important;
}

.mb-8 {
  margin-bottom: 2rem !important;
}

.ml-8 {
  margin-left: 2rem !important;
}

.mx-8 {
  margin-right: 2rem !important;
  margin-left: 2rem !important;
}

.my-8 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

.p-9 {
  padding: 2.25rem !important;
}

.pt-9 {
  padding-top: 2.25rem !important;
}

.pr-9 {
  padding-right: 2.25rem !important;
}

.pb-9 {
  padding-bottom: 2.25rem !important;
}

.pl-9 {
  padding-left: 2.25rem !important;
}

.px-9 {
  padding-right: 2.25rem !important;
  padding-left: 2.25rem !important;
}

.py-9 {
  padding-top: 2.25rem !important;
  padding-bottom: 2.25rem !important;
}

.m-9 {
  margin: 2.25rem !important;
}

.mt-9 {
  margin-top: 2.25rem !important;
}

.mr-9 {
  margin-right: 2.25rem !important;
}

.mb-9 {
  margin-bottom: 2.25rem !important;
}

.ml-9 {
  margin-left: 2.25rem !important;
}

.mx-9 {
  margin-right: 2.25rem !important;
  margin-left: 2.25rem !important;
}

.my-9 {
  margin-top: 2.25rem !important;
  margin-bottom: 2.25rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

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

.pt-10 {
  padding-top: 2.5rem !important;
}

.pr-10 {
  padding-right: 2.5rem !important;
}

.pb-10 {
  padding-bottom: 2.5rem !important;
}

.pl-10 {
  padding-left: 2.5rem !important;
}

.px-10 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}

.py-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

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

.mt-10 {
  margin-top: 2.5rem !important;
}

.mr-10 {
  margin-right: 2.5rem !important;
}

.mb-10 {
  margin-bottom: 2.5rem !important;
}

.ml-10 {
  margin-left: 2.5rem !important;
}

.mx-10 {
  margin-right: 2.5rem !important;
  margin-left: 2.5rem !important;
}

.my-10 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

.p-11 {
  padding: 2.75rem !important;
}

.pt-11 {
  padding-top: 2.75rem !important;
}

.pr-11 {
  padding-right: 2.75rem !important;
}

.pb-11 {
  padding-bottom: 2.75rem !important;
}

.pl-11 {
  padding-left: 2.75rem !important;
}

.px-11 {
  padding-right: 2.75rem !important;
  padding-left: 2.75rem !important;
}

.py-11 {
  padding-top: 2.75rem !important;
  padding-bottom: 2.75rem !important;
}

.m-11 {
  margin: 2.75rem !important;
}

.mt-11 {
  margin-top: 2.75rem !important;
}

.mr-11 {
  margin-right: 2.75rem !important;
}

.mb-11 {
  margin-bottom: 2.75rem !important;
}

.ml-11 {
  margin-left: 2.75rem !important;
}

.mx-11 {
  margin-right: 2.75rem !important;
  margin-left: 2.75rem !important;
}

.my-11 {
  margin-top: 2.75rem !important;
  margin-bottom: 2.75rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

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

.pt-12 {
  padding-top: 3rem !important;
}

.pr-12 {
  padding-right: 3rem !important;
}

.pb-12 {
  padding-bottom: 3rem !important;
}

.pl-12 {
  padding-left: 3rem !important;
}

.px-12 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-12 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

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

.mt-12 {
  margin-top: 3rem !important;
}

.mr-12 {
  margin-right: 3rem !important;
}

.mb-12 {
  margin-bottom: 3rem !important;
}

.ml-12 {
  margin-left: 3rem !important;
}

.mx-12 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.my-12 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

.p-13 {
  padding: 3.25rem !important;
}

.pt-13 {
  padding-top: 3.25rem !important;
}

.pr-13 {
  padding-right: 3.25rem !important;
}

.pb-13 {
  padding-bottom: 3.25rem !important;
}

.pl-13 {
  padding-left: 3.25rem !important;
}

.px-13 {
  padding-right: 3.25rem !important;
  padding-left: 3.25rem !important;
}

.py-13 {
  padding-top: 3.25rem !important;
  padding-bottom: 3.25rem !important;
}

.m-13 {
  margin: 3.25rem !important;
}

.mt-13 {
  margin-top: 3.25rem !important;
}

.mr-13 {
  margin-right: 3.25rem !important;
}

.mb-13 {
  margin-bottom: 3.25rem !important;
}

.ml-13 {
  margin-left: 3.25rem !important;
}

.mx-13 {
  margin-right: 3.25rem !important;
  margin-left: 3.25rem !important;
}

.my-13 {
  margin-top: 3.25rem !important;
  margin-bottom: 3.25rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

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

.pt-14 {
  padding-top: 3.5rem !important;
}

.pr-14 {
  padding-right: 3.5rem !important;
}

.pb-14 {
  padding-bottom: 3.5rem !important;
}

.pl-14 {
  padding-left: 3.5rem !important;
}

.px-14 {
  padding-right: 3.5rem !important;
  padding-left: 3.5rem !important;
}

.py-14 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

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

.mt-14 {
  margin-top: 3.5rem !important;
}

.mr-14 {
  margin-right: 3.5rem !important;
}

.mb-14 {
  margin-bottom: 3.5rem !important;
}

.ml-14 {
  margin-left: 3.5rem !important;
}

.mx-14 {
  margin-right: 3.5rem !important;
  margin-left: 3.5rem !important;
}

.my-14 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

.p-15 {
  padding: 3.75rem !important;
}

.pt-15 {
  padding-top: 3.75rem !important;
}

.pr-15 {
  padding-right: 3.75rem !important;
}

.pb-15 {
  padding-bottom: 3.75rem !important;
}

.pl-15 {
  padding-left: 3.75rem !important;
}

.px-15 {
  padding-right: 3.75rem !important;
  padding-left: 3.75rem !important;
}

.py-15 {
  padding-top: 3.75rem !important;
  padding-bottom: 3.75rem !important;
}

.m-15 {
  margin: 3.75rem !important;
}

.mt-15 {
  margin-top: 3.75rem !important;
}

.mr-15 {
  margin-right: 3.75rem !important;
}

.mb-15 {
  margin-bottom: 3.75rem !important;
}

.ml-15 {
  margin-left: 3.75rem !important;
}

.mx-15 {
  margin-right: 3.75rem !important;
  margin-left: 3.75rem !important;
}

.my-15 {
  margin-top: 3.75rem !important;
  margin-bottom: 3.75rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

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

.pt-16 {
  padding-top: 4rem !important;
}

.pr-16 {
  padding-right: 4rem !important;
}

.pb-16 {
  padding-bottom: 4rem !important;
}

.pl-16 {
  padding-left: 4rem !important;
}

.px-16 {
  padding-right: 4rem !important;
  padding-left: 4rem !important;
}

.py-16 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

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

.mt-16 {
  margin-top: 4rem !important;
}

.mr-16 {
  margin-right: 4rem !important;
}

.mb-16 {
  margin-bottom: 4rem !important;
}

.ml-16 {
  margin-left: 4rem !important;
}

.mx-16 {
  margin-right: 4rem !important;
  margin-left: 4rem !important;
}

.my-16 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

.p-17 {
  padding: 4.25rem !important;
}

.pt-17 {
  padding-top: 4.25rem !important;
}

.pr-17 {
  padding-right: 4.25rem !important;
}

.pb-17 {
  padding-bottom: 4.25rem !important;
}

.pl-17 {
  padding-left: 4.25rem !important;
}

.px-17 {
  padding-right: 4.25rem !important;
  padding-left: 4.25rem !important;
}

.py-17 {
  padding-top: 4.25rem !important;
  padding-bottom: 4.25rem !important;
}

.m-17 {
  margin: 4.25rem !important;
}

.mt-17 {
  margin-top: 4.25rem !important;
}

.mr-17 {
  margin-right: 4.25rem !important;
}

.mb-17 {
  margin-bottom: 4.25rem !important;
}

.ml-17 {
  margin-left: 4.25rem !important;
}

.mx-17 {
  margin-right: 4.25rem !important;
  margin-left: 4.25rem !important;
}

.my-17 {
  margin-top: 4.25rem !important;
  margin-bottom: 4.25rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

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

.pt-18 {
  padding-top: 4.5rem !important;
}

.pr-18 {
  padding-right: 4.5rem !important;
}

.pb-18 {
  padding-bottom: 4.5rem !important;
}

.pl-18 {
  padding-left: 4.5rem !important;
}

.px-18 {
  padding-right: 4.5rem !important;
  padding-left: 4.5rem !important;
}

.py-18 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

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

.mt-18 {
  margin-top: 4.5rem !important;
}

.mr-18 {
  margin-right: 4.5rem !important;
}

.mb-18 {
  margin-bottom: 4.5rem !important;
}

.ml-18 {
  margin-left: 4.5rem !important;
}

.mx-18 {
  margin-right: 4.5rem !important;
  margin-left: 4.5rem !important;
}

.my-18 {
  margin-top: 4.5rem !important;
  margin-bottom: 4.5rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

.p-19 {
  padding: 4.75rem !important;
}

.pt-19 {
  padding-top: 4.75rem !important;
}

.pr-19 {
  padding-right: 4.75rem !important;
}

.pb-19 {
  padding-bottom: 4.75rem !important;
}

.pl-19 {
  padding-left: 4.75rem !important;
}

.px-19 {
  padding-right: 4.75rem !important;
  padding-left: 4.75rem !important;
}

.py-19 {
  padding-top: 4.75rem !important;
  padding-bottom: 4.75rem !important;
}

.m-19 {
  margin: 4.75rem !important;
}

.mt-19 {
  margin-top: 4.75rem !important;
}

.mr-19 {
  margin-right: 4.75rem !important;
}

.mb-19 {
  margin-bottom: 4.75rem !important;
}

.ml-19 {
  margin-left: 4.75rem !important;
}

.mx-19 {
  margin-right: 4.75rem !important;
  margin-left: 4.75rem !important;
}

.my-19 {
  margin-top: 4.75rem !important;
  margin-bottom: 4.75rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

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

.pt-20 {
  padding-top: 5rem !important;
}

.pr-20 {
  padding-right: 5rem !important;
}

.pb-20 {
  padding-bottom: 5rem !important;
}

.pl-20 {
  padding-left: 5rem !important;
}

.px-20 {
  padding-right: 5rem !important;
  padding-left: 5rem !important;
}

.py-20 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

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

.mt-20 {
  margin-top: 5rem !important;
}

.mr-20 {
  margin-right: 5rem !important;
}

.mb-20 {
  margin-bottom: 5rem !important;
}

.ml-20 {
  margin-left: 5rem !important;
}

.mx-20 {
  margin-right: 5rem !important;
  margin-left: 5rem !important;
}

.my-20 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

.p-21 {
  padding: 5.25rem !important;
}

.pt-21 {
  padding-top: 5.25rem !important;
}

.pr-21 {
  padding-right: 5.25rem !important;
}

.pb-21 {
  padding-bottom: 5.25rem !important;
}

.pl-21 {
  padding-left: 5.25rem !important;
}

.px-21 {
  padding-right: 5.25rem !important;
  padding-left: 5.25rem !important;
}

.py-21 {
  padding-top: 5.25rem !important;
  padding-bottom: 5.25rem !important;
}

.m-21 {
  margin: 5.25rem !important;
}

.mt-21 {
  margin-top: 5.25rem !important;
}

.mr-21 {
  margin-right: 5.25rem !important;
}

.mb-21 {
  margin-bottom: 5.25rem !important;
}

.ml-21 {
  margin-left: 5.25rem !important;
}

.mx-21 {
  margin-right: 5.25rem !important;
  margin-left: 5.25rem !important;
}

.my-21 {
  margin-top: 5.25rem !important;
  margin-bottom: 5.25rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

.p-22 {
  padding: 5.5rem !important;
}

.pt-22 {
  padding-top: 5.5rem !important;
}

.pr-22 {
  padding-right: 5.5rem !important;
}

.pb-22 {
  padding-bottom: 5.5rem !important;
}

.pl-22 {
  padding-left: 5.5rem !important;
}

.px-22 {
  padding-right: 5.5rem !important;
  padding-left: 5.5rem !important;
}

.py-22 {
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
}

.m-22 {
  margin: 5.5rem !important;
}

.mt-22 {
  margin-top: 5.5rem !important;
}

.mr-22 {
  margin-right: 5.5rem !important;
}

.mb-22 {
  margin-bottom: 5.5rem !important;
}

.ml-22 {
  margin-left: 5.5rem !important;
}

.mx-22 {
  margin-right: 5.5rem !important;
  margin-left: 5.5rem !important;
}

.my-22 {
  margin-top: 5.5rem !important;
  margin-bottom: 5.5rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

.p-23 {
  padding: 5.75rem !important;
}

.pt-23 {
  padding-top: 5.75rem !important;
}

.pr-23 {
  padding-right: 5.75rem !important;
}

.pb-23 {
  padding-bottom: 5.75rem !important;
}

.pl-23 {
  padding-left: 5.75rem !important;
}

.px-23 {
  padding-right: 5.75rem !important;
  padding-left: 5.75rem !important;
}

.py-23 {
  padding-top: 5.75rem !important;
  padding-bottom: 5.75rem !important;
}

.m-23 {
  margin: 5.75rem !important;
}

.mt-23 {
  margin-top: 5.75rem !important;
}

.mr-23 {
  margin-right: 5.75rem !important;
}

.mb-23 {
  margin-bottom: 5.75rem !important;
}

.ml-23 {
  margin-left: 5.75rem !important;
}

.mx-23 {
  margin-right: 5.75rem !important;
  margin-left: 5.75rem !important;
}

.my-23 {
  margin-top: 5.75rem !important;
  margin-bottom: 5.75rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

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

.pt-24 {
  padding-top: 6rem !important;
}

.pr-24 {
  padding-right: 6rem !important;
}

.pb-24 {
  padding-bottom: 6rem !important;
}

.pl-24 {
  padding-left: 6rem !important;
}

.px-24 {
  padding-right: 6rem !important;
  padding-left: 6rem !important;
}

.py-24 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

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

.mt-24 {
  margin-top: 6rem !important;
}

.mr-24 {
  margin-right: 6rem !important;
}

.mb-24 {
  margin-bottom: 6rem !important;
}

.ml-24 {
  margin-left: 6rem !important;
}

.mx-24 {
  margin-right: 6rem !important;
  margin-left: 6rem !important;
}

.my-24 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

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

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

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

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

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

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

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

.gap-7 {
  gap: 1.75rem !important;
}

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

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

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

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

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

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

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

.gap-21 {
  gap: 5.25rem !important;
}

.gap-22 {
  gap: 5.5rem !important;
}

.gap-23 {
  gap: 5.75rem !important;
}

.gap-24 {
  gap: 6rem !important;
}

@media screen and (max-width: 1599px) {
  .xxl\:pt-auto {
    padding-top: auto !important;
  }
  .xxl\:pr-auto {
    padding-right: auto !important;
  }
  .xxl\:pb-auto {
    padding-bottom: auto !important;
  }
  .xxl\:pl-auto {
    padding-left: auto !important;
  }
  .xxl\:px-auto {
    padding-right: auto !important;
    padding-left: auto !important;
  }
  .xxl\:py-auto {
    padding-top: auto !important;
    padding-bottom: auto !important;
  }
  .xxl\:mt-auto {
    margin-top: auto !important;
  }
  .xxl\:mr-auto {
    margin-right: auto !important;
  }
  .xxl\:mb-auto {
    margin-bottom: auto !important;
  }
  .xxl\:ml-auto {
    margin-left: auto !important;
  }
  .xxl\:mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .xxl\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-0 {
    padding: 0rem !important;
  }
  .xxl\:pt-0 {
    padding-top: 0rem !important;
  }
  .xxl\:pr-0 {
    padding-right: 0rem !important;
  }
  .xxl\:pb-0 {
    padding-bottom: 0rem !important;
  }
  .xxl\:pl-0 {
    padding-left: 0rem !important;
  }
  .xxl\:px-0 {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
  }
  .xxl\:py-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .xxl\:m-0 {
    margin: 0rem !important;
  }
  .xxl\:mt-0 {
    margin-top: 0rem !important;
  }
  .xxl\:mr-0 {
    margin-right: 0rem !important;
  }
  .xxl\:mb-0 {
    margin-bottom: 0rem !important;
  }
  .xxl\:ml-0 {
    margin-left: 0rem !important;
  }
  .xxl\:mx-0 {
    margin-right: 0rem !important;
    margin-left: 0rem !important;
  }
  .xxl\:my-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-1 {
    padding: 0.25rem !important;
  }
  .xxl\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .xxl\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .xxl\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .xxl\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .xxl\:px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .xxl\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .xxl\:m-1 {
    margin: 0.25rem !important;
  }
  .xxl\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .xxl\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .xxl\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .xxl\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .xxl\:mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .xxl\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-2 {
    padding: 0.5rem !important;
  }
  .xxl\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .xxl\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .xxl\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .xxl\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .xxl\:px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .xxl\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .xxl\:m-2 {
    margin: 0.5rem !important;
  }
  .xxl\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .xxl\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .xxl\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .xxl\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .xxl\:mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .xxl\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-3 {
    padding: 0.75rem !important;
  }
  .xxl\:pt-3 {
    padding-top: 0.75rem !important;
  }
  .xxl\:pr-3 {
    padding-right: 0.75rem !important;
  }
  .xxl\:pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .xxl\:pl-3 {
    padding-left: 0.75rem !important;
  }
  .xxl\:px-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .xxl\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .xxl\:m-3 {
    margin: 0.75rem !important;
  }
  .xxl\:mt-3 {
    margin-top: 0.75rem !important;
  }
  .xxl\:mr-3 {
    margin-right: 0.75rem !important;
  }
  .xxl\:mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .xxl\:ml-3 {
    margin-left: 0.75rem !important;
  }
  .xxl\:mx-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .xxl\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-4 {
    padding: 1rem !important;
  }
  .xxl\:pt-4 {
    padding-top: 1rem !important;
  }
  .xxl\:pr-4 {
    padding-right: 1rem !important;
  }
  .xxl\:pb-4 {
    padding-bottom: 1rem !important;
  }
  .xxl\:pl-4 {
    padding-left: 1rem !important;
  }
  .xxl\:px-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .xxl\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .xxl\:m-4 {
    margin: 1rem !important;
  }
  .xxl\:mt-4 {
    margin-top: 1rem !important;
  }
  .xxl\:mr-4 {
    margin-right: 1rem !important;
  }
  .xxl\:mb-4 {
    margin-bottom: 1rem !important;
  }
  .xxl\:ml-4 {
    margin-left: 1rem !important;
  }
  .xxl\:mx-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .xxl\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-5 {
    padding: 1.25rem !important;
  }
  .xxl\:pt-5 {
    padding-top: 1.25rem !important;
  }
  .xxl\:pr-5 {
    padding-right: 1.25rem !important;
  }
  .xxl\:pb-5 {
    padding-bottom: 1.25rem !important;
  }
  .xxl\:pl-5 {
    padding-left: 1.25rem !important;
  }
  .xxl\:px-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .xxl\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .xxl\:m-5 {
    margin: 1.25rem !important;
  }
  .xxl\:mt-5 {
    margin-top: 1.25rem !important;
  }
  .xxl\:mr-5 {
    margin-right: 1.25rem !important;
  }
  .xxl\:mb-5 {
    margin-bottom: 1.25rem !important;
  }
  .xxl\:ml-5 {
    margin-left: 1.25rem !important;
  }
  .xxl\:mx-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .xxl\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-6 {
    padding: 1.5rem !important;
  }
  .xxl\:pt-6 {
    padding-top: 1.5rem !important;
  }
  .xxl\:pr-6 {
    padding-right: 1.5rem !important;
  }
  .xxl\:pb-6 {
    padding-bottom: 1.5rem !important;
  }
  .xxl\:pl-6 {
    padding-left: 1.5rem !important;
  }
  .xxl\:px-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .xxl\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .xxl\:m-6 {
    margin: 1.5rem !important;
  }
  .xxl\:mt-6 {
    margin-top: 1.5rem !important;
  }
  .xxl\:mr-6 {
    margin-right: 1.5rem !important;
  }
  .xxl\:mb-6 {
    margin-bottom: 1.5rem !important;
  }
  .xxl\:ml-6 {
    margin-left: 1.5rem !important;
  }
  .xxl\:mx-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .xxl\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-7 {
    padding: 1.75rem !important;
  }
  .xxl\:pt-7 {
    padding-top: 1.75rem !important;
  }
  .xxl\:pr-7 {
    padding-right: 1.75rem !important;
  }
  .xxl\:pb-7 {
    padding-bottom: 1.75rem !important;
  }
  .xxl\:pl-7 {
    padding-left: 1.75rem !important;
  }
  .xxl\:px-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .xxl\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .xxl\:m-7 {
    margin: 1.75rem !important;
  }
  .xxl\:mt-7 {
    margin-top: 1.75rem !important;
  }
  .xxl\:mr-7 {
    margin-right: 1.75rem !important;
  }
  .xxl\:mb-7 {
    margin-bottom: 1.75rem !important;
  }
  .xxl\:ml-7 {
    margin-left: 1.75rem !important;
  }
  .xxl\:mx-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .xxl\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-8 {
    padding: 2rem !important;
  }
  .xxl\:pt-8 {
    padding-top: 2rem !important;
  }
  .xxl\:pr-8 {
    padding-right: 2rem !important;
  }
  .xxl\:pb-8 {
    padding-bottom: 2rem !important;
  }
  .xxl\:pl-8 {
    padding-left: 2rem !important;
  }
  .xxl\:px-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .xxl\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .xxl\:m-8 {
    margin: 2rem !important;
  }
  .xxl\:mt-8 {
    margin-top: 2rem !important;
  }
  .xxl\:mr-8 {
    margin-right: 2rem !important;
  }
  .xxl\:mb-8 {
    margin-bottom: 2rem !important;
  }
  .xxl\:ml-8 {
    margin-left: 2rem !important;
  }
  .xxl\:mx-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .xxl\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-9 {
    padding: 2.25rem !important;
  }
  .xxl\:pt-9 {
    padding-top: 2.25rem !important;
  }
  .xxl\:pr-9 {
    padding-right: 2.25rem !important;
  }
  .xxl\:pb-9 {
    padding-bottom: 2.25rem !important;
  }
  .xxl\:pl-9 {
    padding-left: 2.25rem !important;
  }
  .xxl\:px-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .xxl\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .xxl\:m-9 {
    margin: 2.25rem !important;
  }
  .xxl\:mt-9 {
    margin-top: 2.25rem !important;
  }
  .xxl\:mr-9 {
    margin-right: 2.25rem !important;
  }
  .xxl\:mb-9 {
    margin-bottom: 2.25rem !important;
  }
  .xxl\:ml-9 {
    margin-left: 2.25rem !important;
  }
  .xxl\:mx-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .xxl\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-10 {
    padding: 2.5rem !important;
  }
  .xxl\:pt-10 {
    padding-top: 2.5rem !important;
  }
  .xxl\:pr-10 {
    padding-right: 2.5rem !important;
  }
  .xxl\:pb-10 {
    padding-bottom: 2.5rem !important;
  }
  .xxl\:pl-10 {
    padding-left: 2.5rem !important;
  }
  .xxl\:px-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .xxl\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .xxl\:m-10 {
    margin: 2.5rem !important;
  }
  .xxl\:mt-10 {
    margin-top: 2.5rem !important;
  }
  .xxl\:mr-10 {
    margin-right: 2.5rem !important;
  }
  .xxl\:mb-10 {
    margin-bottom: 2.5rem !important;
  }
  .xxl\:ml-10 {
    margin-left: 2.5rem !important;
  }
  .xxl\:mx-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .xxl\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-11 {
    padding: 2.75rem !important;
  }
  .xxl\:pt-11 {
    padding-top: 2.75rem !important;
  }
  .xxl\:pr-11 {
    padding-right: 2.75rem !important;
  }
  .xxl\:pb-11 {
    padding-bottom: 2.75rem !important;
  }
  .xxl\:pl-11 {
    padding-left: 2.75rem !important;
  }
  .xxl\:px-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }
  .xxl\:py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .xxl\:m-11 {
    margin: 2.75rem !important;
  }
  .xxl\:mt-11 {
    margin-top: 2.75rem !important;
  }
  .xxl\:mr-11 {
    margin-right: 2.75rem !important;
  }
  .xxl\:mb-11 {
    margin-bottom: 2.75rem !important;
  }
  .xxl\:ml-11 {
    margin-left: 2.75rem !important;
  }
  .xxl\:mx-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .xxl\:my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-12 {
    padding: 3rem !important;
  }
  .xxl\:pt-12 {
    padding-top: 3rem !important;
  }
  .xxl\:pr-12 {
    padding-right: 3rem !important;
  }
  .xxl\:pb-12 {
    padding-bottom: 3rem !important;
  }
  .xxl\:pl-12 {
    padding-left: 3rem !important;
  }
  .xxl\:px-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .xxl\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .xxl\:m-12 {
    margin: 3rem !important;
  }
  .xxl\:mt-12 {
    margin-top: 3rem !important;
  }
  .xxl\:mr-12 {
    margin-right: 3rem !important;
  }
  .xxl\:mb-12 {
    margin-bottom: 3rem !important;
  }
  .xxl\:ml-12 {
    margin-left: 3rem !important;
  }
  .xxl\:mx-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .xxl\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-13 {
    padding: 3.25rem !important;
  }
  .xxl\:pt-13 {
    padding-top: 3.25rem !important;
  }
  .xxl\:pr-13 {
    padding-right: 3.25rem !important;
  }
  .xxl\:pb-13 {
    padding-bottom: 3.25rem !important;
  }
  .xxl\:pl-13 {
    padding-left: 3.25rem !important;
  }
  .xxl\:px-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }
  .xxl\:py-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }
  .xxl\:m-13 {
    margin: 3.25rem !important;
  }
  .xxl\:mt-13 {
    margin-top: 3.25rem !important;
  }
  .xxl\:mr-13 {
    margin-right: 3.25rem !important;
  }
  .xxl\:mb-13 {
    margin-bottom: 3.25rem !important;
  }
  .xxl\:ml-13 {
    margin-left: 3.25rem !important;
  }
  .xxl\:mx-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }
  .xxl\:my-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-14 {
    padding: 3.5rem !important;
  }
  .xxl\:pt-14 {
    padding-top: 3.5rem !important;
  }
  .xxl\:pr-14 {
    padding-right: 3.5rem !important;
  }
  .xxl\:pb-14 {
    padding-bottom: 3.5rem !important;
  }
  .xxl\:pl-14 {
    padding-left: 3.5rem !important;
  }
  .xxl\:px-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .xxl\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .xxl\:m-14 {
    margin: 3.5rem !important;
  }
  .xxl\:mt-14 {
    margin-top: 3.5rem !important;
  }
  .xxl\:mr-14 {
    margin-right: 3.5rem !important;
  }
  .xxl\:mb-14 {
    margin-bottom: 3.5rem !important;
  }
  .xxl\:ml-14 {
    margin-left: 3.5rem !important;
  }
  .xxl\:mx-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .xxl\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-15 {
    padding: 3.75rem !important;
  }
  .xxl\:pt-15 {
    padding-top: 3.75rem !important;
  }
  .xxl\:pr-15 {
    padding-right: 3.75rem !important;
  }
  .xxl\:pb-15 {
    padding-bottom: 3.75rem !important;
  }
  .xxl\:pl-15 {
    padding-left: 3.75rem !important;
  }
  .xxl\:px-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .xxl\:py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .xxl\:m-15 {
    margin: 3.75rem !important;
  }
  .xxl\:mt-15 {
    margin-top: 3.75rem !important;
  }
  .xxl\:mr-15 {
    margin-right: 3.75rem !important;
  }
  .xxl\:mb-15 {
    margin-bottom: 3.75rem !important;
  }
  .xxl\:ml-15 {
    margin-left: 3.75rem !important;
  }
  .xxl\:mx-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .xxl\:my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-16 {
    padding: 4rem !important;
  }
  .xxl\:pt-16 {
    padding-top: 4rem !important;
  }
  .xxl\:pr-16 {
    padding-right: 4rem !important;
  }
  .xxl\:pb-16 {
    padding-bottom: 4rem !important;
  }
  .xxl\:pl-16 {
    padding-left: 4rem !important;
  }
  .xxl\:px-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .xxl\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .xxl\:m-16 {
    margin: 4rem !important;
  }
  .xxl\:mt-16 {
    margin-top: 4rem !important;
  }
  .xxl\:mr-16 {
    margin-right: 4rem !important;
  }
  .xxl\:mb-16 {
    margin-bottom: 4rem !important;
  }
  .xxl\:ml-16 {
    margin-left: 4rem !important;
  }
  .xxl\:mx-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .xxl\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-17 {
    padding: 4.25rem !important;
  }
  .xxl\:pt-17 {
    padding-top: 4.25rem !important;
  }
  .xxl\:pr-17 {
    padding-right: 4.25rem !important;
  }
  .xxl\:pb-17 {
    padding-bottom: 4.25rem !important;
  }
  .xxl\:pl-17 {
    padding-left: 4.25rem !important;
  }
  .xxl\:px-17 {
    padding-right: 4.25rem !important;
    padding-left: 4.25rem !important;
  }
  .xxl\:py-17 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }
  .xxl\:m-17 {
    margin: 4.25rem !important;
  }
  .xxl\:mt-17 {
    margin-top: 4.25rem !important;
  }
  .xxl\:mr-17 {
    margin-right: 4.25rem !important;
  }
  .xxl\:mb-17 {
    margin-bottom: 4.25rem !important;
  }
  .xxl\:ml-17 {
    margin-left: 4.25rem !important;
  }
  .xxl\:mx-17 {
    margin-right: 4.25rem !important;
    margin-left: 4.25rem !important;
  }
  .xxl\:my-17 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-18 {
    padding: 4.5rem !important;
  }
  .xxl\:pt-18 {
    padding-top: 4.5rem !important;
  }
  .xxl\:pr-18 {
    padding-right: 4.5rem !important;
  }
  .xxl\:pb-18 {
    padding-bottom: 4.5rem !important;
  }
  .xxl\:pl-18 {
    padding-left: 4.5rem !important;
  }
  .xxl\:px-18 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .xxl\:py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .xxl\:m-18 {
    margin: 4.5rem !important;
  }
  .xxl\:mt-18 {
    margin-top: 4.5rem !important;
  }
  .xxl\:mr-18 {
    margin-right: 4.5rem !important;
  }
  .xxl\:mb-18 {
    margin-bottom: 4.5rem !important;
  }
  .xxl\:ml-18 {
    margin-left: 4.5rem !important;
  }
  .xxl\:mx-18 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .xxl\:my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-19 {
    padding: 4.75rem !important;
  }
  .xxl\:pt-19 {
    padding-top: 4.75rem !important;
  }
  .xxl\:pr-19 {
    padding-right: 4.75rem !important;
  }
  .xxl\:pb-19 {
    padding-bottom: 4.75rem !important;
  }
  .xxl\:pl-19 {
    padding-left: 4.75rem !important;
  }
  .xxl\:px-19 {
    padding-right: 4.75rem !important;
    padding-left: 4.75rem !important;
  }
  .xxl\:py-19 {
    padding-top: 4.75rem !important;
    padding-bottom: 4.75rem !important;
  }
  .xxl\:m-19 {
    margin: 4.75rem !important;
  }
  .xxl\:mt-19 {
    margin-top: 4.75rem !important;
  }
  .xxl\:mr-19 {
    margin-right: 4.75rem !important;
  }
  .xxl\:mb-19 {
    margin-bottom: 4.75rem !important;
  }
  .xxl\:ml-19 {
    margin-left: 4.75rem !important;
  }
  .xxl\:mx-19 {
    margin-right: 4.75rem !important;
    margin-left: 4.75rem !important;
  }
  .xxl\:my-19 {
    margin-top: 4.75rem !important;
    margin-bottom: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-20 {
    padding: 5rem !important;
  }
  .xxl\:pt-20 {
    padding-top: 5rem !important;
  }
  .xxl\:pr-20 {
    padding-right: 5rem !important;
  }
  .xxl\:pb-20 {
    padding-bottom: 5rem !important;
  }
  .xxl\:pl-20 {
    padding-left: 5rem !important;
  }
  .xxl\:px-20 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .xxl\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .xxl\:m-20 {
    margin: 5rem !important;
  }
  .xxl\:mt-20 {
    margin-top: 5rem !important;
  }
  .xxl\:mr-20 {
    margin-right: 5rem !important;
  }
  .xxl\:mb-20 {
    margin-bottom: 5rem !important;
  }
  .xxl\:ml-20 {
    margin-left: 5rem !important;
  }
  .xxl\:mx-20 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .xxl\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-21 {
    padding: 5.25rem !important;
  }
  .xxl\:pt-21 {
    padding-top: 5.25rem !important;
  }
  .xxl\:pr-21 {
    padding-right: 5.25rem !important;
  }
  .xxl\:pb-21 {
    padding-bottom: 5.25rem !important;
  }
  .xxl\:pl-21 {
    padding-left: 5.25rem !important;
  }
  .xxl\:px-21 {
    padding-right: 5.25rem !important;
    padding-left: 5.25rem !important;
  }
  .xxl\:py-21 {
    padding-top: 5.25rem !important;
    padding-bottom: 5.25rem !important;
  }
  .xxl\:m-21 {
    margin: 5.25rem !important;
  }
  .xxl\:mt-21 {
    margin-top: 5.25rem !important;
  }
  .xxl\:mr-21 {
    margin-right: 5.25rem !important;
  }
  .xxl\:mb-21 {
    margin-bottom: 5.25rem !important;
  }
  .xxl\:ml-21 {
    margin-left: 5.25rem !important;
  }
  .xxl\:mx-21 {
    margin-right: 5.25rem !important;
    margin-left: 5.25rem !important;
  }
  .xxl\:my-21 {
    margin-top: 5.25rem !important;
    margin-bottom: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-22 {
    padding: 5.5rem !important;
  }
  .xxl\:pt-22 {
    padding-top: 5.5rem !important;
  }
  .xxl\:pr-22 {
    padding-right: 5.5rem !important;
  }
  .xxl\:pb-22 {
    padding-bottom: 5.5rem !important;
  }
  .xxl\:pl-22 {
    padding-left: 5.5rem !important;
  }
  .xxl\:px-22 {
    padding-right: 5.5rem !important;
    padding-left: 5.5rem !important;
  }
  .xxl\:py-22 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .xxl\:m-22 {
    margin: 5.5rem !important;
  }
  .xxl\:mt-22 {
    margin-top: 5.5rem !important;
  }
  .xxl\:mr-22 {
    margin-right: 5.5rem !important;
  }
  .xxl\:mb-22 {
    margin-bottom: 5.5rem !important;
  }
  .xxl\:ml-22 {
    margin-left: 5.5rem !important;
  }
  .xxl\:mx-22 {
    margin-right: 5.5rem !important;
    margin-left: 5.5rem !important;
  }
  .xxl\:my-22 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-23 {
    padding: 5.75rem !important;
  }
  .xxl\:pt-23 {
    padding-top: 5.75rem !important;
  }
  .xxl\:pr-23 {
    padding-right: 5.75rem !important;
  }
  .xxl\:pb-23 {
    padding-bottom: 5.75rem !important;
  }
  .xxl\:pl-23 {
    padding-left: 5.75rem !important;
  }
  .xxl\:px-23 {
    padding-right: 5.75rem !important;
    padding-left: 5.75rem !important;
  }
  .xxl\:py-23 {
    padding-top: 5.75rem !important;
    padding-bottom: 5.75rem !important;
  }
  .xxl\:m-23 {
    margin: 5.75rem !important;
  }
  .xxl\:mt-23 {
    margin-top: 5.75rem !important;
  }
  .xxl\:mr-23 {
    margin-right: 5.75rem !important;
  }
  .xxl\:mb-23 {
    margin-bottom: 5.75rem !important;
  }
  .xxl\:ml-23 {
    margin-left: 5.75rem !important;
  }
  .xxl\:mx-23 {
    margin-right: 5.75rem !important;
    margin-left: 5.75rem !important;
  }
  .xxl\:my-23 {
    margin-top: 5.75rem !important;
    margin-bottom: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:p-24 {
    padding: 6rem !important;
  }
  .xxl\:pt-24 {
    padding-top: 6rem !important;
  }
  .xxl\:pr-24 {
    padding-right: 6rem !important;
  }
  .xxl\:pb-24 {
    padding-bottom: 6rem !important;
  }
  .xxl\:pl-24 {
    padding-left: 6rem !important;
  }
  .xxl\:px-24 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .xxl\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .xxl\:m-24 {
    margin: 6rem !important;
  }
  .xxl\:mt-24 {
    margin-top: 6rem !important;
  }
  .xxl\:mr-24 {
    margin-right: 6rem !important;
  }
  .xxl\:mb-24 {
    margin-bottom: 6rem !important;
  }
  .xxl\:ml-24 {
    margin-left: 6rem !important;
  }
  .xxl\:mx-24 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .xxl\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1599px) {
  .xxl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:pt-auto {
    padding-top: auto !important;
  }
  .xl\:pr-auto {
    padding-right: auto !important;
  }
  .xl\:pb-auto {
    padding-bottom: auto !important;
  }
  .xl\:pl-auto {
    padding-left: auto !important;
  }
  .xl\:px-auto {
    padding-right: auto !important;
    padding-left: auto !important;
  }
  .xl\:py-auto {
    padding-top: auto !important;
    padding-bottom: auto !important;
  }
  .xl\:mt-auto {
    margin-top: auto !important;
  }
  .xl\:mr-auto {
    margin-right: auto !important;
  }
  .xl\:mb-auto {
    margin-bottom: auto !important;
  }
  .xl\:ml-auto {
    margin-left: auto !important;
  }
  .xl\:mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .xl\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-0 {
    padding: 0rem !important;
  }
  .xl\:pt-0 {
    padding-top: 0rem !important;
  }
  .xl\:pr-0 {
    padding-right: 0rem !important;
  }
  .xl\:pb-0 {
    padding-bottom: 0rem !important;
  }
  .xl\:pl-0 {
    padding-left: 0rem !important;
  }
  .xl\:px-0 {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
  }
  .xl\:py-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .xl\:m-0 {
    margin: 0rem !important;
  }
  .xl\:mt-0 {
    margin-top: 0rem !important;
  }
  .xl\:mr-0 {
    margin-right: 0rem !important;
  }
  .xl\:mb-0 {
    margin-bottom: 0rem !important;
  }
  .xl\:ml-0 {
    margin-left: 0rem !important;
  }
  .xl\:mx-0 {
    margin-right: 0rem !important;
    margin-left: 0rem !important;
  }
  .xl\:my-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-1 {
    padding: 0.25rem !important;
  }
  .xl\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .xl\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .xl\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .xl\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .xl\:px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .xl\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .xl\:m-1 {
    margin: 0.25rem !important;
  }
  .xl\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .xl\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .xl\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .xl\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .xl\:mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .xl\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-2 {
    padding: 0.5rem !important;
  }
  .xl\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .xl\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .xl\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .xl\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .xl\:px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .xl\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .xl\:m-2 {
    margin: 0.5rem !important;
  }
  .xl\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .xl\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .xl\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .xl\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .xl\:mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .xl\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-3 {
    padding: 0.75rem !important;
  }
  .xl\:pt-3 {
    padding-top: 0.75rem !important;
  }
  .xl\:pr-3 {
    padding-right: 0.75rem !important;
  }
  .xl\:pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .xl\:pl-3 {
    padding-left: 0.75rem !important;
  }
  .xl\:px-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .xl\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .xl\:m-3 {
    margin: 0.75rem !important;
  }
  .xl\:mt-3 {
    margin-top: 0.75rem !important;
  }
  .xl\:mr-3 {
    margin-right: 0.75rem !important;
  }
  .xl\:mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .xl\:ml-3 {
    margin-left: 0.75rem !important;
  }
  .xl\:mx-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .xl\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-4 {
    padding: 1rem !important;
  }
  .xl\:pt-4 {
    padding-top: 1rem !important;
  }
  .xl\:pr-4 {
    padding-right: 1rem !important;
  }
  .xl\:pb-4 {
    padding-bottom: 1rem !important;
  }
  .xl\:pl-4 {
    padding-left: 1rem !important;
  }
  .xl\:px-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .xl\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .xl\:m-4 {
    margin: 1rem !important;
  }
  .xl\:mt-4 {
    margin-top: 1rem !important;
  }
  .xl\:mr-4 {
    margin-right: 1rem !important;
  }
  .xl\:mb-4 {
    margin-bottom: 1rem !important;
  }
  .xl\:ml-4 {
    margin-left: 1rem !important;
  }
  .xl\:mx-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .xl\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-5 {
    padding: 1.25rem !important;
  }
  .xl\:pt-5 {
    padding-top: 1.25rem !important;
  }
  .xl\:pr-5 {
    padding-right: 1.25rem !important;
  }
  .xl\:pb-5 {
    padding-bottom: 1.25rem !important;
  }
  .xl\:pl-5 {
    padding-left: 1.25rem !important;
  }
  .xl\:px-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .xl\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .xl\:m-5 {
    margin: 1.25rem !important;
  }
  .xl\:mt-5 {
    margin-top: 1.25rem !important;
  }
  .xl\:mr-5 {
    margin-right: 1.25rem !important;
  }
  .xl\:mb-5 {
    margin-bottom: 1.25rem !important;
  }
  .xl\:ml-5 {
    margin-left: 1.25rem !important;
  }
  .xl\:mx-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .xl\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-6 {
    padding: 1.5rem !important;
  }
  .xl\:pt-6 {
    padding-top: 1.5rem !important;
  }
  .xl\:pr-6 {
    padding-right: 1.5rem !important;
  }
  .xl\:pb-6 {
    padding-bottom: 1.5rem !important;
  }
  .xl\:pl-6 {
    padding-left: 1.5rem !important;
  }
  .xl\:px-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .xl\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .xl\:m-6 {
    margin: 1.5rem !important;
  }
  .xl\:mt-6 {
    margin-top: 1.5rem !important;
  }
  .xl\:mr-6 {
    margin-right: 1.5rem !important;
  }
  .xl\:mb-6 {
    margin-bottom: 1.5rem !important;
  }
  .xl\:ml-6 {
    margin-left: 1.5rem !important;
  }
  .xl\:mx-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .xl\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-7 {
    padding: 1.75rem !important;
  }
  .xl\:pt-7 {
    padding-top: 1.75rem !important;
  }
  .xl\:pr-7 {
    padding-right: 1.75rem !important;
  }
  .xl\:pb-7 {
    padding-bottom: 1.75rem !important;
  }
  .xl\:pl-7 {
    padding-left: 1.75rem !important;
  }
  .xl\:px-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .xl\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .xl\:m-7 {
    margin: 1.75rem !important;
  }
  .xl\:mt-7 {
    margin-top: 1.75rem !important;
  }
  .xl\:mr-7 {
    margin-right: 1.75rem !important;
  }
  .xl\:mb-7 {
    margin-bottom: 1.75rem !important;
  }
  .xl\:ml-7 {
    margin-left: 1.75rem !important;
  }
  .xl\:mx-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .xl\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-8 {
    padding: 2rem !important;
  }
  .xl\:pt-8 {
    padding-top: 2rem !important;
  }
  .xl\:pr-8 {
    padding-right: 2rem !important;
  }
  .xl\:pb-8 {
    padding-bottom: 2rem !important;
  }
  .xl\:pl-8 {
    padding-left: 2rem !important;
  }
  .xl\:px-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .xl\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .xl\:m-8 {
    margin: 2rem !important;
  }
  .xl\:mt-8 {
    margin-top: 2rem !important;
  }
  .xl\:mr-8 {
    margin-right: 2rem !important;
  }
  .xl\:mb-8 {
    margin-bottom: 2rem !important;
  }
  .xl\:ml-8 {
    margin-left: 2rem !important;
  }
  .xl\:mx-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .xl\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-9 {
    padding: 2.25rem !important;
  }
  .xl\:pt-9 {
    padding-top: 2.25rem !important;
  }
  .xl\:pr-9 {
    padding-right: 2.25rem !important;
  }
  .xl\:pb-9 {
    padding-bottom: 2.25rem !important;
  }
  .xl\:pl-9 {
    padding-left: 2.25rem !important;
  }
  .xl\:px-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .xl\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .xl\:m-9 {
    margin: 2.25rem !important;
  }
  .xl\:mt-9 {
    margin-top: 2.25rem !important;
  }
  .xl\:mr-9 {
    margin-right: 2.25rem !important;
  }
  .xl\:mb-9 {
    margin-bottom: 2.25rem !important;
  }
  .xl\:ml-9 {
    margin-left: 2.25rem !important;
  }
  .xl\:mx-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .xl\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-10 {
    padding: 2.5rem !important;
  }
  .xl\:pt-10 {
    padding-top: 2.5rem !important;
  }
  .xl\:pr-10 {
    padding-right: 2.5rem !important;
  }
  .xl\:pb-10 {
    padding-bottom: 2.5rem !important;
  }
  .xl\:pl-10 {
    padding-left: 2.5rem !important;
  }
  .xl\:px-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .xl\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .xl\:m-10 {
    margin: 2.5rem !important;
  }
  .xl\:mt-10 {
    margin-top: 2.5rem !important;
  }
  .xl\:mr-10 {
    margin-right: 2.5rem !important;
  }
  .xl\:mb-10 {
    margin-bottom: 2.5rem !important;
  }
  .xl\:ml-10 {
    margin-left: 2.5rem !important;
  }
  .xl\:mx-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .xl\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-11 {
    padding: 2.75rem !important;
  }
  .xl\:pt-11 {
    padding-top: 2.75rem !important;
  }
  .xl\:pr-11 {
    padding-right: 2.75rem !important;
  }
  .xl\:pb-11 {
    padding-bottom: 2.75rem !important;
  }
  .xl\:pl-11 {
    padding-left: 2.75rem !important;
  }
  .xl\:px-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }
  .xl\:py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .xl\:m-11 {
    margin: 2.75rem !important;
  }
  .xl\:mt-11 {
    margin-top: 2.75rem !important;
  }
  .xl\:mr-11 {
    margin-right: 2.75rem !important;
  }
  .xl\:mb-11 {
    margin-bottom: 2.75rem !important;
  }
  .xl\:ml-11 {
    margin-left: 2.75rem !important;
  }
  .xl\:mx-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .xl\:my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-12 {
    padding: 3rem !important;
  }
  .xl\:pt-12 {
    padding-top: 3rem !important;
  }
  .xl\:pr-12 {
    padding-right: 3rem !important;
  }
  .xl\:pb-12 {
    padding-bottom: 3rem !important;
  }
  .xl\:pl-12 {
    padding-left: 3rem !important;
  }
  .xl\:px-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .xl\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .xl\:m-12 {
    margin: 3rem !important;
  }
  .xl\:mt-12 {
    margin-top: 3rem !important;
  }
  .xl\:mr-12 {
    margin-right: 3rem !important;
  }
  .xl\:mb-12 {
    margin-bottom: 3rem !important;
  }
  .xl\:ml-12 {
    margin-left: 3rem !important;
  }
  .xl\:mx-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .xl\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-13 {
    padding: 3.25rem !important;
  }
  .xl\:pt-13 {
    padding-top: 3.25rem !important;
  }
  .xl\:pr-13 {
    padding-right: 3.25rem !important;
  }
  .xl\:pb-13 {
    padding-bottom: 3.25rem !important;
  }
  .xl\:pl-13 {
    padding-left: 3.25rem !important;
  }
  .xl\:px-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }
  .xl\:py-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }
  .xl\:m-13 {
    margin: 3.25rem !important;
  }
  .xl\:mt-13 {
    margin-top: 3.25rem !important;
  }
  .xl\:mr-13 {
    margin-right: 3.25rem !important;
  }
  .xl\:mb-13 {
    margin-bottom: 3.25rem !important;
  }
  .xl\:ml-13 {
    margin-left: 3.25rem !important;
  }
  .xl\:mx-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }
  .xl\:my-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-14 {
    padding: 3.5rem !important;
  }
  .xl\:pt-14 {
    padding-top: 3.5rem !important;
  }
  .xl\:pr-14 {
    padding-right: 3.5rem !important;
  }
  .xl\:pb-14 {
    padding-bottom: 3.5rem !important;
  }
  .xl\:pl-14 {
    padding-left: 3.5rem !important;
  }
  .xl\:px-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .xl\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .xl\:m-14 {
    margin: 3.5rem !important;
  }
  .xl\:mt-14 {
    margin-top: 3.5rem !important;
  }
  .xl\:mr-14 {
    margin-right: 3.5rem !important;
  }
  .xl\:mb-14 {
    margin-bottom: 3.5rem !important;
  }
  .xl\:ml-14 {
    margin-left: 3.5rem !important;
  }
  .xl\:mx-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .xl\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-15 {
    padding: 3.75rem !important;
  }
  .xl\:pt-15 {
    padding-top: 3.75rem !important;
  }
  .xl\:pr-15 {
    padding-right: 3.75rem !important;
  }
  .xl\:pb-15 {
    padding-bottom: 3.75rem !important;
  }
  .xl\:pl-15 {
    padding-left: 3.75rem !important;
  }
  .xl\:px-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .xl\:py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .xl\:m-15 {
    margin: 3.75rem !important;
  }
  .xl\:mt-15 {
    margin-top: 3.75rem !important;
  }
  .xl\:mr-15 {
    margin-right: 3.75rem !important;
  }
  .xl\:mb-15 {
    margin-bottom: 3.75rem !important;
  }
  .xl\:ml-15 {
    margin-left: 3.75rem !important;
  }
  .xl\:mx-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .xl\:my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-16 {
    padding: 4rem !important;
  }
  .xl\:pt-16 {
    padding-top: 4rem !important;
  }
  .xl\:pr-16 {
    padding-right: 4rem !important;
  }
  .xl\:pb-16 {
    padding-bottom: 4rem !important;
  }
  .xl\:pl-16 {
    padding-left: 4rem !important;
  }
  .xl\:px-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .xl\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .xl\:m-16 {
    margin: 4rem !important;
  }
  .xl\:mt-16 {
    margin-top: 4rem !important;
  }
  .xl\:mr-16 {
    margin-right: 4rem !important;
  }
  .xl\:mb-16 {
    margin-bottom: 4rem !important;
  }
  .xl\:ml-16 {
    margin-left: 4rem !important;
  }
  .xl\:mx-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .xl\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-17 {
    padding: 4.25rem !important;
  }
  .xl\:pt-17 {
    padding-top: 4.25rem !important;
  }
  .xl\:pr-17 {
    padding-right: 4.25rem !important;
  }
  .xl\:pb-17 {
    padding-bottom: 4.25rem !important;
  }
  .xl\:pl-17 {
    padding-left: 4.25rem !important;
  }
  .xl\:px-17 {
    padding-right: 4.25rem !important;
    padding-left: 4.25rem !important;
  }
  .xl\:py-17 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }
  .xl\:m-17 {
    margin: 4.25rem !important;
  }
  .xl\:mt-17 {
    margin-top: 4.25rem !important;
  }
  .xl\:mr-17 {
    margin-right: 4.25rem !important;
  }
  .xl\:mb-17 {
    margin-bottom: 4.25rem !important;
  }
  .xl\:ml-17 {
    margin-left: 4.25rem !important;
  }
  .xl\:mx-17 {
    margin-right: 4.25rem !important;
    margin-left: 4.25rem !important;
  }
  .xl\:my-17 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-18 {
    padding: 4.5rem !important;
  }
  .xl\:pt-18 {
    padding-top: 4.5rem !important;
  }
  .xl\:pr-18 {
    padding-right: 4.5rem !important;
  }
  .xl\:pb-18 {
    padding-bottom: 4.5rem !important;
  }
  .xl\:pl-18 {
    padding-left: 4.5rem !important;
  }
  .xl\:px-18 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .xl\:py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .xl\:m-18 {
    margin: 4.5rem !important;
  }
  .xl\:mt-18 {
    margin-top: 4.5rem !important;
  }
  .xl\:mr-18 {
    margin-right: 4.5rem !important;
  }
  .xl\:mb-18 {
    margin-bottom: 4.5rem !important;
  }
  .xl\:ml-18 {
    margin-left: 4.5rem !important;
  }
  .xl\:mx-18 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .xl\:my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-19 {
    padding: 4.75rem !important;
  }
  .xl\:pt-19 {
    padding-top: 4.75rem !important;
  }
  .xl\:pr-19 {
    padding-right: 4.75rem !important;
  }
  .xl\:pb-19 {
    padding-bottom: 4.75rem !important;
  }
  .xl\:pl-19 {
    padding-left: 4.75rem !important;
  }
  .xl\:px-19 {
    padding-right: 4.75rem !important;
    padding-left: 4.75rem !important;
  }
  .xl\:py-19 {
    padding-top: 4.75rem !important;
    padding-bottom: 4.75rem !important;
  }
  .xl\:m-19 {
    margin: 4.75rem !important;
  }
  .xl\:mt-19 {
    margin-top: 4.75rem !important;
  }
  .xl\:mr-19 {
    margin-right: 4.75rem !important;
  }
  .xl\:mb-19 {
    margin-bottom: 4.75rem !important;
  }
  .xl\:ml-19 {
    margin-left: 4.75rem !important;
  }
  .xl\:mx-19 {
    margin-right: 4.75rem !important;
    margin-left: 4.75rem !important;
  }
  .xl\:my-19 {
    margin-top: 4.75rem !important;
    margin-bottom: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-20 {
    padding: 5rem !important;
  }
  .xl\:pt-20 {
    padding-top: 5rem !important;
  }
  .xl\:pr-20 {
    padding-right: 5rem !important;
  }
  .xl\:pb-20 {
    padding-bottom: 5rem !important;
  }
  .xl\:pl-20 {
    padding-left: 5rem !important;
  }
  .xl\:px-20 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .xl\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .xl\:m-20 {
    margin: 5rem !important;
  }
  .xl\:mt-20 {
    margin-top: 5rem !important;
  }
  .xl\:mr-20 {
    margin-right: 5rem !important;
  }
  .xl\:mb-20 {
    margin-bottom: 5rem !important;
  }
  .xl\:ml-20 {
    margin-left: 5rem !important;
  }
  .xl\:mx-20 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .xl\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-21 {
    padding: 5.25rem !important;
  }
  .xl\:pt-21 {
    padding-top: 5.25rem !important;
  }
  .xl\:pr-21 {
    padding-right: 5.25rem !important;
  }
  .xl\:pb-21 {
    padding-bottom: 5.25rem !important;
  }
  .xl\:pl-21 {
    padding-left: 5.25rem !important;
  }
  .xl\:px-21 {
    padding-right: 5.25rem !important;
    padding-left: 5.25rem !important;
  }
  .xl\:py-21 {
    padding-top: 5.25rem !important;
    padding-bottom: 5.25rem !important;
  }
  .xl\:m-21 {
    margin: 5.25rem !important;
  }
  .xl\:mt-21 {
    margin-top: 5.25rem !important;
  }
  .xl\:mr-21 {
    margin-right: 5.25rem !important;
  }
  .xl\:mb-21 {
    margin-bottom: 5.25rem !important;
  }
  .xl\:ml-21 {
    margin-left: 5.25rem !important;
  }
  .xl\:mx-21 {
    margin-right: 5.25rem !important;
    margin-left: 5.25rem !important;
  }
  .xl\:my-21 {
    margin-top: 5.25rem !important;
    margin-bottom: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-22 {
    padding: 5.5rem !important;
  }
  .xl\:pt-22 {
    padding-top: 5.5rem !important;
  }
  .xl\:pr-22 {
    padding-right: 5.5rem !important;
  }
  .xl\:pb-22 {
    padding-bottom: 5.5rem !important;
  }
  .xl\:pl-22 {
    padding-left: 5.5rem !important;
  }
  .xl\:px-22 {
    padding-right: 5.5rem !important;
    padding-left: 5.5rem !important;
  }
  .xl\:py-22 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .xl\:m-22 {
    margin: 5.5rem !important;
  }
  .xl\:mt-22 {
    margin-top: 5.5rem !important;
  }
  .xl\:mr-22 {
    margin-right: 5.5rem !important;
  }
  .xl\:mb-22 {
    margin-bottom: 5.5rem !important;
  }
  .xl\:ml-22 {
    margin-left: 5.5rem !important;
  }
  .xl\:mx-22 {
    margin-right: 5.5rem !important;
    margin-left: 5.5rem !important;
  }
  .xl\:my-22 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-23 {
    padding: 5.75rem !important;
  }
  .xl\:pt-23 {
    padding-top: 5.75rem !important;
  }
  .xl\:pr-23 {
    padding-right: 5.75rem !important;
  }
  .xl\:pb-23 {
    padding-bottom: 5.75rem !important;
  }
  .xl\:pl-23 {
    padding-left: 5.75rem !important;
  }
  .xl\:px-23 {
    padding-right: 5.75rem !important;
    padding-left: 5.75rem !important;
  }
  .xl\:py-23 {
    padding-top: 5.75rem !important;
    padding-bottom: 5.75rem !important;
  }
  .xl\:m-23 {
    margin: 5.75rem !important;
  }
  .xl\:mt-23 {
    margin-top: 5.75rem !important;
  }
  .xl\:mr-23 {
    margin-right: 5.75rem !important;
  }
  .xl\:mb-23 {
    margin-bottom: 5.75rem !important;
  }
  .xl\:ml-23 {
    margin-left: 5.75rem !important;
  }
  .xl\:mx-23 {
    margin-right: 5.75rem !important;
    margin-left: 5.75rem !important;
  }
  .xl\:my-23 {
    margin-top: 5.75rem !important;
    margin-bottom: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:p-24 {
    padding: 6rem !important;
  }
  .xl\:pt-24 {
    padding-top: 6rem !important;
  }
  .xl\:pr-24 {
    padding-right: 6rem !important;
  }
  .xl\:pb-24 {
    padding-bottom: 6rem !important;
  }
  .xl\:pl-24 {
    padding-left: 6rem !important;
  }
  .xl\:px-24 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .xl\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .xl\:m-24 {
    margin: 6rem !important;
  }
  .xl\:mt-24 {
    margin-top: 6rem !important;
  }
  .xl\:mr-24 {
    margin-right: 6rem !important;
  }
  .xl\:mb-24 {
    margin-bottom: 6rem !important;
  }
  .xl\:ml-24 {
    margin-left: 6rem !important;
  }
  .xl\:mx-24 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .xl\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:pt-auto {
    padding-top: auto !important;
  }
  .lg\:pr-auto {
    padding-right: auto !important;
  }
  .lg\:pb-auto {
    padding-bottom: auto !important;
  }
  .lg\:pl-auto {
    padding-left: auto !important;
  }
  .lg\:px-auto {
    padding-right: auto !important;
    padding-left: auto !important;
  }
  .lg\:py-auto {
    padding-top: auto !important;
    padding-bottom: auto !important;
  }
  .lg\:mt-auto {
    margin-top: auto !important;
  }
  .lg\:mr-auto {
    margin-right: auto !important;
  }
  .lg\:mb-auto {
    margin-bottom: auto !important;
  }
  .lg\:ml-auto {
    margin-left: auto !important;
  }
  .lg\:mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .lg\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-0 {
    padding: 0rem !important;
  }
  .lg\:pt-0 {
    padding-top: 0rem !important;
  }
  .lg\:pr-0 {
    padding-right: 0rem !important;
  }
  .lg\:pb-0 {
    padding-bottom: 0rem !important;
  }
  .lg\:pl-0 {
    padding-left: 0rem !important;
  }
  .lg\:px-0 {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
  }
  .lg\:py-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .lg\:m-0 {
    margin: 0rem !important;
  }
  .lg\:mt-0 {
    margin-top: 0rem !important;
  }
  .lg\:mr-0 {
    margin-right: 0rem !important;
  }
  .lg\:mb-0 {
    margin-bottom: 0rem !important;
  }
  .lg\:ml-0 {
    margin-left: 0rem !important;
  }
  .lg\:mx-0 {
    margin-right: 0rem !important;
    margin-left: 0rem !important;
  }
  .lg\:my-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-1 {
    padding: 0.25rem !important;
  }
  .lg\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .lg\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .lg\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .lg\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .lg\:px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .lg\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .lg\:m-1 {
    margin: 0.25rem !important;
  }
  .lg\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .lg\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .lg\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .lg\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .lg\:mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .lg\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-2 {
    padding: 0.5rem !important;
  }
  .lg\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .lg\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .lg\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .lg\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .lg\:px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .lg\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .lg\:m-2 {
    margin: 0.5rem !important;
  }
  .lg\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .lg\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .lg\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .lg\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .lg\:mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .lg\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-3 {
    padding: 0.75rem !important;
  }
  .lg\:pt-3 {
    padding-top: 0.75rem !important;
  }
  .lg\:pr-3 {
    padding-right: 0.75rem !important;
  }
  .lg\:pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .lg\:pl-3 {
    padding-left: 0.75rem !important;
  }
  .lg\:px-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .lg\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .lg\:m-3 {
    margin: 0.75rem !important;
  }
  .lg\:mt-3 {
    margin-top: 0.75rem !important;
  }
  .lg\:mr-3 {
    margin-right: 0.75rem !important;
  }
  .lg\:mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .lg\:ml-3 {
    margin-left: 0.75rem !important;
  }
  .lg\:mx-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .lg\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-4 {
    padding: 1rem !important;
  }
  .lg\:pt-4 {
    padding-top: 1rem !important;
  }
  .lg\:pr-4 {
    padding-right: 1rem !important;
  }
  .lg\:pb-4 {
    padding-bottom: 1rem !important;
  }
  .lg\:pl-4 {
    padding-left: 1rem !important;
  }
  .lg\:px-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .lg\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .lg\:m-4 {
    margin: 1rem !important;
  }
  .lg\:mt-4 {
    margin-top: 1rem !important;
  }
  .lg\:mr-4 {
    margin-right: 1rem !important;
  }
  .lg\:mb-4 {
    margin-bottom: 1rem !important;
  }
  .lg\:ml-4 {
    margin-left: 1rem !important;
  }
  .lg\:mx-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .lg\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-5 {
    padding: 1.25rem !important;
  }
  .lg\:pt-5 {
    padding-top: 1.25rem !important;
  }
  .lg\:pr-5 {
    padding-right: 1.25rem !important;
  }
  .lg\:pb-5 {
    padding-bottom: 1.25rem !important;
  }
  .lg\:pl-5 {
    padding-left: 1.25rem !important;
  }
  .lg\:px-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .lg\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .lg\:m-5 {
    margin: 1.25rem !important;
  }
  .lg\:mt-5 {
    margin-top: 1.25rem !important;
  }
  .lg\:mr-5 {
    margin-right: 1.25rem !important;
  }
  .lg\:mb-5 {
    margin-bottom: 1.25rem !important;
  }
  .lg\:ml-5 {
    margin-left: 1.25rem !important;
  }
  .lg\:mx-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .lg\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-6 {
    padding: 1.5rem !important;
  }
  .lg\:pt-6 {
    padding-top: 1.5rem !important;
  }
  .lg\:pr-6 {
    padding-right: 1.5rem !important;
  }
  .lg\:pb-6 {
    padding-bottom: 1.5rem !important;
  }
  .lg\:pl-6 {
    padding-left: 1.5rem !important;
  }
  .lg\:px-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .lg\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .lg\:m-6 {
    margin: 1.5rem !important;
  }
  .lg\:mt-6 {
    margin-top: 1.5rem !important;
  }
  .lg\:mr-6 {
    margin-right: 1.5rem !important;
  }
  .lg\:mb-6 {
    margin-bottom: 1.5rem !important;
  }
  .lg\:ml-6 {
    margin-left: 1.5rem !important;
  }
  .lg\:mx-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .lg\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-7 {
    padding: 1.75rem !important;
  }
  .lg\:pt-7 {
    padding-top: 1.75rem !important;
  }
  .lg\:pr-7 {
    padding-right: 1.75rem !important;
  }
  .lg\:pb-7 {
    padding-bottom: 1.75rem !important;
  }
  .lg\:pl-7 {
    padding-left: 1.75rem !important;
  }
  .lg\:px-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .lg\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .lg\:m-7 {
    margin: 1.75rem !important;
  }
  .lg\:mt-7 {
    margin-top: 1.75rem !important;
  }
  .lg\:mr-7 {
    margin-right: 1.75rem !important;
  }
  .lg\:mb-7 {
    margin-bottom: 1.75rem !important;
  }
  .lg\:ml-7 {
    margin-left: 1.75rem !important;
  }
  .lg\:mx-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .lg\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-8 {
    padding: 2rem !important;
  }
  .lg\:pt-8 {
    padding-top: 2rem !important;
  }
  .lg\:pr-8 {
    padding-right: 2rem !important;
  }
  .lg\:pb-8 {
    padding-bottom: 2rem !important;
  }
  .lg\:pl-8 {
    padding-left: 2rem !important;
  }
  .lg\:px-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .lg\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .lg\:m-8 {
    margin: 2rem !important;
  }
  .lg\:mt-8 {
    margin-top: 2rem !important;
  }
  .lg\:mr-8 {
    margin-right: 2rem !important;
  }
  .lg\:mb-8 {
    margin-bottom: 2rem !important;
  }
  .lg\:ml-8 {
    margin-left: 2rem !important;
  }
  .lg\:mx-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .lg\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-9 {
    padding: 2.25rem !important;
  }
  .lg\:pt-9 {
    padding-top: 2.25rem !important;
  }
  .lg\:pr-9 {
    padding-right: 2.25rem !important;
  }
  .lg\:pb-9 {
    padding-bottom: 2.25rem !important;
  }
  .lg\:pl-9 {
    padding-left: 2.25rem !important;
  }
  .lg\:px-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .lg\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .lg\:m-9 {
    margin: 2.25rem !important;
  }
  .lg\:mt-9 {
    margin-top: 2.25rem !important;
  }
  .lg\:mr-9 {
    margin-right: 2.25rem !important;
  }
  .lg\:mb-9 {
    margin-bottom: 2.25rem !important;
  }
  .lg\:ml-9 {
    margin-left: 2.25rem !important;
  }
  .lg\:mx-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .lg\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-10 {
    padding: 2.5rem !important;
  }
  .lg\:pt-10 {
    padding-top: 2.5rem !important;
  }
  .lg\:pr-10 {
    padding-right: 2.5rem !important;
  }
  .lg\:pb-10 {
    padding-bottom: 2.5rem !important;
  }
  .lg\:pl-10 {
    padding-left: 2.5rem !important;
  }
  .lg\:px-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .lg\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .lg\:m-10 {
    margin: 2.5rem !important;
  }
  .lg\:mt-10 {
    margin-top: 2.5rem !important;
  }
  .lg\:mr-10 {
    margin-right: 2.5rem !important;
  }
  .lg\:mb-10 {
    margin-bottom: 2.5rem !important;
  }
  .lg\:ml-10 {
    margin-left: 2.5rem !important;
  }
  .lg\:mx-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .lg\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-11 {
    padding: 2.75rem !important;
  }
  .lg\:pt-11 {
    padding-top: 2.75rem !important;
  }
  .lg\:pr-11 {
    padding-right: 2.75rem !important;
  }
  .lg\:pb-11 {
    padding-bottom: 2.75rem !important;
  }
  .lg\:pl-11 {
    padding-left: 2.75rem !important;
  }
  .lg\:px-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }
  .lg\:py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .lg\:m-11 {
    margin: 2.75rem !important;
  }
  .lg\:mt-11 {
    margin-top: 2.75rem !important;
  }
  .lg\:mr-11 {
    margin-right: 2.75rem !important;
  }
  .lg\:mb-11 {
    margin-bottom: 2.75rem !important;
  }
  .lg\:ml-11 {
    margin-left: 2.75rem !important;
  }
  .lg\:mx-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .lg\:my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-12 {
    padding: 3rem !important;
  }
  .lg\:pt-12 {
    padding-top: 3rem !important;
  }
  .lg\:pr-12 {
    padding-right: 3rem !important;
  }
  .lg\:pb-12 {
    padding-bottom: 3rem !important;
  }
  .lg\:pl-12 {
    padding-left: 3rem !important;
  }
  .lg\:px-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .lg\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .lg\:m-12 {
    margin: 3rem !important;
  }
  .lg\:mt-12 {
    margin-top: 3rem !important;
  }
  .lg\:mr-12 {
    margin-right: 3rem !important;
  }
  .lg\:mb-12 {
    margin-bottom: 3rem !important;
  }
  .lg\:ml-12 {
    margin-left: 3rem !important;
  }
  .lg\:mx-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .lg\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-13 {
    padding: 3.25rem !important;
  }
  .lg\:pt-13 {
    padding-top: 3.25rem !important;
  }
  .lg\:pr-13 {
    padding-right: 3.25rem !important;
  }
  .lg\:pb-13 {
    padding-bottom: 3.25rem !important;
  }
  .lg\:pl-13 {
    padding-left: 3.25rem !important;
  }
  .lg\:px-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }
  .lg\:py-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }
  .lg\:m-13 {
    margin: 3.25rem !important;
  }
  .lg\:mt-13 {
    margin-top: 3.25rem !important;
  }
  .lg\:mr-13 {
    margin-right: 3.25rem !important;
  }
  .lg\:mb-13 {
    margin-bottom: 3.25rem !important;
  }
  .lg\:ml-13 {
    margin-left: 3.25rem !important;
  }
  .lg\:mx-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }
  .lg\:my-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-14 {
    padding: 3.5rem !important;
  }
  .lg\:pt-14 {
    padding-top: 3.5rem !important;
  }
  .lg\:pr-14 {
    padding-right: 3.5rem !important;
  }
  .lg\:pb-14 {
    padding-bottom: 3.5rem !important;
  }
  .lg\:pl-14 {
    padding-left: 3.5rem !important;
  }
  .lg\:px-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .lg\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .lg\:m-14 {
    margin: 3.5rem !important;
  }
  .lg\:mt-14 {
    margin-top: 3.5rem !important;
  }
  .lg\:mr-14 {
    margin-right: 3.5rem !important;
  }
  .lg\:mb-14 {
    margin-bottom: 3.5rem !important;
  }
  .lg\:ml-14 {
    margin-left: 3.5rem !important;
  }
  .lg\:mx-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .lg\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-15 {
    padding: 3.75rem !important;
  }
  .lg\:pt-15 {
    padding-top: 3.75rem !important;
  }
  .lg\:pr-15 {
    padding-right: 3.75rem !important;
  }
  .lg\:pb-15 {
    padding-bottom: 3.75rem !important;
  }
  .lg\:pl-15 {
    padding-left: 3.75rem !important;
  }
  .lg\:px-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .lg\:py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .lg\:m-15 {
    margin: 3.75rem !important;
  }
  .lg\:mt-15 {
    margin-top: 3.75rem !important;
  }
  .lg\:mr-15 {
    margin-right: 3.75rem !important;
  }
  .lg\:mb-15 {
    margin-bottom: 3.75rem !important;
  }
  .lg\:ml-15 {
    margin-left: 3.75rem !important;
  }
  .lg\:mx-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .lg\:my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-16 {
    padding: 4rem !important;
  }
  .lg\:pt-16 {
    padding-top: 4rem !important;
  }
  .lg\:pr-16 {
    padding-right: 4rem !important;
  }
  .lg\:pb-16 {
    padding-bottom: 4rem !important;
  }
  .lg\:pl-16 {
    padding-left: 4rem !important;
  }
  .lg\:px-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .lg\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .lg\:m-16 {
    margin: 4rem !important;
  }
  .lg\:mt-16 {
    margin-top: 4rem !important;
  }
  .lg\:mr-16 {
    margin-right: 4rem !important;
  }
  .lg\:mb-16 {
    margin-bottom: 4rem !important;
  }
  .lg\:ml-16 {
    margin-left: 4rem !important;
  }
  .lg\:mx-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .lg\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-17 {
    padding: 4.25rem !important;
  }
  .lg\:pt-17 {
    padding-top: 4.25rem !important;
  }
  .lg\:pr-17 {
    padding-right: 4.25rem !important;
  }
  .lg\:pb-17 {
    padding-bottom: 4.25rem !important;
  }
  .lg\:pl-17 {
    padding-left: 4.25rem !important;
  }
  .lg\:px-17 {
    padding-right: 4.25rem !important;
    padding-left: 4.25rem !important;
  }
  .lg\:py-17 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }
  .lg\:m-17 {
    margin: 4.25rem !important;
  }
  .lg\:mt-17 {
    margin-top: 4.25rem !important;
  }
  .lg\:mr-17 {
    margin-right: 4.25rem !important;
  }
  .lg\:mb-17 {
    margin-bottom: 4.25rem !important;
  }
  .lg\:ml-17 {
    margin-left: 4.25rem !important;
  }
  .lg\:mx-17 {
    margin-right: 4.25rem !important;
    margin-left: 4.25rem !important;
  }
  .lg\:my-17 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-18 {
    padding: 4.5rem !important;
  }
  .lg\:pt-18 {
    padding-top: 4.5rem !important;
  }
  .lg\:pr-18 {
    padding-right: 4.5rem !important;
  }
  .lg\:pb-18 {
    padding-bottom: 4.5rem !important;
  }
  .lg\:pl-18 {
    padding-left: 4.5rem !important;
  }
  .lg\:px-18 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .lg\:py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .lg\:m-18 {
    margin: 4.5rem !important;
  }
  .lg\:mt-18 {
    margin-top: 4.5rem !important;
  }
  .lg\:mr-18 {
    margin-right: 4.5rem !important;
  }
  .lg\:mb-18 {
    margin-bottom: 4.5rem !important;
  }
  .lg\:ml-18 {
    margin-left: 4.5rem !important;
  }
  .lg\:mx-18 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .lg\:my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-19 {
    padding: 4.75rem !important;
  }
  .lg\:pt-19 {
    padding-top: 4.75rem !important;
  }
  .lg\:pr-19 {
    padding-right: 4.75rem !important;
  }
  .lg\:pb-19 {
    padding-bottom: 4.75rem !important;
  }
  .lg\:pl-19 {
    padding-left: 4.75rem !important;
  }
  .lg\:px-19 {
    padding-right: 4.75rem !important;
    padding-left: 4.75rem !important;
  }
  .lg\:py-19 {
    padding-top: 4.75rem !important;
    padding-bottom: 4.75rem !important;
  }
  .lg\:m-19 {
    margin: 4.75rem !important;
  }
  .lg\:mt-19 {
    margin-top: 4.75rem !important;
  }
  .lg\:mr-19 {
    margin-right: 4.75rem !important;
  }
  .lg\:mb-19 {
    margin-bottom: 4.75rem !important;
  }
  .lg\:ml-19 {
    margin-left: 4.75rem !important;
  }
  .lg\:mx-19 {
    margin-right: 4.75rem !important;
    margin-left: 4.75rem !important;
  }
  .lg\:my-19 {
    margin-top: 4.75rem !important;
    margin-bottom: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-20 {
    padding: 5rem !important;
  }
  .lg\:pt-20 {
    padding-top: 5rem !important;
  }
  .lg\:pr-20 {
    padding-right: 5rem !important;
  }
  .lg\:pb-20 {
    padding-bottom: 5rem !important;
  }
  .lg\:pl-20 {
    padding-left: 5rem !important;
  }
  .lg\:px-20 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .lg\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .lg\:m-20 {
    margin: 5rem !important;
  }
  .lg\:mt-20 {
    margin-top: 5rem !important;
  }
  .lg\:mr-20 {
    margin-right: 5rem !important;
  }
  .lg\:mb-20 {
    margin-bottom: 5rem !important;
  }
  .lg\:ml-20 {
    margin-left: 5rem !important;
  }
  .lg\:mx-20 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .lg\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-21 {
    padding: 5.25rem !important;
  }
  .lg\:pt-21 {
    padding-top: 5.25rem !important;
  }
  .lg\:pr-21 {
    padding-right: 5.25rem !important;
  }
  .lg\:pb-21 {
    padding-bottom: 5.25rem !important;
  }
  .lg\:pl-21 {
    padding-left: 5.25rem !important;
  }
  .lg\:px-21 {
    padding-right: 5.25rem !important;
    padding-left: 5.25rem !important;
  }
  .lg\:py-21 {
    padding-top: 5.25rem !important;
    padding-bottom: 5.25rem !important;
  }
  .lg\:m-21 {
    margin: 5.25rem !important;
  }
  .lg\:mt-21 {
    margin-top: 5.25rem !important;
  }
  .lg\:mr-21 {
    margin-right: 5.25rem !important;
  }
  .lg\:mb-21 {
    margin-bottom: 5.25rem !important;
  }
  .lg\:ml-21 {
    margin-left: 5.25rem !important;
  }
  .lg\:mx-21 {
    margin-right: 5.25rem !important;
    margin-left: 5.25rem !important;
  }
  .lg\:my-21 {
    margin-top: 5.25rem !important;
    margin-bottom: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-22 {
    padding: 5.5rem !important;
  }
  .lg\:pt-22 {
    padding-top: 5.5rem !important;
  }
  .lg\:pr-22 {
    padding-right: 5.5rem !important;
  }
  .lg\:pb-22 {
    padding-bottom: 5.5rem !important;
  }
  .lg\:pl-22 {
    padding-left: 5.5rem !important;
  }
  .lg\:px-22 {
    padding-right: 5.5rem !important;
    padding-left: 5.5rem !important;
  }
  .lg\:py-22 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .lg\:m-22 {
    margin: 5.5rem !important;
  }
  .lg\:mt-22 {
    margin-top: 5.5rem !important;
  }
  .lg\:mr-22 {
    margin-right: 5.5rem !important;
  }
  .lg\:mb-22 {
    margin-bottom: 5.5rem !important;
  }
  .lg\:ml-22 {
    margin-left: 5.5rem !important;
  }
  .lg\:mx-22 {
    margin-right: 5.5rem !important;
    margin-left: 5.5rem !important;
  }
  .lg\:my-22 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-23 {
    padding: 5.75rem !important;
  }
  .lg\:pt-23 {
    padding-top: 5.75rem !important;
  }
  .lg\:pr-23 {
    padding-right: 5.75rem !important;
  }
  .lg\:pb-23 {
    padding-bottom: 5.75rem !important;
  }
  .lg\:pl-23 {
    padding-left: 5.75rem !important;
  }
  .lg\:px-23 {
    padding-right: 5.75rem !important;
    padding-left: 5.75rem !important;
  }
  .lg\:py-23 {
    padding-top: 5.75rem !important;
    padding-bottom: 5.75rem !important;
  }
  .lg\:m-23 {
    margin: 5.75rem !important;
  }
  .lg\:mt-23 {
    margin-top: 5.75rem !important;
  }
  .lg\:mr-23 {
    margin-right: 5.75rem !important;
  }
  .lg\:mb-23 {
    margin-bottom: 5.75rem !important;
  }
  .lg\:ml-23 {
    margin-left: 5.75rem !important;
  }
  .lg\:mx-23 {
    margin-right: 5.75rem !important;
    margin-left: 5.75rem !important;
  }
  .lg\:my-23 {
    margin-top: 5.75rem !important;
    margin-bottom: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:p-24 {
    padding: 6rem !important;
  }
  .lg\:pt-24 {
    padding-top: 6rem !important;
  }
  .lg\:pr-24 {
    padding-right: 6rem !important;
  }
  .lg\:pb-24 {
    padding-bottom: 6rem !important;
  }
  .lg\:pl-24 {
    padding-left: 6rem !important;
  }
  .lg\:px-24 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .lg\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .lg\:m-24 {
    margin: 6rem !important;
  }
  .lg\:mt-24 {
    margin-top: 6rem !important;
  }
  .lg\:mr-24 {
    margin-right: 6rem !important;
  }
  .lg\:mb-24 {
    margin-bottom: 6rem !important;
  }
  .lg\:ml-24 {
    margin-left: 6rem !important;
  }
  .lg\:mx-24 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .lg\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:pt-auto {
    padding-top: auto !important;
  }
  .md\:pr-auto {
    padding-right: auto !important;
  }
  .md\:pb-auto {
    padding-bottom: auto !important;
  }
  .md\:pl-auto {
    padding-left: auto !important;
  }
  .md\:px-auto {
    padding-right: auto !important;
    padding-left: auto !important;
  }
  .md\:py-auto {
    padding-top: auto !important;
    padding-bottom: auto !important;
  }
  .md\:mt-auto {
    margin-top: auto !important;
  }
  .md\:mr-auto {
    margin-right: auto !important;
  }
  .md\:mb-auto {
    margin-bottom: auto !important;
  }
  .md\:ml-auto {
    margin-left: auto !important;
  }
  .md\:mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .md\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-0 {
    padding: 0rem !important;
  }
  .md\:pt-0 {
    padding-top: 0rem !important;
  }
  .md\:pr-0 {
    padding-right: 0rem !important;
  }
  .md\:pb-0 {
    padding-bottom: 0rem !important;
  }
  .md\:pl-0 {
    padding-left: 0rem !important;
  }
  .md\:px-0 {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
  }
  .md\:py-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .md\:m-0 {
    margin: 0rem !important;
  }
  .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\:mx-0 {
    margin-right: 0rem !important;
    margin-left: 0rem !important;
  }
  .md\:my-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-1 {
    padding: 0.25rem !important;
  }
  .md\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .md\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .md\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .md\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .md\:px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .md\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .md\:m-1 {
    margin: 0.25rem !important;
  }
  .md\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .md\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .md\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .md\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .md\:mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .md\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-2 {
    padding: 0.5rem !important;
  }
  .md\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .md\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .md\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .md\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .md\:px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .md\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .md\:m-2 {
    margin: 0.5rem !important;
  }
  .md\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .md\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .md\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .md\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .md\:mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .md\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-3 {
    padding: 0.75rem !important;
  }
  .md\:pt-3 {
    padding-top: 0.75rem !important;
  }
  .md\:pr-3 {
    padding-right: 0.75rem !important;
  }
  .md\:pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .md\:pl-3 {
    padding-left: 0.75rem !important;
  }
  .md\:px-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .md\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .md\:m-3 {
    margin: 0.75rem !important;
  }
  .md\:mt-3 {
    margin-top: 0.75rem !important;
  }
  .md\:mr-3 {
    margin-right: 0.75rem !important;
  }
  .md\:mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .md\:ml-3 {
    margin-left: 0.75rem !important;
  }
  .md\:mx-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .md\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-4 {
    padding: 1rem !important;
  }
  .md\:pt-4 {
    padding-top: 1rem !important;
  }
  .md\:pr-4 {
    padding-right: 1rem !important;
  }
  .md\:pb-4 {
    padding-bottom: 1rem !important;
  }
  .md\:pl-4 {
    padding-left: 1rem !important;
  }
  .md\:px-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .md\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .md\:m-4 {
    margin: 1rem !important;
  }
  .md\:mt-4 {
    margin-top: 1rem !important;
  }
  .md\:mr-4 {
    margin-right: 1rem !important;
  }
  .md\:mb-4 {
    margin-bottom: 1rem !important;
  }
  .md\:ml-4 {
    margin-left: 1rem !important;
  }
  .md\:mx-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .md\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-5 {
    padding: 1.25rem !important;
  }
  .md\:pt-5 {
    padding-top: 1.25rem !important;
  }
  .md\:pr-5 {
    padding-right: 1.25rem !important;
  }
  .md\:pb-5 {
    padding-bottom: 1.25rem !important;
  }
  .md\:pl-5 {
    padding-left: 1.25rem !important;
  }
  .md\:px-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .md\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .md\:m-5 {
    margin: 1.25rem !important;
  }
  .md\:mt-5 {
    margin-top: 1.25rem !important;
  }
  .md\:mr-5 {
    margin-right: 1.25rem !important;
  }
  .md\:mb-5 {
    margin-bottom: 1.25rem !important;
  }
  .md\:ml-5 {
    margin-left: 1.25rem !important;
  }
  .md\:mx-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .md\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-6 {
    padding: 1.5rem !important;
  }
  .md\:pt-6 {
    padding-top: 1.5rem !important;
  }
  .md\:pr-6 {
    padding-right: 1.5rem !important;
  }
  .md\:pb-6 {
    padding-bottom: 1.5rem !important;
  }
  .md\:pl-6 {
    padding-left: 1.5rem !important;
  }
  .md\:px-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .md\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .md\:m-6 {
    margin: 1.5rem !important;
  }
  .md\:mt-6 {
    margin-top: 1.5rem !important;
  }
  .md\:mr-6 {
    margin-right: 1.5rem !important;
  }
  .md\:mb-6 {
    margin-bottom: 1.5rem !important;
  }
  .md\:ml-6 {
    margin-left: 1.5rem !important;
  }
  .md\:mx-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .md\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-7 {
    padding: 1.75rem !important;
  }
  .md\:pt-7 {
    padding-top: 1.75rem !important;
  }
  .md\:pr-7 {
    padding-right: 1.75rem !important;
  }
  .md\:pb-7 {
    padding-bottom: 1.75rem !important;
  }
  .md\:pl-7 {
    padding-left: 1.75rem !important;
  }
  .md\:px-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .md\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .md\:m-7 {
    margin: 1.75rem !important;
  }
  .md\:mt-7 {
    margin-top: 1.75rem !important;
  }
  .md\:mr-7 {
    margin-right: 1.75rem !important;
  }
  .md\:mb-7 {
    margin-bottom: 1.75rem !important;
  }
  .md\:ml-7 {
    margin-left: 1.75rem !important;
  }
  .md\:mx-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .md\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-8 {
    padding: 2rem !important;
  }
  .md\:pt-8 {
    padding-top: 2rem !important;
  }
  .md\:pr-8 {
    padding-right: 2rem !important;
  }
  .md\:pb-8 {
    padding-bottom: 2rem !important;
  }
  .md\:pl-8 {
    padding-left: 2rem !important;
  }
  .md\:px-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .md\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .md\:m-8 {
    margin: 2rem !important;
  }
  .md\:mt-8 {
    margin-top: 2rem !important;
  }
  .md\:mr-8 {
    margin-right: 2rem !important;
  }
  .md\:mb-8 {
    margin-bottom: 2rem !important;
  }
  .md\:ml-8 {
    margin-left: 2rem !important;
  }
  .md\:mx-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .md\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-9 {
    padding: 2.25rem !important;
  }
  .md\:pt-9 {
    padding-top: 2.25rem !important;
  }
  .md\:pr-9 {
    padding-right: 2.25rem !important;
  }
  .md\:pb-9 {
    padding-bottom: 2.25rem !important;
  }
  .md\:pl-9 {
    padding-left: 2.25rem !important;
  }
  .md\:px-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .md\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .md\:m-9 {
    margin: 2.25rem !important;
  }
  .md\:mt-9 {
    margin-top: 2.25rem !important;
  }
  .md\:mr-9 {
    margin-right: 2.25rem !important;
  }
  .md\:mb-9 {
    margin-bottom: 2.25rem !important;
  }
  .md\:ml-9 {
    margin-left: 2.25rem !important;
  }
  .md\:mx-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .md\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-10 {
    padding: 2.5rem !important;
  }
  .md\:pt-10 {
    padding-top: 2.5rem !important;
  }
  .md\:pr-10 {
    padding-right: 2.5rem !important;
  }
  .md\:pb-10 {
    padding-bottom: 2.5rem !important;
  }
  .md\:pl-10 {
    padding-left: 2.5rem !important;
  }
  .md\:px-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .md\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .md\:m-10 {
    margin: 2.5rem !important;
  }
  .md\:mt-10 {
    margin-top: 2.5rem !important;
  }
  .md\:mr-10 {
    margin-right: 2.5rem !important;
  }
  .md\:mb-10 {
    margin-bottom: 2.5rem !important;
  }
  .md\:ml-10 {
    margin-left: 2.5rem !important;
  }
  .md\:mx-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .md\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-11 {
    padding: 2.75rem !important;
  }
  .md\:pt-11 {
    padding-top: 2.75rem !important;
  }
  .md\:pr-11 {
    padding-right: 2.75rem !important;
  }
  .md\:pb-11 {
    padding-bottom: 2.75rem !important;
  }
  .md\:pl-11 {
    padding-left: 2.75rem !important;
  }
  .md\:px-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }
  .md\:py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .md\:m-11 {
    margin: 2.75rem !important;
  }
  .md\:mt-11 {
    margin-top: 2.75rem !important;
  }
  .md\:mr-11 {
    margin-right: 2.75rem !important;
  }
  .md\:mb-11 {
    margin-bottom: 2.75rem !important;
  }
  .md\:ml-11 {
    margin-left: 2.75rem !important;
  }
  .md\:mx-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .md\:my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-12 {
    padding: 3rem !important;
  }
  .md\:pt-12 {
    padding-top: 3rem !important;
  }
  .md\:pr-12 {
    padding-right: 3rem !important;
  }
  .md\:pb-12 {
    padding-bottom: 3rem !important;
  }
  .md\:pl-12 {
    padding-left: 3rem !important;
  }
  .md\:px-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .md\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .md\:m-12 {
    margin: 3rem !important;
  }
  .md\:mt-12 {
    margin-top: 3rem !important;
  }
  .md\:mr-12 {
    margin-right: 3rem !important;
  }
  .md\:mb-12 {
    margin-bottom: 3rem !important;
  }
  .md\:ml-12 {
    margin-left: 3rem !important;
  }
  .md\:mx-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .md\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-13 {
    padding: 3.25rem !important;
  }
  .md\:pt-13 {
    padding-top: 3.25rem !important;
  }
  .md\:pr-13 {
    padding-right: 3.25rem !important;
  }
  .md\:pb-13 {
    padding-bottom: 3.25rem !important;
  }
  .md\:pl-13 {
    padding-left: 3.25rem !important;
  }
  .md\:px-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }
  .md\:py-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }
  .md\:m-13 {
    margin: 3.25rem !important;
  }
  .md\:mt-13 {
    margin-top: 3.25rem !important;
  }
  .md\:mr-13 {
    margin-right: 3.25rem !important;
  }
  .md\:mb-13 {
    margin-bottom: 3.25rem !important;
  }
  .md\:ml-13 {
    margin-left: 3.25rem !important;
  }
  .md\:mx-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }
  .md\:my-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-14 {
    padding: 3.5rem !important;
  }
  .md\:pt-14 {
    padding-top: 3.5rem !important;
  }
  .md\:pr-14 {
    padding-right: 3.5rem !important;
  }
  .md\:pb-14 {
    padding-bottom: 3.5rem !important;
  }
  .md\:pl-14 {
    padding-left: 3.5rem !important;
  }
  .md\:px-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .md\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .md\:m-14 {
    margin: 3.5rem !important;
  }
  .md\:mt-14 {
    margin-top: 3.5rem !important;
  }
  .md\:mr-14 {
    margin-right: 3.5rem !important;
  }
  .md\:mb-14 {
    margin-bottom: 3.5rem !important;
  }
  .md\:ml-14 {
    margin-left: 3.5rem !important;
  }
  .md\:mx-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .md\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-15 {
    padding: 3.75rem !important;
  }
  .md\:pt-15 {
    padding-top: 3.75rem !important;
  }
  .md\:pr-15 {
    padding-right: 3.75rem !important;
  }
  .md\:pb-15 {
    padding-bottom: 3.75rem !important;
  }
  .md\:pl-15 {
    padding-left: 3.75rem !important;
  }
  .md\:px-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .md\:py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .md\:m-15 {
    margin: 3.75rem !important;
  }
  .md\:mt-15 {
    margin-top: 3.75rem !important;
  }
  .md\:mr-15 {
    margin-right: 3.75rem !important;
  }
  .md\:mb-15 {
    margin-bottom: 3.75rem !important;
  }
  .md\:ml-15 {
    margin-left: 3.75rem !important;
  }
  .md\:mx-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .md\:my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-16 {
    padding: 4rem !important;
  }
  .md\:pt-16 {
    padding-top: 4rem !important;
  }
  .md\:pr-16 {
    padding-right: 4rem !important;
  }
  .md\:pb-16 {
    padding-bottom: 4rem !important;
  }
  .md\:pl-16 {
    padding-left: 4rem !important;
  }
  .md\:px-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .md\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .md\:m-16 {
    margin: 4rem !important;
  }
  .md\:mt-16 {
    margin-top: 4rem !important;
  }
  .md\:mr-16 {
    margin-right: 4rem !important;
  }
  .md\:mb-16 {
    margin-bottom: 4rem !important;
  }
  .md\:ml-16 {
    margin-left: 4rem !important;
  }
  .md\:mx-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .md\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-17 {
    padding: 4.25rem !important;
  }
  .md\:pt-17 {
    padding-top: 4.25rem !important;
  }
  .md\:pr-17 {
    padding-right: 4.25rem !important;
  }
  .md\:pb-17 {
    padding-bottom: 4.25rem !important;
  }
  .md\:pl-17 {
    padding-left: 4.25rem !important;
  }
  .md\:px-17 {
    padding-right: 4.25rem !important;
    padding-left: 4.25rem !important;
  }
  .md\:py-17 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }
  .md\:m-17 {
    margin: 4.25rem !important;
  }
  .md\:mt-17 {
    margin-top: 4.25rem !important;
  }
  .md\:mr-17 {
    margin-right: 4.25rem !important;
  }
  .md\:mb-17 {
    margin-bottom: 4.25rem !important;
  }
  .md\:ml-17 {
    margin-left: 4.25rem !important;
  }
  .md\:mx-17 {
    margin-right: 4.25rem !important;
    margin-left: 4.25rem !important;
  }
  .md\:my-17 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-18 {
    padding: 4.5rem !important;
  }
  .md\:pt-18 {
    padding-top: 4.5rem !important;
  }
  .md\:pr-18 {
    padding-right: 4.5rem !important;
  }
  .md\:pb-18 {
    padding-bottom: 4.5rem !important;
  }
  .md\:pl-18 {
    padding-left: 4.5rem !important;
  }
  .md\:px-18 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .md\:py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .md\:m-18 {
    margin: 4.5rem !important;
  }
  .md\:mt-18 {
    margin-top: 4.5rem !important;
  }
  .md\:mr-18 {
    margin-right: 4.5rem !important;
  }
  .md\:mb-18 {
    margin-bottom: 4.5rem !important;
  }
  .md\:ml-18 {
    margin-left: 4.5rem !important;
  }
  .md\:mx-18 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .md\:my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-19 {
    padding: 4.75rem !important;
  }
  .md\:pt-19 {
    padding-top: 4.75rem !important;
  }
  .md\:pr-19 {
    padding-right: 4.75rem !important;
  }
  .md\:pb-19 {
    padding-bottom: 4.75rem !important;
  }
  .md\:pl-19 {
    padding-left: 4.75rem !important;
  }
  .md\:px-19 {
    padding-right: 4.75rem !important;
    padding-left: 4.75rem !important;
  }
  .md\:py-19 {
    padding-top: 4.75rem !important;
    padding-bottom: 4.75rem !important;
  }
  .md\:m-19 {
    margin: 4.75rem !important;
  }
  .md\:mt-19 {
    margin-top: 4.75rem !important;
  }
  .md\:mr-19 {
    margin-right: 4.75rem !important;
  }
  .md\:mb-19 {
    margin-bottom: 4.75rem !important;
  }
  .md\:ml-19 {
    margin-left: 4.75rem !important;
  }
  .md\:mx-19 {
    margin-right: 4.75rem !important;
    margin-left: 4.75rem !important;
  }
  .md\:my-19 {
    margin-top: 4.75rem !important;
    margin-bottom: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-20 {
    padding: 5rem !important;
  }
  .md\:pt-20 {
    padding-top: 5rem !important;
  }
  .md\:pr-20 {
    padding-right: 5rem !important;
  }
  .md\:pb-20 {
    padding-bottom: 5rem !important;
  }
  .md\:pl-20 {
    padding-left: 5rem !important;
  }
  .md\:px-20 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .md\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .md\:m-20 {
    margin: 5rem !important;
  }
  .md\:mt-20 {
    margin-top: 5rem !important;
  }
  .md\:mr-20 {
    margin-right: 5rem !important;
  }
  .md\:mb-20 {
    margin-bottom: 5rem !important;
  }
  .md\:ml-20 {
    margin-left: 5rem !important;
  }
  .md\:mx-20 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .md\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-21 {
    padding: 5.25rem !important;
  }
  .md\:pt-21 {
    padding-top: 5.25rem !important;
  }
  .md\:pr-21 {
    padding-right: 5.25rem !important;
  }
  .md\:pb-21 {
    padding-bottom: 5.25rem !important;
  }
  .md\:pl-21 {
    padding-left: 5.25rem !important;
  }
  .md\:px-21 {
    padding-right: 5.25rem !important;
    padding-left: 5.25rem !important;
  }
  .md\:py-21 {
    padding-top: 5.25rem !important;
    padding-bottom: 5.25rem !important;
  }
  .md\:m-21 {
    margin: 5.25rem !important;
  }
  .md\:mt-21 {
    margin-top: 5.25rem !important;
  }
  .md\:mr-21 {
    margin-right: 5.25rem !important;
  }
  .md\:mb-21 {
    margin-bottom: 5.25rem !important;
  }
  .md\:ml-21 {
    margin-left: 5.25rem !important;
  }
  .md\:mx-21 {
    margin-right: 5.25rem !important;
    margin-left: 5.25rem !important;
  }
  .md\:my-21 {
    margin-top: 5.25rem !important;
    margin-bottom: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-22 {
    padding: 5.5rem !important;
  }
  .md\:pt-22 {
    padding-top: 5.5rem !important;
  }
  .md\:pr-22 {
    padding-right: 5.5rem !important;
  }
  .md\:pb-22 {
    padding-bottom: 5.5rem !important;
  }
  .md\:pl-22 {
    padding-left: 5.5rem !important;
  }
  .md\:px-22 {
    padding-right: 5.5rem !important;
    padding-left: 5.5rem !important;
  }
  .md\:py-22 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .md\:m-22 {
    margin: 5.5rem !important;
  }
  .md\:mt-22 {
    margin-top: 5.5rem !important;
  }
  .md\:mr-22 {
    margin-right: 5.5rem !important;
  }
  .md\:mb-22 {
    margin-bottom: 5.5rem !important;
  }
  .md\:ml-22 {
    margin-left: 5.5rem !important;
  }
  .md\:mx-22 {
    margin-right: 5.5rem !important;
    margin-left: 5.5rem !important;
  }
  .md\:my-22 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-23 {
    padding: 5.75rem !important;
  }
  .md\:pt-23 {
    padding-top: 5.75rem !important;
  }
  .md\:pr-23 {
    padding-right: 5.75rem !important;
  }
  .md\:pb-23 {
    padding-bottom: 5.75rem !important;
  }
  .md\:pl-23 {
    padding-left: 5.75rem !important;
  }
  .md\:px-23 {
    padding-right: 5.75rem !important;
    padding-left: 5.75rem !important;
  }
  .md\:py-23 {
    padding-top: 5.75rem !important;
    padding-bottom: 5.75rem !important;
  }
  .md\:m-23 {
    margin: 5.75rem !important;
  }
  .md\:mt-23 {
    margin-top: 5.75rem !important;
  }
  .md\:mr-23 {
    margin-right: 5.75rem !important;
  }
  .md\:mb-23 {
    margin-bottom: 5.75rem !important;
  }
  .md\:ml-23 {
    margin-left: 5.75rem !important;
  }
  .md\:mx-23 {
    margin-right: 5.75rem !important;
    margin-left: 5.75rem !important;
  }
  .md\:my-23 {
    margin-top: 5.75rem !important;
    margin-bottom: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:p-24 {
    padding: 6rem !important;
  }
  .md\:pt-24 {
    padding-top: 6rem !important;
  }
  .md\:pr-24 {
    padding-right: 6rem !important;
  }
  .md\:pb-24 {
    padding-bottom: 6rem !important;
  }
  .md\:pl-24 {
    padding-left: 6rem !important;
  }
  .md\:px-24 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .md\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .md\:m-24 {
    margin: 6rem !important;
  }
  .md\:mt-24 {
    margin-top: 6rem !important;
  }
  .md\:mr-24 {
    margin-right: 6rem !important;
  }
  .md\:mb-24 {
    margin-bottom: 6rem !important;
  }
  .md\:ml-24 {
    margin-left: 6rem !important;
  }
  .md\:mx-24 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .md\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:pt-auto {
    padding-top: auto !important;
  }
  .sm\:pr-auto {
    padding-right: auto !important;
  }
  .sm\:pb-auto {
    padding-bottom: auto !important;
  }
  .sm\:pl-auto {
    padding-left: auto !important;
  }
  .sm\:px-auto {
    padding-right: auto !important;
    padding-left: auto !important;
  }
  .sm\:py-auto {
    padding-top: auto !important;
    padding-bottom: auto !important;
  }
  .sm\:mt-auto {
    margin-top: auto !important;
  }
  .sm\:mr-auto {
    margin-right: auto !important;
  }
  .sm\:mb-auto {
    margin-bottom: auto !important;
  }
  .sm\:ml-auto {
    margin-left: auto !important;
  }
  .sm\:mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .sm\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-0 {
    padding: 0rem !important;
  }
  .sm\:pt-0 {
    padding-top: 0rem !important;
  }
  .sm\:pr-0 {
    padding-right: 0rem !important;
  }
  .sm\:pb-0 {
    padding-bottom: 0rem !important;
  }
  .sm\:pl-0 {
    padding-left: 0rem !important;
  }
  .sm\:px-0 {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
  }
  .sm\:py-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .sm\:m-0 {
    margin: 0rem !important;
  }
  .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\:mx-0 {
    margin-right: 0rem !important;
    margin-left: 0rem !important;
  }
  .sm\:my-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-1 {
    padding: 0.25rem !important;
  }
  .sm\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .sm\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .sm\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .sm\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .sm\:px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .sm\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .sm\:m-1 {
    margin: 0.25rem !important;
  }
  .sm\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .sm\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .sm\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .sm\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .sm\:mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .sm\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-2 {
    padding: 0.5rem !important;
  }
  .sm\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .sm\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .sm\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .sm\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .sm\:px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .sm\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .sm\:m-2 {
    margin: 0.5rem !important;
  }
  .sm\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .sm\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .sm\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .sm\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .sm\:mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .sm\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-3 {
    padding: 0.75rem !important;
  }
  .sm\:pt-3 {
    padding-top: 0.75rem !important;
  }
  .sm\:pr-3 {
    padding-right: 0.75rem !important;
  }
  .sm\:pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .sm\:pl-3 {
    padding-left: 0.75rem !important;
  }
  .sm\:px-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .sm\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .sm\:m-3 {
    margin: 0.75rem !important;
  }
  .sm\:mt-3 {
    margin-top: 0.75rem !important;
  }
  .sm\:mr-3 {
    margin-right: 0.75rem !important;
  }
  .sm\:mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .sm\:ml-3 {
    margin-left: 0.75rem !important;
  }
  .sm\:mx-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .sm\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-4 {
    padding: 1rem !important;
  }
  .sm\:pt-4 {
    padding-top: 1rem !important;
  }
  .sm\:pr-4 {
    padding-right: 1rem !important;
  }
  .sm\:pb-4 {
    padding-bottom: 1rem !important;
  }
  .sm\:pl-4 {
    padding-left: 1rem !important;
  }
  .sm\:px-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .sm\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .sm\:m-4 {
    margin: 1rem !important;
  }
  .sm\:mt-4 {
    margin-top: 1rem !important;
  }
  .sm\:mr-4 {
    margin-right: 1rem !important;
  }
  .sm\:mb-4 {
    margin-bottom: 1rem !important;
  }
  .sm\:ml-4 {
    margin-left: 1rem !important;
  }
  .sm\:mx-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .sm\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-5 {
    padding: 1.25rem !important;
  }
  .sm\:pt-5 {
    padding-top: 1.25rem !important;
  }
  .sm\:pr-5 {
    padding-right: 1.25rem !important;
  }
  .sm\:pb-5 {
    padding-bottom: 1.25rem !important;
  }
  .sm\:pl-5 {
    padding-left: 1.25rem !important;
  }
  .sm\:px-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .sm\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .sm\:m-5 {
    margin: 1.25rem !important;
  }
  .sm\:mt-5 {
    margin-top: 1.25rem !important;
  }
  .sm\:mr-5 {
    margin-right: 1.25rem !important;
  }
  .sm\:mb-5 {
    margin-bottom: 1.25rem !important;
  }
  .sm\:ml-5 {
    margin-left: 1.25rem !important;
  }
  .sm\:mx-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .sm\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-6 {
    padding: 1.5rem !important;
  }
  .sm\:pt-6 {
    padding-top: 1.5rem !important;
  }
  .sm\:pr-6 {
    padding-right: 1.5rem !important;
  }
  .sm\:pb-6 {
    padding-bottom: 1.5rem !important;
  }
  .sm\:pl-6 {
    padding-left: 1.5rem !important;
  }
  .sm\:px-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .sm\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .sm\:m-6 {
    margin: 1.5rem !important;
  }
  .sm\:mt-6 {
    margin-top: 1.5rem !important;
  }
  .sm\:mr-6 {
    margin-right: 1.5rem !important;
  }
  .sm\:mb-6 {
    margin-bottom: 1.5rem !important;
  }
  .sm\:ml-6 {
    margin-left: 1.5rem !important;
  }
  .sm\:mx-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .sm\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-7 {
    padding: 1.75rem !important;
  }
  .sm\:pt-7 {
    padding-top: 1.75rem !important;
  }
  .sm\:pr-7 {
    padding-right: 1.75rem !important;
  }
  .sm\:pb-7 {
    padding-bottom: 1.75rem !important;
  }
  .sm\:pl-7 {
    padding-left: 1.75rem !important;
  }
  .sm\:px-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .sm\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .sm\:m-7 {
    margin: 1.75rem !important;
  }
  .sm\:mt-7 {
    margin-top: 1.75rem !important;
  }
  .sm\:mr-7 {
    margin-right: 1.75rem !important;
  }
  .sm\:mb-7 {
    margin-bottom: 1.75rem !important;
  }
  .sm\:ml-7 {
    margin-left: 1.75rem !important;
  }
  .sm\:mx-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .sm\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-8 {
    padding: 2rem !important;
  }
  .sm\:pt-8 {
    padding-top: 2rem !important;
  }
  .sm\:pr-8 {
    padding-right: 2rem !important;
  }
  .sm\:pb-8 {
    padding-bottom: 2rem !important;
  }
  .sm\:pl-8 {
    padding-left: 2rem !important;
  }
  .sm\:px-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .sm\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .sm\:m-8 {
    margin: 2rem !important;
  }
  .sm\:mt-8 {
    margin-top: 2rem !important;
  }
  .sm\:mr-8 {
    margin-right: 2rem !important;
  }
  .sm\:mb-8 {
    margin-bottom: 2rem !important;
  }
  .sm\:ml-8 {
    margin-left: 2rem !important;
  }
  .sm\:mx-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .sm\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-9 {
    padding: 2.25rem !important;
  }
  .sm\:pt-9 {
    padding-top: 2.25rem !important;
  }
  .sm\:pr-9 {
    padding-right: 2.25rem !important;
  }
  .sm\:pb-9 {
    padding-bottom: 2.25rem !important;
  }
  .sm\:pl-9 {
    padding-left: 2.25rem !important;
  }
  .sm\:px-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .sm\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .sm\:m-9 {
    margin: 2.25rem !important;
  }
  .sm\:mt-9 {
    margin-top: 2.25rem !important;
  }
  .sm\:mr-9 {
    margin-right: 2.25rem !important;
  }
  .sm\:mb-9 {
    margin-bottom: 2.25rem !important;
  }
  .sm\:ml-9 {
    margin-left: 2.25rem !important;
  }
  .sm\:mx-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .sm\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-10 {
    padding: 2.5rem !important;
  }
  .sm\:pt-10 {
    padding-top: 2.5rem !important;
  }
  .sm\:pr-10 {
    padding-right: 2.5rem !important;
  }
  .sm\:pb-10 {
    padding-bottom: 2.5rem !important;
  }
  .sm\:pl-10 {
    padding-left: 2.5rem !important;
  }
  .sm\:px-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .sm\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .sm\:m-10 {
    margin: 2.5rem !important;
  }
  .sm\:mt-10 {
    margin-top: 2.5rem !important;
  }
  .sm\:mr-10 {
    margin-right: 2.5rem !important;
  }
  .sm\:mb-10 {
    margin-bottom: 2.5rem !important;
  }
  .sm\:ml-10 {
    margin-left: 2.5rem !important;
  }
  .sm\:mx-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .sm\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-11 {
    padding: 2.75rem !important;
  }
  .sm\:pt-11 {
    padding-top: 2.75rem !important;
  }
  .sm\:pr-11 {
    padding-right: 2.75rem !important;
  }
  .sm\:pb-11 {
    padding-bottom: 2.75rem !important;
  }
  .sm\:pl-11 {
    padding-left: 2.75rem !important;
  }
  .sm\:px-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }
  .sm\:py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .sm\:m-11 {
    margin: 2.75rem !important;
  }
  .sm\:mt-11 {
    margin-top: 2.75rem !important;
  }
  .sm\:mr-11 {
    margin-right: 2.75rem !important;
  }
  .sm\:mb-11 {
    margin-bottom: 2.75rem !important;
  }
  .sm\:ml-11 {
    margin-left: 2.75rem !important;
  }
  .sm\:mx-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .sm\:my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-12 {
    padding: 3rem !important;
  }
  .sm\:pt-12 {
    padding-top: 3rem !important;
  }
  .sm\:pr-12 {
    padding-right: 3rem !important;
  }
  .sm\:pb-12 {
    padding-bottom: 3rem !important;
  }
  .sm\:pl-12 {
    padding-left: 3rem !important;
  }
  .sm\:px-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .sm\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .sm\:m-12 {
    margin: 3rem !important;
  }
  .sm\:mt-12 {
    margin-top: 3rem !important;
  }
  .sm\:mr-12 {
    margin-right: 3rem !important;
  }
  .sm\:mb-12 {
    margin-bottom: 3rem !important;
  }
  .sm\:ml-12 {
    margin-left: 3rem !important;
  }
  .sm\:mx-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .sm\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-13 {
    padding: 3.25rem !important;
  }
  .sm\:pt-13 {
    padding-top: 3.25rem !important;
  }
  .sm\:pr-13 {
    padding-right: 3.25rem !important;
  }
  .sm\:pb-13 {
    padding-bottom: 3.25rem !important;
  }
  .sm\:pl-13 {
    padding-left: 3.25rem !important;
  }
  .sm\:px-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }
  .sm\:py-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }
  .sm\:m-13 {
    margin: 3.25rem !important;
  }
  .sm\:mt-13 {
    margin-top: 3.25rem !important;
  }
  .sm\:mr-13 {
    margin-right: 3.25rem !important;
  }
  .sm\:mb-13 {
    margin-bottom: 3.25rem !important;
  }
  .sm\:ml-13 {
    margin-left: 3.25rem !important;
  }
  .sm\:mx-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }
  .sm\:my-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-14 {
    padding: 3.5rem !important;
  }
  .sm\:pt-14 {
    padding-top: 3.5rem !important;
  }
  .sm\:pr-14 {
    padding-right: 3.5rem !important;
  }
  .sm\:pb-14 {
    padding-bottom: 3.5rem !important;
  }
  .sm\:pl-14 {
    padding-left: 3.5rem !important;
  }
  .sm\:px-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .sm\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .sm\:m-14 {
    margin: 3.5rem !important;
  }
  .sm\:mt-14 {
    margin-top: 3.5rem !important;
  }
  .sm\:mr-14 {
    margin-right: 3.5rem !important;
  }
  .sm\:mb-14 {
    margin-bottom: 3.5rem !important;
  }
  .sm\:ml-14 {
    margin-left: 3.5rem !important;
  }
  .sm\:mx-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .sm\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-15 {
    padding: 3.75rem !important;
  }
  .sm\:pt-15 {
    padding-top: 3.75rem !important;
  }
  .sm\:pr-15 {
    padding-right: 3.75rem !important;
  }
  .sm\:pb-15 {
    padding-bottom: 3.75rem !important;
  }
  .sm\:pl-15 {
    padding-left: 3.75rem !important;
  }
  .sm\:px-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .sm\:py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .sm\:m-15 {
    margin: 3.75rem !important;
  }
  .sm\:mt-15 {
    margin-top: 3.75rem !important;
  }
  .sm\:mr-15 {
    margin-right: 3.75rem !important;
  }
  .sm\:mb-15 {
    margin-bottom: 3.75rem !important;
  }
  .sm\:ml-15 {
    margin-left: 3.75rem !important;
  }
  .sm\:mx-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .sm\:my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-16 {
    padding: 4rem !important;
  }
  .sm\:pt-16 {
    padding-top: 4rem !important;
  }
  .sm\:pr-16 {
    padding-right: 4rem !important;
  }
  .sm\:pb-16 {
    padding-bottom: 4rem !important;
  }
  .sm\:pl-16 {
    padding-left: 4rem !important;
  }
  .sm\:px-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .sm\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .sm\:m-16 {
    margin: 4rem !important;
  }
  .sm\:mt-16 {
    margin-top: 4rem !important;
  }
  .sm\:mr-16 {
    margin-right: 4rem !important;
  }
  .sm\:mb-16 {
    margin-bottom: 4rem !important;
  }
  .sm\:ml-16 {
    margin-left: 4rem !important;
  }
  .sm\:mx-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .sm\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-17 {
    padding: 4.25rem !important;
  }
  .sm\:pt-17 {
    padding-top: 4.25rem !important;
  }
  .sm\:pr-17 {
    padding-right: 4.25rem !important;
  }
  .sm\:pb-17 {
    padding-bottom: 4.25rem !important;
  }
  .sm\:pl-17 {
    padding-left: 4.25rem !important;
  }
  .sm\:px-17 {
    padding-right: 4.25rem !important;
    padding-left: 4.25rem !important;
  }
  .sm\:py-17 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }
  .sm\:m-17 {
    margin: 4.25rem !important;
  }
  .sm\:mt-17 {
    margin-top: 4.25rem !important;
  }
  .sm\:mr-17 {
    margin-right: 4.25rem !important;
  }
  .sm\:mb-17 {
    margin-bottom: 4.25rem !important;
  }
  .sm\:ml-17 {
    margin-left: 4.25rem !important;
  }
  .sm\:mx-17 {
    margin-right: 4.25rem !important;
    margin-left: 4.25rem !important;
  }
  .sm\:my-17 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-18 {
    padding: 4.5rem !important;
  }
  .sm\:pt-18 {
    padding-top: 4.5rem !important;
  }
  .sm\:pr-18 {
    padding-right: 4.5rem !important;
  }
  .sm\:pb-18 {
    padding-bottom: 4.5rem !important;
  }
  .sm\:pl-18 {
    padding-left: 4.5rem !important;
  }
  .sm\:px-18 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .sm\:py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .sm\:m-18 {
    margin: 4.5rem !important;
  }
  .sm\:mt-18 {
    margin-top: 4.5rem !important;
  }
  .sm\:mr-18 {
    margin-right: 4.5rem !important;
  }
  .sm\:mb-18 {
    margin-bottom: 4.5rem !important;
  }
  .sm\:ml-18 {
    margin-left: 4.5rem !important;
  }
  .sm\:mx-18 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .sm\:my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-19 {
    padding: 4.75rem !important;
  }
  .sm\:pt-19 {
    padding-top: 4.75rem !important;
  }
  .sm\:pr-19 {
    padding-right: 4.75rem !important;
  }
  .sm\:pb-19 {
    padding-bottom: 4.75rem !important;
  }
  .sm\:pl-19 {
    padding-left: 4.75rem !important;
  }
  .sm\:px-19 {
    padding-right: 4.75rem !important;
    padding-left: 4.75rem !important;
  }
  .sm\:py-19 {
    padding-top: 4.75rem !important;
    padding-bottom: 4.75rem !important;
  }
  .sm\:m-19 {
    margin: 4.75rem !important;
  }
  .sm\:mt-19 {
    margin-top: 4.75rem !important;
  }
  .sm\:mr-19 {
    margin-right: 4.75rem !important;
  }
  .sm\:mb-19 {
    margin-bottom: 4.75rem !important;
  }
  .sm\:ml-19 {
    margin-left: 4.75rem !important;
  }
  .sm\:mx-19 {
    margin-right: 4.75rem !important;
    margin-left: 4.75rem !important;
  }
  .sm\:my-19 {
    margin-top: 4.75rem !important;
    margin-bottom: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-20 {
    padding: 5rem !important;
  }
  .sm\:pt-20 {
    padding-top: 5rem !important;
  }
  .sm\:pr-20 {
    padding-right: 5rem !important;
  }
  .sm\:pb-20 {
    padding-bottom: 5rem !important;
  }
  .sm\:pl-20 {
    padding-left: 5rem !important;
  }
  .sm\:px-20 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .sm\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .sm\:m-20 {
    margin: 5rem !important;
  }
  .sm\:mt-20 {
    margin-top: 5rem !important;
  }
  .sm\:mr-20 {
    margin-right: 5rem !important;
  }
  .sm\:mb-20 {
    margin-bottom: 5rem !important;
  }
  .sm\:ml-20 {
    margin-left: 5rem !important;
  }
  .sm\:mx-20 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .sm\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-21 {
    padding: 5.25rem !important;
  }
  .sm\:pt-21 {
    padding-top: 5.25rem !important;
  }
  .sm\:pr-21 {
    padding-right: 5.25rem !important;
  }
  .sm\:pb-21 {
    padding-bottom: 5.25rem !important;
  }
  .sm\:pl-21 {
    padding-left: 5.25rem !important;
  }
  .sm\:px-21 {
    padding-right: 5.25rem !important;
    padding-left: 5.25rem !important;
  }
  .sm\:py-21 {
    padding-top: 5.25rem !important;
    padding-bottom: 5.25rem !important;
  }
  .sm\:m-21 {
    margin: 5.25rem !important;
  }
  .sm\:mt-21 {
    margin-top: 5.25rem !important;
  }
  .sm\:mr-21 {
    margin-right: 5.25rem !important;
  }
  .sm\:mb-21 {
    margin-bottom: 5.25rem !important;
  }
  .sm\:ml-21 {
    margin-left: 5.25rem !important;
  }
  .sm\:mx-21 {
    margin-right: 5.25rem !important;
    margin-left: 5.25rem !important;
  }
  .sm\:my-21 {
    margin-top: 5.25rem !important;
    margin-bottom: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-22 {
    padding: 5.5rem !important;
  }
  .sm\:pt-22 {
    padding-top: 5.5rem !important;
  }
  .sm\:pr-22 {
    padding-right: 5.5rem !important;
  }
  .sm\:pb-22 {
    padding-bottom: 5.5rem !important;
  }
  .sm\:pl-22 {
    padding-left: 5.5rem !important;
  }
  .sm\:px-22 {
    padding-right: 5.5rem !important;
    padding-left: 5.5rem !important;
  }
  .sm\:py-22 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .sm\:m-22 {
    margin: 5.5rem !important;
  }
  .sm\:mt-22 {
    margin-top: 5.5rem !important;
  }
  .sm\:mr-22 {
    margin-right: 5.5rem !important;
  }
  .sm\:mb-22 {
    margin-bottom: 5.5rem !important;
  }
  .sm\:ml-22 {
    margin-left: 5.5rem !important;
  }
  .sm\:mx-22 {
    margin-right: 5.5rem !important;
    margin-left: 5.5rem !important;
  }
  .sm\:my-22 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-23 {
    padding: 5.75rem !important;
  }
  .sm\:pt-23 {
    padding-top: 5.75rem !important;
  }
  .sm\:pr-23 {
    padding-right: 5.75rem !important;
  }
  .sm\:pb-23 {
    padding-bottom: 5.75rem !important;
  }
  .sm\:pl-23 {
    padding-left: 5.75rem !important;
  }
  .sm\:px-23 {
    padding-right: 5.75rem !important;
    padding-left: 5.75rem !important;
  }
  .sm\:py-23 {
    padding-top: 5.75rem !important;
    padding-bottom: 5.75rem !important;
  }
  .sm\:m-23 {
    margin: 5.75rem !important;
  }
  .sm\:mt-23 {
    margin-top: 5.75rem !important;
  }
  .sm\:mr-23 {
    margin-right: 5.75rem !important;
  }
  .sm\:mb-23 {
    margin-bottom: 5.75rem !important;
  }
  .sm\:ml-23 {
    margin-left: 5.75rem !important;
  }
  .sm\:mx-23 {
    margin-right: 5.75rem !important;
    margin-left: 5.75rem !important;
  }
  .sm\:my-23 {
    margin-top: 5.75rem !important;
    margin-bottom: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:p-24 {
    padding: 6rem !important;
  }
  .sm\:pt-24 {
    padding-top: 6rem !important;
  }
  .sm\:pr-24 {
    padding-right: 6rem !important;
  }
  .sm\:pb-24 {
    padding-bottom: 6rem !important;
  }
  .sm\:pl-24 {
    padding-left: 6rem !important;
  }
  .sm\:px-24 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .sm\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .sm\:m-24 {
    margin: 6rem !important;
  }
  .sm\:mt-24 {
    margin-top: 6rem !important;
  }
  .sm\:mr-24 {
    margin-right: 6rem !important;
  }
  .sm\:mb-24 {
    margin-bottom: 6rem !important;
  }
  .sm\:ml-24 {
    margin-left: 6rem !important;
  }
  .sm\:mx-24 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .sm\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:pt-auto {
    padding-top: auto !important;
  }
  .xs\:pr-auto {
    padding-right: auto !important;
  }
  .xs\:pb-auto {
    padding-bottom: auto !important;
  }
  .xs\:pl-auto {
    padding-left: auto !important;
  }
  .xs\:px-auto {
    padding-right: auto !important;
    padding-left: auto !important;
  }
  .xs\:py-auto {
    padding-top: auto !important;
    padding-bottom: auto !important;
  }
  .xs\:mt-auto {
    margin-top: auto !important;
  }
  .xs\:mr-auto {
    margin-right: auto !important;
  }
  .xs\:mb-auto {
    margin-bottom: auto !important;
  }
  .xs\:ml-auto {
    margin-left: auto !important;
  }
  .xs\:mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .xs\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-0 {
    padding: 0rem !important;
  }
  .xs\:pt-0 {
    padding-top: 0rem !important;
  }
  .xs\:pr-0 {
    padding-right: 0rem !important;
  }
  .xs\:pb-0 {
    padding-bottom: 0rem !important;
  }
  .xs\:pl-0 {
    padding-left: 0rem !important;
  }
  .xs\:px-0 {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
  }
  .xs\:py-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .xs\:m-0 {
    margin: 0rem !important;
  }
  .xs\:mt-0 {
    margin-top: 0rem !important;
  }
  .xs\:mr-0 {
    margin-right: 0rem !important;
  }
  .xs\:mb-0 {
    margin-bottom: 0rem !important;
  }
  .xs\:ml-0 {
    margin-left: 0rem !important;
  }
  .xs\:mx-0 {
    margin-right: 0rem !important;
    margin-left: 0rem !important;
  }
  .xs\:my-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-1 {
    padding: 0.25rem !important;
  }
  .xs\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .xs\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .xs\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .xs\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .xs\:px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .xs\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .xs\:m-1 {
    margin: 0.25rem !important;
  }
  .xs\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .xs\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .xs\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .xs\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .xs\:mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .xs\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-2 {
    padding: 0.5rem !important;
  }
  .xs\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .xs\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .xs\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .xs\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .xs\:px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .xs\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .xs\:m-2 {
    margin: 0.5rem !important;
  }
  .xs\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .xs\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .xs\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .xs\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .xs\:mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .xs\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-3 {
    padding: 0.75rem !important;
  }
  .xs\:pt-3 {
    padding-top: 0.75rem !important;
  }
  .xs\:pr-3 {
    padding-right: 0.75rem !important;
  }
  .xs\:pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .xs\:pl-3 {
    padding-left: 0.75rem !important;
  }
  .xs\:px-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .xs\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .xs\:m-3 {
    margin: 0.75rem !important;
  }
  .xs\:mt-3 {
    margin-top: 0.75rem !important;
  }
  .xs\:mr-3 {
    margin-right: 0.75rem !important;
  }
  .xs\:mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .xs\:ml-3 {
    margin-left: 0.75rem !important;
  }
  .xs\:mx-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .xs\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-4 {
    padding: 1rem !important;
  }
  .xs\:pt-4 {
    padding-top: 1rem !important;
  }
  .xs\:pr-4 {
    padding-right: 1rem !important;
  }
  .xs\:pb-4 {
    padding-bottom: 1rem !important;
  }
  .xs\:pl-4 {
    padding-left: 1rem !important;
  }
  .xs\:px-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .xs\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .xs\:m-4 {
    margin: 1rem !important;
  }
  .xs\:mt-4 {
    margin-top: 1rem !important;
  }
  .xs\:mr-4 {
    margin-right: 1rem !important;
  }
  .xs\:mb-4 {
    margin-bottom: 1rem !important;
  }
  .xs\:ml-4 {
    margin-left: 1rem !important;
  }
  .xs\:mx-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .xs\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-5 {
    padding: 1.25rem !important;
  }
  .xs\:pt-5 {
    padding-top: 1.25rem !important;
  }
  .xs\:pr-5 {
    padding-right: 1.25rem !important;
  }
  .xs\:pb-5 {
    padding-bottom: 1.25rem !important;
  }
  .xs\:pl-5 {
    padding-left: 1.25rem !important;
  }
  .xs\:px-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .xs\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .xs\:m-5 {
    margin: 1.25rem !important;
  }
  .xs\:mt-5 {
    margin-top: 1.25rem !important;
  }
  .xs\:mr-5 {
    margin-right: 1.25rem !important;
  }
  .xs\:mb-5 {
    margin-bottom: 1.25rem !important;
  }
  .xs\:ml-5 {
    margin-left: 1.25rem !important;
  }
  .xs\:mx-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .xs\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-6 {
    padding: 1.5rem !important;
  }
  .xs\:pt-6 {
    padding-top: 1.5rem !important;
  }
  .xs\:pr-6 {
    padding-right: 1.5rem !important;
  }
  .xs\:pb-6 {
    padding-bottom: 1.5rem !important;
  }
  .xs\:pl-6 {
    padding-left: 1.5rem !important;
  }
  .xs\:px-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .xs\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .xs\:m-6 {
    margin: 1.5rem !important;
  }
  .xs\:mt-6 {
    margin-top: 1.5rem !important;
  }
  .xs\:mr-6 {
    margin-right: 1.5rem !important;
  }
  .xs\:mb-6 {
    margin-bottom: 1.5rem !important;
  }
  .xs\:ml-6 {
    margin-left: 1.5rem !important;
  }
  .xs\:mx-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .xs\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-7 {
    padding: 1.75rem !important;
  }
  .xs\:pt-7 {
    padding-top: 1.75rem !important;
  }
  .xs\:pr-7 {
    padding-right: 1.75rem !important;
  }
  .xs\:pb-7 {
    padding-bottom: 1.75rem !important;
  }
  .xs\:pl-7 {
    padding-left: 1.75rem !important;
  }
  .xs\:px-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .xs\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .xs\:m-7 {
    margin: 1.75rem !important;
  }
  .xs\:mt-7 {
    margin-top: 1.75rem !important;
  }
  .xs\:mr-7 {
    margin-right: 1.75rem !important;
  }
  .xs\:mb-7 {
    margin-bottom: 1.75rem !important;
  }
  .xs\:ml-7 {
    margin-left: 1.75rem !important;
  }
  .xs\:mx-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .xs\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-8 {
    padding: 2rem !important;
  }
  .xs\:pt-8 {
    padding-top: 2rem !important;
  }
  .xs\:pr-8 {
    padding-right: 2rem !important;
  }
  .xs\:pb-8 {
    padding-bottom: 2rem !important;
  }
  .xs\:pl-8 {
    padding-left: 2rem !important;
  }
  .xs\:px-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .xs\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .xs\:m-8 {
    margin: 2rem !important;
  }
  .xs\:mt-8 {
    margin-top: 2rem !important;
  }
  .xs\:mr-8 {
    margin-right: 2rem !important;
  }
  .xs\:mb-8 {
    margin-bottom: 2rem !important;
  }
  .xs\:ml-8 {
    margin-left: 2rem !important;
  }
  .xs\:mx-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .xs\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-9 {
    padding: 2.25rem !important;
  }
  .xs\:pt-9 {
    padding-top: 2.25rem !important;
  }
  .xs\:pr-9 {
    padding-right: 2.25rem !important;
  }
  .xs\:pb-9 {
    padding-bottom: 2.25rem !important;
  }
  .xs\:pl-9 {
    padding-left: 2.25rem !important;
  }
  .xs\:px-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .xs\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .xs\:m-9 {
    margin: 2.25rem !important;
  }
  .xs\:mt-9 {
    margin-top: 2.25rem !important;
  }
  .xs\:mr-9 {
    margin-right: 2.25rem !important;
  }
  .xs\:mb-9 {
    margin-bottom: 2.25rem !important;
  }
  .xs\:ml-9 {
    margin-left: 2.25rem !important;
  }
  .xs\:mx-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .xs\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-10 {
    padding: 2.5rem !important;
  }
  .xs\:pt-10 {
    padding-top: 2.5rem !important;
  }
  .xs\:pr-10 {
    padding-right: 2.5rem !important;
  }
  .xs\:pb-10 {
    padding-bottom: 2.5rem !important;
  }
  .xs\:pl-10 {
    padding-left: 2.5rem !important;
  }
  .xs\:px-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .xs\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .xs\:m-10 {
    margin: 2.5rem !important;
  }
  .xs\:mt-10 {
    margin-top: 2.5rem !important;
  }
  .xs\:mr-10 {
    margin-right: 2.5rem !important;
  }
  .xs\:mb-10 {
    margin-bottom: 2.5rem !important;
  }
  .xs\:ml-10 {
    margin-left: 2.5rem !important;
  }
  .xs\:mx-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .xs\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-11 {
    padding: 2.75rem !important;
  }
  .xs\:pt-11 {
    padding-top: 2.75rem !important;
  }
  .xs\:pr-11 {
    padding-right: 2.75rem !important;
  }
  .xs\:pb-11 {
    padding-bottom: 2.75rem !important;
  }
  .xs\:pl-11 {
    padding-left: 2.75rem !important;
  }
  .xs\:px-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }
  .xs\:py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .xs\:m-11 {
    margin: 2.75rem !important;
  }
  .xs\:mt-11 {
    margin-top: 2.75rem !important;
  }
  .xs\:mr-11 {
    margin-right: 2.75rem !important;
  }
  .xs\:mb-11 {
    margin-bottom: 2.75rem !important;
  }
  .xs\:ml-11 {
    margin-left: 2.75rem !important;
  }
  .xs\:mx-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .xs\:my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-12 {
    padding: 3rem !important;
  }
  .xs\:pt-12 {
    padding-top: 3rem !important;
  }
  .xs\:pr-12 {
    padding-right: 3rem !important;
  }
  .xs\:pb-12 {
    padding-bottom: 3rem !important;
  }
  .xs\:pl-12 {
    padding-left: 3rem !important;
  }
  .xs\:px-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .xs\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .xs\:m-12 {
    margin: 3rem !important;
  }
  .xs\:mt-12 {
    margin-top: 3rem !important;
  }
  .xs\:mr-12 {
    margin-right: 3rem !important;
  }
  .xs\:mb-12 {
    margin-bottom: 3rem !important;
  }
  .xs\:ml-12 {
    margin-left: 3rem !important;
  }
  .xs\:mx-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .xs\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-13 {
    padding: 3.25rem !important;
  }
  .xs\:pt-13 {
    padding-top: 3.25rem !important;
  }
  .xs\:pr-13 {
    padding-right: 3.25rem !important;
  }
  .xs\:pb-13 {
    padding-bottom: 3.25rem !important;
  }
  .xs\:pl-13 {
    padding-left: 3.25rem !important;
  }
  .xs\:px-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }
  .xs\:py-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }
  .xs\:m-13 {
    margin: 3.25rem !important;
  }
  .xs\:mt-13 {
    margin-top: 3.25rem !important;
  }
  .xs\:mr-13 {
    margin-right: 3.25rem !important;
  }
  .xs\:mb-13 {
    margin-bottom: 3.25rem !important;
  }
  .xs\:ml-13 {
    margin-left: 3.25rem !important;
  }
  .xs\:mx-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }
  .xs\:my-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-14 {
    padding: 3.5rem !important;
  }
  .xs\:pt-14 {
    padding-top: 3.5rem !important;
  }
  .xs\:pr-14 {
    padding-right: 3.5rem !important;
  }
  .xs\:pb-14 {
    padding-bottom: 3.5rem !important;
  }
  .xs\:pl-14 {
    padding-left: 3.5rem !important;
  }
  .xs\:px-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .xs\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .xs\:m-14 {
    margin: 3.5rem !important;
  }
  .xs\:mt-14 {
    margin-top: 3.5rem !important;
  }
  .xs\:mr-14 {
    margin-right: 3.5rem !important;
  }
  .xs\:mb-14 {
    margin-bottom: 3.5rem !important;
  }
  .xs\:ml-14 {
    margin-left: 3.5rem !important;
  }
  .xs\:mx-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .xs\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-15 {
    padding: 3.75rem !important;
  }
  .xs\:pt-15 {
    padding-top: 3.75rem !important;
  }
  .xs\:pr-15 {
    padding-right: 3.75rem !important;
  }
  .xs\:pb-15 {
    padding-bottom: 3.75rem !important;
  }
  .xs\:pl-15 {
    padding-left: 3.75rem !important;
  }
  .xs\:px-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .xs\:py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .xs\:m-15 {
    margin: 3.75rem !important;
  }
  .xs\:mt-15 {
    margin-top: 3.75rem !important;
  }
  .xs\:mr-15 {
    margin-right: 3.75rem !important;
  }
  .xs\:mb-15 {
    margin-bottom: 3.75rem !important;
  }
  .xs\:ml-15 {
    margin-left: 3.75rem !important;
  }
  .xs\:mx-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .xs\:my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-16 {
    padding: 4rem !important;
  }
  .xs\:pt-16 {
    padding-top: 4rem !important;
  }
  .xs\:pr-16 {
    padding-right: 4rem !important;
  }
  .xs\:pb-16 {
    padding-bottom: 4rem !important;
  }
  .xs\:pl-16 {
    padding-left: 4rem !important;
  }
  .xs\:px-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .xs\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .xs\:m-16 {
    margin: 4rem !important;
  }
  .xs\:mt-16 {
    margin-top: 4rem !important;
  }
  .xs\:mr-16 {
    margin-right: 4rem !important;
  }
  .xs\:mb-16 {
    margin-bottom: 4rem !important;
  }
  .xs\:ml-16 {
    margin-left: 4rem !important;
  }
  .xs\:mx-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .xs\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-17 {
    padding: 4.25rem !important;
  }
  .xs\:pt-17 {
    padding-top: 4.25rem !important;
  }
  .xs\:pr-17 {
    padding-right: 4.25rem !important;
  }
  .xs\:pb-17 {
    padding-bottom: 4.25rem !important;
  }
  .xs\:pl-17 {
    padding-left: 4.25rem !important;
  }
  .xs\:px-17 {
    padding-right: 4.25rem !important;
    padding-left: 4.25rem !important;
  }
  .xs\:py-17 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }
  .xs\:m-17 {
    margin: 4.25rem !important;
  }
  .xs\:mt-17 {
    margin-top: 4.25rem !important;
  }
  .xs\:mr-17 {
    margin-right: 4.25rem !important;
  }
  .xs\:mb-17 {
    margin-bottom: 4.25rem !important;
  }
  .xs\:ml-17 {
    margin-left: 4.25rem !important;
  }
  .xs\:mx-17 {
    margin-right: 4.25rem !important;
    margin-left: 4.25rem !important;
  }
  .xs\:my-17 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-18 {
    padding: 4.5rem !important;
  }
  .xs\:pt-18 {
    padding-top: 4.5rem !important;
  }
  .xs\:pr-18 {
    padding-right: 4.5rem !important;
  }
  .xs\:pb-18 {
    padding-bottom: 4.5rem !important;
  }
  .xs\:pl-18 {
    padding-left: 4.5rem !important;
  }
  .xs\:px-18 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .xs\:py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .xs\:m-18 {
    margin: 4.5rem !important;
  }
  .xs\:mt-18 {
    margin-top: 4.5rem !important;
  }
  .xs\:mr-18 {
    margin-right: 4.5rem !important;
  }
  .xs\:mb-18 {
    margin-bottom: 4.5rem !important;
  }
  .xs\:ml-18 {
    margin-left: 4.5rem !important;
  }
  .xs\:mx-18 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .xs\:my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-19 {
    padding: 4.75rem !important;
  }
  .xs\:pt-19 {
    padding-top: 4.75rem !important;
  }
  .xs\:pr-19 {
    padding-right: 4.75rem !important;
  }
  .xs\:pb-19 {
    padding-bottom: 4.75rem !important;
  }
  .xs\:pl-19 {
    padding-left: 4.75rem !important;
  }
  .xs\:px-19 {
    padding-right: 4.75rem !important;
    padding-left: 4.75rem !important;
  }
  .xs\:py-19 {
    padding-top: 4.75rem !important;
    padding-bottom: 4.75rem !important;
  }
  .xs\:m-19 {
    margin: 4.75rem !important;
  }
  .xs\:mt-19 {
    margin-top: 4.75rem !important;
  }
  .xs\:mr-19 {
    margin-right: 4.75rem !important;
  }
  .xs\:mb-19 {
    margin-bottom: 4.75rem !important;
  }
  .xs\:ml-19 {
    margin-left: 4.75rem !important;
  }
  .xs\:mx-19 {
    margin-right: 4.75rem !important;
    margin-left: 4.75rem !important;
  }
  .xs\:my-19 {
    margin-top: 4.75rem !important;
    margin-bottom: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-20 {
    padding: 5rem !important;
  }
  .xs\:pt-20 {
    padding-top: 5rem !important;
  }
  .xs\:pr-20 {
    padding-right: 5rem !important;
  }
  .xs\:pb-20 {
    padding-bottom: 5rem !important;
  }
  .xs\:pl-20 {
    padding-left: 5rem !important;
  }
  .xs\:px-20 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .xs\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .xs\:m-20 {
    margin: 5rem !important;
  }
  .xs\:mt-20 {
    margin-top: 5rem !important;
  }
  .xs\:mr-20 {
    margin-right: 5rem !important;
  }
  .xs\:mb-20 {
    margin-bottom: 5rem !important;
  }
  .xs\:ml-20 {
    margin-left: 5rem !important;
  }
  .xs\:mx-20 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .xs\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-21 {
    padding: 5.25rem !important;
  }
  .xs\:pt-21 {
    padding-top: 5.25rem !important;
  }
  .xs\:pr-21 {
    padding-right: 5.25rem !important;
  }
  .xs\:pb-21 {
    padding-bottom: 5.25rem !important;
  }
  .xs\:pl-21 {
    padding-left: 5.25rem !important;
  }
  .xs\:px-21 {
    padding-right: 5.25rem !important;
    padding-left: 5.25rem !important;
  }
  .xs\:py-21 {
    padding-top: 5.25rem !important;
    padding-bottom: 5.25rem !important;
  }
  .xs\:m-21 {
    margin: 5.25rem !important;
  }
  .xs\:mt-21 {
    margin-top: 5.25rem !important;
  }
  .xs\:mr-21 {
    margin-right: 5.25rem !important;
  }
  .xs\:mb-21 {
    margin-bottom: 5.25rem !important;
  }
  .xs\:ml-21 {
    margin-left: 5.25rem !important;
  }
  .xs\:mx-21 {
    margin-right: 5.25rem !important;
    margin-left: 5.25rem !important;
  }
  .xs\:my-21 {
    margin-top: 5.25rem !important;
    margin-bottom: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-22 {
    padding: 5.5rem !important;
  }
  .xs\:pt-22 {
    padding-top: 5.5rem !important;
  }
  .xs\:pr-22 {
    padding-right: 5.5rem !important;
  }
  .xs\:pb-22 {
    padding-bottom: 5.5rem !important;
  }
  .xs\:pl-22 {
    padding-left: 5.5rem !important;
  }
  .xs\:px-22 {
    padding-right: 5.5rem !important;
    padding-left: 5.5rem !important;
  }
  .xs\:py-22 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .xs\:m-22 {
    margin: 5.5rem !important;
  }
  .xs\:mt-22 {
    margin-top: 5.5rem !important;
  }
  .xs\:mr-22 {
    margin-right: 5.5rem !important;
  }
  .xs\:mb-22 {
    margin-bottom: 5.5rem !important;
  }
  .xs\:ml-22 {
    margin-left: 5.5rem !important;
  }
  .xs\:mx-22 {
    margin-right: 5.5rem !important;
    margin-left: 5.5rem !important;
  }
  .xs\:my-22 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-23 {
    padding: 5.75rem !important;
  }
  .xs\:pt-23 {
    padding-top: 5.75rem !important;
  }
  .xs\:pr-23 {
    padding-right: 5.75rem !important;
  }
  .xs\:pb-23 {
    padding-bottom: 5.75rem !important;
  }
  .xs\:pl-23 {
    padding-left: 5.75rem !important;
  }
  .xs\:px-23 {
    padding-right: 5.75rem !important;
    padding-left: 5.75rem !important;
  }
  .xs\:py-23 {
    padding-top: 5.75rem !important;
    padding-bottom: 5.75rem !important;
  }
  .xs\:m-23 {
    margin: 5.75rem !important;
  }
  .xs\:mt-23 {
    margin-top: 5.75rem !important;
  }
  .xs\:mr-23 {
    margin-right: 5.75rem !important;
  }
  .xs\:mb-23 {
    margin-bottom: 5.75rem !important;
  }
  .xs\:ml-23 {
    margin-left: 5.75rem !important;
  }
  .xs\:mx-23 {
    margin-right: 5.75rem !important;
    margin-left: 5.75rem !important;
  }
  .xs\:my-23 {
    margin-top: 5.75rem !important;
    margin-bottom: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:p-24 {
    padding: 6rem !important;
  }
  .xs\:pt-24 {
    padding-top: 6rem !important;
  }
  .xs\:pr-24 {
    padding-right: 6rem !important;
  }
  .xs\:pb-24 {
    padding-bottom: 6rem !important;
  }
  .xs\:pl-24 {
    padding-left: 6rem !important;
  }
  .xs\:px-24 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .xs\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .xs\:m-24 {
    margin: 6rem !important;
  }
  .xs\:mt-24 {
    margin-top: 6rem !important;
  }
  .xs\:mr-24 {
    margin-right: 6rem !important;
  }
  .xs\:mb-24 {
    margin-bottom: 6rem !important;
  }
  .xs\:ml-24 {
    margin-left: 6rem !important;
  }
  .xs\:mx-24 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .xs\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-0 {
    gap: 0rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-2 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-3 {
    gap: 0.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-4 {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-5 {
    gap: 1.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-6 {
    gap: 1.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-7 {
    gap: 1.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-8 {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-9 {
    gap: 2.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-10 {
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-11 {
    gap: 2.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-12 {
    gap: 3rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-13 {
    gap: 3.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-14 {
    gap: 3.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-15 {
    gap: 3.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-16 {
    gap: 4rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-17 {
    gap: 4.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-18 {
    gap: 4.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-19 {
    gap: 4.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-20 {
    gap: 5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-21 {
    gap: 5.25rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-22 {
    gap: 5.5rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-23 {
    gap: 5.75rem !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:gap-24 {
    gap: 6rem !important;
  }
}
.text-left {
  text-align: left !important;
}

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

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

.text-bold {
  font-weight: bold !important;
}

.text-red {
  color: red !important;
}

@media screen and (max-width: 1599px) {
  .xxl\:text-left {
    text-align: left !important;
  }
  .xxl\:text-right {
    text-align: right !important;
  }
  .xxl\:text-center {
    text-align: center !important;
  }
  .xxl\:text-bold {
    font-weight: bold !important;
  }
  .xxl\:text-red {
    color: red !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:text-left {
    text-align: left !important;
  }
  .xl\:text-right {
    text-align: right !important;
  }
  .xl\:text-center {
    text-align: center !important;
  }
  .xl\:text-bold {
    font-weight: bold !important;
  }
  .xl\:text-red {
    color: red !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:text-left {
    text-align: left !important;
  }
  .lg\:text-right {
    text-align: right !important;
  }
  .lg\:text-center {
    text-align: center !important;
  }
  .lg\:text-bold {
    font-weight: bold !important;
  }
  .lg\:text-red {
    color: red !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:text-left {
    text-align: left !important;
  }
  .md\:text-right {
    text-align: right !important;
  }
  .md\:text-center {
    text-align: center !important;
  }
  .md\:text-bold {
    font-weight: bold !important;
  }
  .md\:text-red {
    color: red !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:text-left {
    text-align: left !important;
  }
  .sm\:text-right {
    text-align: right !important;
  }
  .sm\:text-center {
    text-align: center !important;
  }
  .sm\:text-bold {
    font-weight: bold !important;
  }
  .sm\:text-red {
    color: red !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:text-left {
    text-align: left !important;
  }
  .xs\:text-right {
    text-align: right !important;
  }
  .xs\:text-center {
    text-align: center !important;
  }
  .xs\:text-bold {
    font-weight: bold !important;
  }
  .xs\:text-red {
    color: red !important;
  }
}
.text-xs {
  font-size: 0.75rem !important;
  line-height: 1rem !important;
}

.text-sm {
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
}

.text-base {
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}

.text-lg {
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
}

.text-xl {
  font-size: 1.25rem !important;
  line-height: 1.75rem !important;
}

.text-2xl {
  font-size: 1.5rem !important;
  line-height: 2rem !important;
}

.text-3xl {
  font-size: 1.875rem !important;
  line-height: 2.25rem !important;
}

.text-4xl {
  font-size: 2.25rem !important;
  line-height: 2.5rem !important;
}

.text-5xl {
  font-size: 3rem !important;
  line-height: 1 !important;
}

.text-6xl {
  font-size: 3.75rem !important;
  line-height: 1 !important;
}

@media screen and (max-width: 1599px) {
  .xxl\:text-xs {
    font-size: 0.75rem !important;
    line-height: 1rem !important;
  }
  .xxl\:text-sm {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
  }
  .xxl\:text-base {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
  .xxl\:text-lg {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }
  .xxl\:text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }
  .xxl\:text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }
  .xxl\:text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }
  .xxl\:text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }
  .xxl\:text-5xl {
    font-size: 3rem !important;
    line-height: 1 !important;
  }
  .xxl\:text-6xl {
    font-size: 3.75rem !important;
    line-height: 1 !important;
  }
}
@media screen and (max-width: 1199px) {
  .xl\:text-xs {
    font-size: 0.75rem !important;
    line-height: 1rem !important;
  }
  .xl\:text-sm {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
  }
  .xl\:text-base {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
  .xl\:text-lg {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }
  .xl\:text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }
  .xl\:text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }
  .xl\:text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }
  .xl\:text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }
  .xl\:text-5xl {
    font-size: 3rem !important;
    line-height: 1 !important;
  }
  .xl\:text-6xl {
    font-size: 3.75rem !important;
    line-height: 1 !important;
  }
}
@media screen and (max-width: 999px) {
  .lg\:text-xs {
    font-size: 0.75rem !important;
    line-height: 1rem !important;
  }
  .lg\:text-sm {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
  }
  .lg\:text-base {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
  .lg\:text-lg {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }
  .lg\:text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }
  .lg\:text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }
  .lg\:text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }
  .lg\:text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }
  .lg\:text-5xl {
    font-size: 3rem !important;
    line-height: 1 !important;
  }
  .lg\:text-6xl {
    font-size: 3.75rem !important;
    line-height: 1 !important;
  }
}
@media screen and (max-width: 767px) {
  .md\:text-xs {
    font-size: 0.75rem !important;
    line-height: 1rem !important;
  }
  .md\:text-sm {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
  }
  .md\:text-base {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
  .md\:text-lg {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }
  .md\:text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }
  .md\:text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }
  .md\:text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }
  .md\:text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }
  .md\:text-5xl {
    font-size: 3rem !important;
    line-height: 1 !important;
  }
  .md\:text-6xl {
    font-size: 3.75rem !important;
    line-height: 1 !important;
  }
}
@media screen and (max-width: 559px) {
  .sm\:text-xs {
    font-size: 0.75rem !important;
    line-height: 1rem !important;
  }
  .sm\:text-sm {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
  }
  .sm\:text-base {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
  .sm\:text-lg {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }
  .sm\:text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }
  .sm\:text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }
  .sm\:text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }
  .sm\:text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }
  .sm\:text-5xl {
    font-size: 3rem !important;
    line-height: 1 !important;
  }
  .sm\:text-6xl {
    font-size: 3.75rem !important;
    line-height: 1 !important;
  }
}
@media screen and (max-width: 399px) {
  .xs\:text-xs {
    font-size: 0.75rem !important;
    line-height: 1rem !important;
  }
  .xs\:text-sm {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
  }
  .xs\:text-base {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
  .xs\:text-lg {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }
  .xs\:text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }
  .xs\:text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }
  .xs\:text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }
  .xs\:text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }
  .xs\:text-5xl {
    font-size: 3rem !important;
    line-height: 1 !important;
  }
  .xs\:text-6xl {
    font-size: 3.75rem !important;
    line-height: 1 !important;
  }
}