html {
  scroll-behavior: smooth;
}

.body {
  box-sizing: border-box;
}

.border-box {
  box-sizing: border-box;
}

.no-underline {
  text-decoration: none !important;
}

.underline {
  text-decoration: underline !important;
}

.header-shadow {
  box-shadow: 0px 3.81px 11.98px 0px rgba(0, 0, 0, 0.3019607843);
}

.header-style {
  background-color: #0B0016;
  width: 100%;
}

.header-image {
  width: 210px !important;
  padding-bottom: 10px;
}

.header-text-style:active,
.header-text-style:hover,
.anchor.active {
  color: #EF4136 !important;
}

.flex {
  display: flex !important;
  flex-direction: row !important;
}

.flex-row-reverse {
  display: flex !important;
  flex-direction: row-reverse !important;
}

.flex-col {
  display: flex !important;
  flex-direction: column !important;
}

.justify-between {
  justify-content: space-between !important;
}

.justify-evenly {
  justify-content: space-evenly !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-end {
  justify-content: end !important;
}

.items-center {
  align-items: center !important;
}

.items-end {
  align-items: end !important;
}

.grid {
  display: grid !important;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}

.col-span-1 {
  grid-column: span 1/span 1;
}

.col-start-1 {
  grid-column-start: 1;
}

.col-end-1 {
  grid-column-end: 1;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.col-span-2 {
  grid-column: span 2/span 2;
}

.col-start-2 {
  grid-column-start: 2;
}

.col-end-2 {
  grid-column-end: 2;
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.col-span-3 {
  grid-column: span 3/span 3;
}

.col-start-3 {
  grid-column-start: 3;
}

.col-end-3 {
  grid-column-end: 3;
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.col-span-4 {
  grid-column: span 4/span 4;
}

.col-start-4 {
  grid-column-start: 4;
}

.col-end-4 {
  grid-column-end: 4;
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.col-span-5 {
  grid-column: span 5/span 5;
}

.col-start-5 {
  grid-column-start: 5;
}

.col-end-5 {
  grid-column-end: 5;
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.col-span-6 {
  grid-column: span 6/span 6;
}

.col-start-6 {
  grid-column-start: 6;
}

.col-end-6 {
  grid-column-end: 6;
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
}

.col-span-7 {
  grid-column: span 7/span 7;
}

.col-start-7 {
  grid-column-start: 7;
}

.col-end-7 {
  grid-column-end: 7;
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
}

.col-span-8 {
  grid-column: span 8/span 8;
}

.col-start-8 {
  grid-column-start: 8;
}

.col-end-8 {
  grid-column-end: 8;
}

.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
}

.col-span-9 {
  grid-column: span 9/span 9;
}

.col-start-9 {
  grid-column-start: 9;
}

.col-end-9 {
  grid-column-end: 9;
}

.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
}

.col-span-10 {
  grid-column: span 10/span 10;
}

.col-start-10 {
  grid-column-start: 10;
}

.col-end-10 {
  grid-column-end: 10;
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
}

.col-span-12 {
  grid-column: span 12/span 12;
}

.col-start-12 {
  grid-column-start: 12;
}

.col-end-12 {
  grid-column-end: 12;
}

.p-0 {
  padding: 0px !important;
}

.px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.mx-0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.my-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.m-0 {
  margin-bottom: 0px !important;
  margin-top: 0px !important;
  margin-right: 0px !important;
  margin-left: 0px !important;
}

.gap-0 {
  gap: 0px;
}

.gap-x-0 {
  -moz-column-gap: 0px;
       column-gap: 0px;
}

.gap-y-0 {
  row-gap: 0px;
}

.text-0 {
  font-size: 0px !important;
}

.h-0 {
  height: 0px !important;
}

.w-0 {
  width: 0px !important;
}

.top-0 {
  top: 0px;
}

.-top-0 {
  top: 0px;
}

.bottom-0 {
  bottom: 0px;
}

.-bottom-0 {
  bottom: 0px;
}

.left-0 {
  left: 0px;
}

.-left-0 {
  left: 0px;
}

.right-0 {
  right: 0px;
}

.-right-0 {
  right: 0px;
}

.start-0 {
  inset-inline-start: 0px;
}

.-start-0 {
  inset-inline-start: 0px;
}

.end-0 {
  inset-inline-end: 0px;
}

.-end-0 {
  inset-inline-end: 0px;
}

.p-1 {
  padding: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.m-1 {
  margin-bottom: 0.25rem !important;
  margin-top: 0.25rem !important;
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-x-1 {
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}

.gap-y-1 {
  row-gap: 0.25rem;
}

.text-1 {
  font-size: 0.25rem !important;
}

.h-1 {
  height: 0.25rem !important;
}

.w-1 {
  width: 0.25rem !important;
}

.top-1 {
  top: 0.25rem;
}

.-top-1 {
  top: -0.25rem;
}

.bottom-1 {
  bottom: 0.25rem;
}

.-bottom-1 {
  bottom: -0.25rem;
}

.left-1 {
  left: 0.25rem;
}

.-left-1 {
  left: -0.25rem;
}

.right-1 {
  right: 0.25rem;
}

.-right-1 {
  right: -0.25rem;
}

.start-1 {
  inset-inline-start: 0.25rem;
}

.-start-1 {
  inset-inline-start: -0.25rem;
}

.end-1 {
  inset-inline-end: 0.25rem;
}

.-end-1 {
  inset-inline-end: -0.25rem;
}

.p-2 {
  padding: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.m-2 {
  margin-bottom: 0.5rem !important;
  margin-top: 0.5rem !important;
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-x-2 {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.gap-y-2 {
  row-gap: 0.5rem;
}

.text-2 {
  font-size: 0.5rem !important;
}

.h-2 {
  height: 0.5rem !important;
}

.w-2 {
  width: 0.5rem !important;
}

.top-2 {
  top: 0.5rem;
}

.-top-2 {
  top: -0.5rem;
}

.bottom-2 {
  bottom: 0.5rem;
}

.-bottom-2 {
  bottom: -0.5rem;
}

.left-2 {
  left: 0.5rem;
}

.-left-2 {
  left: -0.5rem;
}

.right-2 {
  right: 0.5rem;
}

.-right-2 {
  right: -0.5rem;
}

.start-2 {
  inset-inline-start: 0.5rem;
}

.-start-2 {
  inset-inline-start: -0.5rem;
}

.end-2 {
  inset-inline-end: 0.5rem;
}

.-end-2 {
  inset-inline-end: -0.5rem;
}

.p-2-and-half {
  padding: 0.625rem !important;
}

.px-2-and-half {
  padding-left: 0.625rem !important;
  padding-right: 0.625rem !important;
}

.py-2-and-half {
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem !important;
}

.pl-2-and-half {
  padding-left: 0.625rem !important;
}

.pr-2-and-half {
  padding-right: 0.625rem !important;
}

.pt-2-and-half {
  padding-top: 0.625rem !important;
}

.pb-2-and-half {
  padding-bottom: 0.625rem !important;
}

.mx-2-and-half {
  margin-left: 0.625rem !important;
  margin-right: 0.625rem !important;
}

.my-2-and-half {
  margin-top: 0.625rem !important;
  margin-bottom: 0.625rem !important;
}

.ml-2-and-half {
  margin-left: 0.625rem !important;
}

.mr-2-and-half {
  margin-right: 0.625rem !important;
}

.mt-2-and-half {
  margin-top: 0.625rem !important;
}

.mb-2-and-half {
  margin-bottom: 0.625rem !important;
}

.m-2-and-half {
  margin-bottom: 0.625rem !important;
  margin-top: 0.625rem !important;
  margin-right: 0.625rem !important;
  margin-left: 0.625rem !important;
}

.gap-2-and-half {
  gap: 0.625rem;
}

.gap-x-2-and-half {
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
}

.gap-y-2-and-half {
  row-gap: 0.625rem;
}

.text-2-and-half {
  font-size: 0.625rem !important;
}

.h-2-and-half {
  height: 0.625rem !important;
}

.w-2-and-half {
  width: 0.625rem !important;
}

.top-2-and-half {
  top: 0.625rem;
}

.-top-2-and-half {
  top: -0.625rem;
}

.bottom-2-and-half {
  bottom: 0.625rem;
}

.-bottom-2-and-half {
  bottom: -0.625rem;
}

.left-2-and-half {
  left: 0.625rem;
}

.-left-2-and-half {
  left: -0.625rem;
}

.right-2-and-half {
  right: 0.625rem;
}

.-right-2-and-half {
  right: -0.625rem;
}

.start-2-and-half {
  inset-inline-start: 0.625rem;
}

.-start-2-and-half {
  inset-inline-start: -0.625rem;
}

.end-2-and-half {
  inset-inline-end: 0.625rem;
}

.-end-2-and-half {
  inset-inline-end: -0.625rem;
}

.p-3 {
  padding: 0.75rem !important;
}

.px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.pl-3 {
  padding-left: 0.75rem !important;
}

.pr-3 {
  padding-right: 0.75rem !important;
}

.pt-3 {
  padding-top: 0.75rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.mx-3 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.ml-3 {
  margin-left: 0.75rem !important;
}

.mr-3 {
  margin-right: 0.75rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.m-3 {
  margin-bottom: 0.75rem !important;
  margin-top: 0.75rem !important;
  margin-right: 0.75rem !important;
  margin-left: 0.75rem !important;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-x-3 {
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.gap-y-3 {
  row-gap: 0.75rem;
}

.text-3 {
  font-size: 0.75rem !important;
}

.h-3 {
  height: 0.75rem !important;
}

.w-3 {
  width: 0.75rem !important;
}

.top-3 {
  top: 0.75rem;
}

.-top-3 {
  top: -0.75rem;
}

.bottom-3 {
  bottom: 0.75rem;
}

.-bottom-3 {
  bottom: -0.75rem;
}

.left-3 {
  left: 0.75rem;
}

.-left-3 {
  left: -0.75rem;
}

.right-3 {
  right: 0.75rem;
}

.-right-3 {
  right: -0.75rem;
}

.start-3 {
  inset-inline-start: 0.75rem;
}

.-start-3 {
  inset-inline-start: -0.75rem;
}

.end-3 {
  inset-inline-end: 0.75rem;
}

.-end-3 {
  inset-inline-end: -0.75rem;
}

.p-4 {
  padding: 1rem !important;
}

.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.pl-4 {
  padding-left: 1rem !important;
}

.pr-4 {
  padding-right: 1rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.m-4 {
  margin-bottom: 1rem !important;
  margin-top: 1rem !important;
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.gap-4 {
  gap: 1rem;
}

.gap-x-4 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.gap-y-4 {
  row-gap: 1rem;
}

.text-4 {
  font-size: 1rem !important;
}

.h-4 {
  height: 1rem !important;
}

.w-4 {
  width: 1rem !important;
}

.top-4 {
  top: 1rem;
}

.-top-4 {
  top: -1rem;
}

.bottom-4 {
  bottom: 1rem;
}

.-bottom-4 {
  bottom: -1rem;
}

.left-4 {
  left: 1rem;
}

.-left-4 {
  left: -1rem;
}

.right-4 {
  right: 1rem;
}

.-right-4 {
  right: -1rem;
}

.start-4 {
  inset-inline-start: 1rem;
}

.-start-4 {
  inset-inline-start: -1rem;
}

.end-4 {
  inset-inline-end: 1rem;
}

.-end-4 {
  inset-inline-end: -1rem;
}

.p-4-and-half {
  padding: 1.075rem !important;
}

.px-4-and-half {
  padding-left: 1.075rem !important;
  padding-right: 1.075rem !important;
}

.py-4-and-half {
  padding-top: 1.075rem !important;
  padding-bottom: 1.075rem !important;
}

.pl-4-and-half {
  padding-left: 1.075rem !important;
}

.pr-4-and-half {
  padding-right: 1.075rem !important;
}

.pt-4-and-half {
  padding-top: 1.075rem !important;
}

.pb-4-and-half {
  padding-bottom: 1.075rem !important;
}

.mx-4-and-half {
  margin-left: 1.075rem !important;
  margin-right: 1.075rem !important;
}

.my-4-and-half {
  margin-top: 1.075rem !important;
  margin-bottom: 1.075rem !important;
}

.ml-4-and-half {
  margin-left: 1.075rem !important;
}

.mr-4-and-half {
  margin-right: 1.075rem !important;
}

.mt-4-and-half {
  margin-top: 1.075rem !important;
}

.mb-4-and-half {
  margin-bottom: 1.075rem !important;
}

.m-4-and-half {
  margin-bottom: 1.075rem !important;
  margin-top: 1.075rem !important;
  margin-right: 1.075rem !important;
  margin-left: 1.075rem !important;
}

.gap-4-and-half {
  gap: 1.075rem;
}

.gap-x-4-and-half {
  -moz-column-gap: 1.075rem;
       column-gap: 1.075rem;
}

.gap-y-4-and-half {
  row-gap: 1.075rem;
}

.text-4-and-half {
  font-size: 1.075rem !important;
}

.h-4-and-half {
  height: 1.075rem !important;
}

.w-4-and-half {
  width: 1.075rem !important;
}

.top-4-and-half {
  top: 1.075rem;
}

.-top-4-and-half {
  top: -1.075rem;
}

.bottom-4-and-half {
  bottom: 1.075rem;
}

.-bottom-4-and-half {
  bottom: -1.075rem;
}

.left-4-and-half {
  left: 1.075rem;
}

.-left-4-and-half {
  left: -1.075rem;
}

.right-4-and-half {
  right: 1.075rem;
}

.-right-4-and-half {
  right: -1.075rem;
}

.start-4-and-half {
  inset-inline-start: 1.075rem;
}

.-start-4-and-half {
  inset-inline-start: -1.075rem;
}

.end-4-and-half {
  inset-inline-end: 1.075rem;
}

.-end-4-and-half {
  inset-inline-end: -1.075rem;
}

.p-5 {
  padding: 1.25rem !important;
}

.px-5 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.py-5 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.pl-5 {
  padding-left: 1.25rem !important;
}

.pr-5 {
  padding-right: 1.25rem !important;
}

.pt-5 {
  padding-top: 1.25rem !important;
}

.pb-5 {
  padding-bottom: 1.25rem !important;
}

.mx-5 {
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important;
}

.my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.ml-5 {
  margin-left: 1.25rem !important;
}

.mr-5 {
  margin-right: 1.25rem !important;
}

.mt-5 {
  margin-top: 1.25rem !important;
}

.mb-5 {
  margin-bottom: 1.25rem !important;
}

.m-5 {
  margin-bottom: 1.25rem !important;
  margin-top: 1.25rem !important;
  margin-right: 1.25rem !important;
  margin-left: 1.25rem !important;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-x-5 {
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.gap-y-5 {
  row-gap: 1.25rem;
}

.text-5 {
  font-size: 1.25rem !important;
}

.h-5 {
  height: 1.25rem !important;
}

.w-5 {
  width: 1.25rem !important;
}

.top-5 {
  top: 1.25rem;
}

.-top-5 {
  top: -1.25rem;
}

.bottom-5 {
  bottom: 1.25rem;
}

.-bottom-5 {
  bottom: -1.25rem;
}

.left-5 {
  left: 1.25rem;
}

.-left-5 {
  left: -1.25rem;
}

.right-5 {
  right: 1.25rem;
}

.-right-5 {
  right: -1.25rem;
}

.start-5 {
  inset-inline-start: 1.25rem;
}

.-start-5 {
  inset-inline-start: -1.25rem;
}

.end-5 {
  inset-inline-end: 1.25rem;
}

.-end-5 {
  inset-inline-end: -1.25rem;
}

.p-6 {
  padding: 1.5rem !important;
}

.px-6 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-6 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.pl-6 {
  padding-left: 1.5rem !important;
}

.pr-6 {
  padding-right: 1.5rem !important;
}

.pt-6 {
  padding-top: 1.5rem !important;
}

.pb-6 {
  padding-bottom: 1.5rem !important;
}

.mx-6 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.ml-6 {
  margin-left: 1.5rem !important;
}

.mr-6 {
  margin-right: 1.5rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.m-6 {
  margin-bottom: 1.5rem !important;
  margin-top: 1.5rem !important;
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-x-6 {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.gap-y-6 {
  row-gap: 1.5rem;
}

.text-6 {
  font-size: 1.5rem !important;
}

.h-6 {
  height: 1.5rem !important;
}

.w-6 {
  width: 1.5rem !important;
}

.top-6 {
  top: 1.5rem;
}

.-top-6 {
  top: -1.5rem;
}

.bottom-6 {
  bottom: 1.5rem;
}

.-bottom-6 {
  bottom: -1.5rem;
}

.left-6 {
  left: 1.5rem;
}

.-left-6 {
  left: -1.5rem;
}

.right-6 {
  right: 1.5rem;
}

.-right-6 {
  right: -1.5rem;
}

.start-6 {
  inset-inline-start: 1.5rem;
}

.-start-6 {
  inset-inline-start: -1.5rem;
}

.end-6 {
  inset-inline-end: 1.5rem;
}

.-end-6 {
  inset-inline-end: -1.5rem;
}

.p-6-and-half {
  padding: 1.7rem !important;
}

.px-6-and-half {
  padding-left: 1.7rem !important;
  padding-right: 1.7rem !important;
}

.py-6-and-half {
  padding-top: 1.7rem !important;
  padding-bottom: 1.7rem !important;
}

.pl-6-and-half {
  padding-left: 1.7rem !important;
}

.pr-6-and-half {
  padding-right: 1.7rem !important;
}

.pt-6-and-half {
  padding-top: 1.7rem !important;
}

.pb-6-and-half {
  padding-bottom: 1.7rem !important;
}

.mx-6-and-half {
  margin-left: 1.7rem !important;
  margin-right: 1.7rem !important;
}

.my-6-and-half {
  margin-top: 1.7rem !important;
  margin-bottom: 1.7rem !important;
}

.ml-6-and-half {
  margin-left: 1.7rem !important;
}

.mr-6-and-half {
  margin-right: 1.7rem !important;
}

.mt-6-and-half {
  margin-top: 1.7rem !important;
}

.mb-6-and-half {
  margin-bottom: 1.7rem !important;
}

.m-6-and-half {
  margin-bottom: 1.7rem !important;
  margin-top: 1.7rem !important;
  margin-right: 1.7rem !important;
  margin-left: 1.7rem !important;
}

.gap-6-and-half {
  gap: 1.7rem;
}

.gap-x-6-and-half {
  -moz-column-gap: 1.7rem;
       column-gap: 1.7rem;
}

.gap-y-6-and-half {
  row-gap: 1.7rem;
}

.text-6-and-half {
  font-size: 1.7rem !important;
}

.h-6-and-half {
  height: 1.7rem !important;
}

.w-6-and-half {
  width: 1.7rem !important;
}

.top-6-and-half {
  top: 1.7rem;
}

.-top-6-and-half {
  top: -1.7rem;
}

.bottom-6-and-half {
  bottom: 1.7rem;
}

.-bottom-6-and-half {
  bottom: -1.7rem;
}

.left-6-and-half {
  left: 1.7rem;
}

.-left-6-and-half {
  left: -1.7rem;
}

.right-6-and-half {
  right: 1.7rem;
}

.-right-6-and-half {
  right: -1.7rem;
}

.start-6-and-half {
  inset-inline-start: 1.7rem;
}

.-start-6-and-half {
  inset-inline-start: -1.7rem;
}

.end-6-and-half {
  inset-inline-end: 1.7rem;
}

.-end-6-and-half {
  inset-inline-end: -1.7rem;
}

.p-7 {
  padding: 1.75rem !important;
}

.px-7 {
  padding-left: 1.75rem !important;
  padding-right: 1.75rem !important;
}

.py-7 {
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

.pl-7 {
  padding-left: 1.75rem !important;
}

.pr-7 {
  padding-right: 1.75rem !important;
}

.pt-7 {
  padding-top: 1.75rem !important;
}

.pb-7 {
  padding-bottom: 1.75rem !important;
}

.mx-7 {
  margin-left: 1.75rem !important;
  margin-right: 1.75rem !important;
}

.my-7 {
  margin-top: 1.75rem !important;
  margin-bottom: 1.75rem !important;
}

.ml-7 {
  margin-left: 1.75rem !important;
}

.mr-7 {
  margin-right: 1.75rem !important;
}

.mt-7 {
  margin-top: 1.75rem !important;
}

.mb-7 {
  margin-bottom: 1.75rem !important;
}

.m-7 {
  margin-bottom: 1.75rem !important;
  margin-top: 1.75rem !important;
  margin-right: 1.75rem !important;
  margin-left: 1.75rem !important;
}

.gap-7 {
  gap: 1.75rem;
}

.gap-x-7 {
  -moz-column-gap: 1.75rem;
       column-gap: 1.75rem;
}

.gap-y-7 {
  row-gap: 1.75rem;
}

.text-7 {
  font-size: 1.75rem !important;
}

.h-7 {
  height: 1.75rem !important;
}

.w-7 {
  width: 1.75rem !important;
}

.top-7 {
  top: 1.75rem;
}

.-top-7 {
  top: -1.75rem;
}

.bottom-7 {
  bottom: 1.75rem;
}

.-bottom-7 {
  bottom: -1.75rem;
}

.left-7 {
  left: 1.75rem;
}

.-left-7 {
  left: -1.75rem;
}

.right-7 {
  right: 1.75rem;
}

.-right-7 {
  right: -1.75rem;
}

.start-7 {
  inset-inline-start: 1.75rem;
}

.-start-7 {
  inset-inline-start: -1.75rem;
}

.end-7 {
  inset-inline-end: 1.75rem;
}

.-end-7 {
  inset-inline-end: -1.75rem;
}

.p-8 {
  padding: 2rem !important;
}

.px-8 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.pl-8 {
  padding-left: 2rem !important;
}

.pr-8 {
  padding-right: 2rem !important;
}

.pt-8 {
  padding-top: 2rem !important;
}

.pb-8 {
  padding-bottom: 2rem !important;
}

.mx-8 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.my-8 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.ml-8 {
  margin-left: 2rem !important;
}

.mr-8 {
  margin-right: 2rem !important;
}

.mt-8 {
  margin-top: 2rem !important;
}

.mb-8 {
  margin-bottom: 2rem !important;
}

.m-8 {
  margin-bottom: 2rem !important;
  margin-top: 2rem !important;
  margin-right: 2rem !important;
  margin-left: 2rem !important;
}

.gap-8 {
  gap: 2rem;
}

.gap-x-8 {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.gap-y-8 {
  row-gap: 2rem;
}

.text-8 {
  font-size: 2rem !important;
}

.h-8 {
  height: 2rem !important;
}

.w-8 {
  width: 2rem !important;
}

.top-8 {
  top: 2rem;
}

.-top-8 {
  top: -2rem;
}

.bottom-8 {
  bottom: 2rem;
}

.-bottom-8 {
  bottom: -2rem;
}

.left-8 {
  left: 2rem;
}

.-left-8 {
  left: -2rem;
}

.right-8 {
  right: 2rem;
}

.-right-8 {
  right: -2rem;
}

.start-8 {
  inset-inline-start: 2rem;
}

.-start-8 {
  inset-inline-start: -2rem;
}

.end-8 {
  inset-inline-end: 2rem;
}

.-end-8 {
  inset-inline-end: -2rem;
}

.p-9 {
  padding: 2.25rem !important;
}

.px-9 {
  padding-left: 2.25rem !important;
  padding-right: 2.25rem !important;
}

.py-9 {
  padding-top: 2.25rem !important;
  padding-bottom: 2.25rem !important;
}

.pl-9 {
  padding-left: 2.25rem !important;
}

.pr-9 {
  padding-right: 2.25rem !important;
}

.pt-9 {
  padding-top: 2.25rem !important;
}

.pb-9 {
  padding-bottom: 2.25rem !important;
}

.mx-9 {
  margin-left: 2.25rem !important;
  margin-right: 2.25rem !important;
}

.my-9 {
  margin-top: 2.25rem !important;
  margin-bottom: 2.25rem !important;
}

.ml-9 {
  margin-left: 2.25rem !important;
}

.mr-9 {
  margin-right: 2.25rem !important;
}

.mt-9 {
  margin-top: 2.25rem !important;
}

.mb-9 {
  margin-bottom: 2.25rem !important;
}

.m-9 {
  margin-bottom: 2.25rem !important;
  margin-top: 2.25rem !important;
  margin-right: 2.25rem !important;
  margin-left: 2.25rem !important;
}

.gap-9 {
  gap: 2.25rem;
}

.gap-x-9 {
  -moz-column-gap: 2.25rem;
       column-gap: 2.25rem;
}

.gap-y-9 {
  row-gap: 2.25rem;
}

.text-9 {
  font-size: 2.25rem !important;
}

.h-9 {
  height: 2.25rem !important;
}

.w-9 {
  width: 2.25rem !important;
}

.top-9 {
  top: 2.25rem;
}

.-top-9 {
  top: -2.25rem;
}

.bottom-9 {
  bottom: 2.25rem;
}

.-bottom-9 {
  bottom: -2.25rem;
}

.left-9 {
  left: 2.25rem;
}

.-left-9 {
  left: -2.25rem;
}

.right-9 {
  right: 2.25rem;
}

.-right-9 {
  right: -2.25rem;
}

.start-9 {
  inset-inline-start: 2.25rem;
}

.-start-9 {
  inset-inline-start: -2.25rem;
}

.end-9 {
  inset-inline-end: 2.25rem;
}

.-end-9 {
  inset-inline-end: -2.25rem;
}

.p-10 {
  padding: 2.5rem !important;
}

.px-10 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.py-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.pl-10 {
  padding-left: 2.5rem !important;
}

.pr-10 {
  padding-right: 2.5rem !important;
}

.pt-10 {
  padding-top: 2.5rem !important;
}

.pb-10 {
  padding-bottom: 2.5rem !important;
}

.mx-10 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.my-10 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.ml-10 {
  margin-left: 2.5rem !important;
}

.mr-10 {
  margin-right: 2.5rem !important;
}

.mt-10 {
  margin-top: 2.5rem !important;
}

.mb-10 {
  margin-bottom: 2.5rem !important;
}

.m-10 {
  margin-bottom: 2.5rem !important;
  margin-top: 2.5rem !important;
  margin-right: 2.5rem !important;
  margin-left: 2.5rem !important;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-x-10 {
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

.gap-y-10 {
  row-gap: 2.5rem;
}

.text-10 {
  font-size: 2.5rem !important;
}

.h-10 {
  height: 2.5rem !important;
}

.w-10 {
  width: 2.5rem !important;
}

.top-10 {
  top: 2.5rem;
}

.-top-10 {
  top: -2.5rem;
}

.bottom-10 {
  bottom: 2.5rem;
}

.-bottom-10 {
  bottom: -2.5rem;
}

.left-10 {
  left: 2.5rem;
}

.-left-10 {
  left: -2.5rem;
}

.right-10 {
  right: 2.5rem;
}

.-right-10 {
  right: -2.5rem;
}

.start-10 {
  inset-inline-start: 2.5rem;
}

.-start-10 {
  inset-inline-start: -2.5rem;
}

.end-10 {
  inset-inline-end: 2.5rem;
}

.-end-10 {
  inset-inline-end: -2.5rem;
}

.p-11 {
  padding: 2.75rem !important;
}

.px-11 {
  padding-left: 2.75rem !important;
  padding-right: 2.75rem !important;
}

.py-11 {
  padding-top: 2.75rem !important;
  padding-bottom: 2.75rem !important;
}

.pl-11 {
  padding-left: 2.75rem !important;
}

.pr-11 {
  padding-right: 2.75rem !important;
}

.pt-11 {
  padding-top: 2.75rem !important;
}

.pb-11 {
  padding-bottom: 2.75rem !important;
}

.mx-11 {
  margin-left: 2.75rem !important;
  margin-right: 2.75rem !important;
}

.my-11 {
  margin-top: 2.75rem !important;
  margin-bottom: 2.75rem !important;
}

.ml-11 {
  margin-left: 2.75rem !important;
}

.mr-11 {
  margin-right: 2.75rem !important;
}

.mt-11 {
  margin-top: 2.75rem !important;
}

.mb-11 {
  margin-bottom: 2.75rem !important;
}

.m-11 {
  margin-bottom: 2.75rem !important;
  margin-top: 2.75rem !important;
  margin-right: 2.75rem !important;
  margin-left: 2.75rem !important;
}

.gap-11 {
  gap: 2.75rem;
}

.gap-x-11 {
  -moz-column-gap: 2.75rem;
       column-gap: 2.75rem;
}

.gap-y-11 {
  row-gap: 2.75rem;
}

.text-11 {
  font-size: 2.75rem !important;
}

.h-11 {
  height: 2.75rem !important;
}

.w-11 {
  width: 2.75rem !important;
}

.top-11 {
  top: 2.75rem;
}

.-top-11 {
  top: -2.75rem;
}

.bottom-11 {
  bottom: 2.75rem;
}

.-bottom-11 {
  bottom: -2.75rem;
}

.left-11 {
  left: 2.75rem;
}

.-left-11 {
  left: -2.75rem;
}

.right-11 {
  right: 2.75rem;
}

.-right-11 {
  right: -2.75rem;
}

.start-11 {
  inset-inline-start: 2.75rem;
}

.-start-11 {
  inset-inline-start: -2.75rem;
}

.end-11 {
  inset-inline-end: 2.75rem;
}

.-end-11 {
  inset-inline-end: -2.75rem;
}

.p-12 {
  padding: 3rem !important;
}

.px-12 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-12 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pl-12 {
  padding-left: 3rem !important;
}

.pr-12 {
  padding-right: 3rem !important;
}

.pt-12 {
  padding-top: 3rem !important;
}

.pb-12 {
  padding-bottom: 3rem !important;
}

.mx-12 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-12 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.ml-12 {
  margin-left: 3rem !important;
}

.mr-12 {
  margin-right: 3rem !important;
}

.mt-12 {
  margin-top: 3rem !important;
}

.mb-12 {
  margin-bottom: 3rem !important;
}

.m-12 {
  margin-bottom: 3rem !important;
  margin-top: 3rem !important;
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.gap-12 {
  gap: 3rem;
}

.gap-x-12 {
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.gap-y-12 {
  row-gap: 3rem;
}

.text-12 {
  font-size: 3rem !important;
}

.h-12 {
  height: 3rem !important;
}

.w-12 {
  width: 3rem !important;
}

.top-12 {
  top: 3rem;
}

.-top-12 {
  top: -3rem;
}

.bottom-12 {
  bottom: 3rem;
}

.-bottom-12 {
  bottom: -3rem;
}

.left-12 {
  left: 3rem;
}

.-left-12 {
  left: -3rem;
}

.right-12 {
  right: 3rem;
}

.-right-12 {
  right: -3rem;
}

.start-12 {
  inset-inline-start: 3rem;
}

.-start-12 {
  inset-inline-start: -3rem;
}

.end-12 {
  inset-inline-end: 3rem;
}

.-end-12 {
  inset-inline-end: -3rem;
}

.p-14 {
  padding: 3.5rem !important;
}

.px-14 {
  padding-left: 3.5rem !important;
  padding-right: 3.5rem !important;
}

.py-14 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.pl-14 {
  padding-left: 3.5rem !important;
}

.pr-14 {
  padding-right: 3.5rem !important;
}

.pt-14 {
  padding-top: 3.5rem !important;
}

.pb-14 {
  padding-bottom: 3.5rem !important;
}

.mx-14 {
  margin-left: 3.5rem !important;
  margin-right: 3.5rem !important;
}

.my-14 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

.ml-14 {
  margin-left: 3.5rem !important;
}

.mr-14 {
  margin-right: 3.5rem !important;
}

.mt-14 {
  margin-top: 3.5rem !important;
}

.mb-14 {
  margin-bottom: 3.5rem !important;
}

.m-14 {
  margin-bottom: 3.5rem !important;
  margin-top: 3.5rem !important;
  margin-right: 3.5rem !important;
  margin-left: 3.5rem !important;
}

.gap-14 {
  gap: 3.5rem;
}

.gap-x-14 {
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}

.gap-y-14 {
  row-gap: 3.5rem;
}

.text-14 {
  font-size: 3.5rem !important;
}

.h-14 {
  height: 3.5rem !important;
}

.w-14 {
  width: 3.5rem !important;
}

.top-14 {
  top: 3.5rem;
}

.-top-14 {
  top: -3.5rem;
}

.bottom-14 {
  bottom: 3.5rem;
}

.-bottom-14 {
  bottom: -3.5rem;
}

.left-14 {
  left: 3.5rem;
}

.-left-14 {
  left: -3.5rem;
}

.right-14 {
  right: 3.5rem;
}

.-right-14 {
  right: -3.5rem;
}

.start-14 {
  inset-inline-start: 3.5rem;
}

.-start-14 {
  inset-inline-start: -3.5rem;
}

.end-14 {
  inset-inline-end: 3.5rem;
}

.-end-14 {
  inset-inline-end: -3.5rem;
}

.p-15 {
  padding: 3.75rem !important;
}

.px-15 {
  padding-left: 3.75rem !important;
  padding-right: 3.75rem !important;
}

.py-15 {
  padding-top: 3.75rem !important;
  padding-bottom: 3.75rem !important;
}

.pl-15 {
  padding-left: 3.75rem !important;
}

.pr-15 {
  padding-right: 3.75rem !important;
}

.pt-15 {
  padding-top: 3.75rem !important;
}

.pb-15 {
  padding-bottom: 3.75rem !important;
}

.mx-15 {
  margin-left: 3.75rem !important;
  margin-right: 3.75rem !important;
}

.my-15 {
  margin-top: 3.75rem !important;
  margin-bottom: 3.75rem !important;
}

.ml-15 {
  margin-left: 3.75rem !important;
}

.mr-15 {
  margin-right: 3.75rem !important;
}

.mt-15 {
  margin-top: 3.75rem !important;
}

.mb-15 {
  margin-bottom: 3.75rem !important;
}

.m-15 {
  margin-bottom: 3.75rem !important;
  margin-top: 3.75rem !important;
  margin-right: 3.75rem !important;
  margin-left: 3.75rem !important;
}

.gap-15 {
  gap: 3.75rem;
}

.gap-x-15 {
  -moz-column-gap: 3.75rem;
       column-gap: 3.75rem;
}

.gap-y-15 {
  row-gap: 3.75rem;
}

.text-15 {
  font-size: 3.75rem !important;
}

.h-15 {
  height: 3.75rem !important;
}

.w-15 {
  width: 3.75rem !important;
}

.top-15 {
  top: 3.75rem;
}

.-top-15 {
  top: -3.75rem;
}

.bottom-15 {
  bottom: 3.75rem;
}

.-bottom-15 {
  bottom: -3.75rem;
}

.left-15 {
  left: 3.75rem;
}

.-left-15 {
  left: -3.75rem;
}

.right-15 {
  right: 3.75rem;
}

.-right-15 {
  right: -3.75rem;
}

.start-15 {
  inset-inline-start: 3.75rem;
}

.-start-15 {
  inset-inline-start: -3.75rem;
}

.end-15 {
  inset-inline-end: 3.75rem;
}

.-end-15 {
  inset-inline-end: -3.75rem;
}

.p-16 {
  padding: 4rem !important;
}

.px-16 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.py-16 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.pl-16 {
  padding-left: 4rem !important;
}

.pr-16 {
  padding-right: 4rem !important;
}

.pt-16 {
  padding-top: 4rem !important;
}

.pb-16 {
  padding-bottom: 4rem !important;
}

.mx-16 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.my-16 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.ml-16 {
  margin-left: 4rem !important;
}

.mr-16 {
  margin-right: 4rem !important;
}

.mt-16 {
  margin-top: 4rem !important;
}

.mb-16 {
  margin-bottom: 4rem !important;
}

.m-16 {
  margin-bottom: 4rem !important;
  margin-top: 4rem !important;
  margin-right: 4rem !important;
  margin-left: 4rem !important;
}

.gap-16 {
  gap: 4rem;
}

.gap-x-16 {
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}

.gap-y-16 {
  row-gap: 4rem;
}

.text-16 {
  font-size: 4rem !important;
}

.h-16 {
  height: 4rem !important;
}

.w-16 {
  width: 4rem !important;
}

.top-16 {
  top: 4rem;
}

.-top-16 {
  top: -4rem;
}

.bottom-16 {
  bottom: 4rem;
}

.-bottom-16 {
  bottom: -4rem;
}

.left-16 {
  left: 4rem;
}

.-left-16 {
  left: -4rem;
}

.right-16 {
  right: 4rem;
}

.-right-16 {
  right: -4rem;
}

.start-16 {
  inset-inline-start: 4rem;
}

.-start-16 {
  inset-inline-start: -4rem;
}

.end-16 {
  inset-inline-end: 4rem;
}

.-end-16 {
  inset-inline-end: -4rem;
}

.p-18 {
  padding: 4.5rem !important;
}

.px-18 {
  padding-left: 4.5rem !important;
  padding-right: 4.5rem !important;
}

.py-18 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.pl-18 {
  padding-left: 4.5rem !important;
}

.pr-18 {
  padding-right: 4.5rem !important;
}

.pt-18 {
  padding-top: 4.5rem !important;
}

.pb-18 {
  padding-bottom: 4.5rem !important;
}

.mx-18 {
  margin-left: 4.5rem !important;
  margin-right: 4.5rem !important;
}

.my-18 {
  margin-top: 4.5rem !important;
  margin-bottom: 4.5rem !important;
}

.ml-18 {
  margin-left: 4.5rem !important;
}

.mr-18 {
  margin-right: 4.5rem !important;
}

.mt-18 {
  margin-top: 4.5rem !important;
}

.mb-18 {
  margin-bottom: 4.5rem !important;
}

.m-18 {
  margin-bottom: 4.5rem !important;
  margin-top: 4.5rem !important;
  margin-right: 4.5rem !important;
  margin-left: 4.5rem !important;
}

.gap-18 {
  gap: 4.5rem;
}

.gap-x-18 {
  -moz-column-gap: 4.5rem;
       column-gap: 4.5rem;
}

.gap-y-18 {
  row-gap: 4.5rem;
}

.text-18 {
  font-size: 4.5rem !important;
}

.h-18 {
  height: 4.5rem !important;
}

.w-18 {
  width: 4.5rem !important;
}

.top-18 {
  top: 4.5rem;
}

.-top-18 {
  top: -4.5rem;
}

.bottom-18 {
  bottom: 4.5rem;
}

.-bottom-18 {
  bottom: -4.5rem;
}

.left-18 {
  left: 4.5rem;
}

.-left-18 {
  left: -4.5rem;
}

.right-18 {
  right: 4.5rem;
}

.-right-18 {
  right: -4.5rem;
}

.start-18 {
  inset-inline-start: 4.5rem;
}

.-start-18 {
  inset-inline-start: -4.5rem;
}

.end-18 {
  inset-inline-end: 4.5rem;
}

.-end-18 {
  inset-inline-end: -4.5rem;
}

.p-20 {
  padding: 5rem !important;
}

.px-20 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.py-20 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.pl-20 {
  padding-left: 5rem !important;
}

.pr-20 {
  padding-right: 5rem !important;
}

.pt-20 {
  padding-top: 5rem !important;
}

.pb-20 {
  padding-bottom: 5rem !important;
}

.mx-20 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.my-20 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.ml-20 {
  margin-left: 5rem !important;
}

.mr-20 {
  margin-right: 5rem !important;
}

.mt-20 {
  margin-top: 5rem !important;
}

.mb-20 {
  margin-bottom: 5rem !important;
}

.m-20 {
  margin-bottom: 5rem !important;
  margin-top: 5rem !important;
  margin-right: 5rem !important;
  margin-left: 5rem !important;
}

.gap-20 {
  gap: 5rem;
}

.gap-x-20 {
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}

.gap-y-20 {
  row-gap: 5rem;
}

.text-20 {
  font-size: 5rem !important;
}

.h-20 {
  height: 5rem !important;
}

.w-20 {
  width: 5rem !important;
}

.top-20 {
  top: 5rem;
}

.-top-20 {
  top: -5rem;
}

.bottom-20 {
  bottom: 5rem;
}

.-bottom-20 {
  bottom: -5rem;
}

.left-20 {
  left: 5rem;
}

.-left-20 {
  left: -5rem;
}

.right-20 {
  right: 5rem;
}

.-right-20 {
  right: -5rem;
}

.start-20 {
  inset-inline-start: 5rem;
}

.-start-20 {
  inset-inline-start: -5rem;
}

.end-20 {
  inset-inline-end: 5rem;
}

.-end-20 {
  inset-inline-end: -5rem;
}

.p-24 {
  padding: 6rem !important;
}

.px-24 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

.py-24 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.pl-24 {
  padding-left: 6rem !important;
}

.pr-24 {
  padding-right: 6rem !important;
}

.pt-24 {
  padding-top: 6rem !important;
}

.pb-24 {
  padding-bottom: 6rem !important;
}

.mx-24 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.my-24 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.ml-24 {
  margin-left: 6rem !important;
}

.mr-24 {
  margin-right: 6rem !important;
}

.mt-24 {
  margin-top: 6rem !important;
}

.mb-24 {
  margin-bottom: 6rem !important;
}

.m-24 {
  margin-bottom: 6rem !important;
  margin-top: 6rem !important;
  margin-right: 6rem !important;
  margin-left: 6rem !important;
}

.gap-24 {
  gap: 6rem;
}

.gap-x-24 {
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}

.gap-y-24 {
  row-gap: 6rem;
}

.text-24 {
  font-size: 6rem !important;
}

.h-24 {
  height: 6rem !important;
}

.w-24 {
  width: 6rem !important;
}

.top-24 {
  top: 6rem;
}

.-top-24 {
  top: -6rem;
}

.bottom-24 {
  bottom: 6rem;
}

.-bottom-24 {
  bottom: -6rem;
}

.left-24 {
  left: 6rem;
}

.-left-24 {
  left: -6rem;
}

.right-24 {
  right: 6rem;
}

.-right-24 {
  right: -6rem;
}

.start-24 {
  inset-inline-start: 6rem;
}

.-start-24 {
  inset-inline-start: -6rem;
}

.end-24 {
  inset-inline-end: 6rem;
}

.-end-24 {
  inset-inline-end: -6rem;
}

.p-28 {
  padding: 7rem !important;
}

.px-28 {
  padding-left: 7rem !important;
  padding-right: 7rem !important;
}

.py-28 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

.pl-28 {
  padding-left: 7rem !important;
}

.pr-28 {
  padding-right: 7rem !important;
}

.pt-28 {
  padding-top: 7rem !important;
}

.pb-28 {
  padding-bottom: 7rem !important;
}

.mx-28 {
  margin-left: 7rem !important;
  margin-right: 7rem !important;
}

.my-28 {
  margin-top: 7rem !important;
  margin-bottom: 7rem !important;
}

.ml-28 {
  margin-left: 7rem !important;
}

.mr-28 {
  margin-right: 7rem !important;
}

.mt-28 {
  margin-top: 7rem !important;
}

.mb-28 {
  margin-bottom: 7rem !important;
}

.m-28 {
  margin-bottom: 7rem !important;
  margin-top: 7rem !important;
  margin-right: 7rem !important;
  margin-left: 7rem !important;
}

.gap-28 {
  gap: 7rem;
}

.gap-x-28 {
  -moz-column-gap: 7rem;
       column-gap: 7rem;
}

.gap-y-28 {
  row-gap: 7rem;
}

.text-28 {
  font-size: 7rem !important;
}

.h-28 {
  height: 7rem !important;
}

.w-28 {
  width: 7rem !important;
}

.top-28 {
  top: 7rem;
}

.-top-28 {
  top: -7rem;
}

.bottom-28 {
  bottom: 7rem;
}

.-bottom-28 {
  bottom: -7rem;
}

.left-28 {
  left: 7rem;
}

.-left-28 {
  left: -7rem;
}

.right-28 {
  right: 7rem;
}

.-right-28 {
  right: -7rem;
}

.start-28 {
  inset-inline-start: 7rem;
}

.-start-28 {
  inset-inline-start: -7rem;
}

.end-28 {
  inset-inline-end: 7rem;
}

.-end-28 {
  inset-inline-end: -7rem;
}

.p-32 {
  padding: 8rem !important;
}

.px-32 {
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}

.py-32 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.pl-32 {
  padding-left: 8rem !important;
}

.pr-32 {
  padding-right: 8rem !important;
}

.pt-32 {
  padding-top: 8rem !important;
}

.pb-32 {
  padding-bottom: 8rem !important;
}

.mx-32 {
  margin-left: 8rem !important;
  margin-right: 8rem !important;
}

.my-32 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

.ml-32 {
  margin-left: 8rem !important;
}

.mr-32 {
  margin-right: 8rem !important;
}

.mt-32 {
  margin-top: 8rem !important;
}

.mb-32 {
  margin-bottom: 8rem !important;
}

.m-32 {
  margin-bottom: 8rem !important;
  margin-top: 8rem !important;
  margin-right: 8rem !important;
  margin-left: 8rem !important;
}

.gap-32 {
  gap: 8rem;
}

.gap-x-32 {
  -moz-column-gap: 8rem;
       column-gap: 8rem;
}

.gap-y-32 {
  row-gap: 8rem;
}

.text-32 {
  font-size: 8rem !important;
}

.h-32 {
  height: 8rem !important;
}

.w-32 {
  width: 8rem !important;
}

.top-32 {
  top: 8rem;
}

.-top-32 {
  top: -8rem;
}

.bottom-32 {
  bottom: 8rem;
}

.-bottom-32 {
  bottom: -8rem;
}

.left-32 {
  left: 8rem;
}

.-left-32 {
  left: -8rem;
}

.right-32 {
  right: 8rem;
}

.-right-32 {
  right: -8rem;
}

.start-32 {
  inset-inline-start: 8rem;
}

.-start-32 {
  inset-inline-start: -8rem;
}

.end-32 {
  inset-inline-end: 8rem;
}

.-end-32 {
  inset-inline-end: -8rem;
}

.p-36 {
  padding: 9rem !important;
}

.px-36 {
  padding-left: 9rem !important;
  padding-right: 9rem !important;
}

.py-36 {
  padding-top: 9rem !important;
  padding-bottom: 9rem !important;
}

.pl-36 {
  padding-left: 9rem !important;
}

.pr-36 {
  padding-right: 9rem !important;
}

.pt-36 {
  padding-top: 9rem !important;
}

.pb-36 {
  padding-bottom: 9rem !important;
}

.mx-36 {
  margin-left: 9rem !important;
  margin-right: 9rem !important;
}

.my-36 {
  margin-top: 9rem !important;
  margin-bottom: 9rem !important;
}

.ml-36 {
  margin-left: 9rem !important;
}

.mr-36 {
  margin-right: 9rem !important;
}

.mt-36 {
  margin-top: 9rem !important;
}

.mb-36 {
  margin-bottom: 9rem !important;
}

.m-36 {
  margin-bottom: 9rem !important;
  margin-top: 9rem !important;
  margin-right: 9rem !important;
  margin-left: 9rem !important;
}

.gap-36 {
  gap: 9rem;
}

.gap-x-36 {
  -moz-column-gap: 9rem;
       column-gap: 9rem;
}

.gap-y-36 {
  row-gap: 9rem;
}

.text-36 {
  font-size: 9rem !important;
}

.h-36 {
  height: 9rem !important;
}

.w-36 {
  width: 9rem !important;
}

.top-36 {
  top: 9rem;
}

.-top-36 {
  top: -9rem;
}

.bottom-36 {
  bottom: 9rem;
}

.-bottom-36 {
  bottom: -9rem;
}

.left-36 {
  left: 9rem;
}

.-left-36 {
  left: -9rem;
}

.right-36 {
  right: 9rem;
}

.-right-36 {
  right: -9rem;
}

.start-36 {
  inset-inline-start: 9rem;
}

.-start-36 {
  inset-inline-start: -9rem;
}

.end-36 {
  inset-inline-end: 9rem;
}

.-end-36 {
  inset-inline-end: -9rem;
}

.p-38 {
  padding: 9.5rem !important;
}

.px-38 {
  padding-left: 9.5rem !important;
  padding-right: 9.5rem !important;
}

.py-38 {
  padding-top: 9.5rem !important;
  padding-bottom: 9.5rem !important;
}

.pl-38 {
  padding-left: 9.5rem !important;
}

.pr-38 {
  padding-right: 9.5rem !important;
}

.pt-38 {
  padding-top: 9.5rem !important;
}

.pb-38 {
  padding-bottom: 9.5rem !important;
}

.mx-38 {
  margin-left: 9.5rem !important;
  margin-right: 9.5rem !important;
}

.my-38 {
  margin-top: 9.5rem !important;
  margin-bottom: 9.5rem !important;
}

.ml-38 {
  margin-left: 9.5rem !important;
}

.mr-38 {
  margin-right: 9.5rem !important;
}

.mt-38 {
  margin-top: 9.5rem !important;
}

.mb-38 {
  margin-bottom: 9.5rem !important;
}

.m-38 {
  margin-bottom: 9.5rem !important;
  margin-top: 9.5rem !important;
  margin-right: 9.5rem !important;
  margin-left: 9.5rem !important;
}

.gap-38 {
  gap: 9.5rem;
}

.gap-x-38 {
  -moz-column-gap: 9.5rem;
       column-gap: 9.5rem;
}

.gap-y-38 {
  row-gap: 9.5rem;
}

.text-38 {
  font-size: 9.5rem !important;
}

.h-38 {
  height: 9.5rem !important;
}

.w-38 {
  width: 9.5rem !important;
}

.top-38 {
  top: 9.5rem;
}

.-top-38 {
  top: -9.5rem;
}

.bottom-38 {
  bottom: 9.5rem;
}

.-bottom-38 {
  bottom: -9.5rem;
}

.left-38 {
  left: 9.5rem;
}

.-left-38 {
  left: -9.5rem;
}

.right-38 {
  right: 9.5rem;
}

.-right-38 {
  right: -9.5rem;
}

.start-38 {
  inset-inline-start: 9.5rem;
}

.-start-38 {
  inset-inline-start: -9.5rem;
}

.end-38 {
  inset-inline-end: 9.5rem;
}

.-end-38 {
  inset-inline-end: -9.5rem;
}

.p-40 {
  padding: 10rem !important;
}

.px-40 {
  padding-left: 10rem !important;
  padding-right: 10rem !important;
}

.py-40 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

.pl-40 {
  padding-left: 10rem !important;
}

.pr-40 {
  padding-right: 10rem !important;
}

.pt-40 {
  padding-top: 10rem !important;
}

.pb-40 {
  padding-bottom: 10rem !important;
}

.mx-40 {
  margin-left: 10rem !important;
  margin-right: 10rem !important;
}

.my-40 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.ml-40 {
  margin-left: 10rem !important;
}

.mr-40 {
  margin-right: 10rem !important;
}

.mt-40 {
  margin-top: 10rem !important;
}

.mb-40 {
  margin-bottom: 10rem !important;
}

.m-40 {
  margin-bottom: 10rem !important;
  margin-top: 10rem !important;
  margin-right: 10rem !important;
  margin-left: 10rem !important;
}

.gap-40 {
  gap: 10rem;
}

.gap-x-40 {
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}

.gap-y-40 {
  row-gap: 10rem;
}

.text-40 {
  font-size: 10rem !important;
}

.h-40 {
  height: 10rem !important;
}

.w-40 {
  width: 10rem !important;
}

.top-40 {
  top: 10rem;
}

.-top-40 {
  top: -10rem;
}

.bottom-40 {
  bottom: 10rem;
}

.-bottom-40 {
  bottom: -10rem;
}

.left-40 {
  left: 10rem;
}

.-left-40 {
  left: -10rem;
}

.right-40 {
  right: 10rem;
}

.-right-40 {
  right: -10rem;
}

.start-40 {
  inset-inline-start: 10rem;
}

.-start-40 {
  inset-inline-start: -10rem;
}

.end-40 {
  inset-inline-end: 10rem;
}

.-end-40 {
  inset-inline-end: -10rem;
}

.p-44 {
  padding: 11rem !important;
}

.px-44 {
  padding-left: 11rem !important;
  padding-right: 11rem !important;
}

.py-44 {
  padding-top: 11rem !important;
  padding-bottom: 11rem !important;
}

.pl-44 {
  padding-left: 11rem !important;
}

.pr-44 {
  padding-right: 11rem !important;
}

.pt-44 {
  padding-top: 11rem !important;
}

.pb-44 {
  padding-bottom: 11rem !important;
}

.mx-44 {
  margin-left: 11rem !important;
  margin-right: 11rem !important;
}

.my-44 {
  margin-top: 11rem !important;
  margin-bottom: 11rem !important;
}

.ml-44 {
  margin-left: 11rem !important;
}

.mr-44 {
  margin-right: 11rem !important;
}

.mt-44 {
  margin-top: 11rem !important;
}

.mb-44 {
  margin-bottom: 11rem !important;
}

.m-44 {
  margin-bottom: 11rem !important;
  margin-top: 11rem !important;
  margin-right: 11rem !important;
  margin-left: 11rem !important;
}

.gap-44 {
  gap: 11rem;
}

.gap-x-44 {
  -moz-column-gap: 11rem;
       column-gap: 11rem;
}

.gap-y-44 {
  row-gap: 11rem;
}

.text-44 {
  font-size: 11rem !important;
}

.h-44 {
  height: 11rem !important;
}

.w-44 {
  width: 11rem !important;
}

.top-44 {
  top: 11rem;
}

.-top-44 {
  top: -11rem;
}

.bottom-44 {
  bottom: 11rem;
}

.-bottom-44 {
  bottom: -11rem;
}

.left-44 {
  left: 11rem;
}

.-left-44 {
  left: -11rem;
}

.right-44 {
  right: 11rem;
}

.-right-44 {
  right: -11rem;
}

.start-44 {
  inset-inline-start: 11rem;
}

.-start-44 {
  inset-inline-start: -11rem;
}

.end-44 {
  inset-inline-end: 11rem;
}

.-end-44 {
  inset-inline-end: -11rem;
}

.p-46 {
  padding: 11.5rem !important;
}

.px-46 {
  padding-left: 11.5rem !important;
  padding-right: 11.5rem !important;
}

.py-46 {
  padding-top: 11.5rem !important;
  padding-bottom: 11.5rem !important;
}

.pl-46 {
  padding-left: 11.5rem !important;
}

.pr-46 {
  padding-right: 11.5rem !important;
}

.pt-46 {
  padding-top: 11.5rem !important;
}

.pb-46 {
  padding-bottom: 11.5rem !important;
}

.mx-46 {
  margin-left: 11.5rem !important;
  margin-right: 11.5rem !important;
}

.my-46 {
  margin-top: 11.5rem !important;
  margin-bottom: 11.5rem !important;
}

.ml-46 {
  margin-left: 11.5rem !important;
}

.mr-46 {
  margin-right: 11.5rem !important;
}

.mt-46 {
  margin-top: 11.5rem !important;
}

.mb-46 {
  margin-bottom: 11.5rem !important;
}

.m-46 {
  margin-bottom: 11.5rem !important;
  margin-top: 11.5rem !important;
  margin-right: 11.5rem !important;
  margin-left: 11.5rem !important;
}

.gap-46 {
  gap: 11.5rem;
}

.gap-x-46 {
  -moz-column-gap: 11.5rem;
       column-gap: 11.5rem;
}

.gap-y-46 {
  row-gap: 11.5rem;
}

.text-46 {
  font-size: 11.5rem !important;
}

.h-46 {
  height: 11.5rem !important;
}

.w-46 {
  width: 11.5rem !important;
}

.top-46 {
  top: 11.5rem;
}

.-top-46 {
  top: -11.5rem;
}

.bottom-46 {
  bottom: 11.5rem;
}

.-bottom-46 {
  bottom: -11.5rem;
}

.left-46 {
  left: 11.5rem;
}

.-left-46 {
  left: -11.5rem;
}

.right-46 {
  right: 11.5rem;
}

.-right-46 {
  right: -11.5rem;
}

.start-46 {
  inset-inline-start: 11.5rem;
}

.-start-46 {
  inset-inline-start: -11.5rem;
}

.end-46 {
  inset-inline-end: 11.5rem;
}

.-end-46 {
  inset-inline-end: -11.5rem;
}

.p-48 {
  padding: 12rem !important;
}

.px-48 {
  padding-left: 12rem !important;
  padding-right: 12rem !important;
}

.py-48 {
  padding-top: 12rem !important;
  padding-bottom: 12rem !important;
}

.pl-48 {
  padding-left: 12rem !important;
}

.pr-48 {
  padding-right: 12rem !important;
}

.pt-48 {
  padding-top: 12rem !important;
}

.pb-48 {
  padding-bottom: 12rem !important;
}

.mx-48 {
  margin-left: 12rem !important;
  margin-right: 12rem !important;
}

.my-48 {
  margin-top: 12rem !important;
  margin-bottom: 12rem !important;
}

.ml-48 {
  margin-left: 12rem !important;
}

.mr-48 {
  margin-right: 12rem !important;
}

.mt-48 {
  margin-top: 12rem !important;
}

.mb-48 {
  margin-bottom: 12rem !important;
}

.m-48 {
  margin-bottom: 12rem !important;
  margin-top: 12rem !important;
  margin-right: 12rem !important;
  margin-left: 12rem !important;
}

.gap-48 {
  gap: 12rem;
}

.gap-x-48 {
  -moz-column-gap: 12rem;
       column-gap: 12rem;
}

.gap-y-48 {
  row-gap: 12rem;
}

.text-48 {
  font-size: 12rem !important;
}

.h-48 {
  height: 12rem !important;
}

.w-48 {
  width: 12rem !important;
}

.top-48 {
  top: 12rem;
}

.-top-48 {
  top: -12rem;
}

.bottom-48 {
  bottom: 12rem;
}

.-bottom-48 {
  bottom: -12rem;
}

.left-48 {
  left: 12rem;
}

.-left-48 {
  left: -12rem;
}

.right-48 {
  right: 12rem;
}

.-right-48 {
  right: -12rem;
}

.start-48 {
  inset-inline-start: 12rem;
}

.-start-48 {
  inset-inline-start: -12rem;
}

.end-48 {
  inset-inline-end: 12rem;
}

.-end-48 {
  inset-inline-end: -12rem;
}

.p-49 {
  padding: 12.25rem !important;
}

.px-49 {
  padding-left: 12.25rem !important;
  padding-right: 12.25rem !important;
}

.py-49 {
  padding-top: 12.25rem !important;
  padding-bottom: 12.25rem !important;
}

.pl-49 {
  padding-left: 12.25rem !important;
}

.pr-49 {
  padding-right: 12.25rem !important;
}

.pt-49 {
  padding-top: 12.25rem !important;
}

.pb-49 {
  padding-bottom: 12.25rem !important;
}

.mx-49 {
  margin-left: 12.25rem !important;
  margin-right: 12.25rem !important;
}

.my-49 {
  margin-top: 12.25rem !important;
  margin-bottom: 12.25rem !important;
}

.ml-49 {
  margin-left: 12.25rem !important;
}

.mr-49 {
  margin-right: 12.25rem !important;
}

.mt-49 {
  margin-top: 12.25rem !important;
}

.mb-49 {
  margin-bottom: 12.25rem !important;
}

.m-49 {
  margin-bottom: 12.25rem !important;
  margin-top: 12.25rem !important;
  margin-right: 12.25rem !important;
  margin-left: 12.25rem !important;
}

.gap-49 {
  gap: 12.25rem;
}

.gap-x-49 {
  -moz-column-gap: 12.25rem;
       column-gap: 12.25rem;
}

.gap-y-49 {
  row-gap: 12.25rem;
}

.text-49 {
  font-size: 12.25rem !important;
}

.h-49 {
  height: 12.25rem !important;
}

.w-49 {
  width: 12.25rem !important;
}

.top-49 {
  top: 12.25rem;
}

.-top-49 {
  top: -12.25rem;
}

.bottom-49 {
  bottom: 12.25rem;
}

.-bottom-49 {
  bottom: -12.25rem;
}

.left-49 {
  left: 12.25rem;
}

.-left-49 {
  left: -12.25rem;
}

.right-49 {
  right: 12.25rem;
}

.-right-49 {
  right: -12.25rem;
}

.start-49 {
  inset-inline-start: 12.25rem;
}

.-start-49 {
  inset-inline-start: -12.25rem;
}

.end-49 {
  inset-inline-end: 12.25rem;
}

.-end-49 {
  inset-inline-end: -12.25rem;
}

.p-50 {
  padding: 12.5rem !important;
}

.px-50 {
  padding-left: 12.5rem !important;
  padding-right: 12.5rem !important;
}

.py-50 {
  padding-top: 12.5rem !important;
  padding-bottom: 12.5rem !important;
}

.pl-50 {
  padding-left: 12.5rem !important;
}

.pr-50 {
  padding-right: 12.5rem !important;
}

.pt-50 {
  padding-top: 12.5rem !important;
}

.pb-50 {
  padding-bottom: 12.5rem !important;
}

.mx-50 {
  margin-left: 12.5rem !important;
  margin-right: 12.5rem !important;
}

.my-50 {
  margin-top: 12.5rem !important;
  margin-bottom: 12.5rem !important;
}

.ml-50 {
  margin-left: 12.5rem !important;
}

.mr-50 {
  margin-right: 12.5rem !important;
}

.mt-50 {
  margin-top: 12.5rem !important;
}

.mb-50 {
  margin-bottom: 12.5rem !important;
}

.m-50 {
  margin-bottom: 12.5rem !important;
  margin-top: 12.5rem !important;
  margin-right: 12.5rem !important;
  margin-left: 12.5rem !important;
}

.gap-50 {
  gap: 12.5rem;
}

.gap-x-50 {
  -moz-column-gap: 12.5rem;
       column-gap: 12.5rem;
}

.gap-y-50 {
  row-gap: 12.5rem;
}

.text-50 {
  font-size: 12.5rem !important;
}

.h-50 {
  height: 12.5rem !important;
}

.w-50 {
  width: 12.5rem !important;
}

.top-50 {
  top: 12.5rem;
}

.-top-50 {
  top: -12.5rem;
}

.bottom-50 {
  bottom: 12.5rem;
}

.-bottom-50 {
  bottom: -12.5rem;
}

.left-50 {
  left: 12.5rem;
}

.-left-50 {
  left: -12.5rem;
}

.right-50 {
  right: 12.5rem;
}

.-right-50 {
  right: -12.5rem;
}

.start-50 {
  inset-inline-start: 12.5rem;
}

.-start-50 {
  inset-inline-start: -12.5rem;
}

.end-50 {
  inset-inline-end: 12.5rem;
}

.-end-50 {
  inset-inline-end: -12.5rem;
}

.p-52 {
  padding: 13rem !important;
}

.px-52 {
  padding-left: 13rem !important;
  padding-right: 13rem !important;
}

.py-52 {
  padding-top: 13rem !important;
  padding-bottom: 13rem !important;
}

.pl-52 {
  padding-left: 13rem !important;
}

.pr-52 {
  padding-right: 13rem !important;
}

.pt-52 {
  padding-top: 13rem !important;
}

.pb-52 {
  padding-bottom: 13rem !important;
}

.mx-52 {
  margin-left: 13rem !important;
  margin-right: 13rem !important;
}

.my-52 {
  margin-top: 13rem !important;
  margin-bottom: 13rem !important;
}

.ml-52 {
  margin-left: 13rem !important;
}

.mr-52 {
  margin-right: 13rem !important;
}

.mt-52 {
  margin-top: 13rem !important;
}

.mb-52 {
  margin-bottom: 13rem !important;
}

.m-52 {
  margin-bottom: 13rem !important;
  margin-top: 13rem !important;
  margin-right: 13rem !important;
  margin-left: 13rem !important;
}

.gap-52 {
  gap: 13rem;
}

.gap-x-52 {
  -moz-column-gap: 13rem;
       column-gap: 13rem;
}

.gap-y-52 {
  row-gap: 13rem;
}

.text-52 {
  font-size: 13rem !important;
}

.h-52 {
  height: 13rem !important;
}

.w-52 {
  width: 13rem !important;
}

.top-52 {
  top: 13rem;
}

.-top-52 {
  top: -13rem;
}

.bottom-52 {
  bottom: 13rem;
}

.-bottom-52 {
  bottom: -13rem;
}

.left-52 {
  left: 13rem;
}

.-left-52 {
  left: -13rem;
}

.right-52 {
  right: 13rem;
}

.-right-52 {
  right: -13rem;
}

.start-52 {
  inset-inline-start: 13rem;
}

.-start-52 {
  inset-inline-start: -13rem;
}

.end-52 {
  inset-inline-end: 13rem;
}

.-end-52 {
  inset-inline-end: -13rem;
}

.p-56 {
  padding: 14rem !important;
}

.px-56 {
  padding-left: 14rem !important;
  padding-right: 14rem !important;
}

.py-56 {
  padding-top: 14rem !important;
  padding-bottom: 14rem !important;
}

.pl-56 {
  padding-left: 14rem !important;
}

.pr-56 {
  padding-right: 14rem !important;
}

.pt-56 {
  padding-top: 14rem !important;
}

.pb-56 {
  padding-bottom: 14rem !important;
}

.mx-56 {
  margin-left: 14rem !important;
  margin-right: 14rem !important;
}

.my-56 {
  margin-top: 14rem !important;
  margin-bottom: 14rem !important;
}

.ml-56 {
  margin-left: 14rem !important;
}

.mr-56 {
  margin-right: 14rem !important;
}

.mt-56 {
  margin-top: 14rem !important;
}

.mb-56 {
  margin-bottom: 14rem !important;
}

.m-56 {
  margin-bottom: 14rem !important;
  margin-top: 14rem !important;
  margin-right: 14rem !important;
  margin-left: 14rem !important;
}

.gap-56 {
  gap: 14rem;
}

.gap-x-56 {
  -moz-column-gap: 14rem;
       column-gap: 14rem;
}

.gap-y-56 {
  row-gap: 14rem;
}

.text-56 {
  font-size: 14rem !important;
}

.h-56 {
  height: 14rem !important;
}

.w-56 {
  width: 14rem !important;
}

.top-56 {
  top: 14rem;
}

.-top-56 {
  top: -14rem;
}

.bottom-56 {
  bottom: 14rem;
}

.-bottom-56 {
  bottom: -14rem;
}

.left-56 {
  left: 14rem;
}

.-left-56 {
  left: -14rem;
}

.right-56 {
  right: 14rem;
}

.-right-56 {
  right: -14rem;
}

.start-56 {
  inset-inline-start: 14rem;
}

.-start-56 {
  inset-inline-start: -14rem;
}

.end-56 {
  inset-inline-end: 14rem;
}

.-end-56 {
  inset-inline-end: -14rem;
}

.p-60 {
  padding: 15rem !important;
}

.px-60 {
  padding-left: 15rem !important;
  padding-right: 15rem !important;
}

.py-60 {
  padding-top: 15rem !important;
  padding-bottom: 15rem !important;
}

.pl-60 {
  padding-left: 15rem !important;
}

.pr-60 {
  padding-right: 15rem !important;
}

.pt-60 {
  padding-top: 15rem !important;
}

.pb-60 {
  padding-bottom: 15rem !important;
}

.mx-60 {
  margin-left: 15rem !important;
  margin-right: 15rem !important;
}

.my-60 {
  margin-top: 15rem !important;
  margin-bottom: 15rem !important;
}

.ml-60 {
  margin-left: 15rem !important;
}

.mr-60 {
  margin-right: 15rem !important;
}

.mt-60 {
  margin-top: 15rem !important;
}

.mb-60 {
  margin-bottom: 15rem !important;
}

.m-60 {
  margin-bottom: 15rem !important;
  margin-top: 15rem !important;
  margin-right: 15rem !important;
  margin-left: 15rem !important;
}

.gap-60 {
  gap: 15rem;
}

.gap-x-60 {
  -moz-column-gap: 15rem;
       column-gap: 15rem;
}

.gap-y-60 {
  row-gap: 15rem;
}

.text-60 {
  font-size: 15rem !important;
}

.h-60 {
  height: 15rem !important;
}

.w-60 {
  width: 15rem !important;
}

.top-60 {
  top: 15rem;
}

.-top-60 {
  top: -15rem;
}

.bottom-60 {
  bottom: 15rem;
}

.-bottom-60 {
  bottom: -15rem;
}

.left-60 {
  left: 15rem;
}

.-left-60 {
  left: -15rem;
}

.right-60 {
  right: 15rem;
}

.-right-60 {
  right: -15rem;
}

.start-60 {
  inset-inline-start: 15rem;
}

.-start-60 {
  inset-inline-start: -15rem;
}

.end-60 {
  inset-inline-end: 15rem;
}

.-end-60 {
  inset-inline-end: -15rem;
}

.p-64 {
  padding: 16rem !important;
}

.px-64 {
  padding-left: 16rem !important;
  padding-right: 16rem !important;
}

.py-64 {
  padding-top: 16rem !important;
  padding-bottom: 16rem !important;
}

.pl-64 {
  padding-left: 16rem !important;
}

.pr-64 {
  padding-right: 16rem !important;
}

.pt-64 {
  padding-top: 16rem !important;
}

.pb-64 {
  padding-bottom: 16rem !important;
}

.mx-64 {
  margin-left: 16rem !important;
  margin-right: 16rem !important;
}

.my-64 {
  margin-top: 16rem !important;
  margin-bottom: 16rem !important;
}

.ml-64 {
  margin-left: 16rem !important;
}

.mr-64 {
  margin-right: 16rem !important;
}

.mt-64 {
  margin-top: 16rem !important;
}

.mb-64 {
  margin-bottom: 16rem !important;
}

.m-64 {
  margin-bottom: 16rem !important;
  margin-top: 16rem !important;
  margin-right: 16rem !important;
  margin-left: 16rem !important;
}

.gap-64 {
  gap: 16rem;
}

.gap-x-64 {
  -moz-column-gap: 16rem;
       column-gap: 16rem;
}

.gap-y-64 {
  row-gap: 16rem;
}

.text-64 {
  font-size: 16rem !important;
}

.h-64 {
  height: 16rem !important;
}

.w-64 {
  width: 16rem !important;
}

.top-64 {
  top: 16rem;
}

.-top-64 {
  top: -16rem;
}

.bottom-64 {
  bottom: 16rem;
}

.-bottom-64 {
  bottom: -16rem;
}

.left-64 {
  left: 16rem;
}

.-left-64 {
  left: -16rem;
}

.right-64 {
  right: 16rem;
}

.-right-64 {
  right: -16rem;
}

.start-64 {
  inset-inline-start: 16rem;
}

.-start-64 {
  inset-inline-start: -16rem;
}

.end-64 {
  inset-inline-end: 16rem;
}

.-end-64 {
  inset-inline-end: -16rem;
}

.p-66 {
  padding: 17rem !important;
}

.px-66 {
  padding-left: 17rem !important;
  padding-right: 17rem !important;
}

.py-66 {
  padding-top: 17rem !important;
  padding-bottom: 17rem !important;
}

.pl-66 {
  padding-left: 17rem !important;
}

.pr-66 {
  padding-right: 17rem !important;
}

.pt-66 {
  padding-top: 17rem !important;
}

.pb-66 {
  padding-bottom: 17rem !important;
}

.mx-66 {
  margin-left: 17rem !important;
  margin-right: 17rem !important;
}

.my-66 {
  margin-top: 17rem !important;
  margin-bottom: 17rem !important;
}

.ml-66 {
  margin-left: 17rem !important;
}

.mr-66 {
  margin-right: 17rem !important;
}

.mt-66 {
  margin-top: 17rem !important;
}

.mb-66 {
  margin-bottom: 17rem !important;
}

.m-66 {
  margin-bottom: 17rem !important;
  margin-top: 17rem !important;
  margin-right: 17rem !important;
  margin-left: 17rem !important;
}

.gap-66 {
  gap: 17rem;
}

.gap-x-66 {
  -moz-column-gap: 17rem;
       column-gap: 17rem;
}

.gap-y-66 {
  row-gap: 17rem;
}

.text-66 {
  font-size: 17rem !important;
}

.h-66 {
  height: 17rem !important;
}

.w-66 {
  width: 17rem !important;
}

.top-66 {
  top: 17rem;
}

.-top-66 {
  top: -17rem;
}

.bottom-66 {
  bottom: 17rem;
}

.-bottom-66 {
  bottom: -17rem;
}

.left-66 {
  left: 17rem;
}

.-left-66 {
  left: -17rem;
}

.right-66 {
  right: 17rem;
}

.-right-66 {
  right: -17rem;
}

.start-66 {
  inset-inline-start: 17rem;
}

.-start-66 {
  inset-inline-start: -17rem;
}

.end-66 {
  inset-inline-end: 17rem;
}

.-end-66 {
  inset-inline-end: -17rem;
}

.p-72 {
  padding: 18rem !important;
}

.px-72 {
  padding-left: 18rem !important;
  padding-right: 18rem !important;
}

.py-72 {
  padding-top: 18rem !important;
  padding-bottom: 18rem !important;
}

.pl-72 {
  padding-left: 18rem !important;
}

.pr-72 {
  padding-right: 18rem !important;
}

.pt-72 {
  padding-top: 18rem !important;
}

.pb-72 {
  padding-bottom: 18rem !important;
}

.mx-72 {
  margin-left: 18rem !important;
  margin-right: 18rem !important;
}

.my-72 {
  margin-top: 18rem !important;
  margin-bottom: 18rem !important;
}

.ml-72 {
  margin-left: 18rem !important;
}

.mr-72 {
  margin-right: 18rem !important;
}

.mt-72 {
  margin-top: 18rem !important;
}

.mb-72 {
  margin-bottom: 18rem !important;
}

.m-72 {
  margin-bottom: 18rem !important;
  margin-top: 18rem !important;
  margin-right: 18rem !important;
  margin-left: 18rem !important;
}

.gap-72 {
  gap: 18rem;
}

.gap-x-72 {
  -moz-column-gap: 18rem;
       column-gap: 18rem;
}

.gap-y-72 {
  row-gap: 18rem;
}

.text-72 {
  font-size: 18rem !important;
}

.h-72 {
  height: 18rem !important;
}

.w-72 {
  width: 18rem !important;
}

.top-72 {
  top: 18rem;
}

.-top-72 {
  top: -18rem;
}

.bottom-72 {
  bottom: 18rem;
}

.-bottom-72 {
  bottom: -18rem;
}

.left-72 {
  left: 18rem;
}

.-left-72 {
  left: -18rem;
}

.right-72 {
  right: 18rem;
}

.-right-72 {
  right: -18rem;
}

.start-72 {
  inset-inline-start: 18rem;
}

.-start-72 {
  inset-inline-start: -18rem;
}

.end-72 {
  inset-inline-end: 18rem;
}

.-end-72 {
  inset-inline-end: -18rem;
}

.p-80 {
  padding: 20rem !important;
}

.px-80 {
  padding-left: 20rem !important;
  padding-right: 20rem !important;
}

.py-80 {
  padding-top: 20rem !important;
  padding-bottom: 20rem !important;
}

.pl-80 {
  padding-left: 20rem !important;
}

.pr-80 {
  padding-right: 20rem !important;
}

.pt-80 {
  padding-top: 20rem !important;
}

.pb-80 {
  padding-bottom: 20rem !important;
}

.mx-80 {
  margin-left: 20rem !important;
  margin-right: 20rem !important;
}

.my-80 {
  margin-top: 20rem !important;
  margin-bottom: 20rem !important;
}

.ml-80 {
  margin-left: 20rem !important;
}

.mr-80 {
  margin-right: 20rem !important;
}

.mt-80 {
  margin-top: 20rem !important;
}

.mb-80 {
  margin-bottom: 20rem !important;
}

.m-80 {
  margin-bottom: 20rem !important;
  margin-top: 20rem !important;
  margin-right: 20rem !important;
  margin-left: 20rem !important;
}

.gap-80 {
  gap: 20rem;
}

.gap-x-80 {
  -moz-column-gap: 20rem;
       column-gap: 20rem;
}

.gap-y-80 {
  row-gap: 20rem;
}

.text-80 {
  font-size: 20rem !important;
}

.h-80 {
  height: 20rem !important;
}

.w-80 {
  width: 20rem !important;
}

.top-80 {
  top: 20rem;
}

.-top-80 {
  top: -20rem;
}

.bottom-80 {
  bottom: 20rem;
}

.-bottom-80 {
  bottom: -20rem;
}

.left-80 {
  left: 20rem;
}

.-left-80 {
  left: -20rem;
}

.right-80 {
  right: 20rem;
}

.-right-80 {
  right: -20rem;
}

.start-80 {
  inset-inline-start: 20rem;
}

.-start-80 {
  inset-inline-start: -20rem;
}

.end-80 {
  inset-inline-end: 20rem;
}

.-end-80 {
  inset-inline-end: -20rem;
}

.p-96 {
  padding: 24rem !important;
}

.px-96 {
  padding-left: 24rem !important;
  padding-right: 24rem !important;
}

.py-96 {
  padding-top: 24rem !important;
  padding-bottom: 24rem !important;
}

.pl-96 {
  padding-left: 24rem !important;
}

.pr-96 {
  padding-right: 24rem !important;
}

.pt-96 {
  padding-top: 24rem !important;
}

.pb-96 {
  padding-bottom: 24rem !important;
}

.mx-96 {
  margin-left: 24rem !important;
  margin-right: 24rem !important;
}

.my-96 {
  margin-top: 24rem !important;
  margin-bottom: 24rem !important;
}

.ml-96 {
  margin-left: 24rem !important;
}

.mr-96 {
  margin-right: 24rem !important;
}

.mt-96 {
  margin-top: 24rem !important;
}

.mb-96 {
  margin-bottom: 24rem !important;
}

.m-96 {
  margin-bottom: 24rem !important;
  margin-top: 24rem !important;
  margin-right: 24rem !important;
  margin-left: 24rem !important;
}

.gap-96 {
  gap: 24rem;
}

.gap-x-96 {
  -moz-column-gap: 24rem;
       column-gap: 24rem;
}

.gap-y-96 {
  row-gap: 24rem;
}

.text-96 {
  font-size: 24rem !important;
}

.h-96 {
  height: 24rem !important;
}

.w-96 {
  width: 24rem !important;
}

.top-96 {
  top: 24rem;
}

.-top-96 {
  top: -24rem;
}

.bottom-96 {
  bottom: 24rem;
}

.-bottom-96 {
  bottom: -24rem;
}

.left-96 {
  left: 24rem;
}

.-left-96 {
  left: -24rem;
}

.right-96 {
  right: 24rem;
}

.-right-96 {
  right: -24rem;
}

.start-96 {
  inset-inline-start: 24rem;
}

.-start-96 {
  inset-inline-start: -24rem;
}

.end-96 {
  inset-inline-end: 24rem;
}

.-end-96 {
  inset-inline-end: -24rem;
}

.h-100-vh {
  height: 100vh;
}

.min-h-100-vh {
  min-height: 100vh;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

.sticky {
  position: sticky !important;
}

.z-50 {
  z-index: 50;
}

.z-9999 {
  z-index: 9999;
}

.z-1 {
  z-index: 1;
}

.z-0 {
  z-index: 0;
}

.-z-1 {
  z-index: -1;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.hidden {
  display: none !important;
}

.hover-display:hover .display {
  display: grid !important;
}

.capitalize {
  text-transform: capitalize !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.h-10-percent {
  height: 10% !important;
}

.w-10-percent {
  width: 10% !important;
}

.top-10-percent {
  top: 10% !important;
}

.-top-10-percent {
  top: -10% !important;
}

.bottom-10-percent {
  bottom: 10% !important;
}

.-bottom-10-percent {
  bottom: -10% !important;
}

.left-10-percent {
  left: 10% !important;
}

.-left-10-percent {
  left: -10% !important;
}

.right-10-percent {
  right: 10% !important;
}

.-right-10-percent {
  right: -10% !important;
}

.h-15-percent {
  height: 15% !important;
}

.w-15-percent {
  width: 15% !important;
}

.top-15-percent {
  top: 15% !important;
}

.-top-15-percent {
  top: -15% !important;
}

.bottom-15-percent {
  bottom: 15% !important;
}

.-bottom-15-percent {
  bottom: -15% !important;
}

.left-15-percent {
  left: 15% !important;
}

.-left-15-percent {
  left: -15% !important;
}

.right-15-percent {
  right: 15% !important;
}

.-right-15-percent {
  right: -15% !important;
}

.h-20-percent {
  height: 20% !important;
}

.w-20-percent {
  width: 20% !important;
}

.top-20-percent {
  top: 20% !important;
}

.-top-20-percent {
  top: -20% !important;
}

.bottom-20-percent {
  bottom: 20% !important;
}

.-bottom-20-percent {
  bottom: -20% !important;
}

.left-20-percent {
  left: 20% !important;
}

.-left-20-percent {
  left: -20% !important;
}

.right-20-percent {
  right: 20% !important;
}

.-right-20-percent {
  right: -20% !important;
}

.h-25-percent {
  height: 25% !important;
}

.w-25-percent {
  width: 25% !important;
}

.top-25-percent {
  top: 25% !important;
}

.-top-25-percent {
  top: -25% !important;
}

.bottom-25-percent {
  bottom: 25% !important;
}

.-bottom-25-percent {
  bottom: -25% !important;
}

.left-25-percent {
  left: 25% !important;
}

.-left-25-percent {
  left: -25% !important;
}

.right-25-percent {
  right: 25% !important;
}

.-right-25-percent {
  right: -25% !important;
}

.h-30-percent {
  height: 30% !important;
}

.w-30-percent {
  width: 30% !important;
}

.top-30-percent {
  top: 30% !important;
}

.-top-30-percent {
  top: -30% !important;
}

.bottom-30-percent {
  bottom: 30% !important;
}

.-bottom-30-percent {
  bottom: -30% !important;
}

.left-30-percent {
  left: 30% !important;
}

.-left-30-percent {
  left: -30% !important;
}

.right-30-percent {
  right: 30% !important;
}

.-right-30-percent {
  right: -30% !important;
}

.h-35-percent {
  height: 35% !important;
}

.w-35-percent {
  width: 35% !important;
}

.top-35-percent {
  top: 35% !important;
}

.-top-35-percent {
  top: -35% !important;
}

.bottom-35-percent {
  bottom: 35% !important;
}

.-bottom-35-percent {
  bottom: -35% !important;
}

.left-35-percent {
  left: 35% !important;
}

.-left-35-percent {
  left: -35% !important;
}

.right-35-percent {
  right: 35% !important;
}

.-right-35-percent {
  right: -35% !important;
}

.h-40-percent {
  height: 40% !important;
}

.w-40-percent {
  width: 40% !important;
}

.top-40-percent {
  top: 40% !important;
}

.-top-40-percent {
  top: -40% !important;
}

.bottom-40-percent {
  bottom: 40% !important;
}

.-bottom-40-percent {
  bottom: -40% !important;
}

.left-40-percent {
  left: 40% !important;
}

.-left-40-percent {
  left: -40% !important;
}

.right-40-percent {
  right: 40% !important;
}

.-right-40-percent {
  right: -40% !important;
}

.h-45-percent {
  height: 45% !important;
}

.w-45-percent {
  width: 45% !important;
}

.top-45-percent {
  top: 45% !important;
}

.-top-45-percent {
  top: -45% !important;
}

.bottom-45-percent {
  bottom: 45% !important;
}

.-bottom-45-percent {
  bottom: -45% !important;
}

.left-45-percent {
  left: 45% !important;
}

.-left-45-percent {
  left: -45% !important;
}

.right-45-percent {
  right: 45% !important;
}

.-right-45-percent {
  right: -45% !important;
}

.h-50-percent {
  height: 50% !important;
}

.w-50-percent {
  width: 50% !important;
}

.top-50-percent {
  top: 50% !important;
}

.-top-50-percent {
  top: -50% !important;
}

.bottom-50-percent {
  bottom: 50% !important;
}

.-bottom-50-percent {
  bottom: -50% !important;
}

.left-50-percent {
  left: 50% !important;
}

.-left-50-percent {
  left: -50% !important;
}

.right-50-percent {
  right: 50% !important;
}

.-right-50-percent {
  right: -50% !important;
}

.h-55-percent {
  height: 55% !important;
}

.w-55-percent {
  width: 55% !important;
}

.top-55-percent {
  top: 55% !important;
}

.-top-55-percent {
  top: -55% !important;
}

.bottom-55-percent {
  bottom: 55% !important;
}

.-bottom-55-percent {
  bottom: -55% !important;
}

.left-55-percent {
  left: 55% !important;
}

.-left-55-percent {
  left: -55% !important;
}

.right-55-percent {
  right: 55% !important;
}

.-right-55-percent {
  right: -55% !important;
}

.h-60-percent {
  height: 60% !important;
}

.w-60-percent {
  width: 60% !important;
}

.top-60-percent {
  top: 60% !important;
}

.-top-60-percent {
  top: -60% !important;
}

.bottom-60-percent {
  bottom: 60% !important;
}

.-bottom-60-percent {
  bottom: -60% !important;
}

.left-60-percent {
  left: 60% !important;
}

.-left-60-percent {
  left: -60% !important;
}

.right-60-percent {
  right: 60% !important;
}

.-right-60-percent {
  right: -60% !important;
}

.h-65-percent {
  height: 65% !important;
}

.w-65-percent {
  width: 65% !important;
}

.top-65-percent {
  top: 65% !important;
}

.-top-65-percent {
  top: -65% !important;
}

.bottom-65-percent {
  bottom: 65% !important;
}

.-bottom-65-percent {
  bottom: -65% !important;
}

.left-65-percent {
  left: 65% !important;
}

.-left-65-percent {
  left: -65% !important;
}

.right-65-percent {
  right: 65% !important;
}

.-right-65-percent {
  right: -65% !important;
}

.h-70-percent {
  height: 70% !important;
}

.w-70-percent {
  width: 70% !important;
}

.top-70-percent {
  top: 70% !important;
}

.-top-70-percent {
  top: -70% !important;
}

.bottom-70-percent {
  bottom: 70% !important;
}

.-bottom-70-percent {
  bottom: -70% !important;
}

.left-70-percent {
  left: 70% !important;
}

.-left-70-percent {
  left: -70% !important;
}

.right-70-percent {
  right: 70% !important;
}

.-right-70-percent {
  right: -70% !important;
}

.h-75-percent {
  height: 75% !important;
}

.w-75-percent {
  width: 75% !important;
}

.top-75-percent {
  top: 75% !important;
}

.-top-75-percent {
  top: -75% !important;
}

.bottom-75-percent {
  bottom: 75% !important;
}

.-bottom-75-percent {
  bottom: -75% !important;
}

.left-75-percent {
  left: 75% !important;
}

.-left-75-percent {
  left: -75% !important;
}

.right-75-percent {
  right: 75% !important;
}

.-right-75-percent {
  right: -75% !important;
}

.h-80-percent {
  height: 80% !important;
}

.w-80-percent {
  width: 80% !important;
}

.top-80-percent {
  top: 80% !important;
}

.-top-80-percent {
  top: -80% !important;
}

.bottom-80-percent {
  bottom: 80% !important;
}

.-bottom-80-percent {
  bottom: -80% !important;
}

.left-80-percent {
  left: 80% !important;
}

.-left-80-percent {
  left: -80% !important;
}

.right-80-percent {
  right: 80% !important;
}

.-right-80-percent {
  right: -80% !important;
}

.h-85-percent {
  height: 85% !important;
}

.w-85-percent {
  width: 85% !important;
}

.top-85-percent {
  top: 85% !important;
}

.-top-85-percent {
  top: -85% !important;
}

.bottom-85-percent {
  bottom: 85% !important;
}

.-bottom-85-percent {
  bottom: -85% !important;
}

.left-85-percent {
  left: 85% !important;
}

.-left-85-percent {
  left: -85% !important;
}

.right-85-percent {
  right: 85% !important;
}

.-right-85-percent {
  right: -85% !important;
}

.h-90-percent {
  height: 90% !important;
}

.w-90-percent {
  width: 90% !important;
}

.top-90-percent {
  top: 90% !important;
}

.-top-90-percent {
  top: -90% !important;
}

.bottom-90-percent {
  bottom: 90% !important;
}

.-bottom-90-percent {
  bottom: -90% !important;
}

.left-90-percent {
  left: 90% !important;
}

.-left-90-percent {
  left: -90% !important;
}

.right-90-percent {
  right: 90% !important;
}

.-right-90-percent {
  right: -90% !important;
}

.h-95-percent {
  height: 95% !important;
}

.w-95-percent {
  width: 95% !important;
}

.top-95-percent {
  top: 95% !important;
}

.-top-95-percent {
  top: -95% !important;
}

.bottom-95-percent {
  bottom: 95% !important;
}

.-bottom-95-percent {
  bottom: -95% !important;
}

.left-95-percent {
  left: 95% !important;
}

.-left-95-percent {
  left: -95% !important;
}

.right-95-percent {
  right: 95% !important;
}

.-right-95-percent {
  right: -95% !important;
}

.h-100-percent {
  height: 100% !important;
}

.w-100-percent {
  width: 100% !important;
}

.top-100-percent {
  top: 100% !important;
}

.-top-100-percent {
  top: -100% !important;
}

.bottom-100-percent {
  bottom: 100% !important;
}

.-bottom-100-percent {
  bottom: -100% !important;
}

.left-100-percent {
  left: 100% !important;
}

.-left-100-percent {
  left: -100% !important;
}

.right-100-percent {
  right: 100% !important;
}

.-right-100-percent {
  right: -100% !important;
}

.text-white {
  color: white !important;
}

.bg-white {
  background-color: white !important;
}

.border-white {
  border: 1px white solid !important;
}

.text-black {
  color: black !important;
}

.bg-black {
  background-color: black !important;
}

.border-black {
  border: 1px black solid !important;
}

.text-red {
  color: #E83430 !important;
}

.bg-red {
  background-color: #E83430 !important;
}

.border-red {
  border: 1px #E83430 solid !important;
}

.text-transparent {
  color: transparent !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border-transparent {
  border: 1px transparent solid !important;
}

.bg-semi-transparent {
  background-color: rgba(255, 255, 255, 0.0980392157) !important;
  -webkit-backdrop-filter: blur(6px) !important;
          backdrop-filter: blur(6px) !important;
  background-blend-mode: multiply !important;
}

::-moz-placeholder {
  font-family: Century Gothic;
  opacity: 1;
  /* Firefox */
}

::placeholder {
  font-family: Century Gothic;
  opacity: 1;
  /* Firefox */
}

::-ms-input-placeholder {
  /* Edge 12 -18 */
  font-family: Century Gothic;
}

.rounded-full {
  border-radius: 99rem !important;
}

.rounded-full-t {
  border-top-left-radius: 99rem !important;
  border-top-right-radius: 99rem !important;
}

.rounded-full-r {
  border-top-right-radius: 99rem !important;
  border-bottom-right-radius: 99rem !important;
}

.rounded-full-l {
  border-top-left-radius: 99rem !important;
  border-bottom-left-radius: 99rem !important;
}

.rounded-full-b {
  border-bottom-right-radius: 99rem !important;
  border-bottom-left-radius: 99rem !important;
}

.rounded-t {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-r {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-l {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-b {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-sm {
  border-radius: 0.125rem !important;
}

.rounded-sm-t {
  border-top-left-radius: 0.125rem !important;
  border-top-right-radius: 0.125rem !important;
}

.rounded-sm-r {
  border-top-right-radius: 0.125rem !important;
  border-bottom-right-radius: 0.125rem !important;
}

.rounded-sm-l {
  border-top-left-radius: 0.125rem !important;
  border-bottom-left-radius: 0.125rem !important;
}

.rounded-sm-b {
  border-bottom-right-radius: 0.125rem !important;
  border-bottom-left-radius: 0.125rem !important;
}

.rounded-md {
  border-radius: 0.375rem !important;
}

.rounded-md-t {
  border-top-left-radius: 0.375rem !important;
  border-top-right-radius: 0.375rem !important;
}

.rounded-md-r {
  border-top-right-radius: 0.375rem !important;
  border-bottom-right-radius: 0.375rem !important;
}

.rounded-md-l {
  border-top-left-radius: 0.375rem !important;
  border-bottom-left-radius: 0.375rem !important;
}

.rounded-md-b {
  border-bottom-right-radius: 0.375rem !important;
  border-bottom-left-radius: 0.375rem !important;
}

.rounded-lg {
  border-radius: 0.5rem !important;
}

.rounded-lg-t {
  border-top-left-radius: 0.5rem !important;
  border-top-right-radius: 0.5rem !important;
}

.rounded-lg-r {
  border-top-right-radius: 0.5rem !important;
  border-bottom-right-radius: 0.5rem !important;
}

.rounded-lg-l {
  border-top-left-radius: 0.5rem !important;
  border-bottom-left-radius: 0.5rem !important;
}

.rounded-lg-b {
  border-bottom-right-radius: 0.5rem !important;
  border-bottom-left-radius: 0.5rem !important;
}

.rounded-xl {
  border-radius: 0.75rem !important;
}

.rounded-xl-t {
  border-top-left-radius: 0.75rem !important;
  border-top-right-radius: 0.75rem !important;
}

.rounded-xl-r {
  border-top-right-radius: 0.75rem !important;
  border-bottom-right-radius: 0.75rem !important;
}

.rounded-xl-l {
  border-top-left-radius: 0.75rem !important;
  border-bottom-left-radius: 0.75rem !important;
}

.rounded-xl-b {
  border-bottom-right-radius: 0.75rem !important;
  border-bottom-left-radius: 0.75rem !important;
}

.bg-gradient:hover {
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), linear-gradient(73.93deg, #8C206B 10.84%, #E83430 88.22%) !important;
}

.bg-gradient {
  background-image: linear-gradient(73.93deg, #8C206B 10.84%, #E83430 88.22%) !important;
}

.feature-main-text {
  font-weight: 400;
  text-align: center;
}

.font-lighter {
  font-weight: 100 !important;
}

.font-light {
  font-weight: 200 !important;
}

.font-semilight {
  font-weight: 300 !important;
}

.font-normal {
  font-weight: 400 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.font-bolder {
  font-weight: 800 !important;
}

.border-0 {
  border: 0px transparent solid;
}

@font-face {
  font-family: "FONTSPRING DEMO - Rotunda Thin";
  src: url("../fonts/Rotunda/Demo_Fonts/Fontspring-DEMO-3a-rotunda-light.otf") format("opentype"), url("../fonts/Rotunda-Woff/fontspring-demo-3a-rotunda-light-webfont.woff") format("woff"), url("../fonts/Rotunda-TTF/Fontspring-DEMO-3a-rotunda-light.ttf") format("truetype");
}
@font-face {
  font-family: "FONTSPRING DEMO - Rotunda Normal";
  src: url("../fonts/Rotunda/Demo_Fonts/Fontspring-DEMO-4a-rotunda-regular.otf") format("opentype"), url("../fonts/Rotunda-Woff/fontspring-demo-4a-rotunda-regular-webfont.woff") format("woff"), url("../fonts/Rotunda-TTF/Fontspring-DEMO-4a-rotunda-regular.ttf") format("truetype");
}
@font-face {
  font-family: "FONTSPRING DEMO - Rotunda Thin-Med";
  src: url("../fonts/Rotunda/Demo_Fonts/Fontspring-DEMO-5a-rotunda-medium.otf") format("opentype"), url("../fonts/Rotunda-Woff/fontspring-demo-5a-rotunda-medium-webfont.woff") format("woff"), url("../fonts/Rotunda-TTF/Fontspring-DEMO-5a-rotunda-medium.ttf") format("truetype");
}
@font-face {
  font-family: "FONTSPRING DEMO - Rotunda Bold";
  src: url("../fonts/Rotunda/Demo_Fonts/Fontspring-DEMO-6a-rotunda-bold.otf") format("opentype"), url("../fonts/Rotunda-Woff/fontspring-demo-6a-rotunda-bold-webfont.woff") format("woff"), url("../fonts/Rotunda-TTF/Fontspring-DEMO-6a-rotunda-bold.ttf") format("truetype");
}
.font-goth {
  font-family: Century Gothic;
}

.font-rotunda-thin {
  font-family: "FONTSPRING DEMO - Rotunda Thin";
}

.font-rotunda-normal {
  font-family: "FONTSPRING DEMO - Rotunda Normal";
}

.font-rotunda-med {
  font-family: "FONTSPRING DEMO - Rotunda Thin-Med";
}

.font-rotunda-bold {
  font-family: "FONTSPRING DEMO - Rotunda Bold";
}

.cursor-pointer {
  cursor: pointer;
}

.bg-top-section {
  background-image: url("../images/top-section-bg.png");
  background-size: cover;
}

.bg-hover {
  background-image: url("../images/hover-bg.png");
  background-size: cover;
}

.bg-hover-extended {
  background-image: url("../images/hover-bg-extended.png");
  background-size: cover;
}

.hover-text {
  font-size: 32px;
  font-weight: 100;
  letter-spacing: 0.06em;
  text-align: left;
}

.bg-ai-powered-solutions {
  background-image: url("../images/ai-powered-solutions.png");
  background-size: cover;
}

.bg-saas-solutions {
  background-image: url("../images/saas-solutions.png");
  background-size: cover;
  background-position: 0% 10%;
}

.bg-realtime-results {
  background-image: url("../images/realtime-results.png");
  background-size: cover;
  background-position: 0% 10%;
}

.bg-experts {
  background-image: url("../images/experts.png");
  background-size: cover;
  background-position: 0% 10%;
}

.bg-solutions {
  background-image: url("../images/solutions-bg.png");
  background-size: cover;
}

.bg-footer {
  background-image: url("../images/footer-bg.jpg");
  background-size: cover;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.photo-shadow {
  box-shadow: 0px 4.56px 14.32px 0px rgba(0, 0, 0, 0.3019607843);
}

.typewriter h1 {
  color: #fff;
  overflow: hidden;
  /* Ensures the content is not revealed until the animation */
  border-right: 0.1em solid #E83430;
  /* The typwriter cursor */
  white-space: nowrap;
  /* Keeps the content on a single line */
  padding-right: 0.75rem;
  animation: typing 3.5s steps(30, end), blink-caret 0.5s step-end infinite;
}

.menu-bg {
  background-color: #0B0016 !important;
}

#side-menu-mobile.hide {
  display: none !important;
}

#side-menu-mobile.show {
  display: flex !important;
}

.menu-btn {
  height: 35px;
  width: 35px;
}

.menu-mail {
  height: 25px;
  width: 25px;
}

.menu-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-item {
  padding-top: 32px;
  padding-bottom: 32px;
}

.dashed-border {
  border: 1px dashed #BABDCF !important;
}

.h-1-px {
  height: 1px !important;
}

.w-1-px {
  width: 1px !important;
}

.features-item-bold-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}

.features-item-thin-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden;
  /* Hidden by default. Visible on click */
  min-width: 250px;
  /* Set a default minimum width */
  margin-left: -125px;
  /* Divide value of min-width by 2 */
  background-color: rgba(255, 255, 255, 0.0980392157) !important;
  -webkit-backdrop-filter: blur(6px) !important;
          backdrop-filter: blur(6px) !important;
  background-blend-mode: multiply !important;
  color: #fff;
  /* White text color */
  border-radius: 8px;
  /* Rounded borders */
  border-color: rgba(255, 255, 255, 0.7137254902);
  padding: 16px;
  /* Padding */
  position: fixed;
  /* Sit on top of the screen */
  z-index: 1;
  /* Add a z-index if needed */
  left: 50% !important;
  /* Center the snackbar */
  bottom: 30px;
  /* 30px from the bottom */
  font-size: 0.75rem !important;
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible;
  /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
/* The typing effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #E83430;
  }
}
.typed-cursor {
  color: #E83430;
}

@media (max-width: 768px) {
  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .sm\:col-span-1 {
    grid-column: span 1/span 1;
  }
  .sm\:col-start-1 {
    grid-column-start: 1;
  }
  .sm\:col-end-1 {
    grid-column-end: 1;
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .sm\:col-span-2 {
    grid-column: span 2/span 2;
  }
  .sm\:col-start-2 {
    grid-column-start: 2;
  }
  .sm\:col-end-2 {
    grid-column-end: 2;
  }
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .sm\:col-span-3 {
    grid-column: span 3/span 3;
  }
  .sm\:col-start-3 {
    grid-column-start: 3;
  }
  .sm\:col-end-3 {
    grid-column-end: 3;
  }
  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .sm\:col-span-4 {
    grid-column: span 4/span 4;
  }
  .sm\:col-start-4 {
    grid-column-start: 4;
  }
  .sm\:col-end-4 {
    grid-column-end: 4;
  }
  .sm\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .sm\:col-span-5 {
    grid-column: span 5/span 5;
  }
  .sm\:col-start-5 {
    grid-column-start: 5;
  }
  .sm\:col-end-5 {
    grid-column-end: 5;
  }
  .sm\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .sm\:col-span-6 {
    grid-column: span 6/span 6;
  }
  .sm\:col-start-6 {
    grid-column-start: 6;
  }
  .sm\:col-end-6 {
    grid-column-end: 6;
  }
  .sm\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
  .sm\:col-span-7 {
    grid-column: span 7/span 7;
  }
  .sm\:col-start-7 {
    grid-column-start: 7;
  }
  .sm\:col-end-7 {
    grid-column-end: 7;
  }
  .sm\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
  .sm\:col-span-8 {
    grid-column: span 8/span 8;
  }
  .sm\:col-start-8 {
    grid-column-start: 8;
  }
  .sm\:col-end-8 {
    grid-column-end: 8;
  }
  .sm\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }
  .sm\:col-span-9 {
    grid-column: span 9/span 9;
  }
  .sm\:col-start-9 {
    grid-column-start: 9;
  }
  .sm\:col-end-9 {
    grid-column-end: 9;
  }
  .sm\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }
  .sm\:col-span-10 {
    grid-column: span 10/span 10;
  }
  .sm\:col-start-10 {
    grid-column-start: 10;
  }
  .sm\:col-end-10 {
    grid-column-end: 10;
  }
  .sm\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }
  .sm\:col-span-12 {
    grid-column: span 12/span 12;
  }
  .sm\:col-start-12 {
    grid-column-start: 12;
  }
  .sm\:col-end-12 {
    grid-column-end: 12;
  }
  .sm\:p-0 {
    padding: 0px !important;
  }
  .sm\:px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .sm\:py-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .sm\:pl-0 {
    padding-left: 0px !important;
  }
  .sm\:pr-0 {
    padding-right: 0px !important;
  }
  .sm\:pt-0 {
    padding-top: 0px !important;
  }
  .sm\:pb-0 {
    padding-bottom: 0px !important;
  }
  .sm\:mx-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .sm\:my-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .sm\:ml-0 {
    margin-left: 0px !important;
  }
  .sm\:mr-0 {
    margin-right: 0px !important;
  }
  .sm\:mt-0 {
    margin-top: 0px !important;
  }
  .sm\:mb-0 {
    margin-bottom: 0px !important;
  }
  .sm\:m-0 {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .sm\:gap-0 {
    gap: 0px;
  }
  .sm\:gap-x-0 {
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .sm\:gap-y-0 {
    row-gap: 0px;
  }
  .sm\:text-0 {
    font-size: 0px !important;
  }
  .sm\:h-0 {
    height: 0px !important;
  }
  .sm\:w-0 {
    width: 0px !important;
  }
  .sm\:top-0 {
    top: 0px;
  }
  .sm\:-top-0 {
    top: 0px;
  }
  .sm\:bottom-0 {
    bottom: 0px;
  }
  .sm\:-bottom-0 {
    bottom: 0px;
  }
  .sm\:left-0 {
    left: 0px;
  }
  .sm\:-left-0 {
    left: 0px;
  }
  .sm\:right-0 {
    right: 0px;
  }
  .sm\:-right-0 {
    right: 0px;
  }
  .sm\:start-0 {
    inset-inline-start: 0px;
  }
  .sm\:-start-0 {
    inset-inline-start: 0px;
  }
  .sm\:end-0 {
    inset-inline-end: 0px;
  }
  .sm\:-end-0 {
    inset-inline-end: 0px;
  }
  .sm\:p-1 {
    padding: 0.25rem !important;
  }
  .sm\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .sm\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .sm\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .sm\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .sm\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .sm\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .sm\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .sm\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .sm\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .sm\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .sm\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .sm\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .sm\:m-1 {
    margin-bottom: 0.25rem !important;
    margin-top: 0.25rem !important;
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .sm\:gap-1 {
    gap: 0.25rem;
  }
  .sm\:gap-x-1 {
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }
  .sm\:gap-y-1 {
    row-gap: 0.25rem;
  }
  .sm\:text-1 {
    font-size: 0.25rem !important;
  }
  .sm\:h-1 {
    height: 0.25rem !important;
  }
  .sm\:w-1 {
    width: 0.25rem !important;
  }
  .sm\:top-1 {
    top: 0.25rem;
  }
  .sm\:-top-1 {
    top: -0.25rem;
  }
  .sm\:bottom-1 {
    bottom: 0.25rem;
  }
  .sm\:-bottom-1 {
    bottom: -0.25rem;
  }
  .sm\:left-1 {
    left: 0.25rem;
  }
  .sm\:-left-1 {
    left: -0.25rem;
  }
  .sm\:right-1 {
    right: 0.25rem;
  }
  .sm\:-right-1 {
    right: -0.25rem;
  }
  .sm\:start-1 {
    inset-inline-start: 0.25rem;
  }
  .sm\:-start-1 {
    inset-inline-start: -0.25rem;
  }
  .sm\:end-1 {
    inset-inline-end: 0.25rem;
  }
  .sm\:-end-1 {
    inset-inline-end: -0.25rem;
  }
  .sm\:p-2 {
    padding: 0.5rem !important;
  }
  .sm\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .sm\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .sm\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .sm\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .sm\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .sm\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .sm\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .sm\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .sm\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .sm\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .sm\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .sm\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .sm\:m-2 {
    margin-bottom: 0.5rem !important;
    margin-top: 0.5rem !important;
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .sm\:gap-2 {
    gap: 0.5rem;
  }
  .sm\:gap-x-2 {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .sm\:gap-y-2 {
    row-gap: 0.5rem;
  }
  .sm\:text-2 {
    font-size: 0.5rem !important;
  }
  .sm\:h-2 {
    height: 0.5rem !important;
  }
  .sm\:w-2 {
    width: 0.5rem !important;
  }
  .sm\:top-2 {
    top: 0.5rem;
  }
  .sm\:-top-2 {
    top: -0.5rem;
  }
  .sm\:bottom-2 {
    bottom: 0.5rem;
  }
  .sm\:-bottom-2 {
    bottom: -0.5rem;
  }
  .sm\:left-2 {
    left: 0.5rem;
  }
  .sm\:-left-2 {
    left: -0.5rem;
  }
  .sm\:right-2 {
    right: 0.5rem;
  }
  .sm\:-right-2 {
    right: -0.5rem;
  }
  .sm\:start-2 {
    inset-inline-start: 0.5rem;
  }
  .sm\:-start-2 {
    inset-inline-start: -0.5rem;
  }
  .sm\:end-2 {
    inset-inline-end: 0.5rem;
  }
  .sm\:-end-2 {
    inset-inline-end: -0.5rem;
  }
  .sm\:p-2-and-half {
    padding: 0.625rem !important;
  }
  .sm\:px-2-and-half {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
  .sm\:py-2-and-half {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
  .sm\:pl-2-and-half {
    padding-left: 0.625rem !important;
  }
  .sm\:pr-2-and-half {
    padding-right: 0.625rem !important;
  }
  .sm\:pt-2-and-half {
    padding-top: 0.625rem !important;
  }
  .sm\:pb-2-and-half {
    padding-bottom: 0.625rem !important;
  }
  .sm\:mx-2-and-half {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }
  .sm\:my-2-and-half {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
  .sm\:ml-2-and-half {
    margin-left: 0.625rem !important;
  }
  .sm\:mr-2-and-half {
    margin-right: 0.625rem !important;
  }
  .sm\:mt-2-and-half {
    margin-top: 0.625rem !important;
  }
  .sm\:mb-2-and-half {
    margin-bottom: 0.625rem !important;
  }
  .sm\:m-2-and-half {
    margin-bottom: 0.625rem !important;
    margin-top: 0.625rem !important;
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }
  .sm\:gap-2-and-half {
    gap: 0.625rem;
  }
  .sm\:gap-x-2-and-half {
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
  }
  .sm\:gap-y-2-and-half {
    row-gap: 0.625rem;
  }
  .sm\:text-2-and-half {
    font-size: 0.625rem !important;
  }
  .sm\:h-2-and-half {
    height: 0.625rem !important;
  }
  .sm\:w-2-and-half {
    width: 0.625rem !important;
  }
  .sm\:top-2-and-half {
    top: 0.625rem;
  }
  .sm\:-top-2-and-half {
    top: -0.625rem;
  }
  .sm\:bottom-2-and-half {
    bottom: 0.625rem;
  }
  .sm\:-bottom-2-and-half {
    bottom: -0.625rem;
  }
  .sm\:left-2-and-half {
    left: 0.625rem;
  }
  .sm\:-left-2-and-half {
    left: -0.625rem;
  }
  .sm\:right-2-and-half {
    right: 0.625rem;
  }
  .sm\:-right-2-and-half {
    right: -0.625rem;
  }
  .sm\:start-2-and-half {
    inset-inline-start: 0.625rem;
  }
  .sm\:-start-2-and-half {
    inset-inline-start: -0.625rem;
  }
  .sm\:end-2-and-half {
    inset-inline-end: 0.625rem;
  }
  .sm\:-end-2-and-half {
    inset-inline-end: -0.625rem;
  }
  .sm\:p-3 {
    padding: 0.75rem !important;
  }
  .sm\:px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .sm\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .sm\:pl-3 {
    padding-left: 0.75rem !important;
  }
  .sm\:pr-3 {
    padding-right: 0.75rem !important;
  }
  .sm\:pt-3 {
    padding-top: 0.75rem !important;
  }
  .sm\:pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .sm\:mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .sm\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .sm\:ml-3 {
    margin-left: 0.75rem !important;
  }
  .sm\:mr-3 {
    margin-right: 0.75rem !important;
  }
  .sm\:mt-3 {
    margin-top: 0.75rem !important;
  }
  .sm\:mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .sm\:m-3 {
    margin-bottom: 0.75rem !important;
    margin-top: 0.75rem !important;
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .sm\:gap-3 {
    gap: 0.75rem;
  }
  .sm\:gap-x-3 {
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }
  .sm\:gap-y-3 {
    row-gap: 0.75rem;
  }
  .sm\:text-3 {
    font-size: 0.75rem !important;
  }
  .sm\:h-3 {
    height: 0.75rem !important;
  }
  .sm\:w-3 {
    width: 0.75rem !important;
  }
  .sm\:top-3 {
    top: 0.75rem;
  }
  .sm\:-top-3 {
    top: -0.75rem;
  }
  .sm\:bottom-3 {
    bottom: 0.75rem;
  }
  .sm\:-bottom-3 {
    bottom: -0.75rem;
  }
  .sm\:left-3 {
    left: 0.75rem;
  }
  .sm\:-left-3 {
    left: -0.75rem;
  }
  .sm\:right-3 {
    right: 0.75rem;
  }
  .sm\:-right-3 {
    right: -0.75rem;
  }
  .sm\:start-3 {
    inset-inline-start: 0.75rem;
  }
  .sm\:-start-3 {
    inset-inline-start: -0.75rem;
  }
  .sm\:end-3 {
    inset-inline-end: 0.75rem;
  }
  .sm\:-end-3 {
    inset-inline-end: -0.75rem;
  }
  .sm\:p-4 {
    padding: 1rem !important;
  }
  .sm\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .sm\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .sm\:pl-4 {
    padding-left: 1rem !important;
  }
  .sm\:pr-4 {
    padding-right: 1rem !important;
  }
  .sm\:pt-4 {
    padding-top: 1rem !important;
  }
  .sm\:pb-4 {
    padding-bottom: 1rem !important;
  }
  .sm\:mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .sm\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .sm\:ml-4 {
    margin-left: 1rem !important;
  }
  .sm\:mr-4 {
    margin-right: 1rem !important;
  }
  .sm\:mt-4 {
    margin-top: 1rem !important;
  }
  .sm\:mb-4 {
    margin-bottom: 1rem !important;
  }
  .sm\:m-4 {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .sm\:gap-4 {
    gap: 1rem;
  }
  .sm\:gap-x-4 {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .sm\:gap-y-4 {
    row-gap: 1rem;
  }
  .sm\:text-4 {
    font-size: 1rem !important;
  }
  .sm\:h-4 {
    height: 1rem !important;
  }
  .sm\:w-4 {
    width: 1rem !important;
  }
  .sm\:top-4 {
    top: 1rem;
  }
  .sm\:-top-4 {
    top: -1rem;
  }
  .sm\:bottom-4 {
    bottom: 1rem;
  }
  .sm\:-bottom-4 {
    bottom: -1rem;
  }
  .sm\:left-4 {
    left: 1rem;
  }
  .sm\:-left-4 {
    left: -1rem;
  }
  .sm\:right-4 {
    right: 1rem;
  }
  .sm\:-right-4 {
    right: -1rem;
  }
  .sm\:start-4 {
    inset-inline-start: 1rem;
  }
  .sm\:-start-4 {
    inset-inline-start: -1rem;
  }
  .sm\:end-4 {
    inset-inline-end: 1rem;
  }
  .sm\:-end-4 {
    inset-inline-end: -1rem;
  }
  .sm\:p-4-and-half {
    padding: 1.075rem !important;
  }
  .sm\:px-4-and-half {
    padding-left: 1.075rem !important;
    padding-right: 1.075rem !important;
  }
  .sm\:py-4-and-half {
    padding-top: 1.075rem !important;
    padding-bottom: 1.075rem !important;
  }
  .sm\:pl-4-and-half {
    padding-left: 1.075rem !important;
  }
  .sm\:pr-4-and-half {
    padding-right: 1.075rem !important;
  }
  .sm\:pt-4-and-half {
    padding-top: 1.075rem !important;
  }
  .sm\:pb-4-and-half {
    padding-bottom: 1.075rem !important;
  }
  .sm\:mx-4-and-half {
    margin-left: 1.075rem !important;
    margin-right: 1.075rem !important;
  }
  .sm\:my-4-and-half {
    margin-top: 1.075rem !important;
    margin-bottom: 1.075rem !important;
  }
  .sm\:ml-4-and-half {
    margin-left: 1.075rem !important;
  }
  .sm\:mr-4-and-half {
    margin-right: 1.075rem !important;
  }
  .sm\:mt-4-and-half {
    margin-top: 1.075rem !important;
  }
  .sm\:mb-4-and-half {
    margin-bottom: 1.075rem !important;
  }
  .sm\:m-4-and-half {
    margin-bottom: 1.075rem !important;
    margin-top: 1.075rem !important;
    margin-right: 1.075rem !important;
    margin-left: 1.075rem !important;
  }
  .sm\:gap-4-and-half {
    gap: 1.075rem;
  }
  .sm\:gap-x-4-and-half {
    -moz-column-gap: 1.075rem;
         column-gap: 1.075rem;
  }
  .sm\:gap-y-4-and-half {
    row-gap: 1.075rem;
  }
  .sm\:text-4-and-half {
    font-size: 1.075rem !important;
  }
  .sm\:h-4-and-half {
    height: 1.075rem !important;
  }
  .sm\:w-4-and-half {
    width: 1.075rem !important;
  }
  .sm\:top-4-and-half {
    top: 1.075rem;
  }
  .sm\:-top-4-and-half {
    top: -1.075rem;
  }
  .sm\:bottom-4-and-half {
    bottom: 1.075rem;
  }
  .sm\:-bottom-4-and-half {
    bottom: -1.075rem;
  }
  .sm\:left-4-and-half {
    left: 1.075rem;
  }
  .sm\:-left-4-and-half {
    left: -1.075rem;
  }
  .sm\:right-4-and-half {
    right: 1.075rem;
  }
  .sm\:-right-4-and-half {
    right: -1.075rem;
  }
  .sm\:start-4-and-half {
    inset-inline-start: 1.075rem;
  }
  .sm\:-start-4-and-half {
    inset-inline-start: -1.075rem;
  }
  .sm\:end-4-and-half {
    inset-inline-end: 1.075rem;
  }
  .sm\:-end-4-and-half {
    inset-inline-end: -1.075rem;
  }
  .sm\:p-5 {
    padding: 1.25rem !important;
  }
  .sm\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .sm\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .sm\:pl-5 {
    padding-left: 1.25rem !important;
  }
  .sm\:pr-5 {
    padding-right: 1.25rem !important;
  }
  .sm\:pt-5 {
    padding-top: 1.25rem !important;
  }
  .sm\:pb-5 {
    padding-bottom: 1.25rem !important;
  }
  .sm\:mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
  .sm\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .sm\:ml-5 {
    margin-left: 1.25rem !important;
  }
  .sm\:mr-5 {
    margin-right: 1.25rem !important;
  }
  .sm\:mt-5 {
    margin-top: 1.25rem !important;
  }
  .sm\:mb-5 {
    margin-bottom: 1.25rem !important;
  }
  .sm\:m-5 {
    margin-bottom: 1.25rem !important;
    margin-top: 1.25rem !important;
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .sm\:gap-5 {
    gap: 1.25rem;
  }
  .sm\:gap-x-5 {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
  .sm\:gap-y-5 {
    row-gap: 1.25rem;
  }
  .sm\:text-5 {
    font-size: 1.25rem !important;
  }
  .sm\:h-5 {
    height: 1.25rem !important;
  }
  .sm\:w-5 {
    width: 1.25rem !important;
  }
  .sm\:top-5 {
    top: 1.25rem;
  }
  .sm\:-top-5 {
    top: -1.25rem;
  }
  .sm\:bottom-5 {
    bottom: 1.25rem;
  }
  .sm\:-bottom-5 {
    bottom: -1.25rem;
  }
  .sm\:left-5 {
    left: 1.25rem;
  }
  .sm\:-left-5 {
    left: -1.25rem;
  }
  .sm\:right-5 {
    right: 1.25rem;
  }
  .sm\:-right-5 {
    right: -1.25rem;
  }
  .sm\:start-5 {
    inset-inline-start: 1.25rem;
  }
  .sm\:-start-5 {
    inset-inline-start: -1.25rem;
  }
  .sm\:end-5 {
    inset-inline-end: 1.25rem;
  }
  .sm\:-end-5 {
    inset-inline-end: -1.25rem;
  }
  .sm\:p-6 {
    padding: 1.5rem !important;
  }
  .sm\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .sm\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .sm\:pl-6 {
    padding-left: 1.5rem !important;
  }
  .sm\:pr-6 {
    padding-right: 1.5rem !important;
  }
  .sm\:pt-6 {
    padding-top: 1.5rem !important;
  }
  .sm\:pb-6 {
    padding-bottom: 1.5rem !important;
  }
  .sm\:mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .sm\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .sm\:ml-6 {
    margin-left: 1.5rem !important;
  }
  .sm\:mr-6 {
    margin-right: 1.5rem !important;
  }
  .sm\:mt-6 {
    margin-top: 1.5rem !important;
  }
  .sm\:mb-6 {
    margin-bottom: 1.5rem !important;
  }
  .sm\:m-6 {
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .sm\:gap-6 {
    gap: 1.5rem;
  }
  .sm\:gap-x-6 {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
  .sm\:gap-y-6 {
    row-gap: 1.5rem;
  }
  .sm\:text-6 {
    font-size: 1.5rem !important;
  }
  .sm\:h-6 {
    height: 1.5rem !important;
  }
  .sm\:w-6 {
    width: 1.5rem !important;
  }
  .sm\:top-6 {
    top: 1.5rem;
  }
  .sm\:-top-6 {
    top: -1.5rem;
  }
  .sm\:bottom-6 {
    bottom: 1.5rem;
  }
  .sm\:-bottom-6 {
    bottom: -1.5rem;
  }
  .sm\:left-6 {
    left: 1.5rem;
  }
  .sm\:-left-6 {
    left: -1.5rem;
  }
  .sm\:right-6 {
    right: 1.5rem;
  }
  .sm\:-right-6 {
    right: -1.5rem;
  }
  .sm\:start-6 {
    inset-inline-start: 1.5rem;
  }
  .sm\:-start-6 {
    inset-inline-start: -1.5rem;
  }
  .sm\:end-6 {
    inset-inline-end: 1.5rem;
  }
  .sm\:-end-6 {
    inset-inline-end: -1.5rem;
  }
  .sm\:p-6-and-half {
    padding: 1.7rem !important;
  }
  .sm\:px-6-and-half {
    padding-left: 1.7rem !important;
    padding-right: 1.7rem !important;
  }
  .sm\:py-6-and-half {
    padding-top: 1.7rem !important;
    padding-bottom: 1.7rem !important;
  }
  .sm\:pl-6-and-half {
    padding-left: 1.7rem !important;
  }
  .sm\:pr-6-and-half {
    padding-right: 1.7rem !important;
  }
  .sm\:pt-6-and-half {
    padding-top: 1.7rem !important;
  }
  .sm\:pb-6-and-half {
    padding-bottom: 1.7rem !important;
  }
  .sm\:mx-6-and-half {
    margin-left: 1.7rem !important;
    margin-right: 1.7rem !important;
  }
  .sm\:my-6-and-half {
    margin-top: 1.7rem !important;
    margin-bottom: 1.7rem !important;
  }
  .sm\:ml-6-and-half {
    margin-left: 1.7rem !important;
  }
  .sm\:mr-6-and-half {
    margin-right: 1.7rem !important;
  }
  .sm\:mt-6-and-half {
    margin-top: 1.7rem !important;
  }
  .sm\:mb-6-and-half {
    margin-bottom: 1.7rem !important;
  }
  .sm\:m-6-and-half {
    margin-bottom: 1.7rem !important;
    margin-top: 1.7rem !important;
    margin-right: 1.7rem !important;
    margin-left: 1.7rem !important;
  }
  .sm\:gap-6-and-half {
    gap: 1.7rem;
  }
  .sm\:gap-x-6-and-half {
    -moz-column-gap: 1.7rem;
         column-gap: 1.7rem;
  }
  .sm\:gap-y-6-and-half {
    row-gap: 1.7rem;
  }
  .sm\:text-6-and-half {
    font-size: 1.7rem !important;
  }
  .sm\:h-6-and-half {
    height: 1.7rem !important;
  }
  .sm\:w-6-and-half {
    width: 1.7rem !important;
  }
  .sm\:top-6-and-half {
    top: 1.7rem;
  }
  .sm\:-top-6-and-half {
    top: -1.7rem;
  }
  .sm\:bottom-6-and-half {
    bottom: 1.7rem;
  }
  .sm\:-bottom-6-and-half {
    bottom: -1.7rem;
  }
  .sm\:left-6-and-half {
    left: 1.7rem;
  }
  .sm\:-left-6-and-half {
    left: -1.7rem;
  }
  .sm\:right-6-and-half {
    right: 1.7rem;
  }
  .sm\:-right-6-and-half {
    right: -1.7rem;
  }
  .sm\:start-6-and-half {
    inset-inline-start: 1.7rem;
  }
  .sm\:-start-6-and-half {
    inset-inline-start: -1.7rem;
  }
  .sm\:end-6-and-half {
    inset-inline-end: 1.7rem;
  }
  .sm\:-end-6-and-half {
    inset-inline-end: -1.7rem;
  }
  .sm\:p-7 {
    padding: 1.75rem !important;
  }
  .sm\:px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
  .sm\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .sm\:pl-7 {
    padding-left: 1.75rem !important;
  }
  .sm\:pr-7 {
    padding-right: 1.75rem !important;
  }
  .sm\:pt-7 {
    padding-top: 1.75rem !important;
  }
  .sm\:pb-7 {
    padding-bottom: 1.75rem !important;
  }
  .sm\:mx-7 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }
  .sm\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .sm\:ml-7 {
    margin-left: 1.75rem !important;
  }
  .sm\:mr-7 {
    margin-right: 1.75rem !important;
  }
  .sm\:mt-7 {
    margin-top: 1.75rem !important;
  }
  .sm\:mb-7 {
    margin-bottom: 1.75rem !important;
  }
  .sm\:m-7 {
    margin-bottom: 1.75rem !important;
    margin-top: 1.75rem !important;
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .sm\:gap-7 {
    gap: 1.75rem;
  }
  .sm\:gap-x-7 {
    -moz-column-gap: 1.75rem;
         column-gap: 1.75rem;
  }
  .sm\:gap-y-7 {
    row-gap: 1.75rem;
  }
  .sm\:text-7 {
    font-size: 1.75rem !important;
  }
  .sm\:h-7 {
    height: 1.75rem !important;
  }
  .sm\:w-7 {
    width: 1.75rem !important;
  }
  .sm\:top-7 {
    top: 1.75rem;
  }
  .sm\:-top-7 {
    top: -1.75rem;
  }
  .sm\:bottom-7 {
    bottom: 1.75rem;
  }
  .sm\:-bottom-7 {
    bottom: -1.75rem;
  }
  .sm\:left-7 {
    left: 1.75rem;
  }
  .sm\:-left-7 {
    left: -1.75rem;
  }
  .sm\:right-7 {
    right: 1.75rem;
  }
  .sm\:-right-7 {
    right: -1.75rem;
  }
  .sm\:start-7 {
    inset-inline-start: 1.75rem;
  }
  .sm\:-start-7 {
    inset-inline-start: -1.75rem;
  }
  .sm\:end-7 {
    inset-inline-end: 1.75rem;
  }
  .sm\:-end-7 {
    inset-inline-end: -1.75rem;
  }
  .sm\:p-8 {
    padding: 2rem !important;
  }
  .sm\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .sm\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .sm\:pl-8 {
    padding-left: 2rem !important;
  }
  .sm\:pr-8 {
    padding-right: 2rem !important;
  }
  .sm\:pt-8 {
    padding-top: 2rem !important;
  }
  .sm\:pb-8 {
    padding-bottom: 2rem !important;
  }
  .sm\:mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .sm\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .sm\:ml-8 {
    margin-left: 2rem !important;
  }
  .sm\:mr-8 {
    margin-right: 2rem !important;
  }
  .sm\:mt-8 {
    margin-top: 2rem !important;
  }
  .sm\:mb-8 {
    margin-bottom: 2rem !important;
  }
  .sm\:m-8 {
    margin-bottom: 2rem !important;
    margin-top: 2rem !important;
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .sm\:gap-8 {
    gap: 2rem;
  }
  .sm\:gap-x-8 {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .sm\:gap-y-8 {
    row-gap: 2rem;
  }
  .sm\:text-8 {
    font-size: 2rem !important;
  }
  .sm\:h-8 {
    height: 2rem !important;
  }
  .sm\:w-8 {
    width: 2rem !important;
  }
  .sm\:top-8 {
    top: 2rem;
  }
  .sm\:-top-8 {
    top: -2rem;
  }
  .sm\:bottom-8 {
    bottom: 2rem;
  }
  .sm\:-bottom-8 {
    bottom: -2rem;
  }
  .sm\:left-8 {
    left: 2rem;
  }
  .sm\:-left-8 {
    left: -2rem;
  }
  .sm\:right-8 {
    right: 2rem;
  }
  .sm\:-right-8 {
    right: -2rem;
  }
  .sm\:start-8 {
    inset-inline-start: 2rem;
  }
  .sm\:-start-8 {
    inset-inline-start: -2rem;
  }
  .sm\:end-8 {
    inset-inline-end: 2rem;
  }
  .sm\:-end-8 {
    inset-inline-end: -2rem;
  }
  .sm\:p-9 {
    padding: 2.25rem !important;
  }
  .sm\:px-9 {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }
  .sm\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .sm\:pl-9 {
    padding-left: 2.25rem !important;
  }
  .sm\:pr-9 {
    padding-right: 2.25rem !important;
  }
  .sm\:pt-9 {
    padding-top: 2.25rem !important;
  }
  .sm\:pb-9 {
    padding-bottom: 2.25rem !important;
  }
  .sm\:mx-9 {
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }
  .sm\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .sm\:ml-9 {
    margin-left: 2.25rem !important;
  }
  .sm\:mr-9 {
    margin-right: 2.25rem !important;
  }
  .sm\:mt-9 {
    margin-top: 2.25rem !important;
  }
  .sm\:mb-9 {
    margin-bottom: 2.25rem !important;
  }
  .sm\:m-9 {
    margin-bottom: 2.25rem !important;
    margin-top: 2.25rem !important;
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .sm\:gap-9 {
    gap: 2.25rem;
  }
  .sm\:gap-x-9 {
    -moz-column-gap: 2.25rem;
         column-gap: 2.25rem;
  }
  .sm\:gap-y-9 {
    row-gap: 2.25rem;
  }
  .sm\:text-9 {
    font-size: 2.25rem !important;
  }
  .sm\:h-9 {
    height: 2.25rem !important;
  }
  .sm\:w-9 {
    width: 2.25rem !important;
  }
  .sm\:top-9 {
    top: 2.25rem;
  }
  .sm\:-top-9 {
    top: -2.25rem;
  }
  .sm\:bottom-9 {
    bottom: 2.25rem;
  }
  .sm\:-bottom-9 {
    bottom: -2.25rem;
  }
  .sm\:left-9 {
    left: 2.25rem;
  }
  .sm\:-left-9 {
    left: -2.25rem;
  }
  .sm\:right-9 {
    right: 2.25rem;
  }
  .sm\:-right-9 {
    right: -2.25rem;
  }
  .sm\:start-9 {
    inset-inline-start: 2.25rem;
  }
  .sm\:-start-9 {
    inset-inline-start: -2.25rem;
  }
  .sm\:end-9 {
    inset-inline-end: 2.25rem;
  }
  .sm\:-end-9 {
    inset-inline-end: -2.25rem;
  }
  .sm\:p-10 {
    padding: 2.5rem !important;
  }
  .sm\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .sm\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .sm\:pl-10 {
    padding-left: 2.5rem !important;
  }
  .sm\:pr-10 {
    padding-right: 2.5rem !important;
  }
  .sm\:pt-10 {
    padding-top: 2.5rem !important;
  }
  .sm\:pb-10 {
    padding-bottom: 2.5rem !important;
  }
  .sm\:mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .sm\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .sm\:ml-10 {
    margin-left: 2.5rem !important;
  }
  .sm\:mr-10 {
    margin-right: 2.5rem !important;
  }
  .sm\:mt-10 {
    margin-top: 2.5rem !important;
  }
  .sm\:mb-10 {
    margin-bottom: 2.5rem !important;
  }
  .sm\:m-10 {
    margin-bottom: 2.5rem !important;
    margin-top: 2.5rem !important;
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .sm\:gap-10 {
    gap: 2.5rem;
  }
  .sm\:gap-x-10 {
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }
  .sm\:gap-y-10 {
    row-gap: 2.5rem;
  }
  .sm\:text-10 {
    font-size: 2.5rem !important;
  }
  .sm\:h-10 {
    height: 2.5rem !important;
  }
  .sm\:w-10 {
    width: 2.5rem !important;
  }
  .sm\:top-10 {
    top: 2.5rem;
  }
  .sm\:-top-10 {
    top: -2.5rem;
  }
  .sm\:bottom-10 {
    bottom: 2.5rem;
  }
  .sm\:-bottom-10 {
    bottom: -2.5rem;
  }
  .sm\:left-10 {
    left: 2.5rem;
  }
  .sm\:-left-10 {
    left: -2.5rem;
  }
  .sm\:right-10 {
    right: 2.5rem;
  }
  .sm\:-right-10 {
    right: -2.5rem;
  }
  .sm\:start-10 {
    inset-inline-start: 2.5rem;
  }
  .sm\:-start-10 {
    inset-inline-start: -2.5rem;
  }
  .sm\:end-10 {
    inset-inline-end: 2.5rem;
  }
  .sm\:-end-10 {
    inset-inline-end: -2.5rem;
  }
  .sm\:p-11 {
    padding: 2.75rem !important;
  }
  .sm\:px-11 {
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }
  .sm\:py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .sm\:pl-11 {
    padding-left: 2.75rem !important;
  }
  .sm\:pr-11 {
    padding-right: 2.75rem !important;
  }
  .sm\:pt-11 {
    padding-top: 2.75rem !important;
  }
  .sm\:pb-11 {
    padding-bottom: 2.75rem !important;
  }
  .sm\:mx-11 {
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }
  .sm\:my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
  .sm\:ml-11 {
    margin-left: 2.75rem !important;
  }
  .sm\:mr-11 {
    margin-right: 2.75rem !important;
  }
  .sm\:mt-11 {
    margin-top: 2.75rem !important;
  }
  .sm\:mb-11 {
    margin-bottom: 2.75rem !important;
  }
  .sm\:m-11 {
    margin-bottom: 2.75rem !important;
    margin-top: 2.75rem !important;
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .sm\:gap-11 {
    gap: 2.75rem;
  }
  .sm\:gap-x-11 {
    -moz-column-gap: 2.75rem;
         column-gap: 2.75rem;
  }
  .sm\:gap-y-11 {
    row-gap: 2.75rem;
  }
  .sm\:text-11 {
    font-size: 2.75rem !important;
  }
  .sm\:h-11 {
    height: 2.75rem !important;
  }
  .sm\:w-11 {
    width: 2.75rem !important;
  }
  .sm\:top-11 {
    top: 2.75rem;
  }
  .sm\:-top-11 {
    top: -2.75rem;
  }
  .sm\:bottom-11 {
    bottom: 2.75rem;
  }
  .sm\:-bottom-11 {
    bottom: -2.75rem;
  }
  .sm\:left-11 {
    left: 2.75rem;
  }
  .sm\:-left-11 {
    left: -2.75rem;
  }
  .sm\:right-11 {
    right: 2.75rem;
  }
  .sm\:-right-11 {
    right: -2.75rem;
  }
  .sm\:start-11 {
    inset-inline-start: 2.75rem;
  }
  .sm\:-start-11 {
    inset-inline-start: -2.75rem;
  }
  .sm\:end-11 {
    inset-inline-end: 2.75rem;
  }
  .sm\:-end-11 {
    inset-inline-end: -2.75rem;
  }
  .sm\:p-12 {
    padding: 3rem !important;
  }
  .sm\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .sm\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .sm\:pl-12 {
    padding-left: 3rem !important;
  }
  .sm\:pr-12 {
    padding-right: 3rem !important;
  }
  .sm\:pt-12 {
    padding-top: 3rem !important;
  }
  .sm\:pb-12 {
    padding-bottom: 3rem !important;
  }
  .sm\:mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .sm\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .sm\:ml-12 {
    margin-left: 3rem !important;
  }
  .sm\:mr-12 {
    margin-right: 3rem !important;
  }
  .sm\:mt-12 {
    margin-top: 3rem !important;
  }
  .sm\:mb-12 {
    margin-bottom: 3rem !important;
  }
  .sm\:m-12 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .sm\:gap-12 {
    gap: 3rem;
  }
  .sm\:gap-x-12 {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
  .sm\:gap-y-12 {
    row-gap: 3rem;
  }
  .sm\:text-12 {
    font-size: 3rem !important;
  }
  .sm\:h-12 {
    height: 3rem !important;
  }
  .sm\:w-12 {
    width: 3rem !important;
  }
  .sm\:top-12 {
    top: 3rem;
  }
  .sm\:-top-12 {
    top: -3rem;
  }
  .sm\:bottom-12 {
    bottom: 3rem;
  }
  .sm\:-bottom-12 {
    bottom: -3rem;
  }
  .sm\:left-12 {
    left: 3rem;
  }
  .sm\:-left-12 {
    left: -3rem;
  }
  .sm\:right-12 {
    right: 3rem;
  }
  .sm\:-right-12 {
    right: -3rem;
  }
  .sm\:start-12 {
    inset-inline-start: 3rem;
  }
  .sm\:-start-12 {
    inset-inline-start: -3rem;
  }
  .sm\:end-12 {
    inset-inline-end: 3rem;
  }
  .sm\:-end-12 {
    inset-inline-end: -3rem;
  }
  .sm\:p-14 {
    padding: 3.5rem !important;
  }
  .sm\:px-14 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .sm\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .sm\:pl-14 {
    padding-left: 3.5rem !important;
  }
  .sm\:pr-14 {
    padding-right: 3.5rem !important;
  }
  .sm\:pt-14 {
    padding-top: 3.5rem !important;
  }
  .sm\:pb-14 {
    padding-bottom: 3.5rem !important;
  }
  .sm\:mx-14 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }
  .sm\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .sm\:ml-14 {
    margin-left: 3.5rem !important;
  }
  .sm\:mr-14 {
    margin-right: 3.5rem !important;
  }
  .sm\:mt-14 {
    margin-top: 3.5rem !important;
  }
  .sm\:mb-14 {
    margin-bottom: 3.5rem !important;
  }
  .sm\:m-14 {
    margin-bottom: 3.5rem !important;
    margin-top: 3.5rem !important;
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .sm\:gap-14 {
    gap: 3.5rem;
  }
  .sm\:gap-x-14 {
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }
  .sm\:gap-y-14 {
    row-gap: 3.5rem;
  }
  .sm\:text-14 {
    font-size: 3.5rem !important;
  }
  .sm\:h-14 {
    height: 3.5rem !important;
  }
  .sm\:w-14 {
    width: 3.5rem !important;
  }
  .sm\:top-14 {
    top: 3.5rem;
  }
  .sm\:-top-14 {
    top: -3.5rem;
  }
  .sm\:bottom-14 {
    bottom: 3.5rem;
  }
  .sm\:-bottom-14 {
    bottom: -3.5rem;
  }
  .sm\:left-14 {
    left: 3.5rem;
  }
  .sm\:-left-14 {
    left: -3.5rem;
  }
  .sm\:right-14 {
    right: 3.5rem;
  }
  .sm\:-right-14 {
    right: -3.5rem;
  }
  .sm\:start-14 {
    inset-inline-start: 3.5rem;
  }
  .sm\:-start-14 {
    inset-inline-start: -3.5rem;
  }
  .sm\:end-14 {
    inset-inline-end: 3.5rem;
  }
  .sm\:-end-14 {
    inset-inline-end: -3.5rem;
  }
  .sm\:p-15 {
    padding: 3.75rem !important;
  }
  .sm\:px-15 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }
  .sm\:py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .sm\:pl-15 {
    padding-left: 3.75rem !important;
  }
  .sm\:pr-15 {
    padding-right: 3.75rem !important;
  }
  .sm\:pt-15 {
    padding-top: 3.75rem !important;
  }
  .sm\:pb-15 {
    padding-bottom: 3.75rem !important;
  }
  .sm\:mx-15 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }
  .sm\:my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .sm\:ml-15 {
    margin-left: 3.75rem !important;
  }
  .sm\:mr-15 {
    margin-right: 3.75rem !important;
  }
  .sm\:mt-15 {
    margin-top: 3.75rem !important;
  }
  .sm\:mb-15 {
    margin-bottom: 3.75rem !important;
  }
  .sm\:m-15 {
    margin-bottom: 3.75rem !important;
    margin-top: 3.75rem !important;
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .sm\:gap-15 {
    gap: 3.75rem;
  }
  .sm\:gap-x-15 {
    -moz-column-gap: 3.75rem;
         column-gap: 3.75rem;
  }
  .sm\:gap-y-15 {
    row-gap: 3.75rem;
  }
  .sm\:text-15 {
    font-size: 3.75rem !important;
  }
  .sm\:h-15 {
    height: 3.75rem !important;
  }
  .sm\:w-15 {
    width: 3.75rem !important;
  }
  .sm\:top-15 {
    top: 3.75rem;
  }
  .sm\:-top-15 {
    top: -3.75rem;
  }
  .sm\:bottom-15 {
    bottom: 3.75rem;
  }
  .sm\:-bottom-15 {
    bottom: -3.75rem;
  }
  .sm\:left-15 {
    left: 3.75rem;
  }
  .sm\:-left-15 {
    left: -3.75rem;
  }
  .sm\:right-15 {
    right: 3.75rem;
  }
  .sm\:-right-15 {
    right: -3.75rem;
  }
  .sm\:start-15 {
    inset-inline-start: 3.75rem;
  }
  .sm\:-start-15 {
    inset-inline-start: -3.75rem;
  }
  .sm\:end-15 {
    inset-inline-end: 3.75rem;
  }
  .sm\:-end-15 {
    inset-inline-end: -3.75rem;
  }
  .sm\:p-16 {
    padding: 4rem !important;
  }
  .sm\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .sm\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .sm\:pl-16 {
    padding-left: 4rem !important;
  }
  .sm\:pr-16 {
    padding-right: 4rem !important;
  }
  .sm\:pt-16 {
    padding-top: 4rem !important;
  }
  .sm\:pb-16 {
    padding-bottom: 4rem !important;
  }
  .sm\:mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .sm\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .sm\:ml-16 {
    margin-left: 4rem !important;
  }
  .sm\:mr-16 {
    margin-right: 4rem !important;
  }
  .sm\:mt-16 {
    margin-top: 4rem !important;
  }
  .sm\:mb-16 {
    margin-bottom: 4rem !important;
  }
  .sm\:m-16 {
    margin-bottom: 4rem !important;
    margin-top: 4rem !important;
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .sm\:gap-16 {
    gap: 4rem;
  }
  .sm\:gap-x-16 {
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
  .sm\:gap-y-16 {
    row-gap: 4rem;
  }
  .sm\:text-16 {
    font-size: 4rem !important;
  }
  .sm\:h-16 {
    height: 4rem !important;
  }
  .sm\:w-16 {
    width: 4rem !important;
  }
  .sm\:top-16 {
    top: 4rem;
  }
  .sm\:-top-16 {
    top: -4rem;
  }
  .sm\:bottom-16 {
    bottom: 4rem;
  }
  .sm\:-bottom-16 {
    bottom: -4rem;
  }
  .sm\:left-16 {
    left: 4rem;
  }
  .sm\:-left-16 {
    left: -4rem;
  }
  .sm\:right-16 {
    right: 4rem;
  }
  .sm\:-right-16 {
    right: -4rem;
  }
  .sm\:start-16 {
    inset-inline-start: 4rem;
  }
  .sm\:-start-16 {
    inset-inline-start: -4rem;
  }
  .sm\:end-16 {
    inset-inline-end: 4rem;
  }
  .sm\:-end-16 {
    inset-inline-end: -4rem;
  }
  .sm\:p-18 {
    padding: 4.5rem !important;
  }
  .sm\:px-18 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }
  .sm\:py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .sm\:pl-18 {
    padding-left: 4.5rem !important;
  }
  .sm\:pr-18 {
    padding-right: 4.5rem !important;
  }
  .sm\:pt-18 {
    padding-top: 4.5rem !important;
  }
  .sm\:pb-18 {
    padding-bottom: 4.5rem !important;
  }
  .sm\:mx-18 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
  .sm\:my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .sm\:ml-18 {
    margin-left: 4.5rem !important;
  }
  .sm\:mr-18 {
    margin-right: 4.5rem !important;
  }
  .sm\:mt-18 {
    margin-top: 4.5rem !important;
  }
  .sm\:mb-18 {
    margin-bottom: 4.5rem !important;
  }
  .sm\:m-18 {
    margin-bottom: 4.5rem !important;
    margin-top: 4.5rem !important;
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .sm\:gap-18 {
    gap: 4.5rem;
  }
  .sm\:gap-x-18 {
    -moz-column-gap: 4.5rem;
         column-gap: 4.5rem;
  }
  .sm\:gap-y-18 {
    row-gap: 4.5rem;
  }
  .sm\:text-18 {
    font-size: 4.5rem !important;
  }
  .sm\:h-18 {
    height: 4.5rem !important;
  }
  .sm\:w-18 {
    width: 4.5rem !important;
  }
  .sm\:top-18 {
    top: 4.5rem;
  }
  .sm\:-top-18 {
    top: -4.5rem;
  }
  .sm\:bottom-18 {
    bottom: 4.5rem;
  }
  .sm\:-bottom-18 {
    bottom: -4.5rem;
  }
  .sm\:left-18 {
    left: 4.5rem;
  }
  .sm\:-left-18 {
    left: -4.5rem;
  }
  .sm\:right-18 {
    right: 4.5rem;
  }
  .sm\:-right-18 {
    right: -4.5rem;
  }
  .sm\:start-18 {
    inset-inline-start: 4.5rem;
  }
  .sm\:-start-18 {
    inset-inline-start: -4.5rem;
  }
  .sm\:end-18 {
    inset-inline-end: 4.5rem;
  }
  .sm\:-end-18 {
    inset-inline-end: -4.5rem;
  }
  .sm\:p-20 {
    padding: 5rem !important;
  }
  .sm\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .sm\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .sm\:pl-20 {
    padding-left: 5rem !important;
  }
  .sm\:pr-20 {
    padding-right: 5rem !important;
  }
  .sm\:pt-20 {
    padding-top: 5rem !important;
  }
  .sm\:pb-20 {
    padding-bottom: 5rem !important;
  }
  .sm\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .sm\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .sm\:ml-20 {
    margin-left: 5rem !important;
  }
  .sm\:mr-20 {
    margin-right: 5rem !important;
  }
  .sm\:mt-20 {
    margin-top: 5rem !important;
  }
  .sm\:mb-20 {
    margin-bottom: 5rem !important;
  }
  .sm\:m-20 {
    margin-bottom: 5rem !important;
    margin-top: 5rem !important;
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .sm\:gap-20 {
    gap: 5rem;
  }
  .sm\:gap-x-20 {
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
  .sm\:gap-y-20 {
    row-gap: 5rem;
  }
  .sm\:text-20 {
    font-size: 5rem !important;
  }
  .sm\:h-20 {
    height: 5rem !important;
  }
  .sm\:w-20 {
    width: 5rem !important;
  }
  .sm\:top-20 {
    top: 5rem;
  }
  .sm\:-top-20 {
    top: -5rem;
  }
  .sm\:bottom-20 {
    bottom: 5rem;
  }
  .sm\:-bottom-20 {
    bottom: -5rem;
  }
  .sm\:left-20 {
    left: 5rem;
  }
  .sm\:-left-20 {
    left: -5rem;
  }
  .sm\:right-20 {
    right: 5rem;
  }
  .sm\:-right-20 {
    right: -5rem;
  }
  .sm\:start-20 {
    inset-inline-start: 5rem;
  }
  .sm\:-start-20 {
    inset-inline-start: -5rem;
  }
  .sm\:end-20 {
    inset-inline-end: 5rem;
  }
  .sm\:-end-20 {
    inset-inline-end: -5rem;
  }
  .sm\:p-24 {
    padding: 6rem !important;
  }
  .sm\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .sm\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .sm\:pl-24 {
    padding-left: 6rem !important;
  }
  .sm\:pr-24 {
    padding-right: 6rem !important;
  }
  .sm\:pt-24 {
    padding-top: 6rem !important;
  }
  .sm\:pb-24 {
    padding-bottom: 6rem !important;
  }
  .sm\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .sm\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .sm\:ml-24 {
    margin-left: 6rem !important;
  }
  .sm\:mr-24 {
    margin-right: 6rem !important;
  }
  .sm\:mt-24 {
    margin-top: 6rem !important;
  }
  .sm\:mb-24 {
    margin-bottom: 6rem !important;
  }
  .sm\:m-24 {
    margin-bottom: 6rem !important;
    margin-top: 6rem !important;
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .sm\:gap-24 {
    gap: 6rem;
  }
  .sm\:gap-x-24 {
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }
  .sm\:gap-y-24 {
    row-gap: 6rem;
  }
  .sm\:text-24 {
    font-size: 6rem !important;
  }
  .sm\:h-24 {
    height: 6rem !important;
  }
  .sm\:w-24 {
    width: 6rem !important;
  }
  .sm\:top-24 {
    top: 6rem;
  }
  .sm\:-top-24 {
    top: -6rem;
  }
  .sm\:bottom-24 {
    bottom: 6rem;
  }
  .sm\:-bottom-24 {
    bottom: -6rem;
  }
  .sm\:left-24 {
    left: 6rem;
  }
  .sm\:-left-24 {
    left: -6rem;
  }
  .sm\:right-24 {
    right: 6rem;
  }
  .sm\:-right-24 {
    right: -6rem;
  }
  .sm\:start-24 {
    inset-inline-start: 6rem;
  }
  .sm\:-start-24 {
    inset-inline-start: -6rem;
  }
  .sm\:end-24 {
    inset-inline-end: 6rem;
  }
  .sm\:-end-24 {
    inset-inline-end: -6rem;
  }
  .sm\:p-28 {
    padding: 7rem !important;
  }
  .sm\:px-28 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .sm\:py-28 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .sm\:pl-28 {
    padding-left: 7rem !important;
  }
  .sm\:pr-28 {
    padding-right: 7rem !important;
  }
  .sm\:pt-28 {
    padding-top: 7rem !important;
  }
  .sm\:pb-28 {
    padding-bottom: 7rem !important;
  }
  .sm\:mx-28 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .sm\:my-28 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .sm\:ml-28 {
    margin-left: 7rem !important;
  }
  .sm\:mr-28 {
    margin-right: 7rem !important;
  }
  .sm\:mt-28 {
    margin-top: 7rem !important;
  }
  .sm\:mb-28 {
    margin-bottom: 7rem !important;
  }
  .sm\:m-28 {
    margin-bottom: 7rem !important;
    margin-top: 7rem !important;
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .sm\:gap-28 {
    gap: 7rem;
  }
  .sm\:gap-x-28 {
    -moz-column-gap: 7rem;
         column-gap: 7rem;
  }
  .sm\:gap-y-28 {
    row-gap: 7rem;
  }
  .sm\:text-28 {
    font-size: 7rem !important;
  }
  .sm\:h-28 {
    height: 7rem !important;
  }
  .sm\:w-28 {
    width: 7rem !important;
  }
  .sm\:top-28 {
    top: 7rem;
  }
  .sm\:-top-28 {
    top: -7rem;
  }
  .sm\:bottom-28 {
    bottom: 7rem;
  }
  .sm\:-bottom-28 {
    bottom: -7rem;
  }
  .sm\:left-28 {
    left: 7rem;
  }
  .sm\:-left-28 {
    left: -7rem;
  }
  .sm\:right-28 {
    right: 7rem;
  }
  .sm\:-right-28 {
    right: -7rem;
  }
  .sm\:start-28 {
    inset-inline-start: 7rem;
  }
  .sm\:-start-28 {
    inset-inline-start: -7rem;
  }
  .sm\:end-28 {
    inset-inline-end: 7rem;
  }
  .sm\:-end-28 {
    inset-inline-end: -7rem;
  }
  .sm\:p-32 {
    padding: 8rem !important;
  }
  .sm\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .sm\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .sm\:pl-32 {
    padding-left: 8rem !important;
  }
  .sm\:pr-32 {
    padding-right: 8rem !important;
  }
  .sm\:pt-32 {
    padding-top: 8rem !important;
  }
  .sm\:pb-32 {
    padding-bottom: 8rem !important;
  }
  .sm\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .sm\:my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .sm\:ml-32 {
    margin-left: 8rem !important;
  }
  .sm\:mr-32 {
    margin-right: 8rem !important;
  }
  .sm\:mt-32 {
    margin-top: 8rem !important;
  }
  .sm\:mb-32 {
    margin-bottom: 8rem !important;
  }
  .sm\:m-32 {
    margin-bottom: 8rem !important;
    margin-top: 8rem !important;
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .sm\:gap-32 {
    gap: 8rem;
  }
  .sm\:gap-x-32 {
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }
  .sm\:gap-y-32 {
    row-gap: 8rem;
  }
  .sm\:text-32 {
    font-size: 8rem !important;
  }
  .sm\:h-32 {
    height: 8rem !important;
  }
  .sm\:w-32 {
    width: 8rem !important;
  }
  .sm\:top-32 {
    top: 8rem;
  }
  .sm\:-top-32 {
    top: -8rem;
  }
  .sm\:bottom-32 {
    bottom: 8rem;
  }
  .sm\:-bottom-32 {
    bottom: -8rem;
  }
  .sm\:left-32 {
    left: 8rem;
  }
  .sm\:-left-32 {
    left: -8rem;
  }
  .sm\:right-32 {
    right: 8rem;
  }
  .sm\:-right-32 {
    right: -8rem;
  }
  .sm\:start-32 {
    inset-inline-start: 8rem;
  }
  .sm\:-start-32 {
    inset-inline-start: -8rem;
  }
  .sm\:end-32 {
    inset-inline-end: 8rem;
  }
  .sm\:-end-32 {
    inset-inline-end: -8rem;
  }
  .sm\:p-36 {
    padding: 9rem !important;
  }
  .sm\:px-36 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .sm\:py-36 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .sm\:pl-36 {
    padding-left: 9rem !important;
  }
  .sm\:pr-36 {
    padding-right: 9rem !important;
  }
  .sm\:pt-36 {
    padding-top: 9rem !important;
  }
  .sm\:pb-36 {
    padding-bottom: 9rem !important;
  }
  .sm\:mx-36 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .sm\:my-36 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .sm\:ml-36 {
    margin-left: 9rem !important;
  }
  .sm\:mr-36 {
    margin-right: 9rem !important;
  }
  .sm\:mt-36 {
    margin-top: 9rem !important;
  }
  .sm\:mb-36 {
    margin-bottom: 9rem !important;
  }
  .sm\:m-36 {
    margin-bottom: 9rem !important;
    margin-top: 9rem !important;
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .sm\:gap-36 {
    gap: 9rem;
  }
  .sm\:gap-x-36 {
    -moz-column-gap: 9rem;
         column-gap: 9rem;
  }
  .sm\:gap-y-36 {
    row-gap: 9rem;
  }
  .sm\:text-36 {
    font-size: 9rem !important;
  }
  .sm\:h-36 {
    height: 9rem !important;
  }
  .sm\:w-36 {
    width: 9rem !important;
  }
  .sm\:top-36 {
    top: 9rem;
  }
  .sm\:-top-36 {
    top: -9rem;
  }
  .sm\:bottom-36 {
    bottom: 9rem;
  }
  .sm\:-bottom-36 {
    bottom: -9rem;
  }
  .sm\:left-36 {
    left: 9rem;
  }
  .sm\:-left-36 {
    left: -9rem;
  }
  .sm\:right-36 {
    right: 9rem;
  }
  .sm\:-right-36 {
    right: -9rem;
  }
  .sm\:start-36 {
    inset-inline-start: 9rem;
  }
  .sm\:-start-36 {
    inset-inline-start: -9rem;
  }
  .sm\:end-36 {
    inset-inline-end: 9rem;
  }
  .sm\:-end-36 {
    inset-inline-end: -9rem;
  }
  .sm\:p-38 {
    padding: 9.5rem !important;
  }
  .sm\:px-38 {
    padding-left: 9.5rem !important;
    padding-right: 9.5rem !important;
  }
  .sm\:py-38 {
    padding-top: 9.5rem !important;
    padding-bottom: 9.5rem !important;
  }
  .sm\:pl-38 {
    padding-left: 9.5rem !important;
  }
  .sm\:pr-38 {
    padding-right: 9.5rem !important;
  }
  .sm\:pt-38 {
    padding-top: 9.5rem !important;
  }
  .sm\:pb-38 {
    padding-bottom: 9.5rem !important;
  }
  .sm\:mx-38 {
    margin-left: 9.5rem !important;
    margin-right: 9.5rem !important;
  }
  .sm\:my-38 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
  }
  .sm\:ml-38 {
    margin-left: 9.5rem !important;
  }
  .sm\:mr-38 {
    margin-right: 9.5rem !important;
  }
  .sm\:mt-38 {
    margin-top: 9.5rem !important;
  }
  .sm\:mb-38 {
    margin-bottom: 9.5rem !important;
  }
  .sm\:m-38 {
    margin-bottom: 9.5rem !important;
    margin-top: 9.5rem !important;
    margin-right: 9.5rem !important;
    margin-left: 9.5rem !important;
  }
  .sm\:gap-38 {
    gap: 9.5rem;
  }
  .sm\:gap-x-38 {
    -moz-column-gap: 9.5rem;
         column-gap: 9.5rem;
  }
  .sm\:gap-y-38 {
    row-gap: 9.5rem;
  }
  .sm\:text-38 {
    font-size: 9.5rem !important;
  }
  .sm\:h-38 {
    height: 9.5rem !important;
  }
  .sm\:w-38 {
    width: 9.5rem !important;
  }
  .sm\:top-38 {
    top: 9.5rem;
  }
  .sm\:-top-38 {
    top: -9.5rem;
  }
  .sm\:bottom-38 {
    bottom: 9.5rem;
  }
  .sm\:-bottom-38 {
    bottom: -9.5rem;
  }
  .sm\:left-38 {
    left: 9.5rem;
  }
  .sm\:-left-38 {
    left: -9.5rem;
  }
  .sm\:right-38 {
    right: 9.5rem;
  }
  .sm\:-right-38 {
    right: -9.5rem;
  }
  .sm\:start-38 {
    inset-inline-start: 9.5rem;
  }
  .sm\:-start-38 {
    inset-inline-start: -9.5rem;
  }
  .sm\:end-38 {
    inset-inline-end: 9.5rem;
  }
  .sm\:-end-38 {
    inset-inline-end: -9.5rem;
  }
  .sm\:p-40 {
    padding: 10rem !important;
  }
  .sm\:px-40 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .sm\:py-40 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .sm\:pl-40 {
    padding-left: 10rem !important;
  }
  .sm\:pr-40 {
    padding-right: 10rem !important;
  }
  .sm\:pt-40 {
    padding-top: 10rem !important;
  }
  .sm\:pb-40 {
    padding-bottom: 10rem !important;
  }
  .sm\:mx-40 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .sm\:my-40 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .sm\:ml-40 {
    margin-left: 10rem !important;
  }
  .sm\:mr-40 {
    margin-right: 10rem !important;
  }
  .sm\:mt-40 {
    margin-top: 10rem !important;
  }
  .sm\:mb-40 {
    margin-bottom: 10rem !important;
  }
  .sm\:m-40 {
    margin-bottom: 10rem !important;
    margin-top: 10rem !important;
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .sm\:gap-40 {
    gap: 10rem;
  }
  .sm\:gap-x-40 {
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }
  .sm\:gap-y-40 {
    row-gap: 10rem;
  }
  .sm\:text-40 {
    font-size: 10rem !important;
  }
  .sm\:h-40 {
    height: 10rem !important;
  }
  .sm\:w-40 {
    width: 10rem !important;
  }
  .sm\:top-40 {
    top: 10rem;
  }
  .sm\:-top-40 {
    top: -10rem;
  }
  .sm\:bottom-40 {
    bottom: 10rem;
  }
  .sm\:-bottom-40 {
    bottom: -10rem;
  }
  .sm\:left-40 {
    left: 10rem;
  }
  .sm\:-left-40 {
    left: -10rem;
  }
  .sm\:right-40 {
    right: 10rem;
  }
  .sm\:-right-40 {
    right: -10rem;
  }
  .sm\:start-40 {
    inset-inline-start: 10rem;
  }
  .sm\:-start-40 {
    inset-inline-start: -10rem;
  }
  .sm\:end-40 {
    inset-inline-end: 10rem;
  }
  .sm\:-end-40 {
    inset-inline-end: -10rem;
  }
  .sm\:p-44 {
    padding: 11rem !important;
  }
  .sm\:px-44 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }
  .sm\:py-44 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .sm\:pl-44 {
    padding-left: 11rem !important;
  }
  .sm\:pr-44 {
    padding-right: 11rem !important;
  }
  .sm\:pt-44 {
    padding-top: 11rem !important;
  }
  .sm\:pb-44 {
    padding-bottom: 11rem !important;
  }
  .sm\:mx-44 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }
  .sm\:my-44 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .sm\:ml-44 {
    margin-left: 11rem !important;
  }
  .sm\:mr-44 {
    margin-right: 11rem !important;
  }
  .sm\:mt-44 {
    margin-top: 11rem !important;
  }
  .sm\:mb-44 {
    margin-bottom: 11rem !important;
  }
  .sm\:m-44 {
    margin-bottom: 11rem !important;
    margin-top: 11rem !important;
    margin-right: 11rem !important;
    margin-left: 11rem !important;
  }
  .sm\:gap-44 {
    gap: 11rem;
  }
  .sm\:gap-x-44 {
    -moz-column-gap: 11rem;
         column-gap: 11rem;
  }
  .sm\:gap-y-44 {
    row-gap: 11rem;
  }
  .sm\:text-44 {
    font-size: 11rem !important;
  }
  .sm\:h-44 {
    height: 11rem !important;
  }
  .sm\:w-44 {
    width: 11rem !important;
  }
  .sm\:top-44 {
    top: 11rem;
  }
  .sm\:-top-44 {
    top: -11rem;
  }
  .sm\:bottom-44 {
    bottom: 11rem;
  }
  .sm\:-bottom-44 {
    bottom: -11rem;
  }
  .sm\:left-44 {
    left: 11rem;
  }
  .sm\:-left-44 {
    left: -11rem;
  }
  .sm\:right-44 {
    right: 11rem;
  }
  .sm\:-right-44 {
    right: -11rem;
  }
  .sm\:start-44 {
    inset-inline-start: 11rem;
  }
  .sm\:-start-44 {
    inset-inline-start: -11rem;
  }
  .sm\:end-44 {
    inset-inline-end: 11rem;
  }
  .sm\:-end-44 {
    inset-inline-end: -11rem;
  }
  .sm\:p-46 {
    padding: 11.5rem !important;
  }
  .sm\:px-46 {
    padding-left: 11.5rem !important;
    padding-right: 11.5rem !important;
  }
  .sm\:py-46 {
    padding-top: 11.5rem !important;
    padding-bottom: 11.5rem !important;
  }
  .sm\:pl-46 {
    padding-left: 11.5rem !important;
  }
  .sm\:pr-46 {
    padding-right: 11.5rem !important;
  }
  .sm\:pt-46 {
    padding-top: 11.5rem !important;
  }
  .sm\:pb-46 {
    padding-bottom: 11.5rem !important;
  }
  .sm\:mx-46 {
    margin-left: 11.5rem !important;
    margin-right: 11.5rem !important;
  }
  .sm\:my-46 {
    margin-top: 11.5rem !important;
    margin-bottom: 11.5rem !important;
  }
  .sm\:ml-46 {
    margin-left: 11.5rem !important;
  }
  .sm\:mr-46 {
    margin-right: 11.5rem !important;
  }
  .sm\:mt-46 {
    margin-top: 11.5rem !important;
  }
  .sm\:mb-46 {
    margin-bottom: 11.5rem !important;
  }
  .sm\:m-46 {
    margin-bottom: 11.5rem !important;
    margin-top: 11.5rem !important;
    margin-right: 11.5rem !important;
    margin-left: 11.5rem !important;
  }
  .sm\:gap-46 {
    gap: 11.5rem;
  }
  .sm\:gap-x-46 {
    -moz-column-gap: 11.5rem;
         column-gap: 11.5rem;
  }
  .sm\:gap-y-46 {
    row-gap: 11.5rem;
  }
  .sm\:text-46 {
    font-size: 11.5rem !important;
  }
  .sm\:h-46 {
    height: 11.5rem !important;
  }
  .sm\:w-46 {
    width: 11.5rem !important;
  }
  .sm\:top-46 {
    top: 11.5rem;
  }
  .sm\:-top-46 {
    top: -11.5rem;
  }
  .sm\:bottom-46 {
    bottom: 11.5rem;
  }
  .sm\:-bottom-46 {
    bottom: -11.5rem;
  }
  .sm\:left-46 {
    left: 11.5rem;
  }
  .sm\:-left-46 {
    left: -11.5rem;
  }
  .sm\:right-46 {
    right: 11.5rem;
  }
  .sm\:-right-46 {
    right: -11.5rem;
  }
  .sm\:start-46 {
    inset-inline-start: 11.5rem;
  }
  .sm\:-start-46 {
    inset-inline-start: -11.5rem;
  }
  .sm\:end-46 {
    inset-inline-end: 11.5rem;
  }
  .sm\:-end-46 {
    inset-inline-end: -11.5rem;
  }
  .sm\:p-48 {
    padding: 12rem !important;
  }
  .sm\:px-48 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }
  .sm\:py-48 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .sm\:pl-48 {
    padding-left: 12rem !important;
  }
  .sm\:pr-48 {
    padding-right: 12rem !important;
  }
  .sm\:pt-48 {
    padding-top: 12rem !important;
  }
  .sm\:pb-48 {
    padding-bottom: 12rem !important;
  }
  .sm\:mx-48 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }
  .sm\:my-48 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .sm\:ml-48 {
    margin-left: 12rem !important;
  }
  .sm\:mr-48 {
    margin-right: 12rem !important;
  }
  .sm\:mt-48 {
    margin-top: 12rem !important;
  }
  .sm\:mb-48 {
    margin-bottom: 12rem !important;
  }
  .sm\:m-48 {
    margin-bottom: 12rem !important;
    margin-top: 12rem !important;
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .sm\:gap-48 {
    gap: 12rem;
  }
  .sm\:gap-x-48 {
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }
  .sm\:gap-y-48 {
    row-gap: 12rem;
  }
  .sm\:text-48 {
    font-size: 12rem !important;
  }
  .sm\:h-48 {
    height: 12rem !important;
  }
  .sm\:w-48 {
    width: 12rem !important;
  }
  .sm\:top-48 {
    top: 12rem;
  }
  .sm\:-top-48 {
    top: -12rem;
  }
  .sm\:bottom-48 {
    bottom: 12rem;
  }
  .sm\:-bottom-48 {
    bottom: -12rem;
  }
  .sm\:left-48 {
    left: 12rem;
  }
  .sm\:-left-48 {
    left: -12rem;
  }
  .sm\:right-48 {
    right: 12rem;
  }
  .sm\:-right-48 {
    right: -12rem;
  }
  .sm\:start-48 {
    inset-inline-start: 12rem;
  }
  .sm\:-start-48 {
    inset-inline-start: -12rem;
  }
  .sm\:end-48 {
    inset-inline-end: 12rem;
  }
  .sm\:-end-48 {
    inset-inline-end: -12rem;
  }
  .sm\:p-49 {
    padding: 12.25rem !important;
  }
  .sm\:px-49 {
    padding-left: 12.25rem !important;
    padding-right: 12.25rem !important;
  }
  .sm\:py-49 {
    padding-top: 12.25rem !important;
    padding-bottom: 12.25rem !important;
  }
  .sm\:pl-49 {
    padding-left: 12.25rem !important;
  }
  .sm\:pr-49 {
    padding-right: 12.25rem !important;
  }
  .sm\:pt-49 {
    padding-top: 12.25rem !important;
  }
  .sm\:pb-49 {
    padding-bottom: 12.25rem !important;
  }
  .sm\:mx-49 {
    margin-left: 12.25rem !important;
    margin-right: 12.25rem !important;
  }
  .sm\:my-49 {
    margin-top: 12.25rem !important;
    margin-bottom: 12.25rem !important;
  }
  .sm\:ml-49 {
    margin-left: 12.25rem !important;
  }
  .sm\:mr-49 {
    margin-right: 12.25rem !important;
  }
  .sm\:mt-49 {
    margin-top: 12.25rem !important;
  }
  .sm\:mb-49 {
    margin-bottom: 12.25rem !important;
  }
  .sm\:m-49 {
    margin-bottom: 12.25rem !important;
    margin-top: 12.25rem !important;
    margin-right: 12.25rem !important;
    margin-left: 12.25rem !important;
  }
  .sm\:gap-49 {
    gap: 12.25rem;
  }
  .sm\:gap-x-49 {
    -moz-column-gap: 12.25rem;
         column-gap: 12.25rem;
  }
  .sm\:gap-y-49 {
    row-gap: 12.25rem;
  }
  .sm\:text-49 {
    font-size: 12.25rem !important;
  }
  .sm\:h-49 {
    height: 12.25rem !important;
  }
  .sm\:w-49 {
    width: 12.25rem !important;
  }
  .sm\:top-49 {
    top: 12.25rem;
  }
  .sm\:-top-49 {
    top: -12.25rem;
  }
  .sm\:bottom-49 {
    bottom: 12.25rem;
  }
  .sm\:-bottom-49 {
    bottom: -12.25rem;
  }
  .sm\:left-49 {
    left: 12.25rem;
  }
  .sm\:-left-49 {
    left: -12.25rem;
  }
  .sm\:right-49 {
    right: 12.25rem;
  }
  .sm\:-right-49 {
    right: -12.25rem;
  }
  .sm\:start-49 {
    inset-inline-start: 12.25rem;
  }
  .sm\:-start-49 {
    inset-inline-start: -12.25rem;
  }
  .sm\:end-49 {
    inset-inline-end: 12.25rem;
  }
  .sm\:-end-49 {
    inset-inline-end: -12.25rem;
  }
  .sm\:p-50 {
    padding: 12.5rem !important;
  }
  .sm\:px-50 {
    padding-left: 12.5rem !important;
    padding-right: 12.5rem !important;
  }
  .sm\:py-50 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }
  .sm\:pl-50 {
    padding-left: 12.5rem !important;
  }
  .sm\:pr-50 {
    padding-right: 12.5rem !important;
  }
  .sm\:pt-50 {
    padding-top: 12.5rem !important;
  }
  .sm\:pb-50 {
    padding-bottom: 12.5rem !important;
  }
  .sm\:mx-50 {
    margin-left: 12.5rem !important;
    margin-right: 12.5rem !important;
  }
  .sm\:my-50 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }
  .sm\:ml-50 {
    margin-left: 12.5rem !important;
  }
  .sm\:mr-50 {
    margin-right: 12.5rem !important;
  }
  .sm\:mt-50 {
    margin-top: 12.5rem !important;
  }
  .sm\:mb-50 {
    margin-bottom: 12.5rem !important;
  }
  .sm\:m-50 {
    margin-bottom: 12.5rem !important;
    margin-top: 12.5rem !important;
    margin-right: 12.5rem !important;
    margin-left: 12.5rem !important;
  }
  .sm\:gap-50 {
    gap: 12.5rem;
  }
  .sm\:gap-x-50 {
    -moz-column-gap: 12.5rem;
         column-gap: 12.5rem;
  }
  .sm\:gap-y-50 {
    row-gap: 12.5rem;
  }
  .sm\:text-50 {
    font-size: 12.5rem !important;
  }
  .sm\:h-50 {
    height: 12.5rem !important;
  }
  .sm\:w-50 {
    width: 12.5rem !important;
  }
  .sm\:top-50 {
    top: 12.5rem;
  }
  .sm\:-top-50 {
    top: -12.5rem;
  }
  .sm\:bottom-50 {
    bottom: 12.5rem;
  }
  .sm\:-bottom-50 {
    bottom: -12.5rem;
  }
  .sm\:left-50 {
    left: 12.5rem;
  }
  .sm\:-left-50 {
    left: -12.5rem;
  }
  .sm\:right-50 {
    right: 12.5rem;
  }
  .sm\:-right-50 {
    right: -12.5rem;
  }
  .sm\:start-50 {
    inset-inline-start: 12.5rem;
  }
  .sm\:-start-50 {
    inset-inline-start: -12.5rem;
  }
  .sm\:end-50 {
    inset-inline-end: 12.5rem;
  }
  .sm\:-end-50 {
    inset-inline-end: -12.5rem;
  }
  .sm\:p-52 {
    padding: 13rem !important;
  }
  .sm\:px-52 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }
  .sm\:py-52 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .sm\:pl-52 {
    padding-left: 13rem !important;
  }
  .sm\:pr-52 {
    padding-right: 13rem !important;
  }
  .sm\:pt-52 {
    padding-top: 13rem !important;
  }
  .sm\:pb-52 {
    padding-bottom: 13rem !important;
  }
  .sm\:mx-52 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }
  .sm\:my-52 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .sm\:ml-52 {
    margin-left: 13rem !important;
  }
  .sm\:mr-52 {
    margin-right: 13rem !important;
  }
  .sm\:mt-52 {
    margin-top: 13rem !important;
  }
  .sm\:mb-52 {
    margin-bottom: 13rem !important;
  }
  .sm\:m-52 {
    margin-bottom: 13rem !important;
    margin-top: 13rem !important;
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .sm\:gap-52 {
    gap: 13rem;
  }
  .sm\:gap-x-52 {
    -moz-column-gap: 13rem;
         column-gap: 13rem;
  }
  .sm\:gap-y-52 {
    row-gap: 13rem;
  }
  .sm\:text-52 {
    font-size: 13rem !important;
  }
  .sm\:h-52 {
    height: 13rem !important;
  }
  .sm\:w-52 {
    width: 13rem !important;
  }
  .sm\:top-52 {
    top: 13rem;
  }
  .sm\:-top-52 {
    top: -13rem;
  }
  .sm\:bottom-52 {
    bottom: 13rem;
  }
  .sm\:-bottom-52 {
    bottom: -13rem;
  }
  .sm\:left-52 {
    left: 13rem;
  }
  .sm\:-left-52 {
    left: -13rem;
  }
  .sm\:right-52 {
    right: 13rem;
  }
  .sm\:-right-52 {
    right: -13rem;
  }
  .sm\:start-52 {
    inset-inline-start: 13rem;
  }
  .sm\:-start-52 {
    inset-inline-start: -13rem;
  }
  .sm\:end-52 {
    inset-inline-end: 13rem;
  }
  .sm\:-end-52 {
    inset-inline-end: -13rem;
  }
  .sm\:p-56 {
    padding: 14rem !important;
  }
  .sm\:px-56 {
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }
  .sm\:py-56 {
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }
  .sm\:pl-56 {
    padding-left: 14rem !important;
  }
  .sm\:pr-56 {
    padding-right: 14rem !important;
  }
  .sm\:pt-56 {
    padding-top: 14rem !important;
  }
  .sm\:pb-56 {
    padding-bottom: 14rem !important;
  }
  .sm\:mx-56 {
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }
  .sm\:my-56 {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }
  .sm\:ml-56 {
    margin-left: 14rem !important;
  }
  .sm\:mr-56 {
    margin-right: 14rem !important;
  }
  .sm\:mt-56 {
    margin-top: 14rem !important;
  }
  .sm\:mb-56 {
    margin-bottom: 14rem !important;
  }
  .sm\:m-56 {
    margin-bottom: 14rem !important;
    margin-top: 14rem !important;
    margin-right: 14rem !important;
    margin-left: 14rem !important;
  }
  .sm\:gap-56 {
    gap: 14rem;
  }
  .sm\:gap-x-56 {
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }
  .sm\:gap-y-56 {
    row-gap: 14rem;
  }
  .sm\:text-56 {
    font-size: 14rem !important;
  }
  .sm\:h-56 {
    height: 14rem !important;
  }
  .sm\:w-56 {
    width: 14rem !important;
  }
  .sm\:top-56 {
    top: 14rem;
  }
  .sm\:-top-56 {
    top: -14rem;
  }
  .sm\:bottom-56 {
    bottom: 14rem;
  }
  .sm\:-bottom-56 {
    bottom: -14rem;
  }
  .sm\:left-56 {
    left: 14rem;
  }
  .sm\:-left-56 {
    left: -14rem;
  }
  .sm\:right-56 {
    right: 14rem;
  }
  .sm\:-right-56 {
    right: -14rem;
  }
  .sm\:start-56 {
    inset-inline-start: 14rem;
  }
  .sm\:-start-56 {
    inset-inline-start: -14rem;
  }
  .sm\:end-56 {
    inset-inline-end: 14rem;
  }
  .sm\:-end-56 {
    inset-inline-end: -14rem;
  }
  .sm\:p-60 {
    padding: 15rem !important;
  }
  .sm\:px-60 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }
  .sm\:py-60 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .sm\:pl-60 {
    padding-left: 15rem !important;
  }
  .sm\:pr-60 {
    padding-right: 15rem !important;
  }
  .sm\:pt-60 {
    padding-top: 15rem !important;
  }
  .sm\:pb-60 {
    padding-bottom: 15rem !important;
  }
  .sm\:mx-60 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }
  .sm\:my-60 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .sm\:ml-60 {
    margin-left: 15rem !important;
  }
  .sm\:mr-60 {
    margin-right: 15rem !important;
  }
  .sm\:mt-60 {
    margin-top: 15rem !important;
  }
  .sm\:mb-60 {
    margin-bottom: 15rem !important;
  }
  .sm\:m-60 {
    margin-bottom: 15rem !important;
    margin-top: 15rem !important;
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .sm\:gap-60 {
    gap: 15rem;
  }
  .sm\:gap-x-60 {
    -moz-column-gap: 15rem;
         column-gap: 15rem;
  }
  .sm\:gap-y-60 {
    row-gap: 15rem;
  }
  .sm\:text-60 {
    font-size: 15rem !important;
  }
  .sm\:h-60 {
    height: 15rem !important;
  }
  .sm\:w-60 {
    width: 15rem !important;
  }
  .sm\:top-60 {
    top: 15rem;
  }
  .sm\:-top-60 {
    top: -15rem;
  }
  .sm\:bottom-60 {
    bottom: 15rem;
  }
  .sm\:-bottom-60 {
    bottom: -15rem;
  }
  .sm\:left-60 {
    left: 15rem;
  }
  .sm\:-left-60 {
    left: -15rem;
  }
  .sm\:right-60 {
    right: 15rem;
  }
  .sm\:-right-60 {
    right: -15rem;
  }
  .sm\:start-60 {
    inset-inline-start: 15rem;
  }
  .sm\:-start-60 {
    inset-inline-start: -15rem;
  }
  .sm\:end-60 {
    inset-inline-end: 15rem;
  }
  .sm\:-end-60 {
    inset-inline-end: -15rem;
  }
  .sm\:p-64 {
    padding: 16rem !important;
  }
  .sm\:px-64 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }
  .sm\:py-64 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }
  .sm\:pl-64 {
    padding-left: 16rem !important;
  }
  .sm\:pr-64 {
    padding-right: 16rem !important;
  }
  .sm\:pt-64 {
    padding-top: 16rem !important;
  }
  .sm\:pb-64 {
    padding-bottom: 16rem !important;
  }
  .sm\:mx-64 {
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }
  .sm\:my-64 {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }
  .sm\:ml-64 {
    margin-left: 16rem !important;
  }
  .sm\:mr-64 {
    margin-right: 16rem !important;
  }
  .sm\:mt-64 {
    margin-top: 16rem !important;
  }
  .sm\:mb-64 {
    margin-bottom: 16rem !important;
  }
  .sm\:m-64 {
    margin-bottom: 16rem !important;
    margin-top: 16rem !important;
    margin-right: 16rem !important;
    margin-left: 16rem !important;
  }
  .sm\:gap-64 {
    gap: 16rem;
  }
  .sm\:gap-x-64 {
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }
  .sm\:gap-y-64 {
    row-gap: 16rem;
  }
  .sm\:text-64 {
    font-size: 16rem !important;
  }
  .sm\:h-64 {
    height: 16rem !important;
  }
  .sm\:w-64 {
    width: 16rem !important;
  }
  .sm\:top-64 {
    top: 16rem;
  }
  .sm\:-top-64 {
    top: -16rem;
  }
  .sm\:bottom-64 {
    bottom: 16rem;
  }
  .sm\:-bottom-64 {
    bottom: -16rem;
  }
  .sm\:left-64 {
    left: 16rem;
  }
  .sm\:-left-64 {
    left: -16rem;
  }
  .sm\:right-64 {
    right: 16rem;
  }
  .sm\:-right-64 {
    right: -16rem;
  }
  .sm\:start-64 {
    inset-inline-start: 16rem;
  }
  .sm\:-start-64 {
    inset-inline-start: -16rem;
  }
  .sm\:end-64 {
    inset-inline-end: 16rem;
  }
  .sm\:-end-64 {
    inset-inline-end: -16rem;
  }
  .sm\:p-66 {
    padding: 17rem !important;
  }
  .sm\:px-66 {
    padding-left: 17rem !important;
    padding-right: 17rem !important;
  }
  .sm\:py-66 {
    padding-top: 17rem !important;
    padding-bottom: 17rem !important;
  }
  .sm\:pl-66 {
    padding-left: 17rem !important;
  }
  .sm\:pr-66 {
    padding-right: 17rem !important;
  }
  .sm\:pt-66 {
    padding-top: 17rem !important;
  }
  .sm\:pb-66 {
    padding-bottom: 17rem !important;
  }
  .sm\:mx-66 {
    margin-left: 17rem !important;
    margin-right: 17rem !important;
  }
  .sm\:my-66 {
    margin-top: 17rem !important;
    margin-bottom: 17rem !important;
  }
  .sm\:ml-66 {
    margin-left: 17rem !important;
  }
  .sm\:mr-66 {
    margin-right: 17rem !important;
  }
  .sm\:mt-66 {
    margin-top: 17rem !important;
  }
  .sm\:mb-66 {
    margin-bottom: 17rem !important;
  }
  .sm\:m-66 {
    margin-bottom: 17rem !important;
    margin-top: 17rem !important;
    margin-right: 17rem !important;
    margin-left: 17rem !important;
  }
  .sm\:gap-66 {
    gap: 17rem;
  }
  .sm\:gap-x-66 {
    -moz-column-gap: 17rem;
         column-gap: 17rem;
  }
  .sm\:gap-y-66 {
    row-gap: 17rem;
  }
  .sm\:text-66 {
    font-size: 17rem !important;
  }
  .sm\:h-66 {
    height: 17rem !important;
  }
  .sm\:w-66 {
    width: 17rem !important;
  }
  .sm\:top-66 {
    top: 17rem;
  }
  .sm\:-top-66 {
    top: -17rem;
  }
  .sm\:bottom-66 {
    bottom: 17rem;
  }
  .sm\:-bottom-66 {
    bottom: -17rem;
  }
  .sm\:left-66 {
    left: 17rem;
  }
  .sm\:-left-66 {
    left: -17rem;
  }
  .sm\:right-66 {
    right: 17rem;
  }
  .sm\:-right-66 {
    right: -17rem;
  }
  .sm\:start-66 {
    inset-inline-start: 17rem;
  }
  .sm\:-start-66 {
    inset-inline-start: -17rem;
  }
  .sm\:end-66 {
    inset-inline-end: 17rem;
  }
  .sm\:-end-66 {
    inset-inline-end: -17rem;
  }
  .sm\:p-72 {
    padding: 18rem !important;
  }
  .sm\:px-72 {
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }
  .sm\:py-72 {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }
  .sm\:pl-72 {
    padding-left: 18rem !important;
  }
  .sm\:pr-72 {
    padding-right: 18rem !important;
  }
  .sm\:pt-72 {
    padding-top: 18rem !important;
  }
  .sm\:pb-72 {
    padding-bottom: 18rem !important;
  }
  .sm\:mx-72 {
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }
  .sm\:my-72 {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }
  .sm\:ml-72 {
    margin-left: 18rem !important;
  }
  .sm\:mr-72 {
    margin-right: 18rem !important;
  }
  .sm\:mt-72 {
    margin-top: 18rem !important;
  }
  .sm\:mb-72 {
    margin-bottom: 18rem !important;
  }
  .sm\:m-72 {
    margin-bottom: 18rem !important;
    margin-top: 18rem !important;
    margin-right: 18rem !important;
    margin-left: 18rem !important;
  }
  .sm\:gap-72 {
    gap: 18rem;
  }
  .sm\:gap-x-72 {
    -moz-column-gap: 18rem;
         column-gap: 18rem;
  }
  .sm\:gap-y-72 {
    row-gap: 18rem;
  }
  .sm\:text-72 {
    font-size: 18rem !important;
  }
  .sm\:h-72 {
    height: 18rem !important;
  }
  .sm\:w-72 {
    width: 18rem !important;
  }
  .sm\:top-72 {
    top: 18rem;
  }
  .sm\:-top-72 {
    top: -18rem;
  }
  .sm\:bottom-72 {
    bottom: 18rem;
  }
  .sm\:-bottom-72 {
    bottom: -18rem;
  }
  .sm\:left-72 {
    left: 18rem;
  }
  .sm\:-left-72 {
    left: -18rem;
  }
  .sm\:right-72 {
    right: 18rem;
  }
  .sm\:-right-72 {
    right: -18rem;
  }
  .sm\:start-72 {
    inset-inline-start: 18rem;
  }
  .sm\:-start-72 {
    inset-inline-start: -18rem;
  }
  .sm\:end-72 {
    inset-inline-end: 18rem;
  }
  .sm\:-end-72 {
    inset-inline-end: -18rem;
  }
  .sm\:p-80 {
    padding: 20rem !important;
  }
  .sm\:px-80 {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }
  .sm\:py-80 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .sm\:pl-80 {
    padding-left: 20rem !important;
  }
  .sm\:pr-80 {
    padding-right: 20rem !important;
  }
  .sm\:pt-80 {
    padding-top: 20rem !important;
  }
  .sm\:pb-80 {
    padding-bottom: 20rem !important;
  }
  .sm\:mx-80 {
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }
  .sm\:my-80 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .sm\:ml-80 {
    margin-left: 20rem !important;
  }
  .sm\:mr-80 {
    margin-right: 20rem !important;
  }
  .sm\:mt-80 {
    margin-top: 20rem !important;
  }
  .sm\:mb-80 {
    margin-bottom: 20rem !important;
  }
  .sm\:m-80 {
    margin-bottom: 20rem !important;
    margin-top: 20rem !important;
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .sm\:gap-80 {
    gap: 20rem;
  }
  .sm\:gap-x-80 {
    -moz-column-gap: 20rem;
         column-gap: 20rem;
  }
  .sm\:gap-y-80 {
    row-gap: 20rem;
  }
  .sm\:text-80 {
    font-size: 20rem !important;
  }
  .sm\:h-80 {
    height: 20rem !important;
  }
  .sm\:w-80 {
    width: 20rem !important;
  }
  .sm\:top-80 {
    top: 20rem;
  }
  .sm\:-top-80 {
    top: -20rem;
  }
  .sm\:bottom-80 {
    bottom: 20rem;
  }
  .sm\:-bottom-80 {
    bottom: -20rem;
  }
  .sm\:left-80 {
    left: 20rem;
  }
  .sm\:-left-80 {
    left: -20rem;
  }
  .sm\:right-80 {
    right: 20rem;
  }
  .sm\:-right-80 {
    right: -20rem;
  }
  .sm\:start-80 {
    inset-inline-start: 20rem;
  }
  .sm\:-start-80 {
    inset-inline-start: -20rem;
  }
  .sm\:end-80 {
    inset-inline-end: 20rem;
  }
  .sm\:-end-80 {
    inset-inline-end: -20rem;
  }
  .sm\:p-96 {
    padding: 24rem !important;
  }
  .sm\:px-96 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }
  .sm\:py-96 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }
  .sm\:pl-96 {
    padding-left: 24rem !important;
  }
  .sm\:pr-96 {
    padding-right: 24rem !important;
  }
  .sm\:pt-96 {
    padding-top: 24rem !important;
  }
  .sm\:pb-96 {
    padding-bottom: 24rem !important;
  }
  .sm\:mx-96 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }
  .sm\:my-96 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }
  .sm\:ml-96 {
    margin-left: 24rem !important;
  }
  .sm\:mr-96 {
    margin-right: 24rem !important;
  }
  .sm\:mt-96 {
    margin-top: 24rem !important;
  }
  .sm\:mb-96 {
    margin-bottom: 24rem !important;
  }
  .sm\:m-96 {
    margin-bottom: 24rem !important;
    margin-top: 24rem !important;
    margin-right: 24rem !important;
    margin-left: 24rem !important;
  }
  .sm\:gap-96 {
    gap: 24rem;
  }
  .sm\:gap-x-96 {
    -moz-column-gap: 24rem;
         column-gap: 24rem;
  }
  .sm\:gap-y-96 {
    row-gap: 24rem;
  }
  .sm\:text-96 {
    font-size: 24rem !important;
  }
  .sm\:h-96 {
    height: 24rem !important;
  }
  .sm\:w-96 {
    width: 24rem !important;
  }
  .sm\:top-96 {
    top: 24rem;
  }
  .sm\:-top-96 {
    top: -24rem;
  }
  .sm\:bottom-96 {
    bottom: 24rem;
  }
  .sm\:-bottom-96 {
    bottom: -24rem;
  }
  .sm\:left-96 {
    left: 24rem;
  }
  .sm\:-left-96 {
    left: -24rem;
  }
  .sm\:right-96 {
    right: 24rem;
  }
  .sm\:-right-96 {
    right: -24rem;
  }
  .sm\:start-96 {
    inset-inline-start: 24rem;
  }
  .sm\:-start-96 {
    inset-inline-start: -24rem;
  }
  .sm\:end-96 {
    inset-inline-end: 24rem;
  }
  .sm\:-end-96 {
    inset-inline-end: -24rem;
  }
  .sm\:h-10-percent {
    height: 10% !important;
  }
  .sm\:w-10-percent {
    width: 10% !important;
  }
  .sm\:top-10-percent {
    top: 10% !important;
  }
  .sm\:-top-10-percent {
    top: -10% !important;
  }
  .sm\:bottom-10-percent {
    bottom: 10% !important;
  }
  .sm\:-bottom-10-percent {
    bottom: -10% !important;
  }
  .sm\:left-10-percent {
    left: 10% !important;
  }
  .sm\:-left-10-percent {
    left: -10% !important;
  }
  .sm\:right-10-percent {
    right: 10% !important;
  }
  .sm\:-right-10-percent {
    right: -10% !important;
  }
  .sm\:h-15-percent {
    height: 15% !important;
  }
  .sm\:w-15-percent {
    width: 15% !important;
  }
  .sm\:top-15-percent {
    top: 15% !important;
  }
  .sm\:-top-15-percent {
    top: -15% !important;
  }
  .sm\:bottom-15-percent {
    bottom: 15% !important;
  }
  .sm\:-bottom-15-percent {
    bottom: -15% !important;
  }
  .sm\:left-15-percent {
    left: 15% !important;
  }
  .sm\:-left-15-percent {
    left: -15% !important;
  }
  .sm\:right-15-percent {
    right: 15% !important;
  }
  .sm\:-right-15-percent {
    right: -15% !important;
  }
  .sm\:h-20-percent {
    height: 20% !important;
  }
  .sm\:w-20-percent {
    width: 20% !important;
  }
  .sm\:top-20-percent {
    top: 20% !important;
  }
  .sm\:-top-20-percent {
    top: -20% !important;
  }
  .sm\:bottom-20-percent {
    bottom: 20% !important;
  }
  .sm\:-bottom-20-percent {
    bottom: -20% !important;
  }
  .sm\:left-20-percent {
    left: 20% !important;
  }
  .sm\:-left-20-percent {
    left: -20% !important;
  }
  .sm\:right-20-percent {
    right: 20% !important;
  }
  .sm\:-right-20-percent {
    right: -20% !important;
  }
  .sm\:h-25-percent {
    height: 25% !important;
  }
  .sm\:w-25-percent {
    width: 25% !important;
  }
  .sm\:top-25-percent {
    top: 25% !important;
  }
  .sm\:-top-25-percent {
    top: -25% !important;
  }
  .sm\:bottom-25-percent {
    bottom: 25% !important;
  }
  .sm\:-bottom-25-percent {
    bottom: -25% !important;
  }
  .sm\:left-25-percent {
    left: 25% !important;
  }
  .sm\:-left-25-percent {
    left: -25% !important;
  }
  .sm\:right-25-percent {
    right: 25% !important;
  }
  .sm\:-right-25-percent {
    right: -25% !important;
  }
  .sm\:h-30-percent {
    height: 30% !important;
  }
  .sm\:w-30-percent {
    width: 30% !important;
  }
  .sm\:top-30-percent {
    top: 30% !important;
  }
  .sm\:-top-30-percent {
    top: -30% !important;
  }
  .sm\:bottom-30-percent {
    bottom: 30% !important;
  }
  .sm\:-bottom-30-percent {
    bottom: -30% !important;
  }
  .sm\:left-30-percent {
    left: 30% !important;
  }
  .sm\:-left-30-percent {
    left: -30% !important;
  }
  .sm\:right-30-percent {
    right: 30% !important;
  }
  .sm\:-right-30-percent {
    right: -30% !important;
  }
  .sm\:h-35-percent {
    height: 35% !important;
  }
  .sm\:w-35-percent {
    width: 35% !important;
  }
  .sm\:top-35-percent {
    top: 35% !important;
  }
  .sm\:-top-35-percent {
    top: -35% !important;
  }
  .sm\:bottom-35-percent {
    bottom: 35% !important;
  }
  .sm\:-bottom-35-percent {
    bottom: -35% !important;
  }
  .sm\:left-35-percent {
    left: 35% !important;
  }
  .sm\:-left-35-percent {
    left: -35% !important;
  }
  .sm\:right-35-percent {
    right: 35% !important;
  }
  .sm\:-right-35-percent {
    right: -35% !important;
  }
  .sm\:h-40-percent {
    height: 40% !important;
  }
  .sm\:w-40-percent {
    width: 40% !important;
  }
  .sm\:top-40-percent {
    top: 40% !important;
  }
  .sm\:-top-40-percent {
    top: -40% !important;
  }
  .sm\:bottom-40-percent {
    bottom: 40% !important;
  }
  .sm\:-bottom-40-percent {
    bottom: -40% !important;
  }
  .sm\:left-40-percent {
    left: 40% !important;
  }
  .sm\:-left-40-percent {
    left: -40% !important;
  }
  .sm\:right-40-percent {
    right: 40% !important;
  }
  .sm\:-right-40-percent {
    right: -40% !important;
  }
  .sm\:h-45-percent {
    height: 45% !important;
  }
  .sm\:w-45-percent {
    width: 45% !important;
  }
  .sm\:top-45-percent {
    top: 45% !important;
  }
  .sm\:-top-45-percent {
    top: -45% !important;
  }
  .sm\:bottom-45-percent {
    bottom: 45% !important;
  }
  .sm\:-bottom-45-percent {
    bottom: -45% !important;
  }
  .sm\:left-45-percent {
    left: 45% !important;
  }
  .sm\:-left-45-percent {
    left: -45% !important;
  }
  .sm\:right-45-percent {
    right: 45% !important;
  }
  .sm\:-right-45-percent {
    right: -45% !important;
  }
  .sm\:h-50-percent {
    height: 50% !important;
  }
  .sm\:w-50-percent {
    width: 50% !important;
  }
  .sm\:top-50-percent {
    top: 50% !important;
  }
  .sm\:-top-50-percent {
    top: -50% !important;
  }
  .sm\:bottom-50-percent {
    bottom: 50% !important;
  }
  .sm\:-bottom-50-percent {
    bottom: -50% !important;
  }
  .sm\:left-50-percent {
    left: 50% !important;
  }
  .sm\:-left-50-percent {
    left: -50% !important;
  }
  .sm\:right-50-percent {
    right: 50% !important;
  }
  .sm\:-right-50-percent {
    right: -50% !important;
  }
  .sm\:h-55-percent {
    height: 55% !important;
  }
  .sm\:w-55-percent {
    width: 55% !important;
  }
  .sm\:top-55-percent {
    top: 55% !important;
  }
  .sm\:-top-55-percent {
    top: -55% !important;
  }
  .sm\:bottom-55-percent {
    bottom: 55% !important;
  }
  .sm\:-bottom-55-percent {
    bottom: -55% !important;
  }
  .sm\:left-55-percent {
    left: 55% !important;
  }
  .sm\:-left-55-percent {
    left: -55% !important;
  }
  .sm\:right-55-percent {
    right: 55% !important;
  }
  .sm\:-right-55-percent {
    right: -55% !important;
  }
  .sm\:h-60-percent {
    height: 60% !important;
  }
  .sm\:w-60-percent {
    width: 60% !important;
  }
  .sm\:top-60-percent {
    top: 60% !important;
  }
  .sm\:-top-60-percent {
    top: -60% !important;
  }
  .sm\:bottom-60-percent {
    bottom: 60% !important;
  }
  .sm\:-bottom-60-percent {
    bottom: -60% !important;
  }
  .sm\:left-60-percent {
    left: 60% !important;
  }
  .sm\:-left-60-percent {
    left: -60% !important;
  }
  .sm\:right-60-percent {
    right: 60% !important;
  }
  .sm\:-right-60-percent {
    right: -60% !important;
  }
  .sm\:h-65-percent {
    height: 65% !important;
  }
  .sm\:w-65-percent {
    width: 65% !important;
  }
  .sm\:top-65-percent {
    top: 65% !important;
  }
  .sm\:-top-65-percent {
    top: -65% !important;
  }
  .sm\:bottom-65-percent {
    bottom: 65% !important;
  }
  .sm\:-bottom-65-percent {
    bottom: -65% !important;
  }
  .sm\:left-65-percent {
    left: 65% !important;
  }
  .sm\:-left-65-percent {
    left: -65% !important;
  }
  .sm\:right-65-percent {
    right: 65% !important;
  }
  .sm\:-right-65-percent {
    right: -65% !important;
  }
  .sm\:h-70-percent {
    height: 70% !important;
  }
  .sm\:w-70-percent {
    width: 70% !important;
  }
  .sm\:top-70-percent {
    top: 70% !important;
  }
  .sm\:-top-70-percent {
    top: -70% !important;
  }
  .sm\:bottom-70-percent {
    bottom: 70% !important;
  }
  .sm\:-bottom-70-percent {
    bottom: -70% !important;
  }
  .sm\:left-70-percent {
    left: 70% !important;
  }
  .sm\:-left-70-percent {
    left: -70% !important;
  }
  .sm\:right-70-percent {
    right: 70% !important;
  }
  .sm\:-right-70-percent {
    right: -70% !important;
  }
  .sm\:h-75-percent {
    height: 75% !important;
  }
  .sm\:w-75-percent {
    width: 75% !important;
  }
  .sm\:top-75-percent {
    top: 75% !important;
  }
  .sm\:-top-75-percent {
    top: -75% !important;
  }
  .sm\:bottom-75-percent {
    bottom: 75% !important;
  }
  .sm\:-bottom-75-percent {
    bottom: -75% !important;
  }
  .sm\:left-75-percent {
    left: 75% !important;
  }
  .sm\:-left-75-percent {
    left: -75% !important;
  }
  .sm\:right-75-percent {
    right: 75% !important;
  }
  .sm\:-right-75-percent {
    right: -75% !important;
  }
  .sm\:h-80-percent {
    height: 80% !important;
  }
  .sm\:w-80-percent {
    width: 80% !important;
  }
  .sm\:top-80-percent {
    top: 80% !important;
  }
  .sm\:-top-80-percent {
    top: -80% !important;
  }
  .sm\:bottom-80-percent {
    bottom: 80% !important;
  }
  .sm\:-bottom-80-percent {
    bottom: -80% !important;
  }
  .sm\:left-80-percent {
    left: 80% !important;
  }
  .sm\:-left-80-percent {
    left: -80% !important;
  }
  .sm\:right-80-percent {
    right: 80% !important;
  }
  .sm\:-right-80-percent {
    right: -80% !important;
  }
  .sm\:h-85-percent {
    height: 85% !important;
  }
  .sm\:w-85-percent {
    width: 85% !important;
  }
  .sm\:top-85-percent {
    top: 85% !important;
  }
  .sm\:-top-85-percent {
    top: -85% !important;
  }
  .sm\:bottom-85-percent {
    bottom: 85% !important;
  }
  .sm\:-bottom-85-percent {
    bottom: -85% !important;
  }
  .sm\:left-85-percent {
    left: 85% !important;
  }
  .sm\:-left-85-percent {
    left: -85% !important;
  }
  .sm\:right-85-percent {
    right: 85% !important;
  }
  .sm\:-right-85-percent {
    right: -85% !important;
  }
  .sm\:h-90-percent {
    height: 90% !important;
  }
  .sm\:w-90-percent {
    width: 90% !important;
  }
  .sm\:top-90-percent {
    top: 90% !important;
  }
  .sm\:-top-90-percent {
    top: -90% !important;
  }
  .sm\:bottom-90-percent {
    bottom: 90% !important;
  }
  .sm\:-bottom-90-percent {
    bottom: -90% !important;
  }
  .sm\:left-90-percent {
    left: 90% !important;
  }
  .sm\:-left-90-percent {
    left: -90% !important;
  }
  .sm\:right-90-percent {
    right: 90% !important;
  }
  .sm\:-right-90-percent {
    right: -90% !important;
  }
  .sm\:h-95-percent {
    height: 95% !important;
  }
  .sm\:w-95-percent {
    width: 95% !important;
  }
  .sm\:top-95-percent {
    top: 95% !important;
  }
  .sm\:-top-95-percent {
    top: -95% !important;
  }
  .sm\:bottom-95-percent {
    bottom: 95% !important;
  }
  .sm\:-bottom-95-percent {
    bottom: -95% !important;
  }
  .sm\:left-95-percent {
    left: 95% !important;
  }
  .sm\:-left-95-percent {
    left: -95% !important;
  }
  .sm\:right-95-percent {
    right: 95% !important;
  }
  .sm\:-right-95-percent {
    right: -95% !important;
  }
  .sm\:h-100-percent {
    height: 100% !important;
  }
  .sm\:w-100-percent {
    width: 100% !important;
  }
  .sm\:top-100-percent {
    top: 100% !important;
  }
  .sm\:-top-100-percent {
    top: -100% !important;
  }
  .sm\:bottom-100-percent {
    bottom: 100% !important;
  }
  .sm\:-bottom-100-percent {
    bottom: -100% !important;
  }
  .sm\:left-100-percent {
    left: 100% !important;
  }
  .sm\:-left-100-percent {
    left: -100% !important;
  }
  .sm\:right-100-percent {
    right: 100% !important;
  }
  .sm\:-right-100-percent {
    right: -100% !important;
  }
  .sm\:text-center {
    text-align: center;
  }
  .bg-top-section {
    background-image: url("../images/top-section-bg.png");
    background-size: cover;
    background-position: 70% 0%;
  }
  .bg-footer {
    background-image: url("../images/footer-bg.jpg");
    background-size: cover;
    background-position: center;
  }
  .sm\:line-height-lg {
    line-height: 3rem;
  }
  .sm\:line-height-md {
    line-height: 2rem;
  }
  .sm\:line-height-sm {
    line-height: 1rem;
  }
  .sm\:display {
    display: block !important;
  }
  .sm\:display-flex {
    display: flex !important;
  }
  .sm\:display-grid {
    display: grid !important;
  }
  .sm\:hidden {
    display: none !important;
  }
  .sm\:absolute {
    position: absolute !important;
  }
  .sm\:relative {
    position: relative !important;
  }
  .sm\:justify-between {
    justify-content: space-between !important;
  }
  .sm\:justify-end {
    justify-content: end !important;
  }
  .sm\:justify-center {
    justify-content: center !important;
  }
  .sm\:items-end {
    align-items: end !important;
  }
  .sm\:min-h-100-vh {
    min-height: 100vh;
  }
  .sm\:max-h-100-vh {
    max-height: 100vh;
  }
  .header-image {
    width: 160px !important;
    padding-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  .semi-sm\:hidden {
    display: none !important;
  }
}
@media (min-width: 900px) and (max-width: 1350px) {
  .semi-md\:hidden {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1350px) {
  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .md\:col-span-1 {
    grid-column: span 1/span 1;
  }
  .md\:col-start-1 {
    grid-column-start: 1;
  }
  .md\:col-end-1 {
    grid-column-end: 1;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .md\:col-span-2 {
    grid-column: span 2/span 2;
  }
  .md\:col-start-2 {
    grid-column-start: 2;
  }
  .md\:col-end-2 {
    grid-column-end: 2;
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .md\:col-span-3 {
    grid-column: span 3/span 3;
  }
  .md\:col-start-3 {
    grid-column-start: 3;
  }
  .md\:col-end-3 {
    grid-column-end: 3;
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .md\:col-span-4 {
    grid-column: span 4/span 4;
  }
  .md\:col-start-4 {
    grid-column-start: 4;
  }
  .md\:col-end-4 {
    grid-column-end: 4;
  }
  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .md\:col-span-5 {
    grid-column: span 5/span 5;
  }
  .md\:col-start-5 {
    grid-column-start: 5;
  }
  .md\:col-end-5 {
    grid-column-end: 5;
  }
  .md\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .md\:col-span-6 {
    grid-column: span 6/span 6;
  }
  .md\:col-start-6 {
    grid-column-start: 6;
  }
  .md\:col-end-6 {
    grid-column-end: 6;
  }
  .md\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
  .md\:col-span-7 {
    grid-column: span 7/span 7;
  }
  .md\:col-start-7 {
    grid-column-start: 7;
  }
  .md\:col-end-7 {
    grid-column-end: 7;
  }
  .md\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
  .md\:col-span-8 {
    grid-column: span 8/span 8;
  }
  .md\:col-start-8 {
    grid-column-start: 8;
  }
  .md\:col-end-8 {
    grid-column-end: 8;
  }
  .md\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }
  .md\:col-span-9 {
    grid-column: span 9/span 9;
  }
  .md\:col-start-9 {
    grid-column-start: 9;
  }
  .md\:col-end-9 {
    grid-column-end: 9;
  }
  .md\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }
  .md\:col-span-10 {
    grid-column: span 10/span 10;
  }
  .md\:col-start-10 {
    grid-column-start: 10;
  }
  .md\:col-end-10 {
    grid-column-end: 10;
  }
  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }
  .md\:col-span-12 {
    grid-column: span 12/span 12;
  }
  .md\:col-start-12 {
    grid-column-start: 12;
  }
  .md\:col-end-12 {
    grid-column-end: 12;
  }
  .md\:p-0 {
    padding: 0px !important;
  }
  .md\:px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .md\:py-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .md\:pl-0 {
    padding-left: 0px !important;
  }
  .md\:pr-0 {
    padding-right: 0px !important;
  }
  .md\:pt-0 {
    padding-top: 0px !important;
  }
  .md\:pb-0 {
    padding-bottom: 0px !important;
  }
  .md\:mx-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .md\:my-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .md\:ml-0 {
    margin-left: 0px !important;
  }
  .md\:mr-0 {
    margin-right: 0px !important;
  }
  .md\:mt-0 {
    margin-top: 0px !important;
  }
  .md\:mb-0 {
    margin-bottom: 0px !important;
  }
  .md\:m-0 {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .md\:gap-0 {
    gap: 0px;
  }
  .md\:gap-x-0 {
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .md\:gap-y-0 {
    row-gap: 0px;
  }
  .md\:text-0 {
    font-size: 0px !important;
  }
  .md\:h-0 {
    height: 0px !important;
  }
  .md\:w-0 {
    width: 0px !important;
  }
  .md\:top-0 {
    top: 0px;
  }
  .md\:-top-0 {
    top: 0px;
  }
  .md\:bottom-0 {
    bottom: 0px;
  }
  .md\:-bottom-0 {
    bottom: 0px;
  }
  .md\:left-0 {
    left: 0px;
  }
  .md\:-left-0 {
    left: 0px;
  }
  .md\:right-0 {
    right: 0px;
  }
  .md\:-right-0 {
    right: 0px;
  }
  .md\:start-0 {
    inset-inline-start: 0px;
  }
  .md\:-start-0 {
    inset-inline-start: 0px;
  }
  .md\:end-0 {
    inset-inline-end: 0px;
  }
  .md\:-end-0 {
    inset-inline-end: 0px;
  }
  .md\:p-1 {
    padding: 0.25rem !important;
  }
  .md\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .md\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .md\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .md\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .md\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .md\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .md\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .md\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .md\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .md\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .md\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .md\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .md\:m-1 {
    margin-bottom: 0.25rem !important;
    margin-top: 0.25rem !important;
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .md\:gap-1 {
    gap: 0.25rem;
  }
  .md\:gap-x-1 {
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }
  .md\:gap-y-1 {
    row-gap: 0.25rem;
  }
  .md\:text-1 {
    font-size: 0.25rem !important;
  }
  .md\:h-1 {
    height: 0.25rem !important;
  }
  .md\:w-1 {
    width: 0.25rem !important;
  }
  .md\:top-1 {
    top: 0.25rem;
  }
  .md\:-top-1 {
    top: -0.25rem;
  }
  .md\:bottom-1 {
    bottom: 0.25rem;
  }
  .md\:-bottom-1 {
    bottom: -0.25rem;
  }
  .md\:left-1 {
    left: 0.25rem;
  }
  .md\:-left-1 {
    left: -0.25rem;
  }
  .md\:right-1 {
    right: 0.25rem;
  }
  .md\:-right-1 {
    right: -0.25rem;
  }
  .md\:start-1 {
    inset-inline-start: 0.25rem;
  }
  .md\:-start-1 {
    inset-inline-start: -0.25rem;
  }
  .md\:end-1 {
    inset-inline-end: 0.25rem;
  }
  .md\:-end-1 {
    inset-inline-end: -0.25rem;
  }
  .md\:p-2 {
    padding: 0.5rem !important;
  }
  .md\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .md\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .md\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .md\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .md\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .md\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .md\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .md\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .md\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .md\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .md\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .md\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .md\:m-2 {
    margin-bottom: 0.5rem !important;
    margin-top: 0.5rem !important;
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .md\:gap-2 {
    gap: 0.5rem;
  }
  .md\:gap-x-2 {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .md\:gap-y-2 {
    row-gap: 0.5rem;
  }
  .md\:text-2 {
    font-size: 0.5rem !important;
  }
  .md\:h-2 {
    height: 0.5rem !important;
  }
  .md\:w-2 {
    width: 0.5rem !important;
  }
  .md\:top-2 {
    top: 0.5rem;
  }
  .md\:-top-2 {
    top: -0.5rem;
  }
  .md\:bottom-2 {
    bottom: 0.5rem;
  }
  .md\:-bottom-2 {
    bottom: -0.5rem;
  }
  .md\:left-2 {
    left: 0.5rem;
  }
  .md\:-left-2 {
    left: -0.5rem;
  }
  .md\:right-2 {
    right: 0.5rem;
  }
  .md\:-right-2 {
    right: -0.5rem;
  }
  .md\:start-2 {
    inset-inline-start: 0.5rem;
  }
  .md\:-start-2 {
    inset-inline-start: -0.5rem;
  }
  .md\:end-2 {
    inset-inline-end: 0.5rem;
  }
  .md\:-end-2 {
    inset-inline-end: -0.5rem;
  }
  .md\:p-2-and-half {
    padding: 0.625rem !important;
  }
  .md\:px-2-and-half {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
  .md\:py-2-and-half {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
  .md\:pl-2-and-half {
    padding-left: 0.625rem !important;
  }
  .md\:pr-2-and-half {
    padding-right: 0.625rem !important;
  }
  .md\:pt-2-and-half {
    padding-top: 0.625rem !important;
  }
  .md\:pb-2-and-half {
    padding-bottom: 0.625rem !important;
  }
  .md\:mx-2-and-half {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }
  .md\:my-2-and-half {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
  .md\:ml-2-and-half {
    margin-left: 0.625rem !important;
  }
  .md\:mr-2-and-half {
    margin-right: 0.625rem !important;
  }
  .md\:mt-2-and-half {
    margin-top: 0.625rem !important;
  }
  .md\:mb-2-and-half {
    margin-bottom: 0.625rem !important;
  }
  .md\:m-2-and-half {
    margin-bottom: 0.625rem !important;
    margin-top: 0.625rem !important;
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }
  .md\:gap-2-and-half {
    gap: 0.625rem;
  }
  .md\:gap-x-2-and-half {
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
  }
  .md\:gap-y-2-and-half {
    row-gap: 0.625rem;
  }
  .md\:text-2-and-half {
    font-size: 0.625rem !important;
  }
  .md\:h-2-and-half {
    height: 0.625rem !important;
  }
  .md\:w-2-and-half {
    width: 0.625rem !important;
  }
  .md\:top-2-and-half {
    top: 0.625rem;
  }
  .md\:-top-2-and-half {
    top: -0.625rem;
  }
  .md\:bottom-2-and-half {
    bottom: 0.625rem;
  }
  .md\:-bottom-2-and-half {
    bottom: -0.625rem;
  }
  .md\:left-2-and-half {
    left: 0.625rem;
  }
  .md\:-left-2-and-half {
    left: -0.625rem;
  }
  .md\:right-2-and-half {
    right: 0.625rem;
  }
  .md\:-right-2-and-half {
    right: -0.625rem;
  }
  .md\:start-2-and-half {
    inset-inline-start: 0.625rem;
  }
  .md\:-start-2-and-half {
    inset-inline-start: -0.625rem;
  }
  .md\:end-2-and-half {
    inset-inline-end: 0.625rem;
  }
  .md\:-end-2-and-half {
    inset-inline-end: -0.625rem;
  }
  .md\:p-3 {
    padding: 0.75rem !important;
  }
  .md\:px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .md\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .md\:pl-3 {
    padding-left: 0.75rem !important;
  }
  .md\:pr-3 {
    padding-right: 0.75rem !important;
  }
  .md\:pt-3 {
    padding-top: 0.75rem !important;
  }
  .md\:pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .md\:mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .md\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .md\:ml-3 {
    margin-left: 0.75rem !important;
  }
  .md\:mr-3 {
    margin-right: 0.75rem !important;
  }
  .md\:mt-3 {
    margin-top: 0.75rem !important;
  }
  .md\:mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .md\:m-3 {
    margin-bottom: 0.75rem !important;
    margin-top: 0.75rem !important;
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .md\:gap-3 {
    gap: 0.75rem;
  }
  .md\:gap-x-3 {
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }
  .md\:gap-y-3 {
    row-gap: 0.75rem;
  }
  .md\:text-3 {
    font-size: 0.75rem !important;
  }
  .md\:h-3 {
    height: 0.75rem !important;
  }
  .md\:w-3 {
    width: 0.75rem !important;
  }
  .md\:top-3 {
    top: 0.75rem;
  }
  .md\:-top-3 {
    top: -0.75rem;
  }
  .md\:bottom-3 {
    bottom: 0.75rem;
  }
  .md\:-bottom-3 {
    bottom: -0.75rem;
  }
  .md\:left-3 {
    left: 0.75rem;
  }
  .md\:-left-3 {
    left: -0.75rem;
  }
  .md\:right-3 {
    right: 0.75rem;
  }
  .md\:-right-3 {
    right: -0.75rem;
  }
  .md\:start-3 {
    inset-inline-start: 0.75rem;
  }
  .md\:-start-3 {
    inset-inline-start: -0.75rem;
  }
  .md\:end-3 {
    inset-inline-end: 0.75rem;
  }
  .md\:-end-3 {
    inset-inline-end: -0.75rem;
  }
  .md\:p-4 {
    padding: 1rem !important;
  }
  .md\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .md\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .md\:pl-4 {
    padding-left: 1rem !important;
  }
  .md\:pr-4 {
    padding-right: 1rem !important;
  }
  .md\:pt-4 {
    padding-top: 1rem !important;
  }
  .md\:pb-4 {
    padding-bottom: 1rem !important;
  }
  .md\:mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .md\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .md\:ml-4 {
    margin-left: 1rem !important;
  }
  .md\:mr-4 {
    margin-right: 1rem !important;
  }
  .md\:mt-4 {
    margin-top: 1rem !important;
  }
  .md\:mb-4 {
    margin-bottom: 1rem !important;
  }
  .md\:m-4 {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .md\:gap-4 {
    gap: 1rem;
  }
  .md\:gap-x-4 {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .md\:gap-y-4 {
    row-gap: 1rem;
  }
  .md\:text-4 {
    font-size: 1rem !important;
  }
  .md\:h-4 {
    height: 1rem !important;
  }
  .md\:w-4 {
    width: 1rem !important;
  }
  .md\:top-4 {
    top: 1rem;
  }
  .md\:-top-4 {
    top: -1rem;
  }
  .md\:bottom-4 {
    bottom: 1rem;
  }
  .md\:-bottom-4 {
    bottom: -1rem;
  }
  .md\:left-4 {
    left: 1rem;
  }
  .md\:-left-4 {
    left: -1rem;
  }
  .md\:right-4 {
    right: 1rem;
  }
  .md\:-right-4 {
    right: -1rem;
  }
  .md\:start-4 {
    inset-inline-start: 1rem;
  }
  .md\:-start-4 {
    inset-inline-start: -1rem;
  }
  .md\:end-4 {
    inset-inline-end: 1rem;
  }
  .md\:-end-4 {
    inset-inline-end: -1rem;
  }
  .md\:p-4-and-half {
    padding: 1.075rem !important;
  }
  .md\:px-4-and-half {
    padding-left: 1.075rem !important;
    padding-right: 1.075rem !important;
  }
  .md\:py-4-and-half {
    padding-top: 1.075rem !important;
    padding-bottom: 1.075rem !important;
  }
  .md\:pl-4-and-half {
    padding-left: 1.075rem !important;
  }
  .md\:pr-4-and-half {
    padding-right: 1.075rem !important;
  }
  .md\:pt-4-and-half {
    padding-top: 1.075rem !important;
  }
  .md\:pb-4-and-half {
    padding-bottom: 1.075rem !important;
  }
  .md\:mx-4-and-half {
    margin-left: 1.075rem !important;
    margin-right: 1.075rem !important;
  }
  .md\:my-4-and-half {
    margin-top: 1.075rem !important;
    margin-bottom: 1.075rem !important;
  }
  .md\:ml-4-and-half {
    margin-left: 1.075rem !important;
  }
  .md\:mr-4-and-half {
    margin-right: 1.075rem !important;
  }
  .md\:mt-4-and-half {
    margin-top: 1.075rem !important;
  }
  .md\:mb-4-and-half {
    margin-bottom: 1.075rem !important;
  }
  .md\:m-4-and-half {
    margin-bottom: 1.075rem !important;
    margin-top: 1.075rem !important;
    margin-right: 1.075rem !important;
    margin-left: 1.075rem !important;
  }
  .md\:gap-4-and-half {
    gap: 1.075rem;
  }
  .md\:gap-x-4-and-half {
    -moz-column-gap: 1.075rem;
         column-gap: 1.075rem;
  }
  .md\:gap-y-4-and-half {
    row-gap: 1.075rem;
  }
  .md\:text-4-and-half {
    font-size: 1.075rem !important;
  }
  .md\:h-4-and-half {
    height: 1.075rem !important;
  }
  .md\:w-4-and-half {
    width: 1.075rem !important;
  }
  .md\:top-4-and-half {
    top: 1.075rem;
  }
  .md\:-top-4-and-half {
    top: -1.075rem;
  }
  .md\:bottom-4-and-half {
    bottom: 1.075rem;
  }
  .md\:-bottom-4-and-half {
    bottom: -1.075rem;
  }
  .md\:left-4-and-half {
    left: 1.075rem;
  }
  .md\:-left-4-and-half {
    left: -1.075rem;
  }
  .md\:right-4-and-half {
    right: 1.075rem;
  }
  .md\:-right-4-and-half {
    right: -1.075rem;
  }
  .md\:start-4-and-half {
    inset-inline-start: 1.075rem;
  }
  .md\:-start-4-and-half {
    inset-inline-start: -1.075rem;
  }
  .md\:end-4-and-half {
    inset-inline-end: 1.075rem;
  }
  .md\:-end-4-and-half {
    inset-inline-end: -1.075rem;
  }
  .md\:p-5 {
    padding: 1.25rem !important;
  }
  .md\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .md\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .md\:pl-5 {
    padding-left: 1.25rem !important;
  }
  .md\:pr-5 {
    padding-right: 1.25rem !important;
  }
  .md\:pt-5 {
    padding-top: 1.25rem !important;
  }
  .md\:pb-5 {
    padding-bottom: 1.25rem !important;
  }
  .md\:mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
  .md\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .md\:ml-5 {
    margin-left: 1.25rem !important;
  }
  .md\:mr-5 {
    margin-right: 1.25rem !important;
  }
  .md\:mt-5 {
    margin-top: 1.25rem !important;
  }
  .md\:mb-5 {
    margin-bottom: 1.25rem !important;
  }
  .md\:m-5 {
    margin-bottom: 1.25rem !important;
    margin-top: 1.25rem !important;
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .md\:gap-5 {
    gap: 1.25rem;
  }
  .md\:gap-x-5 {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
  .md\:gap-y-5 {
    row-gap: 1.25rem;
  }
  .md\:text-5 {
    font-size: 1.25rem !important;
  }
  .md\:h-5 {
    height: 1.25rem !important;
  }
  .md\:w-5 {
    width: 1.25rem !important;
  }
  .md\:top-5 {
    top: 1.25rem;
  }
  .md\:-top-5 {
    top: -1.25rem;
  }
  .md\:bottom-5 {
    bottom: 1.25rem;
  }
  .md\:-bottom-5 {
    bottom: -1.25rem;
  }
  .md\:left-5 {
    left: 1.25rem;
  }
  .md\:-left-5 {
    left: -1.25rem;
  }
  .md\:right-5 {
    right: 1.25rem;
  }
  .md\:-right-5 {
    right: -1.25rem;
  }
  .md\:start-5 {
    inset-inline-start: 1.25rem;
  }
  .md\:-start-5 {
    inset-inline-start: -1.25rem;
  }
  .md\:end-5 {
    inset-inline-end: 1.25rem;
  }
  .md\:-end-5 {
    inset-inline-end: -1.25rem;
  }
  .md\:p-6 {
    padding: 1.5rem !important;
  }
  .md\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .md\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .md\:pl-6 {
    padding-left: 1.5rem !important;
  }
  .md\:pr-6 {
    padding-right: 1.5rem !important;
  }
  .md\:pt-6 {
    padding-top: 1.5rem !important;
  }
  .md\:pb-6 {
    padding-bottom: 1.5rem !important;
  }
  .md\:mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .md\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .md\:ml-6 {
    margin-left: 1.5rem !important;
  }
  .md\:mr-6 {
    margin-right: 1.5rem !important;
  }
  .md\:mt-6 {
    margin-top: 1.5rem !important;
  }
  .md\:mb-6 {
    margin-bottom: 1.5rem !important;
  }
  .md\:m-6 {
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .md\:gap-6 {
    gap: 1.5rem;
  }
  .md\:gap-x-6 {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
  .md\:gap-y-6 {
    row-gap: 1.5rem;
  }
  .md\:text-6 {
    font-size: 1.5rem !important;
  }
  .md\:h-6 {
    height: 1.5rem !important;
  }
  .md\:w-6 {
    width: 1.5rem !important;
  }
  .md\:top-6 {
    top: 1.5rem;
  }
  .md\:-top-6 {
    top: -1.5rem;
  }
  .md\:bottom-6 {
    bottom: 1.5rem;
  }
  .md\:-bottom-6 {
    bottom: -1.5rem;
  }
  .md\:left-6 {
    left: 1.5rem;
  }
  .md\:-left-6 {
    left: -1.5rem;
  }
  .md\:right-6 {
    right: 1.5rem;
  }
  .md\:-right-6 {
    right: -1.5rem;
  }
  .md\:start-6 {
    inset-inline-start: 1.5rem;
  }
  .md\:-start-6 {
    inset-inline-start: -1.5rem;
  }
  .md\:end-6 {
    inset-inline-end: 1.5rem;
  }
  .md\:-end-6 {
    inset-inline-end: -1.5rem;
  }
  .md\:p-6-and-half {
    padding: 1.7rem !important;
  }
  .md\:px-6-and-half {
    padding-left: 1.7rem !important;
    padding-right: 1.7rem !important;
  }
  .md\:py-6-and-half {
    padding-top: 1.7rem !important;
    padding-bottom: 1.7rem !important;
  }
  .md\:pl-6-and-half {
    padding-left: 1.7rem !important;
  }
  .md\:pr-6-and-half {
    padding-right: 1.7rem !important;
  }
  .md\:pt-6-and-half {
    padding-top: 1.7rem !important;
  }
  .md\:pb-6-and-half {
    padding-bottom: 1.7rem !important;
  }
  .md\:mx-6-and-half {
    margin-left: 1.7rem !important;
    margin-right: 1.7rem !important;
  }
  .md\:my-6-and-half {
    margin-top: 1.7rem !important;
    margin-bottom: 1.7rem !important;
  }
  .md\:ml-6-and-half {
    margin-left: 1.7rem !important;
  }
  .md\:mr-6-and-half {
    margin-right: 1.7rem !important;
  }
  .md\:mt-6-and-half {
    margin-top: 1.7rem !important;
  }
  .md\:mb-6-and-half {
    margin-bottom: 1.7rem !important;
  }
  .md\:m-6-and-half {
    margin-bottom: 1.7rem !important;
    margin-top: 1.7rem !important;
    margin-right: 1.7rem !important;
    margin-left: 1.7rem !important;
  }
  .md\:gap-6-and-half {
    gap: 1.7rem;
  }
  .md\:gap-x-6-and-half {
    -moz-column-gap: 1.7rem;
         column-gap: 1.7rem;
  }
  .md\:gap-y-6-and-half {
    row-gap: 1.7rem;
  }
  .md\:text-6-and-half {
    font-size: 1.7rem !important;
  }
  .md\:h-6-and-half {
    height: 1.7rem !important;
  }
  .md\:w-6-and-half {
    width: 1.7rem !important;
  }
  .md\:top-6-and-half {
    top: 1.7rem;
  }
  .md\:-top-6-and-half {
    top: -1.7rem;
  }
  .md\:bottom-6-and-half {
    bottom: 1.7rem;
  }
  .md\:-bottom-6-and-half {
    bottom: -1.7rem;
  }
  .md\:left-6-and-half {
    left: 1.7rem;
  }
  .md\:-left-6-and-half {
    left: -1.7rem;
  }
  .md\:right-6-and-half {
    right: 1.7rem;
  }
  .md\:-right-6-and-half {
    right: -1.7rem;
  }
  .md\:start-6-and-half {
    inset-inline-start: 1.7rem;
  }
  .md\:-start-6-and-half {
    inset-inline-start: -1.7rem;
  }
  .md\:end-6-and-half {
    inset-inline-end: 1.7rem;
  }
  .md\:-end-6-and-half {
    inset-inline-end: -1.7rem;
  }
  .md\:p-7 {
    padding: 1.75rem !important;
  }
  .md\:px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
  .md\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .md\:pl-7 {
    padding-left: 1.75rem !important;
  }
  .md\:pr-7 {
    padding-right: 1.75rem !important;
  }
  .md\:pt-7 {
    padding-top: 1.75rem !important;
  }
  .md\:pb-7 {
    padding-bottom: 1.75rem !important;
  }
  .md\:mx-7 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }
  .md\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .md\:ml-7 {
    margin-left: 1.75rem !important;
  }
  .md\:mr-7 {
    margin-right: 1.75rem !important;
  }
  .md\:mt-7 {
    margin-top: 1.75rem !important;
  }
  .md\:mb-7 {
    margin-bottom: 1.75rem !important;
  }
  .md\:m-7 {
    margin-bottom: 1.75rem !important;
    margin-top: 1.75rem !important;
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .md\:gap-7 {
    gap: 1.75rem;
  }
  .md\:gap-x-7 {
    -moz-column-gap: 1.75rem;
         column-gap: 1.75rem;
  }
  .md\:gap-y-7 {
    row-gap: 1.75rem;
  }
  .md\:text-7 {
    font-size: 1.75rem !important;
  }
  .md\:h-7 {
    height: 1.75rem !important;
  }
  .md\:w-7 {
    width: 1.75rem !important;
  }
  .md\:top-7 {
    top: 1.75rem;
  }
  .md\:-top-7 {
    top: -1.75rem;
  }
  .md\:bottom-7 {
    bottom: 1.75rem;
  }
  .md\:-bottom-7 {
    bottom: -1.75rem;
  }
  .md\:left-7 {
    left: 1.75rem;
  }
  .md\:-left-7 {
    left: -1.75rem;
  }
  .md\:right-7 {
    right: 1.75rem;
  }
  .md\:-right-7 {
    right: -1.75rem;
  }
  .md\:start-7 {
    inset-inline-start: 1.75rem;
  }
  .md\:-start-7 {
    inset-inline-start: -1.75rem;
  }
  .md\:end-7 {
    inset-inline-end: 1.75rem;
  }
  .md\:-end-7 {
    inset-inline-end: -1.75rem;
  }
  .md\:p-8 {
    padding: 2rem !important;
  }
  .md\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .md\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .md\:pl-8 {
    padding-left: 2rem !important;
  }
  .md\:pr-8 {
    padding-right: 2rem !important;
  }
  .md\:pt-8 {
    padding-top: 2rem !important;
  }
  .md\:pb-8 {
    padding-bottom: 2rem !important;
  }
  .md\:mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .md\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .md\:ml-8 {
    margin-left: 2rem !important;
  }
  .md\:mr-8 {
    margin-right: 2rem !important;
  }
  .md\:mt-8 {
    margin-top: 2rem !important;
  }
  .md\:mb-8 {
    margin-bottom: 2rem !important;
  }
  .md\:m-8 {
    margin-bottom: 2rem !important;
    margin-top: 2rem !important;
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .md\:gap-8 {
    gap: 2rem;
  }
  .md\:gap-x-8 {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .md\:gap-y-8 {
    row-gap: 2rem;
  }
  .md\:text-8 {
    font-size: 2rem !important;
  }
  .md\:h-8 {
    height: 2rem !important;
  }
  .md\:w-8 {
    width: 2rem !important;
  }
  .md\:top-8 {
    top: 2rem;
  }
  .md\:-top-8 {
    top: -2rem;
  }
  .md\:bottom-8 {
    bottom: 2rem;
  }
  .md\:-bottom-8 {
    bottom: -2rem;
  }
  .md\:left-8 {
    left: 2rem;
  }
  .md\:-left-8 {
    left: -2rem;
  }
  .md\:right-8 {
    right: 2rem;
  }
  .md\:-right-8 {
    right: -2rem;
  }
  .md\:start-8 {
    inset-inline-start: 2rem;
  }
  .md\:-start-8 {
    inset-inline-start: -2rem;
  }
  .md\:end-8 {
    inset-inline-end: 2rem;
  }
  .md\:-end-8 {
    inset-inline-end: -2rem;
  }
  .md\:p-9 {
    padding: 2.25rem !important;
  }
  .md\:px-9 {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }
  .md\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .md\:pl-9 {
    padding-left: 2.25rem !important;
  }
  .md\:pr-9 {
    padding-right: 2.25rem !important;
  }
  .md\:pt-9 {
    padding-top: 2.25rem !important;
  }
  .md\:pb-9 {
    padding-bottom: 2.25rem !important;
  }
  .md\:mx-9 {
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }
  .md\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .md\:ml-9 {
    margin-left: 2.25rem !important;
  }
  .md\:mr-9 {
    margin-right: 2.25rem !important;
  }
  .md\:mt-9 {
    margin-top: 2.25rem !important;
  }
  .md\:mb-9 {
    margin-bottom: 2.25rem !important;
  }
  .md\:m-9 {
    margin-bottom: 2.25rem !important;
    margin-top: 2.25rem !important;
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .md\:gap-9 {
    gap: 2.25rem;
  }
  .md\:gap-x-9 {
    -moz-column-gap: 2.25rem;
         column-gap: 2.25rem;
  }
  .md\:gap-y-9 {
    row-gap: 2.25rem;
  }
  .md\:text-9 {
    font-size: 2.25rem !important;
  }
  .md\:h-9 {
    height: 2.25rem !important;
  }
  .md\:w-9 {
    width: 2.25rem !important;
  }
  .md\:top-9 {
    top: 2.25rem;
  }
  .md\:-top-9 {
    top: -2.25rem;
  }
  .md\:bottom-9 {
    bottom: 2.25rem;
  }
  .md\:-bottom-9 {
    bottom: -2.25rem;
  }
  .md\:left-9 {
    left: 2.25rem;
  }
  .md\:-left-9 {
    left: -2.25rem;
  }
  .md\:right-9 {
    right: 2.25rem;
  }
  .md\:-right-9 {
    right: -2.25rem;
  }
  .md\:start-9 {
    inset-inline-start: 2.25rem;
  }
  .md\:-start-9 {
    inset-inline-start: -2.25rem;
  }
  .md\:end-9 {
    inset-inline-end: 2.25rem;
  }
  .md\:-end-9 {
    inset-inline-end: -2.25rem;
  }
  .md\:p-10 {
    padding: 2.5rem !important;
  }
  .md\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .md\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .md\:pl-10 {
    padding-left: 2.5rem !important;
  }
  .md\:pr-10 {
    padding-right: 2.5rem !important;
  }
  .md\:pt-10 {
    padding-top: 2.5rem !important;
  }
  .md\:pb-10 {
    padding-bottom: 2.5rem !important;
  }
  .md\:mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .md\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .md\:ml-10 {
    margin-left: 2.5rem !important;
  }
  .md\:mr-10 {
    margin-right: 2.5rem !important;
  }
  .md\:mt-10 {
    margin-top: 2.5rem !important;
  }
  .md\:mb-10 {
    margin-bottom: 2.5rem !important;
  }
  .md\:m-10 {
    margin-bottom: 2.5rem !important;
    margin-top: 2.5rem !important;
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .md\:gap-10 {
    gap: 2.5rem;
  }
  .md\:gap-x-10 {
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }
  .md\:gap-y-10 {
    row-gap: 2.5rem;
  }
  .md\:text-10 {
    font-size: 2.5rem !important;
  }
  .md\:h-10 {
    height: 2.5rem !important;
  }
  .md\:w-10 {
    width: 2.5rem !important;
  }
  .md\:top-10 {
    top: 2.5rem;
  }
  .md\:-top-10 {
    top: -2.5rem;
  }
  .md\:bottom-10 {
    bottom: 2.5rem;
  }
  .md\:-bottom-10 {
    bottom: -2.5rem;
  }
  .md\:left-10 {
    left: 2.5rem;
  }
  .md\:-left-10 {
    left: -2.5rem;
  }
  .md\:right-10 {
    right: 2.5rem;
  }
  .md\:-right-10 {
    right: -2.5rem;
  }
  .md\:start-10 {
    inset-inline-start: 2.5rem;
  }
  .md\:-start-10 {
    inset-inline-start: -2.5rem;
  }
  .md\:end-10 {
    inset-inline-end: 2.5rem;
  }
  .md\:-end-10 {
    inset-inline-end: -2.5rem;
  }
  .md\:p-11 {
    padding: 2.75rem !important;
  }
  .md\:px-11 {
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }
  .md\:py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .md\:pl-11 {
    padding-left: 2.75rem !important;
  }
  .md\:pr-11 {
    padding-right: 2.75rem !important;
  }
  .md\:pt-11 {
    padding-top: 2.75rem !important;
  }
  .md\:pb-11 {
    padding-bottom: 2.75rem !important;
  }
  .md\:mx-11 {
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }
  .md\:my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
  .md\:ml-11 {
    margin-left: 2.75rem !important;
  }
  .md\:mr-11 {
    margin-right: 2.75rem !important;
  }
  .md\:mt-11 {
    margin-top: 2.75rem !important;
  }
  .md\:mb-11 {
    margin-bottom: 2.75rem !important;
  }
  .md\:m-11 {
    margin-bottom: 2.75rem !important;
    margin-top: 2.75rem !important;
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .md\:gap-11 {
    gap: 2.75rem;
  }
  .md\:gap-x-11 {
    -moz-column-gap: 2.75rem;
         column-gap: 2.75rem;
  }
  .md\:gap-y-11 {
    row-gap: 2.75rem;
  }
  .md\:text-11 {
    font-size: 2.75rem !important;
  }
  .md\:h-11 {
    height: 2.75rem !important;
  }
  .md\:w-11 {
    width: 2.75rem !important;
  }
  .md\:top-11 {
    top: 2.75rem;
  }
  .md\:-top-11 {
    top: -2.75rem;
  }
  .md\:bottom-11 {
    bottom: 2.75rem;
  }
  .md\:-bottom-11 {
    bottom: -2.75rem;
  }
  .md\:left-11 {
    left: 2.75rem;
  }
  .md\:-left-11 {
    left: -2.75rem;
  }
  .md\:right-11 {
    right: 2.75rem;
  }
  .md\:-right-11 {
    right: -2.75rem;
  }
  .md\:start-11 {
    inset-inline-start: 2.75rem;
  }
  .md\:-start-11 {
    inset-inline-start: -2.75rem;
  }
  .md\:end-11 {
    inset-inline-end: 2.75rem;
  }
  .md\:-end-11 {
    inset-inline-end: -2.75rem;
  }
  .md\:p-12 {
    padding: 3rem !important;
  }
  .md\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .md\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .md\:pl-12 {
    padding-left: 3rem !important;
  }
  .md\:pr-12 {
    padding-right: 3rem !important;
  }
  .md\:pt-12 {
    padding-top: 3rem !important;
  }
  .md\:pb-12 {
    padding-bottom: 3rem !important;
  }
  .md\:mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .md\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .md\:ml-12 {
    margin-left: 3rem !important;
  }
  .md\:mr-12 {
    margin-right: 3rem !important;
  }
  .md\:mt-12 {
    margin-top: 3rem !important;
  }
  .md\:mb-12 {
    margin-bottom: 3rem !important;
  }
  .md\:m-12 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .md\:gap-12 {
    gap: 3rem;
  }
  .md\:gap-x-12 {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
  .md\:gap-y-12 {
    row-gap: 3rem;
  }
  .md\:text-12 {
    font-size: 3rem !important;
  }
  .md\:h-12 {
    height: 3rem !important;
  }
  .md\:w-12 {
    width: 3rem !important;
  }
  .md\:top-12 {
    top: 3rem;
  }
  .md\:-top-12 {
    top: -3rem;
  }
  .md\:bottom-12 {
    bottom: 3rem;
  }
  .md\:-bottom-12 {
    bottom: -3rem;
  }
  .md\:left-12 {
    left: 3rem;
  }
  .md\:-left-12 {
    left: -3rem;
  }
  .md\:right-12 {
    right: 3rem;
  }
  .md\:-right-12 {
    right: -3rem;
  }
  .md\:start-12 {
    inset-inline-start: 3rem;
  }
  .md\:-start-12 {
    inset-inline-start: -3rem;
  }
  .md\:end-12 {
    inset-inline-end: 3rem;
  }
  .md\:-end-12 {
    inset-inline-end: -3rem;
  }
  .md\:p-14 {
    padding: 3.5rem !important;
  }
  .md\:px-14 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .md\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .md\:pl-14 {
    padding-left: 3.5rem !important;
  }
  .md\:pr-14 {
    padding-right: 3.5rem !important;
  }
  .md\:pt-14 {
    padding-top: 3.5rem !important;
  }
  .md\:pb-14 {
    padding-bottom: 3.5rem !important;
  }
  .md\:mx-14 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }
  .md\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .md\:ml-14 {
    margin-left: 3.5rem !important;
  }
  .md\:mr-14 {
    margin-right: 3.5rem !important;
  }
  .md\:mt-14 {
    margin-top: 3.5rem !important;
  }
  .md\:mb-14 {
    margin-bottom: 3.5rem !important;
  }
  .md\:m-14 {
    margin-bottom: 3.5rem !important;
    margin-top: 3.5rem !important;
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .md\:gap-14 {
    gap: 3.5rem;
  }
  .md\:gap-x-14 {
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }
  .md\:gap-y-14 {
    row-gap: 3.5rem;
  }
  .md\:text-14 {
    font-size: 3.5rem !important;
  }
  .md\:h-14 {
    height: 3.5rem !important;
  }
  .md\:w-14 {
    width: 3.5rem !important;
  }
  .md\:top-14 {
    top: 3.5rem;
  }
  .md\:-top-14 {
    top: -3.5rem;
  }
  .md\:bottom-14 {
    bottom: 3.5rem;
  }
  .md\:-bottom-14 {
    bottom: -3.5rem;
  }
  .md\:left-14 {
    left: 3.5rem;
  }
  .md\:-left-14 {
    left: -3.5rem;
  }
  .md\:right-14 {
    right: 3.5rem;
  }
  .md\:-right-14 {
    right: -3.5rem;
  }
  .md\:start-14 {
    inset-inline-start: 3.5rem;
  }
  .md\:-start-14 {
    inset-inline-start: -3.5rem;
  }
  .md\:end-14 {
    inset-inline-end: 3.5rem;
  }
  .md\:-end-14 {
    inset-inline-end: -3.5rem;
  }
  .md\:p-15 {
    padding: 3.75rem !important;
  }
  .md\:px-15 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }
  .md\:py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .md\:pl-15 {
    padding-left: 3.75rem !important;
  }
  .md\:pr-15 {
    padding-right: 3.75rem !important;
  }
  .md\:pt-15 {
    padding-top: 3.75rem !important;
  }
  .md\:pb-15 {
    padding-bottom: 3.75rem !important;
  }
  .md\:mx-15 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }
  .md\:my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .md\:ml-15 {
    margin-left: 3.75rem !important;
  }
  .md\:mr-15 {
    margin-right: 3.75rem !important;
  }
  .md\:mt-15 {
    margin-top: 3.75rem !important;
  }
  .md\:mb-15 {
    margin-bottom: 3.75rem !important;
  }
  .md\:m-15 {
    margin-bottom: 3.75rem !important;
    margin-top: 3.75rem !important;
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .md\:gap-15 {
    gap: 3.75rem;
  }
  .md\:gap-x-15 {
    -moz-column-gap: 3.75rem;
         column-gap: 3.75rem;
  }
  .md\:gap-y-15 {
    row-gap: 3.75rem;
  }
  .md\:text-15 {
    font-size: 3.75rem !important;
  }
  .md\:h-15 {
    height: 3.75rem !important;
  }
  .md\:w-15 {
    width: 3.75rem !important;
  }
  .md\:top-15 {
    top: 3.75rem;
  }
  .md\:-top-15 {
    top: -3.75rem;
  }
  .md\:bottom-15 {
    bottom: 3.75rem;
  }
  .md\:-bottom-15 {
    bottom: -3.75rem;
  }
  .md\:left-15 {
    left: 3.75rem;
  }
  .md\:-left-15 {
    left: -3.75rem;
  }
  .md\:right-15 {
    right: 3.75rem;
  }
  .md\:-right-15 {
    right: -3.75rem;
  }
  .md\:start-15 {
    inset-inline-start: 3.75rem;
  }
  .md\:-start-15 {
    inset-inline-start: -3.75rem;
  }
  .md\:end-15 {
    inset-inline-end: 3.75rem;
  }
  .md\:-end-15 {
    inset-inline-end: -3.75rem;
  }
  .md\:p-16 {
    padding: 4rem !important;
  }
  .md\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .md\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .md\:pl-16 {
    padding-left: 4rem !important;
  }
  .md\:pr-16 {
    padding-right: 4rem !important;
  }
  .md\:pt-16 {
    padding-top: 4rem !important;
  }
  .md\:pb-16 {
    padding-bottom: 4rem !important;
  }
  .md\:mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .md\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .md\:ml-16 {
    margin-left: 4rem !important;
  }
  .md\:mr-16 {
    margin-right: 4rem !important;
  }
  .md\:mt-16 {
    margin-top: 4rem !important;
  }
  .md\:mb-16 {
    margin-bottom: 4rem !important;
  }
  .md\:m-16 {
    margin-bottom: 4rem !important;
    margin-top: 4rem !important;
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .md\:gap-16 {
    gap: 4rem;
  }
  .md\:gap-x-16 {
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
  .md\:gap-y-16 {
    row-gap: 4rem;
  }
  .md\:text-16 {
    font-size: 4rem !important;
  }
  .md\:h-16 {
    height: 4rem !important;
  }
  .md\:w-16 {
    width: 4rem !important;
  }
  .md\:top-16 {
    top: 4rem;
  }
  .md\:-top-16 {
    top: -4rem;
  }
  .md\:bottom-16 {
    bottom: 4rem;
  }
  .md\:-bottom-16 {
    bottom: -4rem;
  }
  .md\:left-16 {
    left: 4rem;
  }
  .md\:-left-16 {
    left: -4rem;
  }
  .md\:right-16 {
    right: 4rem;
  }
  .md\:-right-16 {
    right: -4rem;
  }
  .md\:start-16 {
    inset-inline-start: 4rem;
  }
  .md\:-start-16 {
    inset-inline-start: -4rem;
  }
  .md\:end-16 {
    inset-inline-end: 4rem;
  }
  .md\:-end-16 {
    inset-inline-end: -4rem;
  }
  .md\:p-18 {
    padding: 4.5rem !important;
  }
  .md\:px-18 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }
  .md\:py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .md\:pl-18 {
    padding-left: 4.5rem !important;
  }
  .md\:pr-18 {
    padding-right: 4.5rem !important;
  }
  .md\:pt-18 {
    padding-top: 4.5rem !important;
  }
  .md\:pb-18 {
    padding-bottom: 4.5rem !important;
  }
  .md\:mx-18 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
  .md\:my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .md\:ml-18 {
    margin-left: 4.5rem !important;
  }
  .md\:mr-18 {
    margin-right: 4.5rem !important;
  }
  .md\:mt-18 {
    margin-top: 4.5rem !important;
  }
  .md\:mb-18 {
    margin-bottom: 4.5rem !important;
  }
  .md\:m-18 {
    margin-bottom: 4.5rem !important;
    margin-top: 4.5rem !important;
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .md\:gap-18 {
    gap: 4.5rem;
  }
  .md\:gap-x-18 {
    -moz-column-gap: 4.5rem;
         column-gap: 4.5rem;
  }
  .md\:gap-y-18 {
    row-gap: 4.5rem;
  }
  .md\:text-18 {
    font-size: 4.5rem !important;
  }
  .md\:h-18 {
    height: 4.5rem !important;
  }
  .md\:w-18 {
    width: 4.5rem !important;
  }
  .md\:top-18 {
    top: 4.5rem;
  }
  .md\:-top-18 {
    top: -4.5rem;
  }
  .md\:bottom-18 {
    bottom: 4.5rem;
  }
  .md\:-bottom-18 {
    bottom: -4.5rem;
  }
  .md\:left-18 {
    left: 4.5rem;
  }
  .md\:-left-18 {
    left: -4.5rem;
  }
  .md\:right-18 {
    right: 4.5rem;
  }
  .md\:-right-18 {
    right: -4.5rem;
  }
  .md\:start-18 {
    inset-inline-start: 4.5rem;
  }
  .md\:-start-18 {
    inset-inline-start: -4.5rem;
  }
  .md\:end-18 {
    inset-inline-end: 4.5rem;
  }
  .md\:-end-18 {
    inset-inline-end: -4.5rem;
  }
  .md\:p-20 {
    padding: 5rem !important;
  }
  .md\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .md\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .md\:pl-20 {
    padding-left: 5rem !important;
  }
  .md\:pr-20 {
    padding-right: 5rem !important;
  }
  .md\:pt-20 {
    padding-top: 5rem !important;
  }
  .md\:pb-20 {
    padding-bottom: 5rem !important;
  }
  .md\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .md\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .md\:ml-20 {
    margin-left: 5rem !important;
  }
  .md\:mr-20 {
    margin-right: 5rem !important;
  }
  .md\:mt-20 {
    margin-top: 5rem !important;
  }
  .md\:mb-20 {
    margin-bottom: 5rem !important;
  }
  .md\:m-20 {
    margin-bottom: 5rem !important;
    margin-top: 5rem !important;
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .md\:gap-20 {
    gap: 5rem;
  }
  .md\:gap-x-20 {
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
  .md\:gap-y-20 {
    row-gap: 5rem;
  }
  .md\:text-20 {
    font-size: 5rem !important;
  }
  .md\:h-20 {
    height: 5rem !important;
  }
  .md\:w-20 {
    width: 5rem !important;
  }
  .md\:top-20 {
    top: 5rem;
  }
  .md\:-top-20 {
    top: -5rem;
  }
  .md\:bottom-20 {
    bottom: 5rem;
  }
  .md\:-bottom-20 {
    bottom: -5rem;
  }
  .md\:left-20 {
    left: 5rem;
  }
  .md\:-left-20 {
    left: -5rem;
  }
  .md\:right-20 {
    right: 5rem;
  }
  .md\:-right-20 {
    right: -5rem;
  }
  .md\:start-20 {
    inset-inline-start: 5rem;
  }
  .md\:-start-20 {
    inset-inline-start: -5rem;
  }
  .md\:end-20 {
    inset-inline-end: 5rem;
  }
  .md\:-end-20 {
    inset-inline-end: -5rem;
  }
  .md\:p-24 {
    padding: 6rem !important;
  }
  .md\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .md\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .md\:pl-24 {
    padding-left: 6rem !important;
  }
  .md\:pr-24 {
    padding-right: 6rem !important;
  }
  .md\:pt-24 {
    padding-top: 6rem !important;
  }
  .md\:pb-24 {
    padding-bottom: 6rem !important;
  }
  .md\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .md\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .md\:ml-24 {
    margin-left: 6rem !important;
  }
  .md\:mr-24 {
    margin-right: 6rem !important;
  }
  .md\:mt-24 {
    margin-top: 6rem !important;
  }
  .md\:mb-24 {
    margin-bottom: 6rem !important;
  }
  .md\:m-24 {
    margin-bottom: 6rem !important;
    margin-top: 6rem !important;
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .md\:gap-24 {
    gap: 6rem;
  }
  .md\:gap-x-24 {
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }
  .md\:gap-y-24 {
    row-gap: 6rem;
  }
  .md\:text-24 {
    font-size: 6rem !important;
  }
  .md\:h-24 {
    height: 6rem !important;
  }
  .md\:w-24 {
    width: 6rem !important;
  }
  .md\:top-24 {
    top: 6rem;
  }
  .md\:-top-24 {
    top: -6rem;
  }
  .md\:bottom-24 {
    bottom: 6rem;
  }
  .md\:-bottom-24 {
    bottom: -6rem;
  }
  .md\:left-24 {
    left: 6rem;
  }
  .md\:-left-24 {
    left: -6rem;
  }
  .md\:right-24 {
    right: 6rem;
  }
  .md\:-right-24 {
    right: -6rem;
  }
  .md\:start-24 {
    inset-inline-start: 6rem;
  }
  .md\:-start-24 {
    inset-inline-start: -6rem;
  }
  .md\:end-24 {
    inset-inline-end: 6rem;
  }
  .md\:-end-24 {
    inset-inline-end: -6rem;
  }
  .md\:p-28 {
    padding: 7rem !important;
  }
  .md\:px-28 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .md\:py-28 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .md\:pl-28 {
    padding-left: 7rem !important;
  }
  .md\:pr-28 {
    padding-right: 7rem !important;
  }
  .md\:pt-28 {
    padding-top: 7rem !important;
  }
  .md\:pb-28 {
    padding-bottom: 7rem !important;
  }
  .md\:mx-28 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .md\:my-28 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .md\:ml-28 {
    margin-left: 7rem !important;
  }
  .md\:mr-28 {
    margin-right: 7rem !important;
  }
  .md\:mt-28 {
    margin-top: 7rem !important;
  }
  .md\:mb-28 {
    margin-bottom: 7rem !important;
  }
  .md\:m-28 {
    margin-bottom: 7rem !important;
    margin-top: 7rem !important;
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .md\:gap-28 {
    gap: 7rem;
  }
  .md\:gap-x-28 {
    -moz-column-gap: 7rem;
         column-gap: 7rem;
  }
  .md\:gap-y-28 {
    row-gap: 7rem;
  }
  .md\:text-28 {
    font-size: 7rem !important;
  }
  .md\:h-28 {
    height: 7rem !important;
  }
  .md\:w-28 {
    width: 7rem !important;
  }
  .md\:top-28 {
    top: 7rem;
  }
  .md\:-top-28 {
    top: -7rem;
  }
  .md\:bottom-28 {
    bottom: 7rem;
  }
  .md\:-bottom-28 {
    bottom: -7rem;
  }
  .md\:left-28 {
    left: 7rem;
  }
  .md\:-left-28 {
    left: -7rem;
  }
  .md\:right-28 {
    right: 7rem;
  }
  .md\:-right-28 {
    right: -7rem;
  }
  .md\:start-28 {
    inset-inline-start: 7rem;
  }
  .md\:-start-28 {
    inset-inline-start: -7rem;
  }
  .md\:end-28 {
    inset-inline-end: 7rem;
  }
  .md\:-end-28 {
    inset-inline-end: -7rem;
  }
  .md\:p-32 {
    padding: 8rem !important;
  }
  .md\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .md\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .md\:pl-32 {
    padding-left: 8rem !important;
  }
  .md\:pr-32 {
    padding-right: 8rem !important;
  }
  .md\:pt-32 {
    padding-top: 8rem !important;
  }
  .md\:pb-32 {
    padding-bottom: 8rem !important;
  }
  .md\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .md\:my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .md\:ml-32 {
    margin-left: 8rem !important;
  }
  .md\:mr-32 {
    margin-right: 8rem !important;
  }
  .md\:mt-32 {
    margin-top: 8rem !important;
  }
  .md\:mb-32 {
    margin-bottom: 8rem !important;
  }
  .md\:m-32 {
    margin-bottom: 8rem !important;
    margin-top: 8rem !important;
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .md\:gap-32 {
    gap: 8rem;
  }
  .md\:gap-x-32 {
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }
  .md\:gap-y-32 {
    row-gap: 8rem;
  }
  .md\:text-32 {
    font-size: 8rem !important;
  }
  .md\:h-32 {
    height: 8rem !important;
  }
  .md\:w-32 {
    width: 8rem !important;
  }
  .md\:top-32 {
    top: 8rem;
  }
  .md\:-top-32 {
    top: -8rem;
  }
  .md\:bottom-32 {
    bottom: 8rem;
  }
  .md\:-bottom-32 {
    bottom: -8rem;
  }
  .md\:left-32 {
    left: 8rem;
  }
  .md\:-left-32 {
    left: -8rem;
  }
  .md\:right-32 {
    right: 8rem;
  }
  .md\:-right-32 {
    right: -8rem;
  }
  .md\:start-32 {
    inset-inline-start: 8rem;
  }
  .md\:-start-32 {
    inset-inline-start: -8rem;
  }
  .md\:end-32 {
    inset-inline-end: 8rem;
  }
  .md\:-end-32 {
    inset-inline-end: -8rem;
  }
  .md\:p-36 {
    padding: 9rem !important;
  }
  .md\:px-36 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .md\:py-36 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .md\:pl-36 {
    padding-left: 9rem !important;
  }
  .md\:pr-36 {
    padding-right: 9rem !important;
  }
  .md\:pt-36 {
    padding-top: 9rem !important;
  }
  .md\:pb-36 {
    padding-bottom: 9rem !important;
  }
  .md\:mx-36 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .md\:my-36 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .md\:ml-36 {
    margin-left: 9rem !important;
  }
  .md\:mr-36 {
    margin-right: 9rem !important;
  }
  .md\:mt-36 {
    margin-top: 9rem !important;
  }
  .md\:mb-36 {
    margin-bottom: 9rem !important;
  }
  .md\:m-36 {
    margin-bottom: 9rem !important;
    margin-top: 9rem !important;
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .md\:gap-36 {
    gap: 9rem;
  }
  .md\:gap-x-36 {
    -moz-column-gap: 9rem;
         column-gap: 9rem;
  }
  .md\:gap-y-36 {
    row-gap: 9rem;
  }
  .md\:text-36 {
    font-size: 9rem !important;
  }
  .md\:h-36 {
    height: 9rem !important;
  }
  .md\:w-36 {
    width: 9rem !important;
  }
  .md\:top-36 {
    top: 9rem;
  }
  .md\:-top-36 {
    top: -9rem;
  }
  .md\:bottom-36 {
    bottom: 9rem;
  }
  .md\:-bottom-36 {
    bottom: -9rem;
  }
  .md\:left-36 {
    left: 9rem;
  }
  .md\:-left-36 {
    left: -9rem;
  }
  .md\:right-36 {
    right: 9rem;
  }
  .md\:-right-36 {
    right: -9rem;
  }
  .md\:start-36 {
    inset-inline-start: 9rem;
  }
  .md\:-start-36 {
    inset-inline-start: -9rem;
  }
  .md\:end-36 {
    inset-inline-end: 9rem;
  }
  .md\:-end-36 {
    inset-inline-end: -9rem;
  }
  .md\:p-38 {
    padding: 9.5rem !important;
  }
  .md\:px-38 {
    padding-left: 9.5rem !important;
    padding-right: 9.5rem !important;
  }
  .md\:py-38 {
    padding-top: 9.5rem !important;
    padding-bottom: 9.5rem !important;
  }
  .md\:pl-38 {
    padding-left: 9.5rem !important;
  }
  .md\:pr-38 {
    padding-right: 9.5rem !important;
  }
  .md\:pt-38 {
    padding-top: 9.5rem !important;
  }
  .md\:pb-38 {
    padding-bottom: 9.5rem !important;
  }
  .md\:mx-38 {
    margin-left: 9.5rem !important;
    margin-right: 9.5rem !important;
  }
  .md\:my-38 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
  }
  .md\:ml-38 {
    margin-left: 9.5rem !important;
  }
  .md\:mr-38 {
    margin-right: 9.5rem !important;
  }
  .md\:mt-38 {
    margin-top: 9.5rem !important;
  }
  .md\:mb-38 {
    margin-bottom: 9.5rem !important;
  }
  .md\:m-38 {
    margin-bottom: 9.5rem !important;
    margin-top: 9.5rem !important;
    margin-right: 9.5rem !important;
    margin-left: 9.5rem !important;
  }
  .md\:gap-38 {
    gap: 9.5rem;
  }
  .md\:gap-x-38 {
    -moz-column-gap: 9.5rem;
         column-gap: 9.5rem;
  }
  .md\:gap-y-38 {
    row-gap: 9.5rem;
  }
  .md\:text-38 {
    font-size: 9.5rem !important;
  }
  .md\:h-38 {
    height: 9.5rem !important;
  }
  .md\:w-38 {
    width: 9.5rem !important;
  }
  .md\:top-38 {
    top: 9.5rem;
  }
  .md\:-top-38 {
    top: -9.5rem;
  }
  .md\:bottom-38 {
    bottom: 9.5rem;
  }
  .md\:-bottom-38 {
    bottom: -9.5rem;
  }
  .md\:left-38 {
    left: 9.5rem;
  }
  .md\:-left-38 {
    left: -9.5rem;
  }
  .md\:right-38 {
    right: 9.5rem;
  }
  .md\:-right-38 {
    right: -9.5rem;
  }
  .md\:start-38 {
    inset-inline-start: 9.5rem;
  }
  .md\:-start-38 {
    inset-inline-start: -9.5rem;
  }
  .md\:end-38 {
    inset-inline-end: 9.5rem;
  }
  .md\:-end-38 {
    inset-inline-end: -9.5rem;
  }
  .md\:p-40 {
    padding: 10rem !important;
  }
  .md\:px-40 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .md\:py-40 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .md\:pl-40 {
    padding-left: 10rem !important;
  }
  .md\:pr-40 {
    padding-right: 10rem !important;
  }
  .md\:pt-40 {
    padding-top: 10rem !important;
  }
  .md\:pb-40 {
    padding-bottom: 10rem !important;
  }
  .md\:mx-40 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .md\:my-40 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .md\:ml-40 {
    margin-left: 10rem !important;
  }
  .md\:mr-40 {
    margin-right: 10rem !important;
  }
  .md\:mt-40 {
    margin-top: 10rem !important;
  }
  .md\:mb-40 {
    margin-bottom: 10rem !important;
  }
  .md\:m-40 {
    margin-bottom: 10rem !important;
    margin-top: 10rem !important;
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .md\:gap-40 {
    gap: 10rem;
  }
  .md\:gap-x-40 {
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }
  .md\:gap-y-40 {
    row-gap: 10rem;
  }
  .md\:text-40 {
    font-size: 10rem !important;
  }
  .md\:h-40 {
    height: 10rem !important;
  }
  .md\:w-40 {
    width: 10rem !important;
  }
  .md\:top-40 {
    top: 10rem;
  }
  .md\:-top-40 {
    top: -10rem;
  }
  .md\:bottom-40 {
    bottom: 10rem;
  }
  .md\:-bottom-40 {
    bottom: -10rem;
  }
  .md\:left-40 {
    left: 10rem;
  }
  .md\:-left-40 {
    left: -10rem;
  }
  .md\:right-40 {
    right: 10rem;
  }
  .md\:-right-40 {
    right: -10rem;
  }
  .md\:start-40 {
    inset-inline-start: 10rem;
  }
  .md\:-start-40 {
    inset-inline-start: -10rem;
  }
  .md\:end-40 {
    inset-inline-end: 10rem;
  }
  .md\:-end-40 {
    inset-inline-end: -10rem;
  }
  .md\:p-44 {
    padding: 11rem !important;
  }
  .md\:px-44 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }
  .md\:py-44 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .md\:pl-44 {
    padding-left: 11rem !important;
  }
  .md\:pr-44 {
    padding-right: 11rem !important;
  }
  .md\:pt-44 {
    padding-top: 11rem !important;
  }
  .md\:pb-44 {
    padding-bottom: 11rem !important;
  }
  .md\:mx-44 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }
  .md\:my-44 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .md\:ml-44 {
    margin-left: 11rem !important;
  }
  .md\:mr-44 {
    margin-right: 11rem !important;
  }
  .md\:mt-44 {
    margin-top: 11rem !important;
  }
  .md\:mb-44 {
    margin-bottom: 11rem !important;
  }
  .md\:m-44 {
    margin-bottom: 11rem !important;
    margin-top: 11rem !important;
    margin-right: 11rem !important;
    margin-left: 11rem !important;
  }
  .md\:gap-44 {
    gap: 11rem;
  }
  .md\:gap-x-44 {
    -moz-column-gap: 11rem;
         column-gap: 11rem;
  }
  .md\:gap-y-44 {
    row-gap: 11rem;
  }
  .md\:text-44 {
    font-size: 11rem !important;
  }
  .md\:h-44 {
    height: 11rem !important;
  }
  .md\:w-44 {
    width: 11rem !important;
  }
  .md\:top-44 {
    top: 11rem;
  }
  .md\:-top-44 {
    top: -11rem;
  }
  .md\:bottom-44 {
    bottom: 11rem;
  }
  .md\:-bottom-44 {
    bottom: -11rem;
  }
  .md\:left-44 {
    left: 11rem;
  }
  .md\:-left-44 {
    left: -11rem;
  }
  .md\:right-44 {
    right: 11rem;
  }
  .md\:-right-44 {
    right: -11rem;
  }
  .md\:start-44 {
    inset-inline-start: 11rem;
  }
  .md\:-start-44 {
    inset-inline-start: -11rem;
  }
  .md\:end-44 {
    inset-inline-end: 11rem;
  }
  .md\:-end-44 {
    inset-inline-end: -11rem;
  }
  .md\:p-46 {
    padding: 11.5rem !important;
  }
  .md\:px-46 {
    padding-left: 11.5rem !important;
    padding-right: 11.5rem !important;
  }
  .md\:py-46 {
    padding-top: 11.5rem !important;
    padding-bottom: 11.5rem !important;
  }
  .md\:pl-46 {
    padding-left: 11.5rem !important;
  }
  .md\:pr-46 {
    padding-right: 11.5rem !important;
  }
  .md\:pt-46 {
    padding-top: 11.5rem !important;
  }
  .md\:pb-46 {
    padding-bottom: 11.5rem !important;
  }
  .md\:mx-46 {
    margin-left: 11.5rem !important;
    margin-right: 11.5rem !important;
  }
  .md\:my-46 {
    margin-top: 11.5rem !important;
    margin-bottom: 11.5rem !important;
  }
  .md\:ml-46 {
    margin-left: 11.5rem !important;
  }
  .md\:mr-46 {
    margin-right: 11.5rem !important;
  }
  .md\:mt-46 {
    margin-top: 11.5rem !important;
  }
  .md\:mb-46 {
    margin-bottom: 11.5rem !important;
  }
  .md\:m-46 {
    margin-bottom: 11.5rem !important;
    margin-top: 11.5rem !important;
    margin-right: 11.5rem !important;
    margin-left: 11.5rem !important;
  }
  .md\:gap-46 {
    gap: 11.5rem;
  }
  .md\:gap-x-46 {
    -moz-column-gap: 11.5rem;
         column-gap: 11.5rem;
  }
  .md\:gap-y-46 {
    row-gap: 11.5rem;
  }
  .md\:text-46 {
    font-size: 11.5rem !important;
  }
  .md\:h-46 {
    height: 11.5rem !important;
  }
  .md\:w-46 {
    width: 11.5rem !important;
  }
  .md\:top-46 {
    top: 11.5rem;
  }
  .md\:-top-46 {
    top: -11.5rem;
  }
  .md\:bottom-46 {
    bottom: 11.5rem;
  }
  .md\:-bottom-46 {
    bottom: -11.5rem;
  }
  .md\:left-46 {
    left: 11.5rem;
  }
  .md\:-left-46 {
    left: -11.5rem;
  }
  .md\:right-46 {
    right: 11.5rem;
  }
  .md\:-right-46 {
    right: -11.5rem;
  }
  .md\:start-46 {
    inset-inline-start: 11.5rem;
  }
  .md\:-start-46 {
    inset-inline-start: -11.5rem;
  }
  .md\:end-46 {
    inset-inline-end: 11.5rem;
  }
  .md\:-end-46 {
    inset-inline-end: -11.5rem;
  }
  .md\:p-48 {
    padding: 12rem !important;
  }
  .md\:px-48 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }
  .md\:py-48 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .md\:pl-48 {
    padding-left: 12rem !important;
  }
  .md\:pr-48 {
    padding-right: 12rem !important;
  }
  .md\:pt-48 {
    padding-top: 12rem !important;
  }
  .md\:pb-48 {
    padding-bottom: 12rem !important;
  }
  .md\:mx-48 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }
  .md\:my-48 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .md\:ml-48 {
    margin-left: 12rem !important;
  }
  .md\:mr-48 {
    margin-right: 12rem !important;
  }
  .md\:mt-48 {
    margin-top: 12rem !important;
  }
  .md\:mb-48 {
    margin-bottom: 12rem !important;
  }
  .md\:m-48 {
    margin-bottom: 12rem !important;
    margin-top: 12rem !important;
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .md\:gap-48 {
    gap: 12rem;
  }
  .md\:gap-x-48 {
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }
  .md\:gap-y-48 {
    row-gap: 12rem;
  }
  .md\:text-48 {
    font-size: 12rem !important;
  }
  .md\:h-48 {
    height: 12rem !important;
  }
  .md\:w-48 {
    width: 12rem !important;
  }
  .md\:top-48 {
    top: 12rem;
  }
  .md\:-top-48 {
    top: -12rem;
  }
  .md\:bottom-48 {
    bottom: 12rem;
  }
  .md\:-bottom-48 {
    bottom: -12rem;
  }
  .md\:left-48 {
    left: 12rem;
  }
  .md\:-left-48 {
    left: -12rem;
  }
  .md\:right-48 {
    right: 12rem;
  }
  .md\:-right-48 {
    right: -12rem;
  }
  .md\:start-48 {
    inset-inline-start: 12rem;
  }
  .md\:-start-48 {
    inset-inline-start: -12rem;
  }
  .md\:end-48 {
    inset-inline-end: 12rem;
  }
  .md\:-end-48 {
    inset-inline-end: -12rem;
  }
  .md\:p-49 {
    padding: 12.25rem !important;
  }
  .md\:px-49 {
    padding-left: 12.25rem !important;
    padding-right: 12.25rem !important;
  }
  .md\:py-49 {
    padding-top: 12.25rem !important;
    padding-bottom: 12.25rem !important;
  }
  .md\:pl-49 {
    padding-left: 12.25rem !important;
  }
  .md\:pr-49 {
    padding-right: 12.25rem !important;
  }
  .md\:pt-49 {
    padding-top: 12.25rem !important;
  }
  .md\:pb-49 {
    padding-bottom: 12.25rem !important;
  }
  .md\:mx-49 {
    margin-left: 12.25rem !important;
    margin-right: 12.25rem !important;
  }
  .md\:my-49 {
    margin-top: 12.25rem !important;
    margin-bottom: 12.25rem !important;
  }
  .md\:ml-49 {
    margin-left: 12.25rem !important;
  }
  .md\:mr-49 {
    margin-right: 12.25rem !important;
  }
  .md\:mt-49 {
    margin-top: 12.25rem !important;
  }
  .md\:mb-49 {
    margin-bottom: 12.25rem !important;
  }
  .md\:m-49 {
    margin-bottom: 12.25rem !important;
    margin-top: 12.25rem !important;
    margin-right: 12.25rem !important;
    margin-left: 12.25rem !important;
  }
  .md\:gap-49 {
    gap: 12.25rem;
  }
  .md\:gap-x-49 {
    -moz-column-gap: 12.25rem;
         column-gap: 12.25rem;
  }
  .md\:gap-y-49 {
    row-gap: 12.25rem;
  }
  .md\:text-49 {
    font-size: 12.25rem !important;
  }
  .md\:h-49 {
    height: 12.25rem !important;
  }
  .md\:w-49 {
    width: 12.25rem !important;
  }
  .md\:top-49 {
    top: 12.25rem;
  }
  .md\:-top-49 {
    top: -12.25rem;
  }
  .md\:bottom-49 {
    bottom: 12.25rem;
  }
  .md\:-bottom-49 {
    bottom: -12.25rem;
  }
  .md\:left-49 {
    left: 12.25rem;
  }
  .md\:-left-49 {
    left: -12.25rem;
  }
  .md\:right-49 {
    right: 12.25rem;
  }
  .md\:-right-49 {
    right: -12.25rem;
  }
  .md\:start-49 {
    inset-inline-start: 12.25rem;
  }
  .md\:-start-49 {
    inset-inline-start: -12.25rem;
  }
  .md\:end-49 {
    inset-inline-end: 12.25rem;
  }
  .md\:-end-49 {
    inset-inline-end: -12.25rem;
  }
  .md\:p-50 {
    padding: 12.5rem !important;
  }
  .md\:px-50 {
    padding-left: 12.5rem !important;
    padding-right: 12.5rem !important;
  }
  .md\:py-50 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }
  .md\:pl-50 {
    padding-left: 12.5rem !important;
  }
  .md\:pr-50 {
    padding-right: 12.5rem !important;
  }
  .md\:pt-50 {
    padding-top: 12.5rem !important;
  }
  .md\:pb-50 {
    padding-bottom: 12.5rem !important;
  }
  .md\:mx-50 {
    margin-left: 12.5rem !important;
    margin-right: 12.5rem !important;
  }
  .md\:my-50 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }
  .md\:ml-50 {
    margin-left: 12.5rem !important;
  }
  .md\:mr-50 {
    margin-right: 12.5rem !important;
  }
  .md\:mt-50 {
    margin-top: 12.5rem !important;
  }
  .md\:mb-50 {
    margin-bottom: 12.5rem !important;
  }
  .md\:m-50 {
    margin-bottom: 12.5rem !important;
    margin-top: 12.5rem !important;
    margin-right: 12.5rem !important;
    margin-left: 12.5rem !important;
  }
  .md\:gap-50 {
    gap: 12.5rem;
  }
  .md\:gap-x-50 {
    -moz-column-gap: 12.5rem;
         column-gap: 12.5rem;
  }
  .md\:gap-y-50 {
    row-gap: 12.5rem;
  }
  .md\:text-50 {
    font-size: 12.5rem !important;
  }
  .md\:h-50 {
    height: 12.5rem !important;
  }
  .md\:w-50 {
    width: 12.5rem !important;
  }
  .md\:top-50 {
    top: 12.5rem;
  }
  .md\:-top-50 {
    top: -12.5rem;
  }
  .md\:bottom-50 {
    bottom: 12.5rem;
  }
  .md\:-bottom-50 {
    bottom: -12.5rem;
  }
  .md\:left-50 {
    left: 12.5rem;
  }
  .md\:-left-50 {
    left: -12.5rem;
  }
  .md\:right-50 {
    right: 12.5rem;
  }
  .md\:-right-50 {
    right: -12.5rem;
  }
  .md\:start-50 {
    inset-inline-start: 12.5rem;
  }
  .md\:-start-50 {
    inset-inline-start: -12.5rem;
  }
  .md\:end-50 {
    inset-inline-end: 12.5rem;
  }
  .md\:-end-50 {
    inset-inline-end: -12.5rem;
  }
  .md\:p-52 {
    padding: 13rem !important;
  }
  .md\:px-52 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }
  .md\:py-52 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .md\:pl-52 {
    padding-left: 13rem !important;
  }
  .md\:pr-52 {
    padding-right: 13rem !important;
  }
  .md\:pt-52 {
    padding-top: 13rem !important;
  }
  .md\:pb-52 {
    padding-bottom: 13rem !important;
  }
  .md\:mx-52 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }
  .md\:my-52 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .md\:ml-52 {
    margin-left: 13rem !important;
  }
  .md\:mr-52 {
    margin-right: 13rem !important;
  }
  .md\:mt-52 {
    margin-top: 13rem !important;
  }
  .md\:mb-52 {
    margin-bottom: 13rem !important;
  }
  .md\:m-52 {
    margin-bottom: 13rem !important;
    margin-top: 13rem !important;
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .md\:gap-52 {
    gap: 13rem;
  }
  .md\:gap-x-52 {
    -moz-column-gap: 13rem;
         column-gap: 13rem;
  }
  .md\:gap-y-52 {
    row-gap: 13rem;
  }
  .md\:text-52 {
    font-size: 13rem !important;
  }
  .md\:h-52 {
    height: 13rem !important;
  }
  .md\:w-52 {
    width: 13rem !important;
  }
  .md\:top-52 {
    top: 13rem;
  }
  .md\:-top-52 {
    top: -13rem;
  }
  .md\:bottom-52 {
    bottom: 13rem;
  }
  .md\:-bottom-52 {
    bottom: -13rem;
  }
  .md\:left-52 {
    left: 13rem;
  }
  .md\:-left-52 {
    left: -13rem;
  }
  .md\:right-52 {
    right: 13rem;
  }
  .md\:-right-52 {
    right: -13rem;
  }
  .md\:start-52 {
    inset-inline-start: 13rem;
  }
  .md\:-start-52 {
    inset-inline-start: -13rem;
  }
  .md\:end-52 {
    inset-inline-end: 13rem;
  }
  .md\:-end-52 {
    inset-inline-end: -13rem;
  }
  .md\:p-56 {
    padding: 14rem !important;
  }
  .md\:px-56 {
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }
  .md\:py-56 {
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }
  .md\:pl-56 {
    padding-left: 14rem !important;
  }
  .md\:pr-56 {
    padding-right: 14rem !important;
  }
  .md\:pt-56 {
    padding-top: 14rem !important;
  }
  .md\:pb-56 {
    padding-bottom: 14rem !important;
  }
  .md\:mx-56 {
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }
  .md\:my-56 {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }
  .md\:ml-56 {
    margin-left: 14rem !important;
  }
  .md\:mr-56 {
    margin-right: 14rem !important;
  }
  .md\:mt-56 {
    margin-top: 14rem !important;
  }
  .md\:mb-56 {
    margin-bottom: 14rem !important;
  }
  .md\:m-56 {
    margin-bottom: 14rem !important;
    margin-top: 14rem !important;
    margin-right: 14rem !important;
    margin-left: 14rem !important;
  }
  .md\:gap-56 {
    gap: 14rem;
  }
  .md\:gap-x-56 {
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }
  .md\:gap-y-56 {
    row-gap: 14rem;
  }
  .md\:text-56 {
    font-size: 14rem !important;
  }
  .md\:h-56 {
    height: 14rem !important;
  }
  .md\:w-56 {
    width: 14rem !important;
  }
  .md\:top-56 {
    top: 14rem;
  }
  .md\:-top-56 {
    top: -14rem;
  }
  .md\:bottom-56 {
    bottom: 14rem;
  }
  .md\:-bottom-56 {
    bottom: -14rem;
  }
  .md\:left-56 {
    left: 14rem;
  }
  .md\:-left-56 {
    left: -14rem;
  }
  .md\:right-56 {
    right: 14rem;
  }
  .md\:-right-56 {
    right: -14rem;
  }
  .md\:start-56 {
    inset-inline-start: 14rem;
  }
  .md\:-start-56 {
    inset-inline-start: -14rem;
  }
  .md\:end-56 {
    inset-inline-end: 14rem;
  }
  .md\:-end-56 {
    inset-inline-end: -14rem;
  }
  .md\:p-60 {
    padding: 15rem !important;
  }
  .md\:px-60 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }
  .md\:py-60 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .md\:pl-60 {
    padding-left: 15rem !important;
  }
  .md\:pr-60 {
    padding-right: 15rem !important;
  }
  .md\:pt-60 {
    padding-top: 15rem !important;
  }
  .md\:pb-60 {
    padding-bottom: 15rem !important;
  }
  .md\:mx-60 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }
  .md\:my-60 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .md\:ml-60 {
    margin-left: 15rem !important;
  }
  .md\:mr-60 {
    margin-right: 15rem !important;
  }
  .md\:mt-60 {
    margin-top: 15rem !important;
  }
  .md\:mb-60 {
    margin-bottom: 15rem !important;
  }
  .md\:m-60 {
    margin-bottom: 15rem !important;
    margin-top: 15rem !important;
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .md\:gap-60 {
    gap: 15rem;
  }
  .md\:gap-x-60 {
    -moz-column-gap: 15rem;
         column-gap: 15rem;
  }
  .md\:gap-y-60 {
    row-gap: 15rem;
  }
  .md\:text-60 {
    font-size: 15rem !important;
  }
  .md\:h-60 {
    height: 15rem !important;
  }
  .md\:w-60 {
    width: 15rem !important;
  }
  .md\:top-60 {
    top: 15rem;
  }
  .md\:-top-60 {
    top: -15rem;
  }
  .md\:bottom-60 {
    bottom: 15rem;
  }
  .md\:-bottom-60 {
    bottom: -15rem;
  }
  .md\:left-60 {
    left: 15rem;
  }
  .md\:-left-60 {
    left: -15rem;
  }
  .md\:right-60 {
    right: 15rem;
  }
  .md\:-right-60 {
    right: -15rem;
  }
  .md\:start-60 {
    inset-inline-start: 15rem;
  }
  .md\:-start-60 {
    inset-inline-start: -15rem;
  }
  .md\:end-60 {
    inset-inline-end: 15rem;
  }
  .md\:-end-60 {
    inset-inline-end: -15rem;
  }
  .md\:p-64 {
    padding: 16rem !important;
  }
  .md\:px-64 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }
  .md\:py-64 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }
  .md\:pl-64 {
    padding-left: 16rem !important;
  }
  .md\:pr-64 {
    padding-right: 16rem !important;
  }
  .md\:pt-64 {
    padding-top: 16rem !important;
  }
  .md\:pb-64 {
    padding-bottom: 16rem !important;
  }
  .md\:mx-64 {
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }
  .md\:my-64 {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }
  .md\:ml-64 {
    margin-left: 16rem !important;
  }
  .md\:mr-64 {
    margin-right: 16rem !important;
  }
  .md\:mt-64 {
    margin-top: 16rem !important;
  }
  .md\:mb-64 {
    margin-bottom: 16rem !important;
  }
  .md\:m-64 {
    margin-bottom: 16rem !important;
    margin-top: 16rem !important;
    margin-right: 16rem !important;
    margin-left: 16rem !important;
  }
  .md\:gap-64 {
    gap: 16rem;
  }
  .md\:gap-x-64 {
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }
  .md\:gap-y-64 {
    row-gap: 16rem;
  }
  .md\:text-64 {
    font-size: 16rem !important;
  }
  .md\:h-64 {
    height: 16rem !important;
  }
  .md\:w-64 {
    width: 16rem !important;
  }
  .md\:top-64 {
    top: 16rem;
  }
  .md\:-top-64 {
    top: -16rem;
  }
  .md\:bottom-64 {
    bottom: 16rem;
  }
  .md\:-bottom-64 {
    bottom: -16rem;
  }
  .md\:left-64 {
    left: 16rem;
  }
  .md\:-left-64 {
    left: -16rem;
  }
  .md\:right-64 {
    right: 16rem;
  }
  .md\:-right-64 {
    right: -16rem;
  }
  .md\:start-64 {
    inset-inline-start: 16rem;
  }
  .md\:-start-64 {
    inset-inline-start: -16rem;
  }
  .md\:end-64 {
    inset-inline-end: 16rem;
  }
  .md\:-end-64 {
    inset-inline-end: -16rem;
  }
  .md\:p-66 {
    padding: 17rem !important;
  }
  .md\:px-66 {
    padding-left: 17rem !important;
    padding-right: 17rem !important;
  }
  .md\:py-66 {
    padding-top: 17rem !important;
    padding-bottom: 17rem !important;
  }
  .md\:pl-66 {
    padding-left: 17rem !important;
  }
  .md\:pr-66 {
    padding-right: 17rem !important;
  }
  .md\:pt-66 {
    padding-top: 17rem !important;
  }
  .md\:pb-66 {
    padding-bottom: 17rem !important;
  }
  .md\:mx-66 {
    margin-left: 17rem !important;
    margin-right: 17rem !important;
  }
  .md\:my-66 {
    margin-top: 17rem !important;
    margin-bottom: 17rem !important;
  }
  .md\:ml-66 {
    margin-left: 17rem !important;
  }
  .md\:mr-66 {
    margin-right: 17rem !important;
  }
  .md\:mt-66 {
    margin-top: 17rem !important;
  }
  .md\:mb-66 {
    margin-bottom: 17rem !important;
  }
  .md\:m-66 {
    margin-bottom: 17rem !important;
    margin-top: 17rem !important;
    margin-right: 17rem !important;
    margin-left: 17rem !important;
  }
  .md\:gap-66 {
    gap: 17rem;
  }
  .md\:gap-x-66 {
    -moz-column-gap: 17rem;
         column-gap: 17rem;
  }
  .md\:gap-y-66 {
    row-gap: 17rem;
  }
  .md\:text-66 {
    font-size: 17rem !important;
  }
  .md\:h-66 {
    height: 17rem !important;
  }
  .md\:w-66 {
    width: 17rem !important;
  }
  .md\:top-66 {
    top: 17rem;
  }
  .md\:-top-66 {
    top: -17rem;
  }
  .md\:bottom-66 {
    bottom: 17rem;
  }
  .md\:-bottom-66 {
    bottom: -17rem;
  }
  .md\:left-66 {
    left: 17rem;
  }
  .md\:-left-66 {
    left: -17rem;
  }
  .md\:right-66 {
    right: 17rem;
  }
  .md\:-right-66 {
    right: -17rem;
  }
  .md\:start-66 {
    inset-inline-start: 17rem;
  }
  .md\:-start-66 {
    inset-inline-start: -17rem;
  }
  .md\:end-66 {
    inset-inline-end: 17rem;
  }
  .md\:-end-66 {
    inset-inline-end: -17rem;
  }
  .md\:p-72 {
    padding: 18rem !important;
  }
  .md\:px-72 {
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }
  .md\:py-72 {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }
  .md\:pl-72 {
    padding-left: 18rem !important;
  }
  .md\:pr-72 {
    padding-right: 18rem !important;
  }
  .md\:pt-72 {
    padding-top: 18rem !important;
  }
  .md\:pb-72 {
    padding-bottom: 18rem !important;
  }
  .md\:mx-72 {
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }
  .md\:my-72 {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }
  .md\:ml-72 {
    margin-left: 18rem !important;
  }
  .md\:mr-72 {
    margin-right: 18rem !important;
  }
  .md\:mt-72 {
    margin-top: 18rem !important;
  }
  .md\:mb-72 {
    margin-bottom: 18rem !important;
  }
  .md\:m-72 {
    margin-bottom: 18rem !important;
    margin-top: 18rem !important;
    margin-right: 18rem !important;
    margin-left: 18rem !important;
  }
  .md\:gap-72 {
    gap: 18rem;
  }
  .md\:gap-x-72 {
    -moz-column-gap: 18rem;
         column-gap: 18rem;
  }
  .md\:gap-y-72 {
    row-gap: 18rem;
  }
  .md\:text-72 {
    font-size: 18rem !important;
  }
  .md\:h-72 {
    height: 18rem !important;
  }
  .md\:w-72 {
    width: 18rem !important;
  }
  .md\:top-72 {
    top: 18rem;
  }
  .md\:-top-72 {
    top: -18rem;
  }
  .md\:bottom-72 {
    bottom: 18rem;
  }
  .md\:-bottom-72 {
    bottom: -18rem;
  }
  .md\:left-72 {
    left: 18rem;
  }
  .md\:-left-72 {
    left: -18rem;
  }
  .md\:right-72 {
    right: 18rem;
  }
  .md\:-right-72 {
    right: -18rem;
  }
  .md\:start-72 {
    inset-inline-start: 18rem;
  }
  .md\:-start-72 {
    inset-inline-start: -18rem;
  }
  .md\:end-72 {
    inset-inline-end: 18rem;
  }
  .md\:-end-72 {
    inset-inline-end: -18rem;
  }
  .md\:p-80 {
    padding: 20rem !important;
  }
  .md\:px-80 {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }
  .md\:py-80 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .md\:pl-80 {
    padding-left: 20rem !important;
  }
  .md\:pr-80 {
    padding-right: 20rem !important;
  }
  .md\:pt-80 {
    padding-top: 20rem !important;
  }
  .md\:pb-80 {
    padding-bottom: 20rem !important;
  }
  .md\:mx-80 {
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }
  .md\:my-80 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .md\:ml-80 {
    margin-left: 20rem !important;
  }
  .md\:mr-80 {
    margin-right: 20rem !important;
  }
  .md\:mt-80 {
    margin-top: 20rem !important;
  }
  .md\:mb-80 {
    margin-bottom: 20rem !important;
  }
  .md\:m-80 {
    margin-bottom: 20rem !important;
    margin-top: 20rem !important;
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .md\:gap-80 {
    gap: 20rem;
  }
  .md\:gap-x-80 {
    -moz-column-gap: 20rem;
         column-gap: 20rem;
  }
  .md\:gap-y-80 {
    row-gap: 20rem;
  }
  .md\:text-80 {
    font-size: 20rem !important;
  }
  .md\:h-80 {
    height: 20rem !important;
  }
  .md\:w-80 {
    width: 20rem !important;
  }
  .md\:top-80 {
    top: 20rem;
  }
  .md\:-top-80 {
    top: -20rem;
  }
  .md\:bottom-80 {
    bottom: 20rem;
  }
  .md\:-bottom-80 {
    bottom: -20rem;
  }
  .md\:left-80 {
    left: 20rem;
  }
  .md\:-left-80 {
    left: -20rem;
  }
  .md\:right-80 {
    right: 20rem;
  }
  .md\:-right-80 {
    right: -20rem;
  }
  .md\:start-80 {
    inset-inline-start: 20rem;
  }
  .md\:-start-80 {
    inset-inline-start: -20rem;
  }
  .md\:end-80 {
    inset-inline-end: 20rem;
  }
  .md\:-end-80 {
    inset-inline-end: -20rem;
  }
  .md\:p-96 {
    padding: 24rem !important;
  }
  .md\:px-96 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }
  .md\:py-96 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }
  .md\:pl-96 {
    padding-left: 24rem !important;
  }
  .md\:pr-96 {
    padding-right: 24rem !important;
  }
  .md\:pt-96 {
    padding-top: 24rem !important;
  }
  .md\:pb-96 {
    padding-bottom: 24rem !important;
  }
  .md\:mx-96 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }
  .md\:my-96 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }
  .md\:ml-96 {
    margin-left: 24rem !important;
  }
  .md\:mr-96 {
    margin-right: 24rem !important;
  }
  .md\:mt-96 {
    margin-top: 24rem !important;
  }
  .md\:mb-96 {
    margin-bottom: 24rem !important;
  }
  .md\:m-96 {
    margin-bottom: 24rem !important;
    margin-top: 24rem !important;
    margin-right: 24rem !important;
    margin-left: 24rem !important;
  }
  .md\:gap-96 {
    gap: 24rem;
  }
  .md\:gap-x-96 {
    -moz-column-gap: 24rem;
         column-gap: 24rem;
  }
  .md\:gap-y-96 {
    row-gap: 24rem;
  }
  .md\:text-96 {
    font-size: 24rem !important;
  }
  .md\:h-96 {
    height: 24rem !important;
  }
  .md\:w-96 {
    width: 24rem !important;
  }
  .md\:top-96 {
    top: 24rem;
  }
  .md\:-top-96 {
    top: -24rem;
  }
  .md\:bottom-96 {
    bottom: 24rem;
  }
  .md\:-bottom-96 {
    bottom: -24rem;
  }
  .md\:left-96 {
    left: 24rem;
  }
  .md\:-left-96 {
    left: -24rem;
  }
  .md\:right-96 {
    right: 24rem;
  }
  .md\:-right-96 {
    right: -24rem;
  }
  .md\:start-96 {
    inset-inline-start: 24rem;
  }
  .md\:-start-96 {
    inset-inline-start: -24rem;
  }
  .md\:end-96 {
    inset-inline-end: 24rem;
  }
  .md\:-end-96 {
    inset-inline-end: -24rem;
  }
  .md\:h-10-percent {
    height: 10% !important;
  }
  .md\:w-10-percent {
    width: 10% !important;
  }
  .md\:top-10-percent {
    top: 10% !important;
  }
  .md\:-top-10-percent {
    top: -10% !important;
  }
  .md\:bottom-10-percent {
    bottom: 10% !important;
  }
  .md\:-bottom-10-percent {
    bottom: -10% !important;
  }
  .md\:left-10-percent {
    left: 10% !important;
  }
  .md\:-left-10-percent {
    left: -10% !important;
  }
  .md\:right-10-percent {
    right: 10% !important;
  }
  .md\:-right-10-percent {
    right: -10% !important;
  }
  .md\:h-15-percent {
    height: 15% !important;
  }
  .md\:w-15-percent {
    width: 15% !important;
  }
  .md\:top-15-percent {
    top: 15% !important;
  }
  .md\:-top-15-percent {
    top: -15% !important;
  }
  .md\:bottom-15-percent {
    bottom: 15% !important;
  }
  .md\:-bottom-15-percent {
    bottom: -15% !important;
  }
  .md\:left-15-percent {
    left: 15% !important;
  }
  .md\:-left-15-percent {
    left: -15% !important;
  }
  .md\:right-15-percent {
    right: 15% !important;
  }
  .md\:-right-15-percent {
    right: -15% !important;
  }
  .md\:h-20-percent {
    height: 20% !important;
  }
  .md\:w-20-percent {
    width: 20% !important;
  }
  .md\:top-20-percent {
    top: 20% !important;
  }
  .md\:-top-20-percent {
    top: -20% !important;
  }
  .md\:bottom-20-percent {
    bottom: 20% !important;
  }
  .md\:-bottom-20-percent {
    bottom: -20% !important;
  }
  .md\:left-20-percent {
    left: 20% !important;
  }
  .md\:-left-20-percent {
    left: -20% !important;
  }
  .md\:right-20-percent {
    right: 20% !important;
  }
  .md\:-right-20-percent {
    right: -20% !important;
  }
  .md\:h-25-percent {
    height: 25% !important;
  }
  .md\:w-25-percent {
    width: 25% !important;
  }
  .md\:top-25-percent {
    top: 25% !important;
  }
  .md\:-top-25-percent {
    top: -25% !important;
  }
  .md\:bottom-25-percent {
    bottom: 25% !important;
  }
  .md\:-bottom-25-percent {
    bottom: -25% !important;
  }
  .md\:left-25-percent {
    left: 25% !important;
  }
  .md\:-left-25-percent {
    left: -25% !important;
  }
  .md\:right-25-percent {
    right: 25% !important;
  }
  .md\:-right-25-percent {
    right: -25% !important;
  }
  .md\:h-30-percent {
    height: 30% !important;
  }
  .md\:w-30-percent {
    width: 30% !important;
  }
  .md\:top-30-percent {
    top: 30% !important;
  }
  .md\:-top-30-percent {
    top: -30% !important;
  }
  .md\:bottom-30-percent {
    bottom: 30% !important;
  }
  .md\:-bottom-30-percent {
    bottom: -30% !important;
  }
  .md\:left-30-percent {
    left: 30% !important;
  }
  .md\:-left-30-percent {
    left: -30% !important;
  }
  .md\:right-30-percent {
    right: 30% !important;
  }
  .md\:-right-30-percent {
    right: -30% !important;
  }
  .md\:h-35-percent {
    height: 35% !important;
  }
  .md\:w-35-percent {
    width: 35% !important;
  }
  .md\:top-35-percent {
    top: 35% !important;
  }
  .md\:-top-35-percent {
    top: -35% !important;
  }
  .md\:bottom-35-percent {
    bottom: 35% !important;
  }
  .md\:-bottom-35-percent {
    bottom: -35% !important;
  }
  .md\:left-35-percent {
    left: 35% !important;
  }
  .md\:-left-35-percent {
    left: -35% !important;
  }
  .md\:right-35-percent {
    right: 35% !important;
  }
  .md\:-right-35-percent {
    right: -35% !important;
  }
  .md\:h-40-percent {
    height: 40% !important;
  }
  .md\:w-40-percent {
    width: 40% !important;
  }
  .md\:top-40-percent {
    top: 40% !important;
  }
  .md\:-top-40-percent {
    top: -40% !important;
  }
  .md\:bottom-40-percent {
    bottom: 40% !important;
  }
  .md\:-bottom-40-percent {
    bottom: -40% !important;
  }
  .md\:left-40-percent {
    left: 40% !important;
  }
  .md\:-left-40-percent {
    left: -40% !important;
  }
  .md\:right-40-percent {
    right: 40% !important;
  }
  .md\:-right-40-percent {
    right: -40% !important;
  }
  .md\:h-45-percent {
    height: 45% !important;
  }
  .md\:w-45-percent {
    width: 45% !important;
  }
  .md\:top-45-percent {
    top: 45% !important;
  }
  .md\:-top-45-percent {
    top: -45% !important;
  }
  .md\:bottom-45-percent {
    bottom: 45% !important;
  }
  .md\:-bottom-45-percent {
    bottom: -45% !important;
  }
  .md\:left-45-percent {
    left: 45% !important;
  }
  .md\:-left-45-percent {
    left: -45% !important;
  }
  .md\:right-45-percent {
    right: 45% !important;
  }
  .md\:-right-45-percent {
    right: -45% !important;
  }
  .md\:h-50-percent {
    height: 50% !important;
  }
  .md\:w-50-percent {
    width: 50% !important;
  }
  .md\:top-50-percent {
    top: 50% !important;
  }
  .md\:-top-50-percent {
    top: -50% !important;
  }
  .md\:bottom-50-percent {
    bottom: 50% !important;
  }
  .md\:-bottom-50-percent {
    bottom: -50% !important;
  }
  .md\:left-50-percent {
    left: 50% !important;
  }
  .md\:-left-50-percent {
    left: -50% !important;
  }
  .md\:right-50-percent {
    right: 50% !important;
  }
  .md\:-right-50-percent {
    right: -50% !important;
  }
  .md\:h-55-percent {
    height: 55% !important;
  }
  .md\:w-55-percent {
    width: 55% !important;
  }
  .md\:top-55-percent {
    top: 55% !important;
  }
  .md\:-top-55-percent {
    top: -55% !important;
  }
  .md\:bottom-55-percent {
    bottom: 55% !important;
  }
  .md\:-bottom-55-percent {
    bottom: -55% !important;
  }
  .md\:left-55-percent {
    left: 55% !important;
  }
  .md\:-left-55-percent {
    left: -55% !important;
  }
  .md\:right-55-percent {
    right: 55% !important;
  }
  .md\:-right-55-percent {
    right: -55% !important;
  }
  .md\:h-60-percent {
    height: 60% !important;
  }
  .md\:w-60-percent {
    width: 60% !important;
  }
  .md\:top-60-percent {
    top: 60% !important;
  }
  .md\:-top-60-percent {
    top: -60% !important;
  }
  .md\:bottom-60-percent {
    bottom: 60% !important;
  }
  .md\:-bottom-60-percent {
    bottom: -60% !important;
  }
  .md\:left-60-percent {
    left: 60% !important;
  }
  .md\:-left-60-percent {
    left: -60% !important;
  }
  .md\:right-60-percent {
    right: 60% !important;
  }
  .md\:-right-60-percent {
    right: -60% !important;
  }
  .md\:h-65-percent {
    height: 65% !important;
  }
  .md\:w-65-percent {
    width: 65% !important;
  }
  .md\:top-65-percent {
    top: 65% !important;
  }
  .md\:-top-65-percent {
    top: -65% !important;
  }
  .md\:bottom-65-percent {
    bottom: 65% !important;
  }
  .md\:-bottom-65-percent {
    bottom: -65% !important;
  }
  .md\:left-65-percent {
    left: 65% !important;
  }
  .md\:-left-65-percent {
    left: -65% !important;
  }
  .md\:right-65-percent {
    right: 65% !important;
  }
  .md\:-right-65-percent {
    right: -65% !important;
  }
  .md\:h-70-percent {
    height: 70% !important;
  }
  .md\:w-70-percent {
    width: 70% !important;
  }
  .md\:top-70-percent {
    top: 70% !important;
  }
  .md\:-top-70-percent {
    top: -70% !important;
  }
  .md\:bottom-70-percent {
    bottom: 70% !important;
  }
  .md\:-bottom-70-percent {
    bottom: -70% !important;
  }
  .md\:left-70-percent {
    left: 70% !important;
  }
  .md\:-left-70-percent {
    left: -70% !important;
  }
  .md\:right-70-percent {
    right: 70% !important;
  }
  .md\:-right-70-percent {
    right: -70% !important;
  }
  .md\:h-75-percent {
    height: 75% !important;
  }
  .md\:w-75-percent {
    width: 75% !important;
  }
  .md\:top-75-percent {
    top: 75% !important;
  }
  .md\:-top-75-percent {
    top: -75% !important;
  }
  .md\:bottom-75-percent {
    bottom: 75% !important;
  }
  .md\:-bottom-75-percent {
    bottom: -75% !important;
  }
  .md\:left-75-percent {
    left: 75% !important;
  }
  .md\:-left-75-percent {
    left: -75% !important;
  }
  .md\:right-75-percent {
    right: 75% !important;
  }
  .md\:-right-75-percent {
    right: -75% !important;
  }
  .md\:h-80-percent {
    height: 80% !important;
  }
  .md\:w-80-percent {
    width: 80% !important;
  }
  .md\:top-80-percent {
    top: 80% !important;
  }
  .md\:-top-80-percent {
    top: -80% !important;
  }
  .md\:bottom-80-percent {
    bottom: 80% !important;
  }
  .md\:-bottom-80-percent {
    bottom: -80% !important;
  }
  .md\:left-80-percent {
    left: 80% !important;
  }
  .md\:-left-80-percent {
    left: -80% !important;
  }
  .md\:right-80-percent {
    right: 80% !important;
  }
  .md\:-right-80-percent {
    right: -80% !important;
  }
  .md\:h-85-percent {
    height: 85% !important;
  }
  .md\:w-85-percent {
    width: 85% !important;
  }
  .md\:top-85-percent {
    top: 85% !important;
  }
  .md\:-top-85-percent {
    top: -85% !important;
  }
  .md\:bottom-85-percent {
    bottom: 85% !important;
  }
  .md\:-bottom-85-percent {
    bottom: -85% !important;
  }
  .md\:left-85-percent {
    left: 85% !important;
  }
  .md\:-left-85-percent {
    left: -85% !important;
  }
  .md\:right-85-percent {
    right: 85% !important;
  }
  .md\:-right-85-percent {
    right: -85% !important;
  }
  .md\:h-90-percent {
    height: 90% !important;
  }
  .md\:w-90-percent {
    width: 90% !important;
  }
  .md\:top-90-percent {
    top: 90% !important;
  }
  .md\:-top-90-percent {
    top: -90% !important;
  }
  .md\:bottom-90-percent {
    bottom: 90% !important;
  }
  .md\:-bottom-90-percent {
    bottom: -90% !important;
  }
  .md\:left-90-percent {
    left: 90% !important;
  }
  .md\:-left-90-percent {
    left: -90% !important;
  }
  .md\:right-90-percent {
    right: 90% !important;
  }
  .md\:-right-90-percent {
    right: -90% !important;
  }
  .md\:h-95-percent {
    height: 95% !important;
  }
  .md\:w-95-percent {
    width: 95% !important;
  }
  .md\:top-95-percent {
    top: 95% !important;
  }
  .md\:-top-95-percent {
    top: -95% !important;
  }
  .md\:bottom-95-percent {
    bottom: 95% !important;
  }
  .md\:-bottom-95-percent {
    bottom: -95% !important;
  }
  .md\:left-95-percent {
    left: 95% !important;
  }
  .md\:-left-95-percent {
    left: -95% !important;
  }
  .md\:right-95-percent {
    right: 95% !important;
  }
  .md\:-right-95-percent {
    right: -95% !important;
  }
  .md\:h-100-percent {
    height: 100% !important;
  }
  .md\:w-100-percent {
    width: 100% !important;
  }
  .md\:top-100-percent {
    top: 100% !important;
  }
  .md\:-top-100-percent {
    top: -100% !important;
  }
  .md\:bottom-100-percent {
    bottom: 100% !important;
  }
  .md\:-bottom-100-percent {
    bottom: -100% !important;
  }
  .md\:left-100-percent {
    left: 100% !important;
  }
  .md\:-left-100-percent {
    left: -100% !important;
  }
  .md\:right-100-percent {
    right: 100% !important;
  }
  .md\:-right-100-percent {
    right: -100% !important;
  }
  .md\:text-center {
    text-align: center;
  }
  .bg-top-section {
    background-image: url("../images/top-section-bg.png");
    background-size: cover;
    background-position: 70% 0%;
  }
  .bg-footer {
    background-image: url("../images/footer-bg.jpg");
    background-size: cover;
    background-position: center;
  }
  .md\:line-height-lg {
    line-height: 3rem;
  }
  .md\:line-height-md {
    line-height: 2rem;
  }
  .md\:line-height-sm {
    line-height: 1rem;
  }
  .md\:display {
    display: block !important;
  }
  .md\:display-flex {
    display: flex !important;
  }
  .md\:display-grid {
    display: grid !important;
  }
  .md\:hidden {
    display: none !important;
  }
  .md\:absolute {
    position: absolute !important;
  }
  .md\:relative {
    position: relative !important;
  }
  .md\:justify-between {
    justify-content: space-between !important;
  }
  .md\:justify-end {
    justify-content: end !important;
  }
  .md\:justify-center {
    justify-content: center !important;
  }
  .md\:items-end {
    align-items: end !important;
  }
  .md\:min-h-100-vh {
    min-height: 100vh;
  }
  .md\:max-h-100-vh {
    max-height: 100vh;
  }
}
@media (min-width: 1350px) and (max-width: 1600px) {
  .lg\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .lg\:col-span-1 {
    grid-column: span 1/span 1;
  }
  .lg\:col-start-1 {
    grid-column-start: 1;
  }
  .lg\:col-end-1 {
    grid-column-end: 1;
  }
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .lg\:col-span-2 {
    grid-column: span 2/span 2;
  }
  .lg\:col-start-2 {
    grid-column-start: 2;
  }
  .lg\:col-end-2 {
    grid-column-end: 2;
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .lg\:col-span-3 {
    grid-column: span 3/span 3;
  }
  .lg\:col-start-3 {
    grid-column-start: 3;
  }
  .lg\:col-end-3 {
    grid-column-end: 3;
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .lg\:col-span-4 {
    grid-column: span 4/span 4;
  }
  .lg\:col-start-4 {
    grid-column-start: 4;
  }
  .lg\:col-end-4 {
    grid-column-end: 4;
  }
  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .lg\:col-span-5 {
    grid-column: span 5/span 5;
  }
  .lg\:col-start-5 {
    grid-column-start: 5;
  }
  .lg\:col-end-5 {
    grid-column-end: 5;
  }
  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .lg\:col-span-6 {
    grid-column: span 6/span 6;
  }
  .lg\:col-start-6 {
    grid-column-start: 6;
  }
  .lg\:col-end-6 {
    grid-column-end: 6;
  }
  .lg\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
  .lg\:col-span-7 {
    grid-column: span 7/span 7;
  }
  .lg\:col-start-7 {
    grid-column-start: 7;
  }
  .lg\:col-end-7 {
    grid-column-end: 7;
  }
  .lg\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
  .lg\:col-span-8 {
    grid-column: span 8/span 8;
  }
  .lg\:col-start-8 {
    grid-column-start: 8;
  }
  .lg\:col-end-8 {
    grid-column-end: 8;
  }
  .lg\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }
  .lg\:col-span-9 {
    grid-column: span 9/span 9;
  }
  .lg\:col-start-9 {
    grid-column-start: 9;
  }
  .lg\:col-end-9 {
    grid-column-end: 9;
  }
  .lg\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }
  .lg\:col-span-10 {
    grid-column: span 10/span 10;
  }
  .lg\:col-start-10 {
    grid-column-start: 10;
  }
  .lg\:col-end-10 {
    grid-column-end: 10;
  }
  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }
  .lg\:col-span-12 {
    grid-column: span 12/span 12;
  }
  .lg\:col-start-12 {
    grid-column-start: 12;
  }
  .lg\:col-end-12 {
    grid-column-end: 12;
  }
  .lg\:p-0 {
    padding: 0px !important;
  }
  .lg\:px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .lg\:py-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .lg\:pl-0 {
    padding-left: 0px !important;
  }
  .lg\:pr-0 {
    padding-right: 0px !important;
  }
  .lg\:pt-0 {
    padding-top: 0px !important;
  }
  .lg\:pb-0 {
    padding-bottom: 0px !important;
  }
  .lg\:mx-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .lg\:my-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .lg\:ml-0 {
    margin-left: 0px !important;
  }
  .lg\:mr-0 {
    margin-right: 0px !important;
  }
  .lg\:mt-0 {
    margin-top: 0px !important;
  }
  .lg\:mb-0 {
    margin-bottom: 0px !important;
  }
  .lg\:m-0 {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .lg\:gap-0 {
    gap: 0px;
  }
  .lg\:gap-x-0 {
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .lg\:gap-y-0 {
    row-gap: 0px;
  }
  .lg\:text-0 {
    font-size: 0px !important;
  }
  .lg\:h-0 {
    height: 0px !important;
  }
  .lg\:w-0 {
    width: 0px !important;
  }
  .lg\:top-0 {
    top: 0px;
  }
  .lg\:-top-0 {
    top: 0px;
  }
  .lg\:bottom-0 {
    bottom: 0px;
  }
  .lg\:-bottom-0 {
    bottom: 0px;
  }
  .lg\:left-0 {
    left: 0px;
  }
  .lg\:-left-0 {
    left: 0px;
  }
  .lg\:right-0 {
    right: 0px;
  }
  .lg\:-right-0 {
    right: 0px;
  }
  .lg\:start-0 {
    inset-inline-start: 0px;
  }
  .lg\:-start-0 {
    inset-inline-start: 0px;
  }
  .lg\:end-0 {
    inset-inline-end: 0px;
  }
  .lg\:-end-0 {
    inset-inline-end: 0px;
  }
  .lg\:p-1 {
    padding: 0.25rem !important;
  }
  .lg\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .lg\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .lg\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .lg\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .lg\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .lg\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .lg\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .lg\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .lg\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .lg\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .lg\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .lg\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .lg\:m-1 {
    margin-bottom: 0.25rem !important;
    margin-top: 0.25rem !important;
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .lg\:gap-1 {
    gap: 0.25rem;
  }
  .lg\:gap-x-1 {
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }
  .lg\:gap-y-1 {
    row-gap: 0.25rem;
  }
  .lg\:text-1 {
    font-size: 0.25rem !important;
  }
  .lg\:h-1 {
    height: 0.25rem !important;
  }
  .lg\:w-1 {
    width: 0.25rem !important;
  }
  .lg\:top-1 {
    top: 0.25rem;
  }
  .lg\:-top-1 {
    top: -0.25rem;
  }
  .lg\:bottom-1 {
    bottom: 0.25rem;
  }
  .lg\:-bottom-1 {
    bottom: -0.25rem;
  }
  .lg\:left-1 {
    left: 0.25rem;
  }
  .lg\:-left-1 {
    left: -0.25rem;
  }
  .lg\:right-1 {
    right: 0.25rem;
  }
  .lg\:-right-1 {
    right: -0.25rem;
  }
  .lg\:start-1 {
    inset-inline-start: 0.25rem;
  }
  .lg\:-start-1 {
    inset-inline-start: -0.25rem;
  }
  .lg\:end-1 {
    inset-inline-end: 0.25rem;
  }
  .lg\:-end-1 {
    inset-inline-end: -0.25rem;
  }
  .lg\:p-2 {
    padding: 0.5rem !important;
  }
  .lg\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .lg\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .lg\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .lg\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .lg\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .lg\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .lg\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .lg\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .lg\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .lg\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .lg\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .lg\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .lg\:m-2 {
    margin-bottom: 0.5rem !important;
    margin-top: 0.5rem !important;
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .lg\:gap-2 {
    gap: 0.5rem;
  }
  .lg\:gap-x-2 {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .lg\:gap-y-2 {
    row-gap: 0.5rem;
  }
  .lg\:text-2 {
    font-size: 0.5rem !important;
  }
  .lg\:h-2 {
    height: 0.5rem !important;
  }
  .lg\:w-2 {
    width: 0.5rem !important;
  }
  .lg\:top-2 {
    top: 0.5rem;
  }
  .lg\:-top-2 {
    top: -0.5rem;
  }
  .lg\:bottom-2 {
    bottom: 0.5rem;
  }
  .lg\:-bottom-2 {
    bottom: -0.5rem;
  }
  .lg\:left-2 {
    left: 0.5rem;
  }
  .lg\:-left-2 {
    left: -0.5rem;
  }
  .lg\:right-2 {
    right: 0.5rem;
  }
  .lg\:-right-2 {
    right: -0.5rem;
  }
  .lg\:start-2 {
    inset-inline-start: 0.5rem;
  }
  .lg\:-start-2 {
    inset-inline-start: -0.5rem;
  }
  .lg\:end-2 {
    inset-inline-end: 0.5rem;
  }
  .lg\:-end-2 {
    inset-inline-end: -0.5rem;
  }
  .lg\:p-2-and-half {
    padding: 0.625rem !important;
  }
  .lg\:px-2-and-half {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
  .lg\:py-2-and-half {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
  .lg\:pl-2-and-half {
    padding-left: 0.625rem !important;
  }
  .lg\:pr-2-and-half {
    padding-right: 0.625rem !important;
  }
  .lg\:pt-2-and-half {
    padding-top: 0.625rem !important;
  }
  .lg\:pb-2-and-half {
    padding-bottom: 0.625rem !important;
  }
  .lg\:mx-2-and-half {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }
  .lg\:my-2-and-half {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
  .lg\:ml-2-and-half {
    margin-left: 0.625rem !important;
  }
  .lg\:mr-2-and-half {
    margin-right: 0.625rem !important;
  }
  .lg\:mt-2-and-half {
    margin-top: 0.625rem !important;
  }
  .lg\:mb-2-and-half {
    margin-bottom: 0.625rem !important;
  }
  .lg\:m-2-and-half {
    margin-bottom: 0.625rem !important;
    margin-top: 0.625rem !important;
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }
  .lg\:gap-2-and-half {
    gap: 0.625rem;
  }
  .lg\:gap-x-2-and-half {
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
  }
  .lg\:gap-y-2-and-half {
    row-gap: 0.625rem;
  }
  .lg\:text-2-and-half {
    font-size: 0.625rem !important;
  }
  .lg\:h-2-and-half {
    height: 0.625rem !important;
  }
  .lg\:w-2-and-half {
    width: 0.625rem !important;
  }
  .lg\:top-2-and-half {
    top: 0.625rem;
  }
  .lg\:-top-2-and-half {
    top: -0.625rem;
  }
  .lg\:bottom-2-and-half {
    bottom: 0.625rem;
  }
  .lg\:-bottom-2-and-half {
    bottom: -0.625rem;
  }
  .lg\:left-2-and-half {
    left: 0.625rem;
  }
  .lg\:-left-2-and-half {
    left: -0.625rem;
  }
  .lg\:right-2-and-half {
    right: 0.625rem;
  }
  .lg\:-right-2-and-half {
    right: -0.625rem;
  }
  .lg\:start-2-and-half {
    inset-inline-start: 0.625rem;
  }
  .lg\:-start-2-and-half {
    inset-inline-start: -0.625rem;
  }
  .lg\:end-2-and-half {
    inset-inline-end: 0.625rem;
  }
  .lg\:-end-2-and-half {
    inset-inline-end: -0.625rem;
  }
  .lg\:p-3 {
    padding: 0.75rem !important;
  }
  .lg\:px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .lg\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .lg\:pl-3 {
    padding-left: 0.75rem !important;
  }
  .lg\:pr-3 {
    padding-right: 0.75rem !important;
  }
  .lg\:pt-3 {
    padding-top: 0.75rem !important;
  }
  .lg\:pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .lg\:mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .lg\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .lg\:ml-3 {
    margin-left: 0.75rem !important;
  }
  .lg\:mr-3 {
    margin-right: 0.75rem !important;
  }
  .lg\:mt-3 {
    margin-top: 0.75rem !important;
  }
  .lg\:mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .lg\:m-3 {
    margin-bottom: 0.75rem !important;
    margin-top: 0.75rem !important;
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .lg\:gap-3 {
    gap: 0.75rem;
  }
  .lg\:gap-x-3 {
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }
  .lg\:gap-y-3 {
    row-gap: 0.75rem;
  }
  .lg\:text-3 {
    font-size: 0.75rem !important;
  }
  .lg\:h-3 {
    height: 0.75rem !important;
  }
  .lg\:w-3 {
    width: 0.75rem !important;
  }
  .lg\:top-3 {
    top: 0.75rem;
  }
  .lg\:-top-3 {
    top: -0.75rem;
  }
  .lg\:bottom-3 {
    bottom: 0.75rem;
  }
  .lg\:-bottom-3 {
    bottom: -0.75rem;
  }
  .lg\:left-3 {
    left: 0.75rem;
  }
  .lg\:-left-3 {
    left: -0.75rem;
  }
  .lg\:right-3 {
    right: 0.75rem;
  }
  .lg\:-right-3 {
    right: -0.75rem;
  }
  .lg\:start-3 {
    inset-inline-start: 0.75rem;
  }
  .lg\:-start-3 {
    inset-inline-start: -0.75rem;
  }
  .lg\:end-3 {
    inset-inline-end: 0.75rem;
  }
  .lg\:-end-3 {
    inset-inline-end: -0.75rem;
  }
  .lg\:p-4 {
    padding: 1rem !important;
  }
  .lg\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .lg\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .lg\:pl-4 {
    padding-left: 1rem !important;
  }
  .lg\:pr-4 {
    padding-right: 1rem !important;
  }
  .lg\:pt-4 {
    padding-top: 1rem !important;
  }
  .lg\:pb-4 {
    padding-bottom: 1rem !important;
  }
  .lg\:mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .lg\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .lg\:ml-4 {
    margin-left: 1rem !important;
  }
  .lg\:mr-4 {
    margin-right: 1rem !important;
  }
  .lg\:mt-4 {
    margin-top: 1rem !important;
  }
  .lg\:mb-4 {
    margin-bottom: 1rem !important;
  }
  .lg\:m-4 {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .lg\:gap-4 {
    gap: 1rem;
  }
  .lg\:gap-x-4 {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .lg\:gap-y-4 {
    row-gap: 1rem;
  }
  .lg\:text-4 {
    font-size: 1rem !important;
  }
  .lg\:h-4 {
    height: 1rem !important;
  }
  .lg\:w-4 {
    width: 1rem !important;
  }
  .lg\:top-4 {
    top: 1rem;
  }
  .lg\:-top-4 {
    top: -1rem;
  }
  .lg\:bottom-4 {
    bottom: 1rem;
  }
  .lg\:-bottom-4 {
    bottom: -1rem;
  }
  .lg\:left-4 {
    left: 1rem;
  }
  .lg\:-left-4 {
    left: -1rem;
  }
  .lg\:right-4 {
    right: 1rem;
  }
  .lg\:-right-4 {
    right: -1rem;
  }
  .lg\:start-4 {
    inset-inline-start: 1rem;
  }
  .lg\:-start-4 {
    inset-inline-start: -1rem;
  }
  .lg\:end-4 {
    inset-inline-end: 1rem;
  }
  .lg\:-end-4 {
    inset-inline-end: -1rem;
  }
  .lg\:p-4-and-half {
    padding: 1.075rem !important;
  }
  .lg\:px-4-and-half {
    padding-left: 1.075rem !important;
    padding-right: 1.075rem !important;
  }
  .lg\:py-4-and-half {
    padding-top: 1.075rem !important;
    padding-bottom: 1.075rem !important;
  }
  .lg\:pl-4-and-half {
    padding-left: 1.075rem !important;
  }
  .lg\:pr-4-and-half {
    padding-right: 1.075rem !important;
  }
  .lg\:pt-4-and-half {
    padding-top: 1.075rem !important;
  }
  .lg\:pb-4-and-half {
    padding-bottom: 1.075rem !important;
  }
  .lg\:mx-4-and-half {
    margin-left: 1.075rem !important;
    margin-right: 1.075rem !important;
  }
  .lg\:my-4-and-half {
    margin-top: 1.075rem !important;
    margin-bottom: 1.075rem !important;
  }
  .lg\:ml-4-and-half {
    margin-left: 1.075rem !important;
  }
  .lg\:mr-4-and-half {
    margin-right: 1.075rem !important;
  }
  .lg\:mt-4-and-half {
    margin-top: 1.075rem !important;
  }
  .lg\:mb-4-and-half {
    margin-bottom: 1.075rem !important;
  }
  .lg\:m-4-and-half {
    margin-bottom: 1.075rem !important;
    margin-top: 1.075rem !important;
    margin-right: 1.075rem !important;
    margin-left: 1.075rem !important;
  }
  .lg\:gap-4-and-half {
    gap: 1.075rem;
  }
  .lg\:gap-x-4-and-half {
    -moz-column-gap: 1.075rem;
         column-gap: 1.075rem;
  }
  .lg\:gap-y-4-and-half {
    row-gap: 1.075rem;
  }
  .lg\:text-4-and-half {
    font-size: 1.075rem !important;
  }
  .lg\:h-4-and-half {
    height: 1.075rem !important;
  }
  .lg\:w-4-and-half {
    width: 1.075rem !important;
  }
  .lg\:top-4-and-half {
    top: 1.075rem;
  }
  .lg\:-top-4-and-half {
    top: -1.075rem;
  }
  .lg\:bottom-4-and-half {
    bottom: 1.075rem;
  }
  .lg\:-bottom-4-and-half {
    bottom: -1.075rem;
  }
  .lg\:left-4-and-half {
    left: 1.075rem;
  }
  .lg\:-left-4-and-half {
    left: -1.075rem;
  }
  .lg\:right-4-and-half {
    right: 1.075rem;
  }
  .lg\:-right-4-and-half {
    right: -1.075rem;
  }
  .lg\:start-4-and-half {
    inset-inline-start: 1.075rem;
  }
  .lg\:-start-4-and-half {
    inset-inline-start: -1.075rem;
  }
  .lg\:end-4-and-half {
    inset-inline-end: 1.075rem;
  }
  .lg\:-end-4-and-half {
    inset-inline-end: -1.075rem;
  }
  .lg\:p-5 {
    padding: 1.25rem !important;
  }
  .lg\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .lg\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .lg\:pl-5 {
    padding-left: 1.25rem !important;
  }
  .lg\:pr-5 {
    padding-right: 1.25rem !important;
  }
  .lg\:pt-5 {
    padding-top: 1.25rem !important;
  }
  .lg\:pb-5 {
    padding-bottom: 1.25rem !important;
  }
  .lg\:mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
  .lg\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .lg\:ml-5 {
    margin-left: 1.25rem !important;
  }
  .lg\:mr-5 {
    margin-right: 1.25rem !important;
  }
  .lg\:mt-5 {
    margin-top: 1.25rem !important;
  }
  .lg\:mb-5 {
    margin-bottom: 1.25rem !important;
  }
  .lg\:m-5 {
    margin-bottom: 1.25rem !important;
    margin-top: 1.25rem !important;
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .lg\:gap-5 {
    gap: 1.25rem;
  }
  .lg\:gap-x-5 {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
  .lg\:gap-y-5 {
    row-gap: 1.25rem;
  }
  .lg\:text-5 {
    font-size: 1.25rem !important;
  }
  .lg\:h-5 {
    height: 1.25rem !important;
  }
  .lg\:w-5 {
    width: 1.25rem !important;
  }
  .lg\:top-5 {
    top: 1.25rem;
  }
  .lg\:-top-5 {
    top: -1.25rem;
  }
  .lg\:bottom-5 {
    bottom: 1.25rem;
  }
  .lg\:-bottom-5 {
    bottom: -1.25rem;
  }
  .lg\:left-5 {
    left: 1.25rem;
  }
  .lg\:-left-5 {
    left: -1.25rem;
  }
  .lg\:right-5 {
    right: 1.25rem;
  }
  .lg\:-right-5 {
    right: -1.25rem;
  }
  .lg\:start-5 {
    inset-inline-start: 1.25rem;
  }
  .lg\:-start-5 {
    inset-inline-start: -1.25rem;
  }
  .lg\:end-5 {
    inset-inline-end: 1.25rem;
  }
  .lg\:-end-5 {
    inset-inline-end: -1.25rem;
  }
  .lg\:p-6 {
    padding: 1.5rem !important;
  }
  .lg\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .lg\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .lg\:pl-6 {
    padding-left: 1.5rem !important;
  }
  .lg\:pr-6 {
    padding-right: 1.5rem !important;
  }
  .lg\:pt-6 {
    padding-top: 1.5rem !important;
  }
  .lg\:pb-6 {
    padding-bottom: 1.5rem !important;
  }
  .lg\:mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .lg\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .lg\:ml-6 {
    margin-left: 1.5rem !important;
  }
  .lg\:mr-6 {
    margin-right: 1.5rem !important;
  }
  .lg\:mt-6 {
    margin-top: 1.5rem !important;
  }
  .lg\:mb-6 {
    margin-bottom: 1.5rem !important;
  }
  .lg\:m-6 {
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .lg\:gap-6 {
    gap: 1.5rem;
  }
  .lg\:gap-x-6 {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
  .lg\:gap-y-6 {
    row-gap: 1.5rem;
  }
  .lg\:text-6 {
    font-size: 1.5rem !important;
  }
  .lg\:h-6 {
    height: 1.5rem !important;
  }
  .lg\:w-6 {
    width: 1.5rem !important;
  }
  .lg\:top-6 {
    top: 1.5rem;
  }
  .lg\:-top-6 {
    top: -1.5rem;
  }
  .lg\:bottom-6 {
    bottom: 1.5rem;
  }
  .lg\:-bottom-6 {
    bottom: -1.5rem;
  }
  .lg\:left-6 {
    left: 1.5rem;
  }
  .lg\:-left-6 {
    left: -1.5rem;
  }
  .lg\:right-6 {
    right: 1.5rem;
  }
  .lg\:-right-6 {
    right: -1.5rem;
  }
  .lg\:start-6 {
    inset-inline-start: 1.5rem;
  }
  .lg\:-start-6 {
    inset-inline-start: -1.5rem;
  }
  .lg\:end-6 {
    inset-inline-end: 1.5rem;
  }
  .lg\:-end-6 {
    inset-inline-end: -1.5rem;
  }
  .lg\:p-6-and-half {
    padding: 1.7rem !important;
  }
  .lg\:px-6-and-half {
    padding-left: 1.7rem !important;
    padding-right: 1.7rem !important;
  }
  .lg\:py-6-and-half {
    padding-top: 1.7rem !important;
    padding-bottom: 1.7rem !important;
  }
  .lg\:pl-6-and-half {
    padding-left: 1.7rem !important;
  }
  .lg\:pr-6-and-half {
    padding-right: 1.7rem !important;
  }
  .lg\:pt-6-and-half {
    padding-top: 1.7rem !important;
  }
  .lg\:pb-6-and-half {
    padding-bottom: 1.7rem !important;
  }
  .lg\:mx-6-and-half {
    margin-left: 1.7rem !important;
    margin-right: 1.7rem !important;
  }
  .lg\:my-6-and-half {
    margin-top: 1.7rem !important;
    margin-bottom: 1.7rem !important;
  }
  .lg\:ml-6-and-half {
    margin-left: 1.7rem !important;
  }
  .lg\:mr-6-and-half {
    margin-right: 1.7rem !important;
  }
  .lg\:mt-6-and-half {
    margin-top: 1.7rem !important;
  }
  .lg\:mb-6-and-half {
    margin-bottom: 1.7rem !important;
  }
  .lg\:m-6-and-half {
    margin-bottom: 1.7rem !important;
    margin-top: 1.7rem !important;
    margin-right: 1.7rem !important;
    margin-left: 1.7rem !important;
  }
  .lg\:gap-6-and-half {
    gap: 1.7rem;
  }
  .lg\:gap-x-6-and-half {
    -moz-column-gap: 1.7rem;
         column-gap: 1.7rem;
  }
  .lg\:gap-y-6-and-half {
    row-gap: 1.7rem;
  }
  .lg\:text-6-and-half {
    font-size: 1.7rem !important;
  }
  .lg\:h-6-and-half {
    height: 1.7rem !important;
  }
  .lg\:w-6-and-half {
    width: 1.7rem !important;
  }
  .lg\:top-6-and-half {
    top: 1.7rem;
  }
  .lg\:-top-6-and-half {
    top: -1.7rem;
  }
  .lg\:bottom-6-and-half {
    bottom: 1.7rem;
  }
  .lg\:-bottom-6-and-half {
    bottom: -1.7rem;
  }
  .lg\:left-6-and-half {
    left: 1.7rem;
  }
  .lg\:-left-6-and-half {
    left: -1.7rem;
  }
  .lg\:right-6-and-half {
    right: 1.7rem;
  }
  .lg\:-right-6-and-half {
    right: -1.7rem;
  }
  .lg\:start-6-and-half {
    inset-inline-start: 1.7rem;
  }
  .lg\:-start-6-and-half {
    inset-inline-start: -1.7rem;
  }
  .lg\:end-6-and-half {
    inset-inline-end: 1.7rem;
  }
  .lg\:-end-6-and-half {
    inset-inline-end: -1.7rem;
  }
  .lg\:p-7 {
    padding: 1.75rem !important;
  }
  .lg\:px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
  .lg\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .lg\:pl-7 {
    padding-left: 1.75rem !important;
  }
  .lg\:pr-7 {
    padding-right: 1.75rem !important;
  }
  .lg\:pt-7 {
    padding-top: 1.75rem !important;
  }
  .lg\:pb-7 {
    padding-bottom: 1.75rem !important;
  }
  .lg\:mx-7 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }
  .lg\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .lg\:ml-7 {
    margin-left: 1.75rem !important;
  }
  .lg\:mr-7 {
    margin-right: 1.75rem !important;
  }
  .lg\:mt-7 {
    margin-top: 1.75rem !important;
  }
  .lg\:mb-7 {
    margin-bottom: 1.75rem !important;
  }
  .lg\:m-7 {
    margin-bottom: 1.75rem !important;
    margin-top: 1.75rem !important;
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .lg\:gap-7 {
    gap: 1.75rem;
  }
  .lg\:gap-x-7 {
    -moz-column-gap: 1.75rem;
         column-gap: 1.75rem;
  }
  .lg\:gap-y-7 {
    row-gap: 1.75rem;
  }
  .lg\:text-7 {
    font-size: 1.75rem !important;
  }
  .lg\:h-7 {
    height: 1.75rem !important;
  }
  .lg\:w-7 {
    width: 1.75rem !important;
  }
  .lg\:top-7 {
    top: 1.75rem;
  }
  .lg\:-top-7 {
    top: -1.75rem;
  }
  .lg\:bottom-7 {
    bottom: 1.75rem;
  }
  .lg\:-bottom-7 {
    bottom: -1.75rem;
  }
  .lg\:left-7 {
    left: 1.75rem;
  }
  .lg\:-left-7 {
    left: -1.75rem;
  }
  .lg\:right-7 {
    right: 1.75rem;
  }
  .lg\:-right-7 {
    right: -1.75rem;
  }
  .lg\:start-7 {
    inset-inline-start: 1.75rem;
  }
  .lg\:-start-7 {
    inset-inline-start: -1.75rem;
  }
  .lg\:end-7 {
    inset-inline-end: 1.75rem;
  }
  .lg\:-end-7 {
    inset-inline-end: -1.75rem;
  }
  .lg\:p-8 {
    padding: 2rem !important;
  }
  .lg\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .lg\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .lg\:pl-8 {
    padding-left: 2rem !important;
  }
  .lg\:pr-8 {
    padding-right: 2rem !important;
  }
  .lg\:pt-8 {
    padding-top: 2rem !important;
  }
  .lg\:pb-8 {
    padding-bottom: 2rem !important;
  }
  .lg\:mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .lg\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .lg\:ml-8 {
    margin-left: 2rem !important;
  }
  .lg\:mr-8 {
    margin-right: 2rem !important;
  }
  .lg\:mt-8 {
    margin-top: 2rem !important;
  }
  .lg\:mb-8 {
    margin-bottom: 2rem !important;
  }
  .lg\:m-8 {
    margin-bottom: 2rem !important;
    margin-top: 2rem !important;
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .lg\:gap-8 {
    gap: 2rem;
  }
  .lg\:gap-x-8 {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .lg\:gap-y-8 {
    row-gap: 2rem;
  }
  .lg\:text-8 {
    font-size: 2rem !important;
  }
  .lg\:h-8 {
    height: 2rem !important;
  }
  .lg\:w-8 {
    width: 2rem !important;
  }
  .lg\:top-8 {
    top: 2rem;
  }
  .lg\:-top-8 {
    top: -2rem;
  }
  .lg\:bottom-8 {
    bottom: 2rem;
  }
  .lg\:-bottom-8 {
    bottom: -2rem;
  }
  .lg\:left-8 {
    left: 2rem;
  }
  .lg\:-left-8 {
    left: -2rem;
  }
  .lg\:right-8 {
    right: 2rem;
  }
  .lg\:-right-8 {
    right: -2rem;
  }
  .lg\:start-8 {
    inset-inline-start: 2rem;
  }
  .lg\:-start-8 {
    inset-inline-start: -2rem;
  }
  .lg\:end-8 {
    inset-inline-end: 2rem;
  }
  .lg\:-end-8 {
    inset-inline-end: -2rem;
  }
  .lg\:p-9 {
    padding: 2.25rem !important;
  }
  .lg\:px-9 {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }
  .lg\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .lg\:pl-9 {
    padding-left: 2.25rem !important;
  }
  .lg\:pr-9 {
    padding-right: 2.25rem !important;
  }
  .lg\:pt-9 {
    padding-top: 2.25rem !important;
  }
  .lg\:pb-9 {
    padding-bottom: 2.25rem !important;
  }
  .lg\:mx-9 {
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }
  .lg\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .lg\:ml-9 {
    margin-left: 2.25rem !important;
  }
  .lg\:mr-9 {
    margin-right: 2.25rem !important;
  }
  .lg\:mt-9 {
    margin-top: 2.25rem !important;
  }
  .lg\:mb-9 {
    margin-bottom: 2.25rem !important;
  }
  .lg\:m-9 {
    margin-bottom: 2.25rem !important;
    margin-top: 2.25rem !important;
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .lg\:gap-9 {
    gap: 2.25rem;
  }
  .lg\:gap-x-9 {
    -moz-column-gap: 2.25rem;
         column-gap: 2.25rem;
  }
  .lg\:gap-y-9 {
    row-gap: 2.25rem;
  }
  .lg\:text-9 {
    font-size: 2.25rem !important;
  }
  .lg\:h-9 {
    height: 2.25rem !important;
  }
  .lg\:w-9 {
    width: 2.25rem !important;
  }
  .lg\:top-9 {
    top: 2.25rem;
  }
  .lg\:-top-9 {
    top: -2.25rem;
  }
  .lg\:bottom-9 {
    bottom: 2.25rem;
  }
  .lg\:-bottom-9 {
    bottom: -2.25rem;
  }
  .lg\:left-9 {
    left: 2.25rem;
  }
  .lg\:-left-9 {
    left: -2.25rem;
  }
  .lg\:right-9 {
    right: 2.25rem;
  }
  .lg\:-right-9 {
    right: -2.25rem;
  }
  .lg\:start-9 {
    inset-inline-start: 2.25rem;
  }
  .lg\:-start-9 {
    inset-inline-start: -2.25rem;
  }
  .lg\:end-9 {
    inset-inline-end: 2.25rem;
  }
  .lg\:-end-9 {
    inset-inline-end: -2.25rem;
  }
  .lg\:p-10 {
    padding: 2.5rem !important;
  }
  .lg\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .lg\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .lg\:pl-10 {
    padding-left: 2.5rem !important;
  }
  .lg\:pr-10 {
    padding-right: 2.5rem !important;
  }
  .lg\:pt-10 {
    padding-top: 2.5rem !important;
  }
  .lg\:pb-10 {
    padding-bottom: 2.5rem !important;
  }
  .lg\:mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .lg\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .lg\:ml-10 {
    margin-left: 2.5rem !important;
  }
  .lg\:mr-10 {
    margin-right: 2.5rem !important;
  }
  .lg\:mt-10 {
    margin-top: 2.5rem !important;
  }
  .lg\:mb-10 {
    margin-bottom: 2.5rem !important;
  }
  .lg\:m-10 {
    margin-bottom: 2.5rem !important;
    margin-top: 2.5rem !important;
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .lg\:gap-10 {
    gap: 2.5rem;
  }
  .lg\:gap-x-10 {
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }
  .lg\:gap-y-10 {
    row-gap: 2.5rem;
  }
  .lg\:text-10 {
    font-size: 2.5rem !important;
  }
  .lg\:h-10 {
    height: 2.5rem !important;
  }
  .lg\:w-10 {
    width: 2.5rem !important;
  }
  .lg\:top-10 {
    top: 2.5rem;
  }
  .lg\:-top-10 {
    top: -2.5rem;
  }
  .lg\:bottom-10 {
    bottom: 2.5rem;
  }
  .lg\:-bottom-10 {
    bottom: -2.5rem;
  }
  .lg\:left-10 {
    left: 2.5rem;
  }
  .lg\:-left-10 {
    left: -2.5rem;
  }
  .lg\:right-10 {
    right: 2.5rem;
  }
  .lg\:-right-10 {
    right: -2.5rem;
  }
  .lg\:start-10 {
    inset-inline-start: 2.5rem;
  }
  .lg\:-start-10 {
    inset-inline-start: -2.5rem;
  }
  .lg\:end-10 {
    inset-inline-end: 2.5rem;
  }
  .lg\:-end-10 {
    inset-inline-end: -2.5rem;
  }
  .lg\:p-11 {
    padding: 2.75rem !important;
  }
  .lg\:px-11 {
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }
  .lg\:py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .lg\:pl-11 {
    padding-left: 2.75rem !important;
  }
  .lg\:pr-11 {
    padding-right: 2.75rem !important;
  }
  .lg\:pt-11 {
    padding-top: 2.75rem !important;
  }
  .lg\:pb-11 {
    padding-bottom: 2.75rem !important;
  }
  .lg\:mx-11 {
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }
  .lg\:my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
  .lg\:ml-11 {
    margin-left: 2.75rem !important;
  }
  .lg\:mr-11 {
    margin-right: 2.75rem !important;
  }
  .lg\:mt-11 {
    margin-top: 2.75rem !important;
  }
  .lg\:mb-11 {
    margin-bottom: 2.75rem !important;
  }
  .lg\:m-11 {
    margin-bottom: 2.75rem !important;
    margin-top: 2.75rem !important;
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .lg\:gap-11 {
    gap: 2.75rem;
  }
  .lg\:gap-x-11 {
    -moz-column-gap: 2.75rem;
         column-gap: 2.75rem;
  }
  .lg\:gap-y-11 {
    row-gap: 2.75rem;
  }
  .lg\:text-11 {
    font-size: 2.75rem !important;
  }
  .lg\:h-11 {
    height: 2.75rem !important;
  }
  .lg\:w-11 {
    width: 2.75rem !important;
  }
  .lg\:top-11 {
    top: 2.75rem;
  }
  .lg\:-top-11 {
    top: -2.75rem;
  }
  .lg\:bottom-11 {
    bottom: 2.75rem;
  }
  .lg\:-bottom-11 {
    bottom: -2.75rem;
  }
  .lg\:left-11 {
    left: 2.75rem;
  }
  .lg\:-left-11 {
    left: -2.75rem;
  }
  .lg\:right-11 {
    right: 2.75rem;
  }
  .lg\:-right-11 {
    right: -2.75rem;
  }
  .lg\:start-11 {
    inset-inline-start: 2.75rem;
  }
  .lg\:-start-11 {
    inset-inline-start: -2.75rem;
  }
  .lg\:end-11 {
    inset-inline-end: 2.75rem;
  }
  .lg\:-end-11 {
    inset-inline-end: -2.75rem;
  }
  .lg\:p-12 {
    padding: 3rem !important;
  }
  .lg\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .lg\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .lg\:pl-12 {
    padding-left: 3rem !important;
  }
  .lg\:pr-12 {
    padding-right: 3rem !important;
  }
  .lg\:pt-12 {
    padding-top: 3rem !important;
  }
  .lg\:pb-12 {
    padding-bottom: 3rem !important;
  }
  .lg\:mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .lg\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .lg\:ml-12 {
    margin-left: 3rem !important;
  }
  .lg\:mr-12 {
    margin-right: 3rem !important;
  }
  .lg\:mt-12 {
    margin-top: 3rem !important;
  }
  .lg\:mb-12 {
    margin-bottom: 3rem !important;
  }
  .lg\:m-12 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .lg\:gap-12 {
    gap: 3rem;
  }
  .lg\:gap-x-12 {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
  .lg\:gap-y-12 {
    row-gap: 3rem;
  }
  .lg\:text-12 {
    font-size: 3rem !important;
  }
  .lg\:h-12 {
    height: 3rem !important;
  }
  .lg\:w-12 {
    width: 3rem !important;
  }
  .lg\:top-12 {
    top: 3rem;
  }
  .lg\:-top-12 {
    top: -3rem;
  }
  .lg\:bottom-12 {
    bottom: 3rem;
  }
  .lg\:-bottom-12 {
    bottom: -3rem;
  }
  .lg\:left-12 {
    left: 3rem;
  }
  .lg\:-left-12 {
    left: -3rem;
  }
  .lg\:right-12 {
    right: 3rem;
  }
  .lg\:-right-12 {
    right: -3rem;
  }
  .lg\:start-12 {
    inset-inline-start: 3rem;
  }
  .lg\:-start-12 {
    inset-inline-start: -3rem;
  }
  .lg\:end-12 {
    inset-inline-end: 3rem;
  }
  .lg\:-end-12 {
    inset-inline-end: -3rem;
  }
  .lg\:p-14 {
    padding: 3.5rem !important;
  }
  .lg\:px-14 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .lg\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .lg\:pl-14 {
    padding-left: 3.5rem !important;
  }
  .lg\:pr-14 {
    padding-right: 3.5rem !important;
  }
  .lg\:pt-14 {
    padding-top: 3.5rem !important;
  }
  .lg\:pb-14 {
    padding-bottom: 3.5rem !important;
  }
  .lg\:mx-14 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }
  .lg\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .lg\:ml-14 {
    margin-left: 3.5rem !important;
  }
  .lg\:mr-14 {
    margin-right: 3.5rem !important;
  }
  .lg\:mt-14 {
    margin-top: 3.5rem !important;
  }
  .lg\:mb-14 {
    margin-bottom: 3.5rem !important;
  }
  .lg\:m-14 {
    margin-bottom: 3.5rem !important;
    margin-top: 3.5rem !important;
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .lg\:gap-14 {
    gap: 3.5rem;
  }
  .lg\:gap-x-14 {
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }
  .lg\:gap-y-14 {
    row-gap: 3.5rem;
  }
  .lg\:text-14 {
    font-size: 3.5rem !important;
  }
  .lg\:h-14 {
    height: 3.5rem !important;
  }
  .lg\:w-14 {
    width: 3.5rem !important;
  }
  .lg\:top-14 {
    top: 3.5rem;
  }
  .lg\:-top-14 {
    top: -3.5rem;
  }
  .lg\:bottom-14 {
    bottom: 3.5rem;
  }
  .lg\:-bottom-14 {
    bottom: -3.5rem;
  }
  .lg\:left-14 {
    left: 3.5rem;
  }
  .lg\:-left-14 {
    left: -3.5rem;
  }
  .lg\:right-14 {
    right: 3.5rem;
  }
  .lg\:-right-14 {
    right: -3.5rem;
  }
  .lg\:start-14 {
    inset-inline-start: 3.5rem;
  }
  .lg\:-start-14 {
    inset-inline-start: -3.5rem;
  }
  .lg\:end-14 {
    inset-inline-end: 3.5rem;
  }
  .lg\:-end-14 {
    inset-inline-end: -3.5rem;
  }
  .lg\:p-15 {
    padding: 3.75rem !important;
  }
  .lg\:px-15 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }
  .lg\:py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .lg\:pl-15 {
    padding-left: 3.75rem !important;
  }
  .lg\:pr-15 {
    padding-right: 3.75rem !important;
  }
  .lg\:pt-15 {
    padding-top: 3.75rem !important;
  }
  .lg\:pb-15 {
    padding-bottom: 3.75rem !important;
  }
  .lg\:mx-15 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }
  .lg\:my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .lg\:ml-15 {
    margin-left: 3.75rem !important;
  }
  .lg\:mr-15 {
    margin-right: 3.75rem !important;
  }
  .lg\:mt-15 {
    margin-top: 3.75rem !important;
  }
  .lg\:mb-15 {
    margin-bottom: 3.75rem !important;
  }
  .lg\:m-15 {
    margin-bottom: 3.75rem !important;
    margin-top: 3.75rem !important;
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .lg\:gap-15 {
    gap: 3.75rem;
  }
  .lg\:gap-x-15 {
    -moz-column-gap: 3.75rem;
         column-gap: 3.75rem;
  }
  .lg\:gap-y-15 {
    row-gap: 3.75rem;
  }
  .lg\:text-15 {
    font-size: 3.75rem !important;
  }
  .lg\:h-15 {
    height: 3.75rem !important;
  }
  .lg\:w-15 {
    width: 3.75rem !important;
  }
  .lg\:top-15 {
    top: 3.75rem;
  }
  .lg\:-top-15 {
    top: -3.75rem;
  }
  .lg\:bottom-15 {
    bottom: 3.75rem;
  }
  .lg\:-bottom-15 {
    bottom: -3.75rem;
  }
  .lg\:left-15 {
    left: 3.75rem;
  }
  .lg\:-left-15 {
    left: -3.75rem;
  }
  .lg\:right-15 {
    right: 3.75rem;
  }
  .lg\:-right-15 {
    right: -3.75rem;
  }
  .lg\:start-15 {
    inset-inline-start: 3.75rem;
  }
  .lg\:-start-15 {
    inset-inline-start: -3.75rem;
  }
  .lg\:end-15 {
    inset-inline-end: 3.75rem;
  }
  .lg\:-end-15 {
    inset-inline-end: -3.75rem;
  }
  .lg\:p-16 {
    padding: 4rem !important;
  }
  .lg\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .lg\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .lg\:pl-16 {
    padding-left: 4rem !important;
  }
  .lg\:pr-16 {
    padding-right: 4rem !important;
  }
  .lg\:pt-16 {
    padding-top: 4rem !important;
  }
  .lg\:pb-16 {
    padding-bottom: 4rem !important;
  }
  .lg\:mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .lg\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .lg\:ml-16 {
    margin-left: 4rem !important;
  }
  .lg\:mr-16 {
    margin-right: 4rem !important;
  }
  .lg\:mt-16 {
    margin-top: 4rem !important;
  }
  .lg\:mb-16 {
    margin-bottom: 4rem !important;
  }
  .lg\:m-16 {
    margin-bottom: 4rem !important;
    margin-top: 4rem !important;
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .lg\:gap-16 {
    gap: 4rem;
  }
  .lg\:gap-x-16 {
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
  .lg\:gap-y-16 {
    row-gap: 4rem;
  }
  .lg\:text-16 {
    font-size: 4rem !important;
  }
  .lg\:h-16 {
    height: 4rem !important;
  }
  .lg\:w-16 {
    width: 4rem !important;
  }
  .lg\:top-16 {
    top: 4rem;
  }
  .lg\:-top-16 {
    top: -4rem;
  }
  .lg\:bottom-16 {
    bottom: 4rem;
  }
  .lg\:-bottom-16 {
    bottom: -4rem;
  }
  .lg\:left-16 {
    left: 4rem;
  }
  .lg\:-left-16 {
    left: -4rem;
  }
  .lg\:right-16 {
    right: 4rem;
  }
  .lg\:-right-16 {
    right: -4rem;
  }
  .lg\:start-16 {
    inset-inline-start: 4rem;
  }
  .lg\:-start-16 {
    inset-inline-start: -4rem;
  }
  .lg\:end-16 {
    inset-inline-end: 4rem;
  }
  .lg\:-end-16 {
    inset-inline-end: -4rem;
  }
  .lg\:p-18 {
    padding: 4.5rem !important;
  }
  .lg\:px-18 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }
  .lg\:py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .lg\:pl-18 {
    padding-left: 4.5rem !important;
  }
  .lg\:pr-18 {
    padding-right: 4.5rem !important;
  }
  .lg\:pt-18 {
    padding-top: 4.5rem !important;
  }
  .lg\:pb-18 {
    padding-bottom: 4.5rem !important;
  }
  .lg\:mx-18 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
  .lg\:my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .lg\:ml-18 {
    margin-left: 4.5rem !important;
  }
  .lg\:mr-18 {
    margin-right: 4.5rem !important;
  }
  .lg\:mt-18 {
    margin-top: 4.5rem !important;
  }
  .lg\:mb-18 {
    margin-bottom: 4.5rem !important;
  }
  .lg\:m-18 {
    margin-bottom: 4.5rem !important;
    margin-top: 4.5rem !important;
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .lg\:gap-18 {
    gap: 4.5rem;
  }
  .lg\:gap-x-18 {
    -moz-column-gap: 4.5rem;
         column-gap: 4.5rem;
  }
  .lg\:gap-y-18 {
    row-gap: 4.5rem;
  }
  .lg\:text-18 {
    font-size: 4.5rem !important;
  }
  .lg\:h-18 {
    height: 4.5rem !important;
  }
  .lg\:w-18 {
    width: 4.5rem !important;
  }
  .lg\:top-18 {
    top: 4.5rem;
  }
  .lg\:-top-18 {
    top: -4.5rem;
  }
  .lg\:bottom-18 {
    bottom: 4.5rem;
  }
  .lg\:-bottom-18 {
    bottom: -4.5rem;
  }
  .lg\:left-18 {
    left: 4.5rem;
  }
  .lg\:-left-18 {
    left: -4.5rem;
  }
  .lg\:right-18 {
    right: 4.5rem;
  }
  .lg\:-right-18 {
    right: -4.5rem;
  }
  .lg\:start-18 {
    inset-inline-start: 4.5rem;
  }
  .lg\:-start-18 {
    inset-inline-start: -4.5rem;
  }
  .lg\:end-18 {
    inset-inline-end: 4.5rem;
  }
  .lg\:-end-18 {
    inset-inline-end: -4.5rem;
  }
  .lg\:p-20 {
    padding: 5rem !important;
  }
  .lg\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .lg\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .lg\:pl-20 {
    padding-left: 5rem !important;
  }
  .lg\:pr-20 {
    padding-right: 5rem !important;
  }
  .lg\:pt-20 {
    padding-top: 5rem !important;
  }
  .lg\:pb-20 {
    padding-bottom: 5rem !important;
  }
  .lg\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .lg\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .lg\:ml-20 {
    margin-left: 5rem !important;
  }
  .lg\:mr-20 {
    margin-right: 5rem !important;
  }
  .lg\:mt-20 {
    margin-top: 5rem !important;
  }
  .lg\:mb-20 {
    margin-bottom: 5rem !important;
  }
  .lg\:m-20 {
    margin-bottom: 5rem !important;
    margin-top: 5rem !important;
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .lg\:gap-20 {
    gap: 5rem;
  }
  .lg\:gap-x-20 {
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
  .lg\:gap-y-20 {
    row-gap: 5rem;
  }
  .lg\:text-20 {
    font-size: 5rem !important;
  }
  .lg\:h-20 {
    height: 5rem !important;
  }
  .lg\:w-20 {
    width: 5rem !important;
  }
  .lg\:top-20 {
    top: 5rem;
  }
  .lg\:-top-20 {
    top: -5rem;
  }
  .lg\:bottom-20 {
    bottom: 5rem;
  }
  .lg\:-bottom-20 {
    bottom: -5rem;
  }
  .lg\:left-20 {
    left: 5rem;
  }
  .lg\:-left-20 {
    left: -5rem;
  }
  .lg\:right-20 {
    right: 5rem;
  }
  .lg\:-right-20 {
    right: -5rem;
  }
  .lg\:start-20 {
    inset-inline-start: 5rem;
  }
  .lg\:-start-20 {
    inset-inline-start: -5rem;
  }
  .lg\:end-20 {
    inset-inline-end: 5rem;
  }
  .lg\:-end-20 {
    inset-inline-end: -5rem;
  }
  .lg\:p-24 {
    padding: 6rem !important;
  }
  .lg\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .lg\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .lg\:pl-24 {
    padding-left: 6rem !important;
  }
  .lg\:pr-24 {
    padding-right: 6rem !important;
  }
  .lg\:pt-24 {
    padding-top: 6rem !important;
  }
  .lg\:pb-24 {
    padding-bottom: 6rem !important;
  }
  .lg\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .lg\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .lg\:ml-24 {
    margin-left: 6rem !important;
  }
  .lg\:mr-24 {
    margin-right: 6rem !important;
  }
  .lg\:mt-24 {
    margin-top: 6rem !important;
  }
  .lg\:mb-24 {
    margin-bottom: 6rem !important;
  }
  .lg\:m-24 {
    margin-bottom: 6rem !important;
    margin-top: 6rem !important;
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .lg\:gap-24 {
    gap: 6rem;
  }
  .lg\:gap-x-24 {
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }
  .lg\:gap-y-24 {
    row-gap: 6rem;
  }
  .lg\:text-24 {
    font-size: 6rem !important;
  }
  .lg\:h-24 {
    height: 6rem !important;
  }
  .lg\:w-24 {
    width: 6rem !important;
  }
  .lg\:top-24 {
    top: 6rem;
  }
  .lg\:-top-24 {
    top: -6rem;
  }
  .lg\:bottom-24 {
    bottom: 6rem;
  }
  .lg\:-bottom-24 {
    bottom: -6rem;
  }
  .lg\:left-24 {
    left: 6rem;
  }
  .lg\:-left-24 {
    left: -6rem;
  }
  .lg\:right-24 {
    right: 6rem;
  }
  .lg\:-right-24 {
    right: -6rem;
  }
  .lg\:start-24 {
    inset-inline-start: 6rem;
  }
  .lg\:-start-24 {
    inset-inline-start: -6rem;
  }
  .lg\:end-24 {
    inset-inline-end: 6rem;
  }
  .lg\:-end-24 {
    inset-inline-end: -6rem;
  }
  .lg\:p-28 {
    padding: 7rem !important;
  }
  .lg\:px-28 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .lg\:py-28 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .lg\:pl-28 {
    padding-left: 7rem !important;
  }
  .lg\:pr-28 {
    padding-right: 7rem !important;
  }
  .lg\:pt-28 {
    padding-top: 7rem !important;
  }
  .lg\:pb-28 {
    padding-bottom: 7rem !important;
  }
  .lg\:mx-28 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .lg\:my-28 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .lg\:ml-28 {
    margin-left: 7rem !important;
  }
  .lg\:mr-28 {
    margin-right: 7rem !important;
  }
  .lg\:mt-28 {
    margin-top: 7rem !important;
  }
  .lg\:mb-28 {
    margin-bottom: 7rem !important;
  }
  .lg\:m-28 {
    margin-bottom: 7rem !important;
    margin-top: 7rem !important;
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .lg\:gap-28 {
    gap: 7rem;
  }
  .lg\:gap-x-28 {
    -moz-column-gap: 7rem;
         column-gap: 7rem;
  }
  .lg\:gap-y-28 {
    row-gap: 7rem;
  }
  .lg\:text-28 {
    font-size: 7rem !important;
  }
  .lg\:h-28 {
    height: 7rem !important;
  }
  .lg\:w-28 {
    width: 7rem !important;
  }
  .lg\:top-28 {
    top: 7rem;
  }
  .lg\:-top-28 {
    top: -7rem;
  }
  .lg\:bottom-28 {
    bottom: 7rem;
  }
  .lg\:-bottom-28 {
    bottom: -7rem;
  }
  .lg\:left-28 {
    left: 7rem;
  }
  .lg\:-left-28 {
    left: -7rem;
  }
  .lg\:right-28 {
    right: 7rem;
  }
  .lg\:-right-28 {
    right: -7rem;
  }
  .lg\:start-28 {
    inset-inline-start: 7rem;
  }
  .lg\:-start-28 {
    inset-inline-start: -7rem;
  }
  .lg\:end-28 {
    inset-inline-end: 7rem;
  }
  .lg\:-end-28 {
    inset-inline-end: -7rem;
  }
  .lg\:p-32 {
    padding: 8rem !important;
  }
  .lg\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .lg\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .lg\:pl-32 {
    padding-left: 8rem !important;
  }
  .lg\:pr-32 {
    padding-right: 8rem !important;
  }
  .lg\:pt-32 {
    padding-top: 8rem !important;
  }
  .lg\:pb-32 {
    padding-bottom: 8rem !important;
  }
  .lg\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .lg\:my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .lg\:ml-32 {
    margin-left: 8rem !important;
  }
  .lg\:mr-32 {
    margin-right: 8rem !important;
  }
  .lg\:mt-32 {
    margin-top: 8rem !important;
  }
  .lg\:mb-32 {
    margin-bottom: 8rem !important;
  }
  .lg\:m-32 {
    margin-bottom: 8rem !important;
    margin-top: 8rem !important;
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .lg\:gap-32 {
    gap: 8rem;
  }
  .lg\:gap-x-32 {
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }
  .lg\:gap-y-32 {
    row-gap: 8rem;
  }
  .lg\:text-32 {
    font-size: 8rem !important;
  }
  .lg\:h-32 {
    height: 8rem !important;
  }
  .lg\:w-32 {
    width: 8rem !important;
  }
  .lg\:top-32 {
    top: 8rem;
  }
  .lg\:-top-32 {
    top: -8rem;
  }
  .lg\:bottom-32 {
    bottom: 8rem;
  }
  .lg\:-bottom-32 {
    bottom: -8rem;
  }
  .lg\:left-32 {
    left: 8rem;
  }
  .lg\:-left-32 {
    left: -8rem;
  }
  .lg\:right-32 {
    right: 8rem;
  }
  .lg\:-right-32 {
    right: -8rem;
  }
  .lg\:start-32 {
    inset-inline-start: 8rem;
  }
  .lg\:-start-32 {
    inset-inline-start: -8rem;
  }
  .lg\:end-32 {
    inset-inline-end: 8rem;
  }
  .lg\:-end-32 {
    inset-inline-end: -8rem;
  }
  .lg\:p-36 {
    padding: 9rem !important;
  }
  .lg\:px-36 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .lg\:py-36 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .lg\:pl-36 {
    padding-left: 9rem !important;
  }
  .lg\:pr-36 {
    padding-right: 9rem !important;
  }
  .lg\:pt-36 {
    padding-top: 9rem !important;
  }
  .lg\:pb-36 {
    padding-bottom: 9rem !important;
  }
  .lg\:mx-36 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .lg\:my-36 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .lg\:ml-36 {
    margin-left: 9rem !important;
  }
  .lg\:mr-36 {
    margin-right: 9rem !important;
  }
  .lg\:mt-36 {
    margin-top: 9rem !important;
  }
  .lg\:mb-36 {
    margin-bottom: 9rem !important;
  }
  .lg\:m-36 {
    margin-bottom: 9rem !important;
    margin-top: 9rem !important;
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .lg\:gap-36 {
    gap: 9rem;
  }
  .lg\:gap-x-36 {
    -moz-column-gap: 9rem;
         column-gap: 9rem;
  }
  .lg\:gap-y-36 {
    row-gap: 9rem;
  }
  .lg\:text-36 {
    font-size: 9rem !important;
  }
  .lg\:h-36 {
    height: 9rem !important;
  }
  .lg\:w-36 {
    width: 9rem !important;
  }
  .lg\:top-36 {
    top: 9rem;
  }
  .lg\:-top-36 {
    top: -9rem;
  }
  .lg\:bottom-36 {
    bottom: 9rem;
  }
  .lg\:-bottom-36 {
    bottom: -9rem;
  }
  .lg\:left-36 {
    left: 9rem;
  }
  .lg\:-left-36 {
    left: -9rem;
  }
  .lg\:right-36 {
    right: 9rem;
  }
  .lg\:-right-36 {
    right: -9rem;
  }
  .lg\:start-36 {
    inset-inline-start: 9rem;
  }
  .lg\:-start-36 {
    inset-inline-start: -9rem;
  }
  .lg\:end-36 {
    inset-inline-end: 9rem;
  }
  .lg\:-end-36 {
    inset-inline-end: -9rem;
  }
  .lg\:p-38 {
    padding: 9.5rem !important;
  }
  .lg\:px-38 {
    padding-left: 9.5rem !important;
    padding-right: 9.5rem !important;
  }
  .lg\:py-38 {
    padding-top: 9.5rem !important;
    padding-bottom: 9.5rem !important;
  }
  .lg\:pl-38 {
    padding-left: 9.5rem !important;
  }
  .lg\:pr-38 {
    padding-right: 9.5rem !important;
  }
  .lg\:pt-38 {
    padding-top: 9.5rem !important;
  }
  .lg\:pb-38 {
    padding-bottom: 9.5rem !important;
  }
  .lg\:mx-38 {
    margin-left: 9.5rem !important;
    margin-right: 9.5rem !important;
  }
  .lg\:my-38 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
  }
  .lg\:ml-38 {
    margin-left: 9.5rem !important;
  }
  .lg\:mr-38 {
    margin-right: 9.5rem !important;
  }
  .lg\:mt-38 {
    margin-top: 9.5rem !important;
  }
  .lg\:mb-38 {
    margin-bottom: 9.5rem !important;
  }
  .lg\:m-38 {
    margin-bottom: 9.5rem !important;
    margin-top: 9.5rem !important;
    margin-right: 9.5rem !important;
    margin-left: 9.5rem !important;
  }
  .lg\:gap-38 {
    gap: 9.5rem;
  }
  .lg\:gap-x-38 {
    -moz-column-gap: 9.5rem;
         column-gap: 9.5rem;
  }
  .lg\:gap-y-38 {
    row-gap: 9.5rem;
  }
  .lg\:text-38 {
    font-size: 9.5rem !important;
  }
  .lg\:h-38 {
    height: 9.5rem !important;
  }
  .lg\:w-38 {
    width: 9.5rem !important;
  }
  .lg\:top-38 {
    top: 9.5rem;
  }
  .lg\:-top-38 {
    top: -9.5rem;
  }
  .lg\:bottom-38 {
    bottom: 9.5rem;
  }
  .lg\:-bottom-38 {
    bottom: -9.5rem;
  }
  .lg\:left-38 {
    left: 9.5rem;
  }
  .lg\:-left-38 {
    left: -9.5rem;
  }
  .lg\:right-38 {
    right: 9.5rem;
  }
  .lg\:-right-38 {
    right: -9.5rem;
  }
  .lg\:start-38 {
    inset-inline-start: 9.5rem;
  }
  .lg\:-start-38 {
    inset-inline-start: -9.5rem;
  }
  .lg\:end-38 {
    inset-inline-end: 9.5rem;
  }
  .lg\:-end-38 {
    inset-inline-end: -9.5rem;
  }
  .lg\:p-40 {
    padding: 10rem !important;
  }
  .lg\:px-40 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .lg\:py-40 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .lg\:pl-40 {
    padding-left: 10rem !important;
  }
  .lg\:pr-40 {
    padding-right: 10rem !important;
  }
  .lg\:pt-40 {
    padding-top: 10rem !important;
  }
  .lg\:pb-40 {
    padding-bottom: 10rem !important;
  }
  .lg\:mx-40 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .lg\:my-40 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .lg\:ml-40 {
    margin-left: 10rem !important;
  }
  .lg\:mr-40 {
    margin-right: 10rem !important;
  }
  .lg\:mt-40 {
    margin-top: 10rem !important;
  }
  .lg\:mb-40 {
    margin-bottom: 10rem !important;
  }
  .lg\:m-40 {
    margin-bottom: 10rem !important;
    margin-top: 10rem !important;
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .lg\:gap-40 {
    gap: 10rem;
  }
  .lg\:gap-x-40 {
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }
  .lg\:gap-y-40 {
    row-gap: 10rem;
  }
  .lg\:text-40 {
    font-size: 10rem !important;
  }
  .lg\:h-40 {
    height: 10rem !important;
  }
  .lg\:w-40 {
    width: 10rem !important;
  }
  .lg\:top-40 {
    top: 10rem;
  }
  .lg\:-top-40 {
    top: -10rem;
  }
  .lg\:bottom-40 {
    bottom: 10rem;
  }
  .lg\:-bottom-40 {
    bottom: -10rem;
  }
  .lg\:left-40 {
    left: 10rem;
  }
  .lg\:-left-40 {
    left: -10rem;
  }
  .lg\:right-40 {
    right: 10rem;
  }
  .lg\:-right-40 {
    right: -10rem;
  }
  .lg\:start-40 {
    inset-inline-start: 10rem;
  }
  .lg\:-start-40 {
    inset-inline-start: -10rem;
  }
  .lg\:end-40 {
    inset-inline-end: 10rem;
  }
  .lg\:-end-40 {
    inset-inline-end: -10rem;
  }
  .lg\:p-44 {
    padding: 11rem !important;
  }
  .lg\:px-44 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }
  .lg\:py-44 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .lg\:pl-44 {
    padding-left: 11rem !important;
  }
  .lg\:pr-44 {
    padding-right: 11rem !important;
  }
  .lg\:pt-44 {
    padding-top: 11rem !important;
  }
  .lg\:pb-44 {
    padding-bottom: 11rem !important;
  }
  .lg\:mx-44 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }
  .lg\:my-44 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .lg\:ml-44 {
    margin-left: 11rem !important;
  }
  .lg\:mr-44 {
    margin-right: 11rem !important;
  }
  .lg\:mt-44 {
    margin-top: 11rem !important;
  }
  .lg\:mb-44 {
    margin-bottom: 11rem !important;
  }
  .lg\:m-44 {
    margin-bottom: 11rem !important;
    margin-top: 11rem !important;
    margin-right: 11rem !important;
    margin-left: 11rem !important;
  }
  .lg\:gap-44 {
    gap: 11rem;
  }
  .lg\:gap-x-44 {
    -moz-column-gap: 11rem;
         column-gap: 11rem;
  }
  .lg\:gap-y-44 {
    row-gap: 11rem;
  }
  .lg\:text-44 {
    font-size: 11rem !important;
  }
  .lg\:h-44 {
    height: 11rem !important;
  }
  .lg\:w-44 {
    width: 11rem !important;
  }
  .lg\:top-44 {
    top: 11rem;
  }
  .lg\:-top-44 {
    top: -11rem;
  }
  .lg\:bottom-44 {
    bottom: 11rem;
  }
  .lg\:-bottom-44 {
    bottom: -11rem;
  }
  .lg\:left-44 {
    left: 11rem;
  }
  .lg\:-left-44 {
    left: -11rem;
  }
  .lg\:right-44 {
    right: 11rem;
  }
  .lg\:-right-44 {
    right: -11rem;
  }
  .lg\:start-44 {
    inset-inline-start: 11rem;
  }
  .lg\:-start-44 {
    inset-inline-start: -11rem;
  }
  .lg\:end-44 {
    inset-inline-end: 11rem;
  }
  .lg\:-end-44 {
    inset-inline-end: -11rem;
  }
  .lg\:p-46 {
    padding: 11.5rem !important;
  }
  .lg\:px-46 {
    padding-left: 11.5rem !important;
    padding-right: 11.5rem !important;
  }
  .lg\:py-46 {
    padding-top: 11.5rem !important;
    padding-bottom: 11.5rem !important;
  }
  .lg\:pl-46 {
    padding-left: 11.5rem !important;
  }
  .lg\:pr-46 {
    padding-right: 11.5rem !important;
  }
  .lg\:pt-46 {
    padding-top: 11.5rem !important;
  }
  .lg\:pb-46 {
    padding-bottom: 11.5rem !important;
  }
  .lg\:mx-46 {
    margin-left: 11.5rem !important;
    margin-right: 11.5rem !important;
  }
  .lg\:my-46 {
    margin-top: 11.5rem !important;
    margin-bottom: 11.5rem !important;
  }
  .lg\:ml-46 {
    margin-left: 11.5rem !important;
  }
  .lg\:mr-46 {
    margin-right: 11.5rem !important;
  }
  .lg\:mt-46 {
    margin-top: 11.5rem !important;
  }
  .lg\:mb-46 {
    margin-bottom: 11.5rem !important;
  }
  .lg\:m-46 {
    margin-bottom: 11.5rem !important;
    margin-top: 11.5rem !important;
    margin-right: 11.5rem !important;
    margin-left: 11.5rem !important;
  }
  .lg\:gap-46 {
    gap: 11.5rem;
  }
  .lg\:gap-x-46 {
    -moz-column-gap: 11.5rem;
         column-gap: 11.5rem;
  }
  .lg\:gap-y-46 {
    row-gap: 11.5rem;
  }
  .lg\:text-46 {
    font-size: 11.5rem !important;
  }
  .lg\:h-46 {
    height: 11.5rem !important;
  }
  .lg\:w-46 {
    width: 11.5rem !important;
  }
  .lg\:top-46 {
    top: 11.5rem;
  }
  .lg\:-top-46 {
    top: -11.5rem;
  }
  .lg\:bottom-46 {
    bottom: 11.5rem;
  }
  .lg\:-bottom-46 {
    bottom: -11.5rem;
  }
  .lg\:left-46 {
    left: 11.5rem;
  }
  .lg\:-left-46 {
    left: -11.5rem;
  }
  .lg\:right-46 {
    right: 11.5rem;
  }
  .lg\:-right-46 {
    right: -11.5rem;
  }
  .lg\:start-46 {
    inset-inline-start: 11.5rem;
  }
  .lg\:-start-46 {
    inset-inline-start: -11.5rem;
  }
  .lg\:end-46 {
    inset-inline-end: 11.5rem;
  }
  .lg\:-end-46 {
    inset-inline-end: -11.5rem;
  }
  .lg\:p-48 {
    padding: 12rem !important;
  }
  .lg\:px-48 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }
  .lg\:py-48 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .lg\:pl-48 {
    padding-left: 12rem !important;
  }
  .lg\:pr-48 {
    padding-right: 12rem !important;
  }
  .lg\:pt-48 {
    padding-top: 12rem !important;
  }
  .lg\:pb-48 {
    padding-bottom: 12rem !important;
  }
  .lg\:mx-48 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }
  .lg\:my-48 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .lg\:ml-48 {
    margin-left: 12rem !important;
  }
  .lg\:mr-48 {
    margin-right: 12rem !important;
  }
  .lg\:mt-48 {
    margin-top: 12rem !important;
  }
  .lg\:mb-48 {
    margin-bottom: 12rem !important;
  }
  .lg\:m-48 {
    margin-bottom: 12rem !important;
    margin-top: 12rem !important;
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .lg\:gap-48 {
    gap: 12rem;
  }
  .lg\:gap-x-48 {
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }
  .lg\:gap-y-48 {
    row-gap: 12rem;
  }
  .lg\:text-48 {
    font-size: 12rem !important;
  }
  .lg\:h-48 {
    height: 12rem !important;
  }
  .lg\:w-48 {
    width: 12rem !important;
  }
  .lg\:top-48 {
    top: 12rem;
  }
  .lg\:-top-48 {
    top: -12rem;
  }
  .lg\:bottom-48 {
    bottom: 12rem;
  }
  .lg\:-bottom-48 {
    bottom: -12rem;
  }
  .lg\:left-48 {
    left: 12rem;
  }
  .lg\:-left-48 {
    left: -12rem;
  }
  .lg\:right-48 {
    right: 12rem;
  }
  .lg\:-right-48 {
    right: -12rem;
  }
  .lg\:start-48 {
    inset-inline-start: 12rem;
  }
  .lg\:-start-48 {
    inset-inline-start: -12rem;
  }
  .lg\:end-48 {
    inset-inline-end: 12rem;
  }
  .lg\:-end-48 {
    inset-inline-end: -12rem;
  }
  .lg\:p-49 {
    padding: 12.25rem !important;
  }
  .lg\:px-49 {
    padding-left: 12.25rem !important;
    padding-right: 12.25rem !important;
  }
  .lg\:py-49 {
    padding-top: 12.25rem !important;
    padding-bottom: 12.25rem !important;
  }
  .lg\:pl-49 {
    padding-left: 12.25rem !important;
  }
  .lg\:pr-49 {
    padding-right: 12.25rem !important;
  }
  .lg\:pt-49 {
    padding-top: 12.25rem !important;
  }
  .lg\:pb-49 {
    padding-bottom: 12.25rem !important;
  }
  .lg\:mx-49 {
    margin-left: 12.25rem !important;
    margin-right: 12.25rem !important;
  }
  .lg\:my-49 {
    margin-top: 12.25rem !important;
    margin-bottom: 12.25rem !important;
  }
  .lg\:ml-49 {
    margin-left: 12.25rem !important;
  }
  .lg\:mr-49 {
    margin-right: 12.25rem !important;
  }
  .lg\:mt-49 {
    margin-top: 12.25rem !important;
  }
  .lg\:mb-49 {
    margin-bottom: 12.25rem !important;
  }
  .lg\:m-49 {
    margin-bottom: 12.25rem !important;
    margin-top: 12.25rem !important;
    margin-right: 12.25rem !important;
    margin-left: 12.25rem !important;
  }
  .lg\:gap-49 {
    gap: 12.25rem;
  }
  .lg\:gap-x-49 {
    -moz-column-gap: 12.25rem;
         column-gap: 12.25rem;
  }
  .lg\:gap-y-49 {
    row-gap: 12.25rem;
  }
  .lg\:text-49 {
    font-size: 12.25rem !important;
  }
  .lg\:h-49 {
    height: 12.25rem !important;
  }
  .lg\:w-49 {
    width: 12.25rem !important;
  }
  .lg\:top-49 {
    top: 12.25rem;
  }
  .lg\:-top-49 {
    top: -12.25rem;
  }
  .lg\:bottom-49 {
    bottom: 12.25rem;
  }
  .lg\:-bottom-49 {
    bottom: -12.25rem;
  }
  .lg\:left-49 {
    left: 12.25rem;
  }
  .lg\:-left-49 {
    left: -12.25rem;
  }
  .lg\:right-49 {
    right: 12.25rem;
  }
  .lg\:-right-49 {
    right: -12.25rem;
  }
  .lg\:start-49 {
    inset-inline-start: 12.25rem;
  }
  .lg\:-start-49 {
    inset-inline-start: -12.25rem;
  }
  .lg\:end-49 {
    inset-inline-end: 12.25rem;
  }
  .lg\:-end-49 {
    inset-inline-end: -12.25rem;
  }
  .lg\:p-50 {
    padding: 12.5rem !important;
  }
  .lg\:px-50 {
    padding-left: 12.5rem !important;
    padding-right: 12.5rem !important;
  }
  .lg\:py-50 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }
  .lg\:pl-50 {
    padding-left: 12.5rem !important;
  }
  .lg\:pr-50 {
    padding-right: 12.5rem !important;
  }
  .lg\:pt-50 {
    padding-top: 12.5rem !important;
  }
  .lg\:pb-50 {
    padding-bottom: 12.5rem !important;
  }
  .lg\:mx-50 {
    margin-left: 12.5rem !important;
    margin-right: 12.5rem !important;
  }
  .lg\:my-50 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }
  .lg\:ml-50 {
    margin-left: 12.5rem !important;
  }
  .lg\:mr-50 {
    margin-right: 12.5rem !important;
  }
  .lg\:mt-50 {
    margin-top: 12.5rem !important;
  }
  .lg\:mb-50 {
    margin-bottom: 12.5rem !important;
  }
  .lg\:m-50 {
    margin-bottom: 12.5rem !important;
    margin-top: 12.5rem !important;
    margin-right: 12.5rem !important;
    margin-left: 12.5rem !important;
  }
  .lg\:gap-50 {
    gap: 12.5rem;
  }
  .lg\:gap-x-50 {
    -moz-column-gap: 12.5rem;
         column-gap: 12.5rem;
  }
  .lg\:gap-y-50 {
    row-gap: 12.5rem;
  }
  .lg\:text-50 {
    font-size: 12.5rem !important;
  }
  .lg\:h-50 {
    height: 12.5rem !important;
  }
  .lg\:w-50 {
    width: 12.5rem !important;
  }
  .lg\:top-50 {
    top: 12.5rem;
  }
  .lg\:-top-50 {
    top: -12.5rem;
  }
  .lg\:bottom-50 {
    bottom: 12.5rem;
  }
  .lg\:-bottom-50 {
    bottom: -12.5rem;
  }
  .lg\:left-50 {
    left: 12.5rem;
  }
  .lg\:-left-50 {
    left: -12.5rem;
  }
  .lg\:right-50 {
    right: 12.5rem;
  }
  .lg\:-right-50 {
    right: -12.5rem;
  }
  .lg\:start-50 {
    inset-inline-start: 12.5rem;
  }
  .lg\:-start-50 {
    inset-inline-start: -12.5rem;
  }
  .lg\:end-50 {
    inset-inline-end: 12.5rem;
  }
  .lg\:-end-50 {
    inset-inline-end: -12.5rem;
  }
  .lg\:p-52 {
    padding: 13rem !important;
  }
  .lg\:px-52 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }
  .lg\:py-52 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .lg\:pl-52 {
    padding-left: 13rem !important;
  }
  .lg\:pr-52 {
    padding-right: 13rem !important;
  }
  .lg\:pt-52 {
    padding-top: 13rem !important;
  }
  .lg\:pb-52 {
    padding-bottom: 13rem !important;
  }
  .lg\:mx-52 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }
  .lg\:my-52 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .lg\:ml-52 {
    margin-left: 13rem !important;
  }
  .lg\:mr-52 {
    margin-right: 13rem !important;
  }
  .lg\:mt-52 {
    margin-top: 13rem !important;
  }
  .lg\:mb-52 {
    margin-bottom: 13rem !important;
  }
  .lg\:m-52 {
    margin-bottom: 13rem !important;
    margin-top: 13rem !important;
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .lg\:gap-52 {
    gap: 13rem;
  }
  .lg\:gap-x-52 {
    -moz-column-gap: 13rem;
         column-gap: 13rem;
  }
  .lg\:gap-y-52 {
    row-gap: 13rem;
  }
  .lg\:text-52 {
    font-size: 13rem !important;
  }
  .lg\:h-52 {
    height: 13rem !important;
  }
  .lg\:w-52 {
    width: 13rem !important;
  }
  .lg\:top-52 {
    top: 13rem;
  }
  .lg\:-top-52 {
    top: -13rem;
  }
  .lg\:bottom-52 {
    bottom: 13rem;
  }
  .lg\:-bottom-52 {
    bottom: -13rem;
  }
  .lg\:left-52 {
    left: 13rem;
  }
  .lg\:-left-52 {
    left: -13rem;
  }
  .lg\:right-52 {
    right: 13rem;
  }
  .lg\:-right-52 {
    right: -13rem;
  }
  .lg\:start-52 {
    inset-inline-start: 13rem;
  }
  .lg\:-start-52 {
    inset-inline-start: -13rem;
  }
  .lg\:end-52 {
    inset-inline-end: 13rem;
  }
  .lg\:-end-52 {
    inset-inline-end: -13rem;
  }
  .lg\:p-56 {
    padding: 14rem !important;
  }
  .lg\:px-56 {
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }
  .lg\:py-56 {
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }
  .lg\:pl-56 {
    padding-left: 14rem !important;
  }
  .lg\:pr-56 {
    padding-right: 14rem !important;
  }
  .lg\:pt-56 {
    padding-top: 14rem !important;
  }
  .lg\:pb-56 {
    padding-bottom: 14rem !important;
  }
  .lg\:mx-56 {
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }
  .lg\:my-56 {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }
  .lg\:ml-56 {
    margin-left: 14rem !important;
  }
  .lg\:mr-56 {
    margin-right: 14rem !important;
  }
  .lg\:mt-56 {
    margin-top: 14rem !important;
  }
  .lg\:mb-56 {
    margin-bottom: 14rem !important;
  }
  .lg\:m-56 {
    margin-bottom: 14rem !important;
    margin-top: 14rem !important;
    margin-right: 14rem !important;
    margin-left: 14rem !important;
  }
  .lg\:gap-56 {
    gap: 14rem;
  }
  .lg\:gap-x-56 {
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }
  .lg\:gap-y-56 {
    row-gap: 14rem;
  }
  .lg\:text-56 {
    font-size: 14rem !important;
  }
  .lg\:h-56 {
    height: 14rem !important;
  }
  .lg\:w-56 {
    width: 14rem !important;
  }
  .lg\:top-56 {
    top: 14rem;
  }
  .lg\:-top-56 {
    top: -14rem;
  }
  .lg\:bottom-56 {
    bottom: 14rem;
  }
  .lg\:-bottom-56 {
    bottom: -14rem;
  }
  .lg\:left-56 {
    left: 14rem;
  }
  .lg\:-left-56 {
    left: -14rem;
  }
  .lg\:right-56 {
    right: 14rem;
  }
  .lg\:-right-56 {
    right: -14rem;
  }
  .lg\:start-56 {
    inset-inline-start: 14rem;
  }
  .lg\:-start-56 {
    inset-inline-start: -14rem;
  }
  .lg\:end-56 {
    inset-inline-end: 14rem;
  }
  .lg\:-end-56 {
    inset-inline-end: -14rem;
  }
  .lg\:p-60 {
    padding: 15rem !important;
  }
  .lg\:px-60 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }
  .lg\:py-60 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .lg\:pl-60 {
    padding-left: 15rem !important;
  }
  .lg\:pr-60 {
    padding-right: 15rem !important;
  }
  .lg\:pt-60 {
    padding-top: 15rem !important;
  }
  .lg\:pb-60 {
    padding-bottom: 15rem !important;
  }
  .lg\:mx-60 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }
  .lg\:my-60 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .lg\:ml-60 {
    margin-left: 15rem !important;
  }
  .lg\:mr-60 {
    margin-right: 15rem !important;
  }
  .lg\:mt-60 {
    margin-top: 15rem !important;
  }
  .lg\:mb-60 {
    margin-bottom: 15rem !important;
  }
  .lg\:m-60 {
    margin-bottom: 15rem !important;
    margin-top: 15rem !important;
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .lg\:gap-60 {
    gap: 15rem;
  }
  .lg\:gap-x-60 {
    -moz-column-gap: 15rem;
         column-gap: 15rem;
  }
  .lg\:gap-y-60 {
    row-gap: 15rem;
  }
  .lg\:text-60 {
    font-size: 15rem !important;
  }
  .lg\:h-60 {
    height: 15rem !important;
  }
  .lg\:w-60 {
    width: 15rem !important;
  }
  .lg\:top-60 {
    top: 15rem;
  }
  .lg\:-top-60 {
    top: -15rem;
  }
  .lg\:bottom-60 {
    bottom: 15rem;
  }
  .lg\:-bottom-60 {
    bottom: -15rem;
  }
  .lg\:left-60 {
    left: 15rem;
  }
  .lg\:-left-60 {
    left: -15rem;
  }
  .lg\:right-60 {
    right: 15rem;
  }
  .lg\:-right-60 {
    right: -15rem;
  }
  .lg\:start-60 {
    inset-inline-start: 15rem;
  }
  .lg\:-start-60 {
    inset-inline-start: -15rem;
  }
  .lg\:end-60 {
    inset-inline-end: 15rem;
  }
  .lg\:-end-60 {
    inset-inline-end: -15rem;
  }
  .lg\:p-64 {
    padding: 16rem !important;
  }
  .lg\:px-64 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }
  .lg\:py-64 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }
  .lg\:pl-64 {
    padding-left: 16rem !important;
  }
  .lg\:pr-64 {
    padding-right: 16rem !important;
  }
  .lg\:pt-64 {
    padding-top: 16rem !important;
  }
  .lg\:pb-64 {
    padding-bottom: 16rem !important;
  }
  .lg\:mx-64 {
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }
  .lg\:my-64 {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }
  .lg\:ml-64 {
    margin-left: 16rem !important;
  }
  .lg\:mr-64 {
    margin-right: 16rem !important;
  }
  .lg\:mt-64 {
    margin-top: 16rem !important;
  }
  .lg\:mb-64 {
    margin-bottom: 16rem !important;
  }
  .lg\:m-64 {
    margin-bottom: 16rem !important;
    margin-top: 16rem !important;
    margin-right: 16rem !important;
    margin-left: 16rem !important;
  }
  .lg\:gap-64 {
    gap: 16rem;
  }
  .lg\:gap-x-64 {
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }
  .lg\:gap-y-64 {
    row-gap: 16rem;
  }
  .lg\:text-64 {
    font-size: 16rem !important;
  }
  .lg\:h-64 {
    height: 16rem !important;
  }
  .lg\:w-64 {
    width: 16rem !important;
  }
  .lg\:top-64 {
    top: 16rem;
  }
  .lg\:-top-64 {
    top: -16rem;
  }
  .lg\:bottom-64 {
    bottom: 16rem;
  }
  .lg\:-bottom-64 {
    bottom: -16rem;
  }
  .lg\:left-64 {
    left: 16rem;
  }
  .lg\:-left-64 {
    left: -16rem;
  }
  .lg\:right-64 {
    right: 16rem;
  }
  .lg\:-right-64 {
    right: -16rem;
  }
  .lg\:start-64 {
    inset-inline-start: 16rem;
  }
  .lg\:-start-64 {
    inset-inline-start: -16rem;
  }
  .lg\:end-64 {
    inset-inline-end: 16rem;
  }
  .lg\:-end-64 {
    inset-inline-end: -16rem;
  }
  .lg\:p-66 {
    padding: 17rem !important;
  }
  .lg\:px-66 {
    padding-left: 17rem !important;
    padding-right: 17rem !important;
  }
  .lg\:py-66 {
    padding-top: 17rem !important;
    padding-bottom: 17rem !important;
  }
  .lg\:pl-66 {
    padding-left: 17rem !important;
  }
  .lg\:pr-66 {
    padding-right: 17rem !important;
  }
  .lg\:pt-66 {
    padding-top: 17rem !important;
  }
  .lg\:pb-66 {
    padding-bottom: 17rem !important;
  }
  .lg\:mx-66 {
    margin-left: 17rem !important;
    margin-right: 17rem !important;
  }
  .lg\:my-66 {
    margin-top: 17rem !important;
    margin-bottom: 17rem !important;
  }
  .lg\:ml-66 {
    margin-left: 17rem !important;
  }
  .lg\:mr-66 {
    margin-right: 17rem !important;
  }
  .lg\:mt-66 {
    margin-top: 17rem !important;
  }
  .lg\:mb-66 {
    margin-bottom: 17rem !important;
  }
  .lg\:m-66 {
    margin-bottom: 17rem !important;
    margin-top: 17rem !important;
    margin-right: 17rem !important;
    margin-left: 17rem !important;
  }
  .lg\:gap-66 {
    gap: 17rem;
  }
  .lg\:gap-x-66 {
    -moz-column-gap: 17rem;
         column-gap: 17rem;
  }
  .lg\:gap-y-66 {
    row-gap: 17rem;
  }
  .lg\:text-66 {
    font-size: 17rem !important;
  }
  .lg\:h-66 {
    height: 17rem !important;
  }
  .lg\:w-66 {
    width: 17rem !important;
  }
  .lg\:top-66 {
    top: 17rem;
  }
  .lg\:-top-66 {
    top: -17rem;
  }
  .lg\:bottom-66 {
    bottom: 17rem;
  }
  .lg\:-bottom-66 {
    bottom: -17rem;
  }
  .lg\:left-66 {
    left: 17rem;
  }
  .lg\:-left-66 {
    left: -17rem;
  }
  .lg\:right-66 {
    right: 17rem;
  }
  .lg\:-right-66 {
    right: -17rem;
  }
  .lg\:start-66 {
    inset-inline-start: 17rem;
  }
  .lg\:-start-66 {
    inset-inline-start: -17rem;
  }
  .lg\:end-66 {
    inset-inline-end: 17rem;
  }
  .lg\:-end-66 {
    inset-inline-end: -17rem;
  }
  .lg\:p-72 {
    padding: 18rem !important;
  }
  .lg\:px-72 {
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }
  .lg\:py-72 {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }
  .lg\:pl-72 {
    padding-left: 18rem !important;
  }
  .lg\:pr-72 {
    padding-right: 18rem !important;
  }
  .lg\:pt-72 {
    padding-top: 18rem !important;
  }
  .lg\:pb-72 {
    padding-bottom: 18rem !important;
  }
  .lg\:mx-72 {
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }
  .lg\:my-72 {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }
  .lg\:ml-72 {
    margin-left: 18rem !important;
  }
  .lg\:mr-72 {
    margin-right: 18rem !important;
  }
  .lg\:mt-72 {
    margin-top: 18rem !important;
  }
  .lg\:mb-72 {
    margin-bottom: 18rem !important;
  }
  .lg\:m-72 {
    margin-bottom: 18rem !important;
    margin-top: 18rem !important;
    margin-right: 18rem !important;
    margin-left: 18rem !important;
  }
  .lg\:gap-72 {
    gap: 18rem;
  }
  .lg\:gap-x-72 {
    -moz-column-gap: 18rem;
         column-gap: 18rem;
  }
  .lg\:gap-y-72 {
    row-gap: 18rem;
  }
  .lg\:text-72 {
    font-size: 18rem !important;
  }
  .lg\:h-72 {
    height: 18rem !important;
  }
  .lg\:w-72 {
    width: 18rem !important;
  }
  .lg\:top-72 {
    top: 18rem;
  }
  .lg\:-top-72 {
    top: -18rem;
  }
  .lg\:bottom-72 {
    bottom: 18rem;
  }
  .lg\:-bottom-72 {
    bottom: -18rem;
  }
  .lg\:left-72 {
    left: 18rem;
  }
  .lg\:-left-72 {
    left: -18rem;
  }
  .lg\:right-72 {
    right: 18rem;
  }
  .lg\:-right-72 {
    right: -18rem;
  }
  .lg\:start-72 {
    inset-inline-start: 18rem;
  }
  .lg\:-start-72 {
    inset-inline-start: -18rem;
  }
  .lg\:end-72 {
    inset-inline-end: 18rem;
  }
  .lg\:-end-72 {
    inset-inline-end: -18rem;
  }
  .lg\:p-80 {
    padding: 20rem !important;
  }
  .lg\:px-80 {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }
  .lg\:py-80 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .lg\:pl-80 {
    padding-left: 20rem !important;
  }
  .lg\:pr-80 {
    padding-right: 20rem !important;
  }
  .lg\:pt-80 {
    padding-top: 20rem !important;
  }
  .lg\:pb-80 {
    padding-bottom: 20rem !important;
  }
  .lg\:mx-80 {
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }
  .lg\:my-80 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .lg\:ml-80 {
    margin-left: 20rem !important;
  }
  .lg\:mr-80 {
    margin-right: 20rem !important;
  }
  .lg\:mt-80 {
    margin-top: 20rem !important;
  }
  .lg\:mb-80 {
    margin-bottom: 20rem !important;
  }
  .lg\:m-80 {
    margin-bottom: 20rem !important;
    margin-top: 20rem !important;
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .lg\:gap-80 {
    gap: 20rem;
  }
  .lg\:gap-x-80 {
    -moz-column-gap: 20rem;
         column-gap: 20rem;
  }
  .lg\:gap-y-80 {
    row-gap: 20rem;
  }
  .lg\:text-80 {
    font-size: 20rem !important;
  }
  .lg\:h-80 {
    height: 20rem !important;
  }
  .lg\:w-80 {
    width: 20rem !important;
  }
  .lg\:top-80 {
    top: 20rem;
  }
  .lg\:-top-80 {
    top: -20rem;
  }
  .lg\:bottom-80 {
    bottom: 20rem;
  }
  .lg\:-bottom-80 {
    bottom: -20rem;
  }
  .lg\:left-80 {
    left: 20rem;
  }
  .lg\:-left-80 {
    left: -20rem;
  }
  .lg\:right-80 {
    right: 20rem;
  }
  .lg\:-right-80 {
    right: -20rem;
  }
  .lg\:start-80 {
    inset-inline-start: 20rem;
  }
  .lg\:-start-80 {
    inset-inline-start: -20rem;
  }
  .lg\:end-80 {
    inset-inline-end: 20rem;
  }
  .lg\:-end-80 {
    inset-inline-end: -20rem;
  }
  .lg\:p-96 {
    padding: 24rem !important;
  }
  .lg\:px-96 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }
  .lg\:py-96 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }
  .lg\:pl-96 {
    padding-left: 24rem !important;
  }
  .lg\:pr-96 {
    padding-right: 24rem !important;
  }
  .lg\:pt-96 {
    padding-top: 24rem !important;
  }
  .lg\:pb-96 {
    padding-bottom: 24rem !important;
  }
  .lg\:mx-96 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }
  .lg\:my-96 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }
  .lg\:ml-96 {
    margin-left: 24rem !important;
  }
  .lg\:mr-96 {
    margin-right: 24rem !important;
  }
  .lg\:mt-96 {
    margin-top: 24rem !important;
  }
  .lg\:mb-96 {
    margin-bottom: 24rem !important;
  }
  .lg\:m-96 {
    margin-bottom: 24rem !important;
    margin-top: 24rem !important;
    margin-right: 24rem !important;
    margin-left: 24rem !important;
  }
  .lg\:gap-96 {
    gap: 24rem;
  }
  .lg\:gap-x-96 {
    -moz-column-gap: 24rem;
         column-gap: 24rem;
  }
  .lg\:gap-y-96 {
    row-gap: 24rem;
  }
  .lg\:text-96 {
    font-size: 24rem !important;
  }
  .lg\:h-96 {
    height: 24rem !important;
  }
  .lg\:w-96 {
    width: 24rem !important;
  }
  .lg\:top-96 {
    top: 24rem;
  }
  .lg\:-top-96 {
    top: -24rem;
  }
  .lg\:bottom-96 {
    bottom: 24rem;
  }
  .lg\:-bottom-96 {
    bottom: -24rem;
  }
  .lg\:left-96 {
    left: 24rem;
  }
  .lg\:-left-96 {
    left: -24rem;
  }
  .lg\:right-96 {
    right: 24rem;
  }
  .lg\:-right-96 {
    right: -24rem;
  }
  .lg\:start-96 {
    inset-inline-start: 24rem;
  }
  .lg\:-start-96 {
    inset-inline-start: -24rem;
  }
  .lg\:end-96 {
    inset-inline-end: 24rem;
  }
  .lg\:-end-96 {
    inset-inline-end: -24rem;
  }
  .lg\:h-10-percent {
    height: 10% !important;
  }
  .lg\:w-10-percent {
    width: 10% !important;
  }
  .lg\:top-10-percent {
    top: 10% !important;
  }
  .lg\:-top-10-percent {
    top: -10% !important;
  }
  .lg\:bottom-10-percent {
    bottom: 10% !important;
  }
  .lg\:-bottom-10-percent {
    bottom: -10% !important;
  }
  .lg\:left-10-percent {
    left: 10% !important;
  }
  .lg\:-left-10-percent {
    left: -10% !important;
  }
  .lg\:right-10-percent {
    right: 10% !important;
  }
  .lg\:-right-10-percent {
    right: -10% !important;
  }
  .lg\:h-15-percent {
    height: 15% !important;
  }
  .lg\:w-15-percent {
    width: 15% !important;
  }
  .lg\:top-15-percent {
    top: 15% !important;
  }
  .lg\:-top-15-percent {
    top: -15% !important;
  }
  .lg\:bottom-15-percent {
    bottom: 15% !important;
  }
  .lg\:-bottom-15-percent {
    bottom: -15% !important;
  }
  .lg\:left-15-percent {
    left: 15% !important;
  }
  .lg\:-left-15-percent {
    left: -15% !important;
  }
  .lg\:right-15-percent {
    right: 15% !important;
  }
  .lg\:-right-15-percent {
    right: -15% !important;
  }
  .lg\:h-20-percent {
    height: 20% !important;
  }
  .lg\:w-20-percent {
    width: 20% !important;
  }
  .lg\:top-20-percent {
    top: 20% !important;
  }
  .lg\:-top-20-percent {
    top: -20% !important;
  }
  .lg\:bottom-20-percent {
    bottom: 20% !important;
  }
  .lg\:-bottom-20-percent {
    bottom: -20% !important;
  }
  .lg\:left-20-percent {
    left: 20% !important;
  }
  .lg\:-left-20-percent {
    left: -20% !important;
  }
  .lg\:right-20-percent {
    right: 20% !important;
  }
  .lg\:-right-20-percent {
    right: -20% !important;
  }
  .lg\:h-25-percent {
    height: 25% !important;
  }
  .lg\:w-25-percent {
    width: 25% !important;
  }
  .lg\:top-25-percent {
    top: 25% !important;
  }
  .lg\:-top-25-percent {
    top: -25% !important;
  }
  .lg\:bottom-25-percent {
    bottom: 25% !important;
  }
  .lg\:-bottom-25-percent {
    bottom: -25% !important;
  }
  .lg\:left-25-percent {
    left: 25% !important;
  }
  .lg\:-left-25-percent {
    left: -25% !important;
  }
  .lg\:right-25-percent {
    right: 25% !important;
  }
  .lg\:-right-25-percent {
    right: -25% !important;
  }
  .lg\:h-30-percent {
    height: 30% !important;
  }
  .lg\:w-30-percent {
    width: 30% !important;
  }
  .lg\:top-30-percent {
    top: 30% !important;
  }
  .lg\:-top-30-percent {
    top: -30% !important;
  }
  .lg\:bottom-30-percent {
    bottom: 30% !important;
  }
  .lg\:-bottom-30-percent {
    bottom: -30% !important;
  }
  .lg\:left-30-percent {
    left: 30% !important;
  }
  .lg\:-left-30-percent {
    left: -30% !important;
  }
  .lg\:right-30-percent {
    right: 30% !important;
  }
  .lg\:-right-30-percent {
    right: -30% !important;
  }
  .lg\:h-35-percent {
    height: 35% !important;
  }
  .lg\:w-35-percent {
    width: 35% !important;
  }
  .lg\:top-35-percent {
    top: 35% !important;
  }
  .lg\:-top-35-percent {
    top: -35% !important;
  }
  .lg\:bottom-35-percent {
    bottom: 35% !important;
  }
  .lg\:-bottom-35-percent {
    bottom: -35% !important;
  }
  .lg\:left-35-percent {
    left: 35% !important;
  }
  .lg\:-left-35-percent {
    left: -35% !important;
  }
  .lg\:right-35-percent {
    right: 35% !important;
  }
  .lg\:-right-35-percent {
    right: -35% !important;
  }
  .lg\:h-40-percent {
    height: 40% !important;
  }
  .lg\:w-40-percent {
    width: 40% !important;
  }
  .lg\:top-40-percent {
    top: 40% !important;
  }
  .lg\:-top-40-percent {
    top: -40% !important;
  }
  .lg\:bottom-40-percent {
    bottom: 40% !important;
  }
  .lg\:-bottom-40-percent {
    bottom: -40% !important;
  }
  .lg\:left-40-percent {
    left: 40% !important;
  }
  .lg\:-left-40-percent {
    left: -40% !important;
  }
  .lg\:right-40-percent {
    right: 40% !important;
  }
  .lg\:-right-40-percent {
    right: -40% !important;
  }
  .lg\:h-45-percent {
    height: 45% !important;
  }
  .lg\:w-45-percent {
    width: 45% !important;
  }
  .lg\:top-45-percent {
    top: 45% !important;
  }
  .lg\:-top-45-percent {
    top: -45% !important;
  }
  .lg\:bottom-45-percent {
    bottom: 45% !important;
  }
  .lg\:-bottom-45-percent {
    bottom: -45% !important;
  }
  .lg\:left-45-percent {
    left: 45% !important;
  }
  .lg\:-left-45-percent {
    left: -45% !important;
  }
  .lg\:right-45-percent {
    right: 45% !important;
  }
  .lg\:-right-45-percent {
    right: -45% !important;
  }
  .lg\:h-50-percent {
    height: 50% !important;
  }
  .lg\:w-50-percent {
    width: 50% !important;
  }
  .lg\:top-50-percent {
    top: 50% !important;
  }
  .lg\:-top-50-percent {
    top: -50% !important;
  }
  .lg\:bottom-50-percent {
    bottom: 50% !important;
  }
  .lg\:-bottom-50-percent {
    bottom: -50% !important;
  }
  .lg\:left-50-percent {
    left: 50% !important;
  }
  .lg\:-left-50-percent {
    left: -50% !important;
  }
  .lg\:right-50-percent {
    right: 50% !important;
  }
  .lg\:-right-50-percent {
    right: -50% !important;
  }
  .lg\:h-55-percent {
    height: 55% !important;
  }
  .lg\:w-55-percent {
    width: 55% !important;
  }
  .lg\:top-55-percent {
    top: 55% !important;
  }
  .lg\:-top-55-percent {
    top: -55% !important;
  }
  .lg\:bottom-55-percent {
    bottom: 55% !important;
  }
  .lg\:-bottom-55-percent {
    bottom: -55% !important;
  }
  .lg\:left-55-percent {
    left: 55% !important;
  }
  .lg\:-left-55-percent {
    left: -55% !important;
  }
  .lg\:right-55-percent {
    right: 55% !important;
  }
  .lg\:-right-55-percent {
    right: -55% !important;
  }
  .lg\:h-60-percent {
    height: 60% !important;
  }
  .lg\:w-60-percent {
    width: 60% !important;
  }
  .lg\:top-60-percent {
    top: 60% !important;
  }
  .lg\:-top-60-percent {
    top: -60% !important;
  }
  .lg\:bottom-60-percent {
    bottom: 60% !important;
  }
  .lg\:-bottom-60-percent {
    bottom: -60% !important;
  }
  .lg\:left-60-percent {
    left: 60% !important;
  }
  .lg\:-left-60-percent {
    left: -60% !important;
  }
  .lg\:right-60-percent {
    right: 60% !important;
  }
  .lg\:-right-60-percent {
    right: -60% !important;
  }
  .lg\:h-65-percent {
    height: 65% !important;
  }
  .lg\:w-65-percent {
    width: 65% !important;
  }
  .lg\:top-65-percent {
    top: 65% !important;
  }
  .lg\:-top-65-percent {
    top: -65% !important;
  }
  .lg\:bottom-65-percent {
    bottom: 65% !important;
  }
  .lg\:-bottom-65-percent {
    bottom: -65% !important;
  }
  .lg\:left-65-percent {
    left: 65% !important;
  }
  .lg\:-left-65-percent {
    left: -65% !important;
  }
  .lg\:right-65-percent {
    right: 65% !important;
  }
  .lg\:-right-65-percent {
    right: -65% !important;
  }
  .lg\:h-70-percent {
    height: 70% !important;
  }
  .lg\:w-70-percent {
    width: 70% !important;
  }
  .lg\:top-70-percent {
    top: 70% !important;
  }
  .lg\:-top-70-percent {
    top: -70% !important;
  }
  .lg\:bottom-70-percent {
    bottom: 70% !important;
  }
  .lg\:-bottom-70-percent {
    bottom: -70% !important;
  }
  .lg\:left-70-percent {
    left: 70% !important;
  }
  .lg\:-left-70-percent {
    left: -70% !important;
  }
  .lg\:right-70-percent {
    right: 70% !important;
  }
  .lg\:-right-70-percent {
    right: -70% !important;
  }
  .lg\:h-75-percent {
    height: 75% !important;
  }
  .lg\:w-75-percent {
    width: 75% !important;
  }
  .lg\:top-75-percent {
    top: 75% !important;
  }
  .lg\:-top-75-percent {
    top: -75% !important;
  }
  .lg\:bottom-75-percent {
    bottom: 75% !important;
  }
  .lg\:-bottom-75-percent {
    bottom: -75% !important;
  }
  .lg\:left-75-percent {
    left: 75% !important;
  }
  .lg\:-left-75-percent {
    left: -75% !important;
  }
  .lg\:right-75-percent {
    right: 75% !important;
  }
  .lg\:-right-75-percent {
    right: -75% !important;
  }
  .lg\:h-80-percent {
    height: 80% !important;
  }
  .lg\:w-80-percent {
    width: 80% !important;
  }
  .lg\:top-80-percent {
    top: 80% !important;
  }
  .lg\:-top-80-percent {
    top: -80% !important;
  }
  .lg\:bottom-80-percent {
    bottom: 80% !important;
  }
  .lg\:-bottom-80-percent {
    bottom: -80% !important;
  }
  .lg\:left-80-percent {
    left: 80% !important;
  }
  .lg\:-left-80-percent {
    left: -80% !important;
  }
  .lg\:right-80-percent {
    right: 80% !important;
  }
  .lg\:-right-80-percent {
    right: -80% !important;
  }
  .lg\:h-85-percent {
    height: 85% !important;
  }
  .lg\:w-85-percent {
    width: 85% !important;
  }
  .lg\:top-85-percent {
    top: 85% !important;
  }
  .lg\:-top-85-percent {
    top: -85% !important;
  }
  .lg\:bottom-85-percent {
    bottom: 85% !important;
  }
  .lg\:-bottom-85-percent {
    bottom: -85% !important;
  }
  .lg\:left-85-percent {
    left: 85% !important;
  }
  .lg\:-left-85-percent {
    left: -85% !important;
  }
  .lg\:right-85-percent {
    right: 85% !important;
  }
  .lg\:-right-85-percent {
    right: -85% !important;
  }
  .lg\:h-90-percent {
    height: 90% !important;
  }
  .lg\:w-90-percent {
    width: 90% !important;
  }
  .lg\:top-90-percent {
    top: 90% !important;
  }
  .lg\:-top-90-percent {
    top: -90% !important;
  }
  .lg\:bottom-90-percent {
    bottom: 90% !important;
  }
  .lg\:-bottom-90-percent {
    bottom: -90% !important;
  }
  .lg\:left-90-percent {
    left: 90% !important;
  }
  .lg\:-left-90-percent {
    left: -90% !important;
  }
  .lg\:right-90-percent {
    right: 90% !important;
  }
  .lg\:-right-90-percent {
    right: -90% !important;
  }
  .lg\:h-95-percent {
    height: 95% !important;
  }
  .lg\:w-95-percent {
    width: 95% !important;
  }
  .lg\:top-95-percent {
    top: 95% !important;
  }
  .lg\:-top-95-percent {
    top: -95% !important;
  }
  .lg\:bottom-95-percent {
    bottom: 95% !important;
  }
  .lg\:-bottom-95-percent {
    bottom: -95% !important;
  }
  .lg\:left-95-percent {
    left: 95% !important;
  }
  .lg\:-left-95-percent {
    left: -95% !important;
  }
  .lg\:right-95-percent {
    right: 95% !important;
  }
  .lg\:-right-95-percent {
    right: -95% !important;
  }
  .lg\:h-100-percent {
    height: 100% !important;
  }
  .lg\:w-100-percent {
    width: 100% !important;
  }
  .lg\:top-100-percent {
    top: 100% !important;
  }
  .lg\:-top-100-percent {
    top: -100% !important;
  }
  .lg\:bottom-100-percent {
    bottom: 100% !important;
  }
  .lg\:-bottom-100-percent {
    bottom: -100% !important;
  }
  .lg\:left-100-percent {
    left: 100% !important;
  }
  .lg\:-left-100-percent {
    left: -100% !important;
  }
  .lg\:right-100-percent {
    right: 100% !important;
  }
  .lg\:-right-100-percent {
    right: -100% !important;
  }
  .lg\:text-center {
    text-align: center;
  }
  .lg\:line-height-lg {
    line-height: 3rem;
  }
  .lg\:line-height-md {
    line-height: 2rem;
  }
  .lg\:line-height-sm {
    line-height: 1rem;
  }
  .lg\:display {
    display: block !important;
  }
  .lg\:display-flex {
    display: flex !important;
  }
  .lg\:display-grid {
    display: grid !important;
  }
  .lg\:hidden {
    display: none !important;
  }
  .lg\:absolute {
    position: absolute !important;
  }
  .lg\:relative {
    position: relative !important;
  }
  .lg\:justify-between {
    justify-content: space-between !important;
  }
  .lg\:justify-end {
    justify-content: end !important;
  }
  .lg\:justify-center {
    justify-content: center !important;
  }
  .lg\:items-end {
    align-items: end !important;
  }
  .lg\:bg-solutions {
    background-image: url("../images/solutions-bg.png");
    background-size: cover;
  }
  .lg\:min-h-100-vh {
    min-height: 100vh;
  }
  .lg\:max-h-100-vh {
    max-height: 100vh;
  }
}
@media (min-width: 1600px) {
  .xl\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .xl\:col-span-1 {
    grid-column: span 1/span 1;
  }
  .xl\:col-start-1 {
    grid-column-start: 1;
  }
  .xl\:col-end-1 {
    grid-column-end: 1;
  }
  .xl\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .xl\:col-span-2 {
    grid-column: span 2/span 2;
  }
  .xl\:col-start-2 {
    grid-column-start: 2;
  }
  .xl\:col-end-2 {
    grid-column-end: 2;
  }
  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .xl\:col-span-3 {
    grid-column: span 3/span 3;
  }
  .xl\:col-start-3 {
    grid-column-start: 3;
  }
  .xl\:col-end-3 {
    grid-column-end: 3;
  }
  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .xl\:col-span-4 {
    grid-column: span 4/span 4;
  }
  .xl\:col-start-4 {
    grid-column-start: 4;
  }
  .xl\:col-end-4 {
    grid-column-end: 4;
  }
  .xl\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .xl\:col-span-5 {
    grid-column: span 5/span 5;
  }
  .xl\:col-start-5 {
    grid-column-start: 5;
  }
  .xl\:col-end-5 {
    grid-column-end: 5;
  }
  .xl\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .xl\:col-span-6 {
    grid-column: span 6/span 6;
  }
  .xl\:col-start-6 {
    grid-column-start: 6;
  }
  .xl\:col-end-6 {
    grid-column-end: 6;
  }
  .xl\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
  .xl\:col-span-7 {
    grid-column: span 7/span 7;
  }
  .xl\:col-start-7 {
    grid-column-start: 7;
  }
  .xl\:col-end-7 {
    grid-column-end: 7;
  }
  .xl\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
  .xl\:col-span-8 {
    grid-column: span 8/span 8;
  }
  .xl\:col-start-8 {
    grid-column-start: 8;
  }
  .xl\:col-end-8 {
    grid-column-end: 8;
  }
  .xl\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }
  .xl\:col-span-9 {
    grid-column: span 9/span 9;
  }
  .xl\:col-start-9 {
    grid-column-start: 9;
  }
  .xl\:col-end-9 {
    grid-column-end: 9;
  }
  .xl\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }
  .xl\:col-span-10 {
    grid-column: span 10/span 10;
  }
  .xl\:col-start-10 {
    grid-column-start: 10;
  }
  .xl\:col-end-10 {
    grid-column-end: 10;
  }
  .xl\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }
  .xl\:col-span-12 {
    grid-column: span 12/span 12;
  }
  .xl\:col-start-12 {
    grid-column-start: 12;
  }
  .xl\:col-end-12 {
    grid-column-end: 12;
  }
  .xl\:p-0 {
    padding: 0px !important;
  }
  .xl\:px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .xl\:py-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .xl\:pl-0 {
    padding-left: 0px !important;
  }
  .xl\:pr-0 {
    padding-right: 0px !important;
  }
  .xl\:pt-0 {
    padding-top: 0px !important;
  }
  .xl\:pb-0 {
    padding-bottom: 0px !important;
  }
  .xl\:mx-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .xl\:my-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .xl\:ml-0 {
    margin-left: 0px !important;
  }
  .xl\:mr-0 {
    margin-right: 0px !important;
  }
  .xl\:mt-0 {
    margin-top: 0px !important;
  }
  .xl\:mb-0 {
    margin-bottom: 0px !important;
  }
  .xl\:m-0 {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .xl\:gap-0 {
    gap: 0px;
  }
  .xl\:gap-x-0 {
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .xl\:gap-y-0 {
    row-gap: 0px;
  }
  .xl\:text-0 {
    font-size: 0px !important;
  }
  .xl\:h-0 {
    height: 0px !important;
  }
  .xl\:w-0 {
    width: 0px !important;
  }
  .xl\:top-0 {
    top: 0px;
  }
  .xl\:-top-0 {
    top: 0px;
  }
  .xl\:bottom-0 {
    bottom: 0px;
  }
  .xl\:-bottom-0 {
    bottom: 0px;
  }
  .xl\:left-0 {
    left: 0px;
  }
  .xl\:-left-0 {
    left: 0px;
  }
  .xl\:right-0 {
    right: 0px;
  }
  .xl\:-right-0 {
    right: 0px;
  }
  .xl\:start-0 {
    inset-inline-start: 0px;
  }
  .xl\:-start-0 {
    inset-inline-start: 0px;
  }
  .xl\:end-0 {
    inset-inline-end: 0px;
  }
  .xl\:-end-0 {
    inset-inline-end: 0px;
  }
  .xl\:p-1 {
    padding: 0.25rem !important;
  }
  .xl\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .xl\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .xl\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .xl\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .xl\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .xl\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .xl\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .xl\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .xl\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .xl\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .xl\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .xl\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .xl\:m-1 {
    margin-bottom: 0.25rem !important;
    margin-top: 0.25rem !important;
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .xl\:gap-1 {
    gap: 0.25rem;
  }
  .xl\:gap-x-1 {
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }
  .xl\:gap-y-1 {
    row-gap: 0.25rem;
  }
  .xl\:text-1 {
    font-size: 0.25rem !important;
  }
  .xl\:h-1 {
    height: 0.25rem !important;
  }
  .xl\:w-1 {
    width: 0.25rem !important;
  }
  .xl\:top-1 {
    top: 0.25rem;
  }
  .xl\:-top-1 {
    top: -0.25rem;
  }
  .xl\:bottom-1 {
    bottom: 0.25rem;
  }
  .xl\:-bottom-1 {
    bottom: -0.25rem;
  }
  .xl\:left-1 {
    left: 0.25rem;
  }
  .xl\:-left-1 {
    left: -0.25rem;
  }
  .xl\:right-1 {
    right: 0.25rem;
  }
  .xl\:-right-1 {
    right: -0.25rem;
  }
  .xl\:start-1 {
    inset-inline-start: 0.25rem;
  }
  .xl\:-start-1 {
    inset-inline-start: -0.25rem;
  }
  .xl\:end-1 {
    inset-inline-end: 0.25rem;
  }
  .xl\:-end-1 {
    inset-inline-end: -0.25rem;
  }
  .xl\:p-2 {
    padding: 0.5rem !important;
  }
  .xl\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .xl\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .xl\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .xl\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .xl\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .xl\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .xl\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .xl\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .xl\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .xl\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .xl\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .xl\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .xl\:m-2 {
    margin-bottom: 0.5rem !important;
    margin-top: 0.5rem !important;
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .xl\:gap-2 {
    gap: 0.5rem;
  }
  .xl\:gap-x-2 {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .xl\:gap-y-2 {
    row-gap: 0.5rem;
  }
  .xl\:text-2 {
    font-size: 0.5rem !important;
  }
  .xl\:h-2 {
    height: 0.5rem !important;
  }
  .xl\:w-2 {
    width: 0.5rem !important;
  }
  .xl\:top-2 {
    top: 0.5rem;
  }
  .xl\:-top-2 {
    top: -0.5rem;
  }
  .xl\:bottom-2 {
    bottom: 0.5rem;
  }
  .xl\:-bottom-2 {
    bottom: -0.5rem;
  }
  .xl\:left-2 {
    left: 0.5rem;
  }
  .xl\:-left-2 {
    left: -0.5rem;
  }
  .xl\:right-2 {
    right: 0.5rem;
  }
  .xl\:-right-2 {
    right: -0.5rem;
  }
  .xl\:start-2 {
    inset-inline-start: 0.5rem;
  }
  .xl\:-start-2 {
    inset-inline-start: -0.5rem;
  }
  .xl\:end-2 {
    inset-inline-end: 0.5rem;
  }
  .xl\:-end-2 {
    inset-inline-end: -0.5rem;
  }
  .xl\:p-2-and-half {
    padding: 0.625rem !important;
  }
  .xl\:px-2-and-half {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
  .xl\:py-2-and-half {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
  .xl\:pl-2-and-half {
    padding-left: 0.625rem !important;
  }
  .xl\:pr-2-and-half {
    padding-right: 0.625rem !important;
  }
  .xl\:pt-2-and-half {
    padding-top: 0.625rem !important;
  }
  .xl\:pb-2-and-half {
    padding-bottom: 0.625rem !important;
  }
  .xl\:mx-2-and-half {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }
  .xl\:my-2-and-half {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
  .xl\:ml-2-and-half {
    margin-left: 0.625rem !important;
  }
  .xl\:mr-2-and-half {
    margin-right: 0.625rem !important;
  }
  .xl\:mt-2-and-half {
    margin-top: 0.625rem !important;
  }
  .xl\:mb-2-and-half {
    margin-bottom: 0.625rem !important;
  }
  .xl\:m-2-and-half {
    margin-bottom: 0.625rem !important;
    margin-top: 0.625rem !important;
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }
  .xl\:gap-2-and-half {
    gap: 0.625rem;
  }
  .xl\:gap-x-2-and-half {
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
  }
  .xl\:gap-y-2-and-half {
    row-gap: 0.625rem;
  }
  .xl\:text-2-and-half {
    font-size: 0.625rem !important;
  }
  .xl\:h-2-and-half {
    height: 0.625rem !important;
  }
  .xl\:w-2-and-half {
    width: 0.625rem !important;
  }
  .xl\:top-2-and-half {
    top: 0.625rem;
  }
  .xl\:-top-2-and-half {
    top: -0.625rem;
  }
  .xl\:bottom-2-and-half {
    bottom: 0.625rem;
  }
  .xl\:-bottom-2-and-half {
    bottom: -0.625rem;
  }
  .xl\:left-2-and-half {
    left: 0.625rem;
  }
  .xl\:-left-2-and-half {
    left: -0.625rem;
  }
  .xl\:right-2-and-half {
    right: 0.625rem;
  }
  .xl\:-right-2-and-half {
    right: -0.625rem;
  }
  .xl\:start-2-and-half {
    inset-inline-start: 0.625rem;
  }
  .xl\:-start-2-and-half {
    inset-inline-start: -0.625rem;
  }
  .xl\:end-2-and-half {
    inset-inline-end: 0.625rem;
  }
  .xl\:-end-2-and-half {
    inset-inline-end: -0.625rem;
  }
  .xl\:p-3 {
    padding: 0.75rem !important;
  }
  .xl\:px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .xl\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .xl\:pl-3 {
    padding-left: 0.75rem !important;
  }
  .xl\:pr-3 {
    padding-right: 0.75rem !important;
  }
  .xl\:pt-3 {
    padding-top: 0.75rem !important;
  }
  .xl\:pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .xl\:mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .xl\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .xl\:ml-3 {
    margin-left: 0.75rem !important;
  }
  .xl\:mr-3 {
    margin-right: 0.75rem !important;
  }
  .xl\:mt-3 {
    margin-top: 0.75rem !important;
  }
  .xl\:mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .xl\:m-3 {
    margin-bottom: 0.75rem !important;
    margin-top: 0.75rem !important;
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .xl\:gap-3 {
    gap: 0.75rem;
  }
  .xl\:gap-x-3 {
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }
  .xl\:gap-y-3 {
    row-gap: 0.75rem;
  }
  .xl\:text-3 {
    font-size: 0.75rem !important;
  }
  .xl\:h-3 {
    height: 0.75rem !important;
  }
  .xl\:w-3 {
    width: 0.75rem !important;
  }
  .xl\:top-3 {
    top: 0.75rem;
  }
  .xl\:-top-3 {
    top: -0.75rem;
  }
  .xl\:bottom-3 {
    bottom: 0.75rem;
  }
  .xl\:-bottom-3 {
    bottom: -0.75rem;
  }
  .xl\:left-3 {
    left: 0.75rem;
  }
  .xl\:-left-3 {
    left: -0.75rem;
  }
  .xl\:right-3 {
    right: 0.75rem;
  }
  .xl\:-right-3 {
    right: -0.75rem;
  }
  .xl\:start-3 {
    inset-inline-start: 0.75rem;
  }
  .xl\:-start-3 {
    inset-inline-start: -0.75rem;
  }
  .xl\:end-3 {
    inset-inline-end: 0.75rem;
  }
  .xl\:-end-3 {
    inset-inline-end: -0.75rem;
  }
  .xl\:p-4 {
    padding: 1rem !important;
  }
  .xl\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .xl\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .xl\:pl-4 {
    padding-left: 1rem !important;
  }
  .xl\:pr-4 {
    padding-right: 1rem !important;
  }
  .xl\:pt-4 {
    padding-top: 1rem !important;
  }
  .xl\:pb-4 {
    padding-bottom: 1rem !important;
  }
  .xl\:mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .xl\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .xl\:ml-4 {
    margin-left: 1rem !important;
  }
  .xl\:mr-4 {
    margin-right: 1rem !important;
  }
  .xl\:mt-4 {
    margin-top: 1rem !important;
  }
  .xl\:mb-4 {
    margin-bottom: 1rem !important;
  }
  .xl\:m-4 {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .xl\:gap-4 {
    gap: 1rem;
  }
  .xl\:gap-x-4 {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .xl\:gap-y-4 {
    row-gap: 1rem;
  }
  .xl\:text-4 {
    font-size: 1rem !important;
  }
  .xl\:h-4 {
    height: 1rem !important;
  }
  .xl\:w-4 {
    width: 1rem !important;
  }
  .xl\:top-4 {
    top: 1rem;
  }
  .xl\:-top-4 {
    top: -1rem;
  }
  .xl\:bottom-4 {
    bottom: 1rem;
  }
  .xl\:-bottom-4 {
    bottom: -1rem;
  }
  .xl\:left-4 {
    left: 1rem;
  }
  .xl\:-left-4 {
    left: -1rem;
  }
  .xl\:right-4 {
    right: 1rem;
  }
  .xl\:-right-4 {
    right: -1rem;
  }
  .xl\:start-4 {
    inset-inline-start: 1rem;
  }
  .xl\:-start-4 {
    inset-inline-start: -1rem;
  }
  .xl\:end-4 {
    inset-inline-end: 1rem;
  }
  .xl\:-end-4 {
    inset-inline-end: -1rem;
  }
  .xl\:p-4-and-half {
    padding: 1.075rem !important;
  }
  .xl\:px-4-and-half {
    padding-left: 1.075rem !important;
    padding-right: 1.075rem !important;
  }
  .xl\:py-4-and-half {
    padding-top: 1.075rem !important;
    padding-bottom: 1.075rem !important;
  }
  .xl\:pl-4-and-half {
    padding-left: 1.075rem !important;
  }
  .xl\:pr-4-and-half {
    padding-right: 1.075rem !important;
  }
  .xl\:pt-4-and-half {
    padding-top: 1.075rem !important;
  }
  .xl\:pb-4-and-half {
    padding-bottom: 1.075rem !important;
  }
  .xl\:mx-4-and-half {
    margin-left: 1.075rem !important;
    margin-right: 1.075rem !important;
  }
  .xl\:my-4-and-half {
    margin-top: 1.075rem !important;
    margin-bottom: 1.075rem !important;
  }
  .xl\:ml-4-and-half {
    margin-left: 1.075rem !important;
  }
  .xl\:mr-4-and-half {
    margin-right: 1.075rem !important;
  }
  .xl\:mt-4-and-half {
    margin-top: 1.075rem !important;
  }
  .xl\:mb-4-and-half {
    margin-bottom: 1.075rem !important;
  }
  .xl\:m-4-and-half {
    margin-bottom: 1.075rem !important;
    margin-top: 1.075rem !important;
    margin-right: 1.075rem !important;
    margin-left: 1.075rem !important;
  }
  .xl\:gap-4-and-half {
    gap: 1.075rem;
  }
  .xl\:gap-x-4-and-half {
    -moz-column-gap: 1.075rem;
         column-gap: 1.075rem;
  }
  .xl\:gap-y-4-and-half {
    row-gap: 1.075rem;
  }
  .xl\:text-4-and-half {
    font-size: 1.075rem !important;
  }
  .xl\:h-4-and-half {
    height: 1.075rem !important;
  }
  .xl\:w-4-and-half {
    width: 1.075rem !important;
  }
  .xl\:top-4-and-half {
    top: 1.075rem;
  }
  .xl\:-top-4-and-half {
    top: -1.075rem;
  }
  .xl\:bottom-4-and-half {
    bottom: 1.075rem;
  }
  .xl\:-bottom-4-and-half {
    bottom: -1.075rem;
  }
  .xl\:left-4-and-half {
    left: 1.075rem;
  }
  .xl\:-left-4-and-half {
    left: -1.075rem;
  }
  .xl\:right-4-and-half {
    right: 1.075rem;
  }
  .xl\:-right-4-and-half {
    right: -1.075rem;
  }
  .xl\:start-4-and-half {
    inset-inline-start: 1.075rem;
  }
  .xl\:-start-4-and-half {
    inset-inline-start: -1.075rem;
  }
  .xl\:end-4-and-half {
    inset-inline-end: 1.075rem;
  }
  .xl\:-end-4-and-half {
    inset-inline-end: -1.075rem;
  }
  .xl\:p-5 {
    padding: 1.25rem !important;
  }
  .xl\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .xl\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .xl\:pl-5 {
    padding-left: 1.25rem !important;
  }
  .xl\:pr-5 {
    padding-right: 1.25rem !important;
  }
  .xl\:pt-5 {
    padding-top: 1.25rem !important;
  }
  .xl\:pb-5 {
    padding-bottom: 1.25rem !important;
  }
  .xl\:mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
  .xl\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .xl\:ml-5 {
    margin-left: 1.25rem !important;
  }
  .xl\:mr-5 {
    margin-right: 1.25rem !important;
  }
  .xl\:mt-5 {
    margin-top: 1.25rem !important;
  }
  .xl\:mb-5 {
    margin-bottom: 1.25rem !important;
  }
  .xl\:m-5 {
    margin-bottom: 1.25rem !important;
    margin-top: 1.25rem !important;
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .xl\:gap-5 {
    gap: 1.25rem;
  }
  .xl\:gap-x-5 {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
  .xl\:gap-y-5 {
    row-gap: 1.25rem;
  }
  .xl\:text-5 {
    font-size: 1.25rem !important;
  }
  .xl\:h-5 {
    height: 1.25rem !important;
  }
  .xl\:w-5 {
    width: 1.25rem !important;
  }
  .xl\:top-5 {
    top: 1.25rem;
  }
  .xl\:-top-5 {
    top: -1.25rem;
  }
  .xl\:bottom-5 {
    bottom: 1.25rem;
  }
  .xl\:-bottom-5 {
    bottom: -1.25rem;
  }
  .xl\:left-5 {
    left: 1.25rem;
  }
  .xl\:-left-5 {
    left: -1.25rem;
  }
  .xl\:right-5 {
    right: 1.25rem;
  }
  .xl\:-right-5 {
    right: -1.25rem;
  }
  .xl\:start-5 {
    inset-inline-start: 1.25rem;
  }
  .xl\:-start-5 {
    inset-inline-start: -1.25rem;
  }
  .xl\:end-5 {
    inset-inline-end: 1.25rem;
  }
  .xl\:-end-5 {
    inset-inline-end: -1.25rem;
  }
  .xl\:p-6 {
    padding: 1.5rem !important;
  }
  .xl\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .xl\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .xl\:pl-6 {
    padding-left: 1.5rem !important;
  }
  .xl\:pr-6 {
    padding-right: 1.5rem !important;
  }
  .xl\:pt-6 {
    padding-top: 1.5rem !important;
  }
  .xl\:pb-6 {
    padding-bottom: 1.5rem !important;
  }
  .xl\:mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .xl\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .xl\:ml-6 {
    margin-left: 1.5rem !important;
  }
  .xl\:mr-6 {
    margin-right: 1.5rem !important;
  }
  .xl\:mt-6 {
    margin-top: 1.5rem !important;
  }
  .xl\:mb-6 {
    margin-bottom: 1.5rem !important;
  }
  .xl\:m-6 {
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .xl\:gap-6 {
    gap: 1.5rem;
  }
  .xl\:gap-x-6 {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
  .xl\:gap-y-6 {
    row-gap: 1.5rem;
  }
  .xl\:text-6 {
    font-size: 1.5rem !important;
  }
  .xl\:h-6 {
    height: 1.5rem !important;
  }
  .xl\:w-6 {
    width: 1.5rem !important;
  }
  .xl\:top-6 {
    top: 1.5rem;
  }
  .xl\:-top-6 {
    top: -1.5rem;
  }
  .xl\:bottom-6 {
    bottom: 1.5rem;
  }
  .xl\:-bottom-6 {
    bottom: -1.5rem;
  }
  .xl\:left-6 {
    left: 1.5rem;
  }
  .xl\:-left-6 {
    left: -1.5rem;
  }
  .xl\:right-6 {
    right: 1.5rem;
  }
  .xl\:-right-6 {
    right: -1.5rem;
  }
  .xl\:start-6 {
    inset-inline-start: 1.5rem;
  }
  .xl\:-start-6 {
    inset-inline-start: -1.5rem;
  }
  .xl\:end-6 {
    inset-inline-end: 1.5rem;
  }
  .xl\:-end-6 {
    inset-inline-end: -1.5rem;
  }
  .xl\:p-6-and-half {
    padding: 1.7rem !important;
  }
  .xl\:px-6-and-half {
    padding-left: 1.7rem !important;
    padding-right: 1.7rem !important;
  }
  .xl\:py-6-and-half {
    padding-top: 1.7rem !important;
    padding-bottom: 1.7rem !important;
  }
  .xl\:pl-6-and-half {
    padding-left: 1.7rem !important;
  }
  .xl\:pr-6-and-half {
    padding-right: 1.7rem !important;
  }
  .xl\:pt-6-and-half {
    padding-top: 1.7rem !important;
  }
  .xl\:pb-6-and-half {
    padding-bottom: 1.7rem !important;
  }
  .xl\:mx-6-and-half {
    margin-left: 1.7rem !important;
    margin-right: 1.7rem !important;
  }
  .xl\:my-6-and-half {
    margin-top: 1.7rem !important;
    margin-bottom: 1.7rem !important;
  }
  .xl\:ml-6-and-half {
    margin-left: 1.7rem !important;
  }
  .xl\:mr-6-and-half {
    margin-right: 1.7rem !important;
  }
  .xl\:mt-6-and-half {
    margin-top: 1.7rem !important;
  }
  .xl\:mb-6-and-half {
    margin-bottom: 1.7rem !important;
  }
  .xl\:m-6-and-half {
    margin-bottom: 1.7rem !important;
    margin-top: 1.7rem !important;
    margin-right: 1.7rem !important;
    margin-left: 1.7rem !important;
  }
  .xl\:gap-6-and-half {
    gap: 1.7rem;
  }
  .xl\:gap-x-6-and-half {
    -moz-column-gap: 1.7rem;
         column-gap: 1.7rem;
  }
  .xl\:gap-y-6-and-half {
    row-gap: 1.7rem;
  }
  .xl\:text-6-and-half {
    font-size: 1.7rem !important;
  }
  .xl\:h-6-and-half {
    height: 1.7rem !important;
  }
  .xl\:w-6-and-half {
    width: 1.7rem !important;
  }
  .xl\:top-6-and-half {
    top: 1.7rem;
  }
  .xl\:-top-6-and-half {
    top: -1.7rem;
  }
  .xl\:bottom-6-and-half {
    bottom: 1.7rem;
  }
  .xl\:-bottom-6-and-half {
    bottom: -1.7rem;
  }
  .xl\:left-6-and-half {
    left: 1.7rem;
  }
  .xl\:-left-6-and-half {
    left: -1.7rem;
  }
  .xl\:right-6-and-half {
    right: 1.7rem;
  }
  .xl\:-right-6-and-half {
    right: -1.7rem;
  }
  .xl\:start-6-and-half {
    inset-inline-start: 1.7rem;
  }
  .xl\:-start-6-and-half {
    inset-inline-start: -1.7rem;
  }
  .xl\:end-6-and-half {
    inset-inline-end: 1.7rem;
  }
  .xl\:-end-6-and-half {
    inset-inline-end: -1.7rem;
  }
  .xl\:p-7 {
    padding: 1.75rem !important;
  }
  .xl\:px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
  .xl\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .xl\:pl-7 {
    padding-left: 1.75rem !important;
  }
  .xl\:pr-7 {
    padding-right: 1.75rem !important;
  }
  .xl\:pt-7 {
    padding-top: 1.75rem !important;
  }
  .xl\:pb-7 {
    padding-bottom: 1.75rem !important;
  }
  .xl\:mx-7 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }
  .xl\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .xl\:ml-7 {
    margin-left: 1.75rem !important;
  }
  .xl\:mr-7 {
    margin-right: 1.75rem !important;
  }
  .xl\:mt-7 {
    margin-top: 1.75rem !important;
  }
  .xl\:mb-7 {
    margin-bottom: 1.75rem !important;
  }
  .xl\:m-7 {
    margin-bottom: 1.75rem !important;
    margin-top: 1.75rem !important;
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .xl\:gap-7 {
    gap: 1.75rem;
  }
  .xl\:gap-x-7 {
    -moz-column-gap: 1.75rem;
         column-gap: 1.75rem;
  }
  .xl\:gap-y-7 {
    row-gap: 1.75rem;
  }
  .xl\:text-7 {
    font-size: 1.75rem !important;
  }
  .xl\:h-7 {
    height: 1.75rem !important;
  }
  .xl\:w-7 {
    width: 1.75rem !important;
  }
  .xl\:top-7 {
    top: 1.75rem;
  }
  .xl\:-top-7 {
    top: -1.75rem;
  }
  .xl\:bottom-7 {
    bottom: 1.75rem;
  }
  .xl\:-bottom-7 {
    bottom: -1.75rem;
  }
  .xl\:left-7 {
    left: 1.75rem;
  }
  .xl\:-left-7 {
    left: -1.75rem;
  }
  .xl\:right-7 {
    right: 1.75rem;
  }
  .xl\:-right-7 {
    right: -1.75rem;
  }
  .xl\:start-7 {
    inset-inline-start: 1.75rem;
  }
  .xl\:-start-7 {
    inset-inline-start: -1.75rem;
  }
  .xl\:end-7 {
    inset-inline-end: 1.75rem;
  }
  .xl\:-end-7 {
    inset-inline-end: -1.75rem;
  }
  .xl\:p-8 {
    padding: 2rem !important;
  }
  .xl\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .xl\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .xl\:pl-8 {
    padding-left: 2rem !important;
  }
  .xl\:pr-8 {
    padding-right: 2rem !important;
  }
  .xl\:pt-8 {
    padding-top: 2rem !important;
  }
  .xl\:pb-8 {
    padding-bottom: 2rem !important;
  }
  .xl\:mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .xl\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .xl\:ml-8 {
    margin-left: 2rem !important;
  }
  .xl\:mr-8 {
    margin-right: 2rem !important;
  }
  .xl\:mt-8 {
    margin-top: 2rem !important;
  }
  .xl\:mb-8 {
    margin-bottom: 2rem !important;
  }
  .xl\:m-8 {
    margin-bottom: 2rem !important;
    margin-top: 2rem !important;
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .xl\:gap-8 {
    gap: 2rem;
  }
  .xl\:gap-x-8 {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .xl\:gap-y-8 {
    row-gap: 2rem;
  }
  .xl\:text-8 {
    font-size: 2rem !important;
  }
  .xl\:h-8 {
    height: 2rem !important;
  }
  .xl\:w-8 {
    width: 2rem !important;
  }
  .xl\:top-8 {
    top: 2rem;
  }
  .xl\:-top-8 {
    top: -2rem;
  }
  .xl\:bottom-8 {
    bottom: 2rem;
  }
  .xl\:-bottom-8 {
    bottom: -2rem;
  }
  .xl\:left-8 {
    left: 2rem;
  }
  .xl\:-left-8 {
    left: -2rem;
  }
  .xl\:right-8 {
    right: 2rem;
  }
  .xl\:-right-8 {
    right: -2rem;
  }
  .xl\:start-8 {
    inset-inline-start: 2rem;
  }
  .xl\:-start-8 {
    inset-inline-start: -2rem;
  }
  .xl\:end-8 {
    inset-inline-end: 2rem;
  }
  .xl\:-end-8 {
    inset-inline-end: -2rem;
  }
  .xl\:p-9 {
    padding: 2.25rem !important;
  }
  .xl\:px-9 {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }
  .xl\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .xl\:pl-9 {
    padding-left: 2.25rem !important;
  }
  .xl\:pr-9 {
    padding-right: 2.25rem !important;
  }
  .xl\:pt-9 {
    padding-top: 2.25rem !important;
  }
  .xl\:pb-9 {
    padding-bottom: 2.25rem !important;
  }
  .xl\:mx-9 {
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }
  .xl\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .xl\:ml-9 {
    margin-left: 2.25rem !important;
  }
  .xl\:mr-9 {
    margin-right: 2.25rem !important;
  }
  .xl\:mt-9 {
    margin-top: 2.25rem !important;
  }
  .xl\:mb-9 {
    margin-bottom: 2.25rem !important;
  }
  .xl\:m-9 {
    margin-bottom: 2.25rem !important;
    margin-top: 2.25rem !important;
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .xl\:gap-9 {
    gap: 2.25rem;
  }
  .xl\:gap-x-9 {
    -moz-column-gap: 2.25rem;
         column-gap: 2.25rem;
  }
  .xl\:gap-y-9 {
    row-gap: 2.25rem;
  }
  .xl\:text-9 {
    font-size: 2.25rem !important;
  }
  .xl\:h-9 {
    height: 2.25rem !important;
  }
  .xl\:w-9 {
    width: 2.25rem !important;
  }
  .xl\:top-9 {
    top: 2.25rem;
  }
  .xl\:-top-9 {
    top: -2.25rem;
  }
  .xl\:bottom-9 {
    bottom: 2.25rem;
  }
  .xl\:-bottom-9 {
    bottom: -2.25rem;
  }
  .xl\:left-9 {
    left: 2.25rem;
  }
  .xl\:-left-9 {
    left: -2.25rem;
  }
  .xl\:right-9 {
    right: 2.25rem;
  }
  .xl\:-right-9 {
    right: -2.25rem;
  }
  .xl\:start-9 {
    inset-inline-start: 2.25rem;
  }
  .xl\:-start-9 {
    inset-inline-start: -2.25rem;
  }
  .xl\:end-9 {
    inset-inline-end: 2.25rem;
  }
  .xl\:-end-9 {
    inset-inline-end: -2.25rem;
  }
  .xl\:p-10 {
    padding: 2.5rem !important;
  }
  .xl\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .xl\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .xl\:pl-10 {
    padding-left: 2.5rem !important;
  }
  .xl\:pr-10 {
    padding-right: 2.5rem !important;
  }
  .xl\:pt-10 {
    padding-top: 2.5rem !important;
  }
  .xl\:pb-10 {
    padding-bottom: 2.5rem !important;
  }
  .xl\:mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .xl\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .xl\:ml-10 {
    margin-left: 2.5rem !important;
  }
  .xl\:mr-10 {
    margin-right: 2.5rem !important;
  }
  .xl\:mt-10 {
    margin-top: 2.5rem !important;
  }
  .xl\:mb-10 {
    margin-bottom: 2.5rem !important;
  }
  .xl\:m-10 {
    margin-bottom: 2.5rem !important;
    margin-top: 2.5rem !important;
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .xl\:gap-10 {
    gap: 2.5rem;
  }
  .xl\:gap-x-10 {
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }
  .xl\:gap-y-10 {
    row-gap: 2.5rem;
  }
  .xl\:text-10 {
    font-size: 2.5rem !important;
  }
  .xl\:h-10 {
    height: 2.5rem !important;
  }
  .xl\:w-10 {
    width: 2.5rem !important;
  }
  .xl\:top-10 {
    top: 2.5rem;
  }
  .xl\:-top-10 {
    top: -2.5rem;
  }
  .xl\:bottom-10 {
    bottom: 2.5rem;
  }
  .xl\:-bottom-10 {
    bottom: -2.5rem;
  }
  .xl\:left-10 {
    left: 2.5rem;
  }
  .xl\:-left-10 {
    left: -2.5rem;
  }
  .xl\:right-10 {
    right: 2.5rem;
  }
  .xl\:-right-10 {
    right: -2.5rem;
  }
  .xl\:start-10 {
    inset-inline-start: 2.5rem;
  }
  .xl\:-start-10 {
    inset-inline-start: -2.5rem;
  }
  .xl\:end-10 {
    inset-inline-end: 2.5rem;
  }
  .xl\:-end-10 {
    inset-inline-end: -2.5rem;
  }
  .xl\:p-11 {
    padding: 2.75rem !important;
  }
  .xl\:px-11 {
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }
  .xl\:py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .xl\:pl-11 {
    padding-left: 2.75rem !important;
  }
  .xl\:pr-11 {
    padding-right: 2.75rem !important;
  }
  .xl\:pt-11 {
    padding-top: 2.75rem !important;
  }
  .xl\:pb-11 {
    padding-bottom: 2.75rem !important;
  }
  .xl\:mx-11 {
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }
  .xl\:my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
  .xl\:ml-11 {
    margin-left: 2.75rem !important;
  }
  .xl\:mr-11 {
    margin-right: 2.75rem !important;
  }
  .xl\:mt-11 {
    margin-top: 2.75rem !important;
  }
  .xl\:mb-11 {
    margin-bottom: 2.75rem !important;
  }
  .xl\:m-11 {
    margin-bottom: 2.75rem !important;
    margin-top: 2.75rem !important;
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .xl\:gap-11 {
    gap: 2.75rem;
  }
  .xl\:gap-x-11 {
    -moz-column-gap: 2.75rem;
         column-gap: 2.75rem;
  }
  .xl\:gap-y-11 {
    row-gap: 2.75rem;
  }
  .xl\:text-11 {
    font-size: 2.75rem !important;
  }
  .xl\:h-11 {
    height: 2.75rem !important;
  }
  .xl\:w-11 {
    width: 2.75rem !important;
  }
  .xl\:top-11 {
    top: 2.75rem;
  }
  .xl\:-top-11 {
    top: -2.75rem;
  }
  .xl\:bottom-11 {
    bottom: 2.75rem;
  }
  .xl\:-bottom-11 {
    bottom: -2.75rem;
  }
  .xl\:left-11 {
    left: 2.75rem;
  }
  .xl\:-left-11 {
    left: -2.75rem;
  }
  .xl\:right-11 {
    right: 2.75rem;
  }
  .xl\:-right-11 {
    right: -2.75rem;
  }
  .xl\:start-11 {
    inset-inline-start: 2.75rem;
  }
  .xl\:-start-11 {
    inset-inline-start: -2.75rem;
  }
  .xl\:end-11 {
    inset-inline-end: 2.75rem;
  }
  .xl\:-end-11 {
    inset-inline-end: -2.75rem;
  }
  .xl\:p-12 {
    padding: 3rem !important;
  }
  .xl\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .xl\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .xl\:pl-12 {
    padding-left: 3rem !important;
  }
  .xl\:pr-12 {
    padding-right: 3rem !important;
  }
  .xl\:pt-12 {
    padding-top: 3rem !important;
  }
  .xl\:pb-12 {
    padding-bottom: 3rem !important;
  }
  .xl\:mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .xl\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .xl\:ml-12 {
    margin-left: 3rem !important;
  }
  .xl\:mr-12 {
    margin-right: 3rem !important;
  }
  .xl\:mt-12 {
    margin-top: 3rem !important;
  }
  .xl\:mb-12 {
    margin-bottom: 3rem !important;
  }
  .xl\:m-12 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .xl\:gap-12 {
    gap: 3rem;
  }
  .xl\:gap-x-12 {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
  .xl\:gap-y-12 {
    row-gap: 3rem;
  }
  .xl\:text-12 {
    font-size: 3rem !important;
  }
  .xl\:h-12 {
    height: 3rem !important;
  }
  .xl\:w-12 {
    width: 3rem !important;
  }
  .xl\:top-12 {
    top: 3rem;
  }
  .xl\:-top-12 {
    top: -3rem;
  }
  .xl\:bottom-12 {
    bottom: 3rem;
  }
  .xl\:-bottom-12 {
    bottom: -3rem;
  }
  .xl\:left-12 {
    left: 3rem;
  }
  .xl\:-left-12 {
    left: -3rem;
  }
  .xl\:right-12 {
    right: 3rem;
  }
  .xl\:-right-12 {
    right: -3rem;
  }
  .xl\:start-12 {
    inset-inline-start: 3rem;
  }
  .xl\:-start-12 {
    inset-inline-start: -3rem;
  }
  .xl\:end-12 {
    inset-inline-end: 3rem;
  }
  .xl\:-end-12 {
    inset-inline-end: -3rem;
  }
  .xl\:p-14 {
    padding: 3.5rem !important;
  }
  .xl\:px-14 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .xl\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .xl\:pl-14 {
    padding-left: 3.5rem !important;
  }
  .xl\:pr-14 {
    padding-right: 3.5rem !important;
  }
  .xl\:pt-14 {
    padding-top: 3.5rem !important;
  }
  .xl\:pb-14 {
    padding-bottom: 3.5rem !important;
  }
  .xl\:mx-14 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }
  .xl\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .xl\:ml-14 {
    margin-left: 3.5rem !important;
  }
  .xl\:mr-14 {
    margin-right: 3.5rem !important;
  }
  .xl\:mt-14 {
    margin-top: 3.5rem !important;
  }
  .xl\:mb-14 {
    margin-bottom: 3.5rem !important;
  }
  .xl\:m-14 {
    margin-bottom: 3.5rem !important;
    margin-top: 3.5rem !important;
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .xl\:gap-14 {
    gap: 3.5rem;
  }
  .xl\:gap-x-14 {
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }
  .xl\:gap-y-14 {
    row-gap: 3.5rem;
  }
  .xl\:text-14 {
    font-size: 3.5rem !important;
  }
  .xl\:h-14 {
    height: 3.5rem !important;
  }
  .xl\:w-14 {
    width: 3.5rem !important;
  }
  .xl\:top-14 {
    top: 3.5rem;
  }
  .xl\:-top-14 {
    top: -3.5rem;
  }
  .xl\:bottom-14 {
    bottom: 3.5rem;
  }
  .xl\:-bottom-14 {
    bottom: -3.5rem;
  }
  .xl\:left-14 {
    left: 3.5rem;
  }
  .xl\:-left-14 {
    left: -3.5rem;
  }
  .xl\:right-14 {
    right: 3.5rem;
  }
  .xl\:-right-14 {
    right: -3.5rem;
  }
  .xl\:start-14 {
    inset-inline-start: 3.5rem;
  }
  .xl\:-start-14 {
    inset-inline-start: -3.5rem;
  }
  .xl\:end-14 {
    inset-inline-end: 3.5rem;
  }
  .xl\:-end-14 {
    inset-inline-end: -3.5rem;
  }
  .xl\:p-15 {
    padding: 3.75rem !important;
  }
  .xl\:px-15 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }
  .xl\:py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .xl\:pl-15 {
    padding-left: 3.75rem !important;
  }
  .xl\:pr-15 {
    padding-right: 3.75rem !important;
  }
  .xl\:pt-15 {
    padding-top: 3.75rem !important;
  }
  .xl\:pb-15 {
    padding-bottom: 3.75rem !important;
  }
  .xl\:mx-15 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }
  .xl\:my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .xl\:ml-15 {
    margin-left: 3.75rem !important;
  }
  .xl\:mr-15 {
    margin-right: 3.75rem !important;
  }
  .xl\:mt-15 {
    margin-top: 3.75rem !important;
  }
  .xl\:mb-15 {
    margin-bottom: 3.75rem !important;
  }
  .xl\:m-15 {
    margin-bottom: 3.75rem !important;
    margin-top: 3.75rem !important;
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .xl\:gap-15 {
    gap: 3.75rem;
  }
  .xl\:gap-x-15 {
    -moz-column-gap: 3.75rem;
         column-gap: 3.75rem;
  }
  .xl\:gap-y-15 {
    row-gap: 3.75rem;
  }
  .xl\:text-15 {
    font-size: 3.75rem !important;
  }
  .xl\:h-15 {
    height: 3.75rem !important;
  }
  .xl\:w-15 {
    width: 3.75rem !important;
  }
  .xl\:top-15 {
    top: 3.75rem;
  }
  .xl\:-top-15 {
    top: -3.75rem;
  }
  .xl\:bottom-15 {
    bottom: 3.75rem;
  }
  .xl\:-bottom-15 {
    bottom: -3.75rem;
  }
  .xl\:left-15 {
    left: 3.75rem;
  }
  .xl\:-left-15 {
    left: -3.75rem;
  }
  .xl\:right-15 {
    right: 3.75rem;
  }
  .xl\:-right-15 {
    right: -3.75rem;
  }
  .xl\:start-15 {
    inset-inline-start: 3.75rem;
  }
  .xl\:-start-15 {
    inset-inline-start: -3.75rem;
  }
  .xl\:end-15 {
    inset-inline-end: 3.75rem;
  }
  .xl\:-end-15 {
    inset-inline-end: -3.75rem;
  }
  .xl\:p-16 {
    padding: 4rem !important;
  }
  .xl\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .xl\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .xl\:pl-16 {
    padding-left: 4rem !important;
  }
  .xl\:pr-16 {
    padding-right: 4rem !important;
  }
  .xl\:pt-16 {
    padding-top: 4rem !important;
  }
  .xl\:pb-16 {
    padding-bottom: 4rem !important;
  }
  .xl\:mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .xl\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .xl\:ml-16 {
    margin-left: 4rem !important;
  }
  .xl\:mr-16 {
    margin-right: 4rem !important;
  }
  .xl\:mt-16 {
    margin-top: 4rem !important;
  }
  .xl\:mb-16 {
    margin-bottom: 4rem !important;
  }
  .xl\:m-16 {
    margin-bottom: 4rem !important;
    margin-top: 4rem !important;
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .xl\:gap-16 {
    gap: 4rem;
  }
  .xl\:gap-x-16 {
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
  .xl\:gap-y-16 {
    row-gap: 4rem;
  }
  .xl\:text-16 {
    font-size: 4rem !important;
  }
  .xl\:h-16 {
    height: 4rem !important;
  }
  .xl\:w-16 {
    width: 4rem !important;
  }
  .xl\:top-16 {
    top: 4rem;
  }
  .xl\:-top-16 {
    top: -4rem;
  }
  .xl\:bottom-16 {
    bottom: 4rem;
  }
  .xl\:-bottom-16 {
    bottom: -4rem;
  }
  .xl\:left-16 {
    left: 4rem;
  }
  .xl\:-left-16 {
    left: -4rem;
  }
  .xl\:right-16 {
    right: 4rem;
  }
  .xl\:-right-16 {
    right: -4rem;
  }
  .xl\:start-16 {
    inset-inline-start: 4rem;
  }
  .xl\:-start-16 {
    inset-inline-start: -4rem;
  }
  .xl\:end-16 {
    inset-inline-end: 4rem;
  }
  .xl\:-end-16 {
    inset-inline-end: -4rem;
  }
  .xl\:p-18 {
    padding: 4.5rem !important;
  }
  .xl\:px-18 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }
  .xl\:py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .xl\:pl-18 {
    padding-left: 4.5rem !important;
  }
  .xl\:pr-18 {
    padding-right: 4.5rem !important;
  }
  .xl\:pt-18 {
    padding-top: 4.5rem !important;
  }
  .xl\:pb-18 {
    padding-bottom: 4.5rem !important;
  }
  .xl\:mx-18 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
  .xl\:my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .xl\:ml-18 {
    margin-left: 4.5rem !important;
  }
  .xl\:mr-18 {
    margin-right: 4.5rem !important;
  }
  .xl\:mt-18 {
    margin-top: 4.5rem !important;
  }
  .xl\:mb-18 {
    margin-bottom: 4.5rem !important;
  }
  .xl\:m-18 {
    margin-bottom: 4.5rem !important;
    margin-top: 4.5rem !important;
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .xl\:gap-18 {
    gap: 4.5rem;
  }
  .xl\:gap-x-18 {
    -moz-column-gap: 4.5rem;
         column-gap: 4.5rem;
  }
  .xl\:gap-y-18 {
    row-gap: 4.5rem;
  }
  .xl\:text-18 {
    font-size: 4.5rem !important;
  }
  .xl\:h-18 {
    height: 4.5rem !important;
  }
  .xl\:w-18 {
    width: 4.5rem !important;
  }
  .xl\:top-18 {
    top: 4.5rem;
  }
  .xl\:-top-18 {
    top: -4.5rem;
  }
  .xl\:bottom-18 {
    bottom: 4.5rem;
  }
  .xl\:-bottom-18 {
    bottom: -4.5rem;
  }
  .xl\:left-18 {
    left: 4.5rem;
  }
  .xl\:-left-18 {
    left: -4.5rem;
  }
  .xl\:right-18 {
    right: 4.5rem;
  }
  .xl\:-right-18 {
    right: -4.5rem;
  }
  .xl\:start-18 {
    inset-inline-start: 4.5rem;
  }
  .xl\:-start-18 {
    inset-inline-start: -4.5rem;
  }
  .xl\:end-18 {
    inset-inline-end: 4.5rem;
  }
  .xl\:-end-18 {
    inset-inline-end: -4.5rem;
  }
  .xl\:p-20 {
    padding: 5rem !important;
  }
  .xl\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .xl\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .xl\:pl-20 {
    padding-left: 5rem !important;
  }
  .xl\:pr-20 {
    padding-right: 5rem !important;
  }
  .xl\:pt-20 {
    padding-top: 5rem !important;
  }
  .xl\:pb-20 {
    padding-bottom: 5rem !important;
  }
  .xl\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .xl\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .xl\:ml-20 {
    margin-left: 5rem !important;
  }
  .xl\:mr-20 {
    margin-right: 5rem !important;
  }
  .xl\:mt-20 {
    margin-top: 5rem !important;
  }
  .xl\:mb-20 {
    margin-bottom: 5rem !important;
  }
  .xl\:m-20 {
    margin-bottom: 5rem !important;
    margin-top: 5rem !important;
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .xl\:gap-20 {
    gap: 5rem;
  }
  .xl\:gap-x-20 {
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
  .xl\:gap-y-20 {
    row-gap: 5rem;
  }
  .xl\:text-20 {
    font-size: 5rem !important;
  }
  .xl\:h-20 {
    height: 5rem !important;
  }
  .xl\:w-20 {
    width: 5rem !important;
  }
  .xl\:top-20 {
    top: 5rem;
  }
  .xl\:-top-20 {
    top: -5rem;
  }
  .xl\:bottom-20 {
    bottom: 5rem;
  }
  .xl\:-bottom-20 {
    bottom: -5rem;
  }
  .xl\:left-20 {
    left: 5rem;
  }
  .xl\:-left-20 {
    left: -5rem;
  }
  .xl\:right-20 {
    right: 5rem;
  }
  .xl\:-right-20 {
    right: -5rem;
  }
  .xl\:start-20 {
    inset-inline-start: 5rem;
  }
  .xl\:-start-20 {
    inset-inline-start: -5rem;
  }
  .xl\:end-20 {
    inset-inline-end: 5rem;
  }
  .xl\:-end-20 {
    inset-inline-end: -5rem;
  }
  .xl\:p-24 {
    padding: 6rem !important;
  }
  .xl\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .xl\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .xl\:pl-24 {
    padding-left: 6rem !important;
  }
  .xl\:pr-24 {
    padding-right: 6rem !important;
  }
  .xl\:pt-24 {
    padding-top: 6rem !important;
  }
  .xl\:pb-24 {
    padding-bottom: 6rem !important;
  }
  .xl\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .xl\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .xl\:ml-24 {
    margin-left: 6rem !important;
  }
  .xl\:mr-24 {
    margin-right: 6rem !important;
  }
  .xl\:mt-24 {
    margin-top: 6rem !important;
  }
  .xl\:mb-24 {
    margin-bottom: 6rem !important;
  }
  .xl\:m-24 {
    margin-bottom: 6rem !important;
    margin-top: 6rem !important;
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .xl\:gap-24 {
    gap: 6rem;
  }
  .xl\:gap-x-24 {
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }
  .xl\:gap-y-24 {
    row-gap: 6rem;
  }
  .xl\:text-24 {
    font-size: 6rem !important;
  }
  .xl\:h-24 {
    height: 6rem !important;
  }
  .xl\:w-24 {
    width: 6rem !important;
  }
  .xl\:top-24 {
    top: 6rem;
  }
  .xl\:-top-24 {
    top: -6rem;
  }
  .xl\:bottom-24 {
    bottom: 6rem;
  }
  .xl\:-bottom-24 {
    bottom: -6rem;
  }
  .xl\:left-24 {
    left: 6rem;
  }
  .xl\:-left-24 {
    left: -6rem;
  }
  .xl\:right-24 {
    right: 6rem;
  }
  .xl\:-right-24 {
    right: -6rem;
  }
  .xl\:start-24 {
    inset-inline-start: 6rem;
  }
  .xl\:-start-24 {
    inset-inline-start: -6rem;
  }
  .xl\:end-24 {
    inset-inline-end: 6rem;
  }
  .xl\:-end-24 {
    inset-inline-end: -6rem;
  }
  .xl\:p-28 {
    padding: 7rem !important;
  }
  .xl\:px-28 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .xl\:py-28 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .xl\:pl-28 {
    padding-left: 7rem !important;
  }
  .xl\:pr-28 {
    padding-right: 7rem !important;
  }
  .xl\:pt-28 {
    padding-top: 7rem !important;
  }
  .xl\:pb-28 {
    padding-bottom: 7rem !important;
  }
  .xl\:mx-28 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .xl\:my-28 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .xl\:ml-28 {
    margin-left: 7rem !important;
  }
  .xl\:mr-28 {
    margin-right: 7rem !important;
  }
  .xl\:mt-28 {
    margin-top: 7rem !important;
  }
  .xl\:mb-28 {
    margin-bottom: 7rem !important;
  }
  .xl\:m-28 {
    margin-bottom: 7rem !important;
    margin-top: 7rem !important;
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .xl\:gap-28 {
    gap: 7rem;
  }
  .xl\:gap-x-28 {
    -moz-column-gap: 7rem;
         column-gap: 7rem;
  }
  .xl\:gap-y-28 {
    row-gap: 7rem;
  }
  .xl\:text-28 {
    font-size: 7rem !important;
  }
  .xl\:h-28 {
    height: 7rem !important;
  }
  .xl\:w-28 {
    width: 7rem !important;
  }
  .xl\:top-28 {
    top: 7rem;
  }
  .xl\:-top-28 {
    top: -7rem;
  }
  .xl\:bottom-28 {
    bottom: 7rem;
  }
  .xl\:-bottom-28 {
    bottom: -7rem;
  }
  .xl\:left-28 {
    left: 7rem;
  }
  .xl\:-left-28 {
    left: -7rem;
  }
  .xl\:right-28 {
    right: 7rem;
  }
  .xl\:-right-28 {
    right: -7rem;
  }
  .xl\:start-28 {
    inset-inline-start: 7rem;
  }
  .xl\:-start-28 {
    inset-inline-start: -7rem;
  }
  .xl\:end-28 {
    inset-inline-end: 7rem;
  }
  .xl\:-end-28 {
    inset-inline-end: -7rem;
  }
  .xl\:p-32 {
    padding: 8rem !important;
  }
  .xl\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .xl\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .xl\:pl-32 {
    padding-left: 8rem !important;
  }
  .xl\:pr-32 {
    padding-right: 8rem !important;
  }
  .xl\:pt-32 {
    padding-top: 8rem !important;
  }
  .xl\:pb-32 {
    padding-bottom: 8rem !important;
  }
  .xl\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .xl\:my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .xl\:ml-32 {
    margin-left: 8rem !important;
  }
  .xl\:mr-32 {
    margin-right: 8rem !important;
  }
  .xl\:mt-32 {
    margin-top: 8rem !important;
  }
  .xl\:mb-32 {
    margin-bottom: 8rem !important;
  }
  .xl\:m-32 {
    margin-bottom: 8rem !important;
    margin-top: 8rem !important;
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .xl\:gap-32 {
    gap: 8rem;
  }
  .xl\:gap-x-32 {
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }
  .xl\:gap-y-32 {
    row-gap: 8rem;
  }
  .xl\:text-32 {
    font-size: 8rem !important;
  }
  .xl\:h-32 {
    height: 8rem !important;
  }
  .xl\:w-32 {
    width: 8rem !important;
  }
  .xl\:top-32 {
    top: 8rem;
  }
  .xl\:-top-32 {
    top: -8rem;
  }
  .xl\:bottom-32 {
    bottom: 8rem;
  }
  .xl\:-bottom-32 {
    bottom: -8rem;
  }
  .xl\:left-32 {
    left: 8rem;
  }
  .xl\:-left-32 {
    left: -8rem;
  }
  .xl\:right-32 {
    right: 8rem;
  }
  .xl\:-right-32 {
    right: -8rem;
  }
  .xl\:start-32 {
    inset-inline-start: 8rem;
  }
  .xl\:-start-32 {
    inset-inline-start: -8rem;
  }
  .xl\:end-32 {
    inset-inline-end: 8rem;
  }
  .xl\:-end-32 {
    inset-inline-end: -8rem;
  }
  .xl\:p-36 {
    padding: 9rem !important;
  }
  .xl\:px-36 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .xl\:py-36 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .xl\:pl-36 {
    padding-left: 9rem !important;
  }
  .xl\:pr-36 {
    padding-right: 9rem !important;
  }
  .xl\:pt-36 {
    padding-top: 9rem !important;
  }
  .xl\:pb-36 {
    padding-bottom: 9rem !important;
  }
  .xl\:mx-36 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .xl\:my-36 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .xl\:ml-36 {
    margin-left: 9rem !important;
  }
  .xl\:mr-36 {
    margin-right: 9rem !important;
  }
  .xl\:mt-36 {
    margin-top: 9rem !important;
  }
  .xl\:mb-36 {
    margin-bottom: 9rem !important;
  }
  .xl\:m-36 {
    margin-bottom: 9rem !important;
    margin-top: 9rem !important;
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .xl\:gap-36 {
    gap: 9rem;
  }
  .xl\:gap-x-36 {
    -moz-column-gap: 9rem;
         column-gap: 9rem;
  }
  .xl\:gap-y-36 {
    row-gap: 9rem;
  }
  .xl\:text-36 {
    font-size: 9rem !important;
  }
  .xl\:h-36 {
    height: 9rem !important;
  }
  .xl\:w-36 {
    width: 9rem !important;
  }
  .xl\:top-36 {
    top: 9rem;
  }
  .xl\:-top-36 {
    top: -9rem;
  }
  .xl\:bottom-36 {
    bottom: 9rem;
  }
  .xl\:-bottom-36 {
    bottom: -9rem;
  }
  .xl\:left-36 {
    left: 9rem;
  }
  .xl\:-left-36 {
    left: -9rem;
  }
  .xl\:right-36 {
    right: 9rem;
  }
  .xl\:-right-36 {
    right: -9rem;
  }
  .xl\:start-36 {
    inset-inline-start: 9rem;
  }
  .xl\:-start-36 {
    inset-inline-start: -9rem;
  }
  .xl\:end-36 {
    inset-inline-end: 9rem;
  }
  .xl\:-end-36 {
    inset-inline-end: -9rem;
  }
  .xl\:p-38 {
    padding: 9.5rem !important;
  }
  .xl\:px-38 {
    padding-left: 9.5rem !important;
    padding-right: 9.5rem !important;
  }
  .xl\:py-38 {
    padding-top: 9.5rem !important;
    padding-bottom: 9.5rem !important;
  }
  .xl\:pl-38 {
    padding-left: 9.5rem !important;
  }
  .xl\:pr-38 {
    padding-right: 9.5rem !important;
  }
  .xl\:pt-38 {
    padding-top: 9.5rem !important;
  }
  .xl\:pb-38 {
    padding-bottom: 9.5rem !important;
  }
  .xl\:mx-38 {
    margin-left: 9.5rem !important;
    margin-right: 9.5rem !important;
  }
  .xl\:my-38 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
  }
  .xl\:ml-38 {
    margin-left: 9.5rem !important;
  }
  .xl\:mr-38 {
    margin-right: 9.5rem !important;
  }
  .xl\:mt-38 {
    margin-top: 9.5rem !important;
  }
  .xl\:mb-38 {
    margin-bottom: 9.5rem !important;
  }
  .xl\:m-38 {
    margin-bottom: 9.5rem !important;
    margin-top: 9.5rem !important;
    margin-right: 9.5rem !important;
    margin-left: 9.5rem !important;
  }
  .xl\:gap-38 {
    gap: 9.5rem;
  }
  .xl\:gap-x-38 {
    -moz-column-gap: 9.5rem;
         column-gap: 9.5rem;
  }
  .xl\:gap-y-38 {
    row-gap: 9.5rem;
  }
  .xl\:text-38 {
    font-size: 9.5rem !important;
  }
  .xl\:h-38 {
    height: 9.5rem !important;
  }
  .xl\:w-38 {
    width: 9.5rem !important;
  }
  .xl\:top-38 {
    top: 9.5rem;
  }
  .xl\:-top-38 {
    top: -9.5rem;
  }
  .xl\:bottom-38 {
    bottom: 9.5rem;
  }
  .xl\:-bottom-38 {
    bottom: -9.5rem;
  }
  .xl\:left-38 {
    left: 9.5rem;
  }
  .xl\:-left-38 {
    left: -9.5rem;
  }
  .xl\:right-38 {
    right: 9.5rem;
  }
  .xl\:-right-38 {
    right: -9.5rem;
  }
  .xl\:start-38 {
    inset-inline-start: 9.5rem;
  }
  .xl\:-start-38 {
    inset-inline-start: -9.5rem;
  }
  .xl\:end-38 {
    inset-inline-end: 9.5rem;
  }
  .xl\:-end-38 {
    inset-inline-end: -9.5rem;
  }
  .xl\:p-40 {
    padding: 10rem !important;
  }
  .xl\:px-40 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .xl\:py-40 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .xl\:pl-40 {
    padding-left: 10rem !important;
  }
  .xl\:pr-40 {
    padding-right: 10rem !important;
  }
  .xl\:pt-40 {
    padding-top: 10rem !important;
  }
  .xl\:pb-40 {
    padding-bottom: 10rem !important;
  }
  .xl\:mx-40 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .xl\:my-40 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .xl\:ml-40 {
    margin-left: 10rem !important;
  }
  .xl\:mr-40 {
    margin-right: 10rem !important;
  }
  .xl\:mt-40 {
    margin-top: 10rem !important;
  }
  .xl\:mb-40 {
    margin-bottom: 10rem !important;
  }
  .xl\:m-40 {
    margin-bottom: 10rem !important;
    margin-top: 10rem !important;
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .xl\:gap-40 {
    gap: 10rem;
  }
  .xl\:gap-x-40 {
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }
  .xl\:gap-y-40 {
    row-gap: 10rem;
  }
  .xl\:text-40 {
    font-size: 10rem !important;
  }
  .xl\:h-40 {
    height: 10rem !important;
  }
  .xl\:w-40 {
    width: 10rem !important;
  }
  .xl\:top-40 {
    top: 10rem;
  }
  .xl\:-top-40 {
    top: -10rem;
  }
  .xl\:bottom-40 {
    bottom: 10rem;
  }
  .xl\:-bottom-40 {
    bottom: -10rem;
  }
  .xl\:left-40 {
    left: 10rem;
  }
  .xl\:-left-40 {
    left: -10rem;
  }
  .xl\:right-40 {
    right: 10rem;
  }
  .xl\:-right-40 {
    right: -10rem;
  }
  .xl\:start-40 {
    inset-inline-start: 10rem;
  }
  .xl\:-start-40 {
    inset-inline-start: -10rem;
  }
  .xl\:end-40 {
    inset-inline-end: 10rem;
  }
  .xl\:-end-40 {
    inset-inline-end: -10rem;
  }
  .xl\:p-44 {
    padding: 11rem !important;
  }
  .xl\:px-44 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }
  .xl\:py-44 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .xl\:pl-44 {
    padding-left: 11rem !important;
  }
  .xl\:pr-44 {
    padding-right: 11rem !important;
  }
  .xl\:pt-44 {
    padding-top: 11rem !important;
  }
  .xl\:pb-44 {
    padding-bottom: 11rem !important;
  }
  .xl\:mx-44 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }
  .xl\:my-44 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .xl\:ml-44 {
    margin-left: 11rem !important;
  }
  .xl\:mr-44 {
    margin-right: 11rem !important;
  }
  .xl\:mt-44 {
    margin-top: 11rem !important;
  }
  .xl\:mb-44 {
    margin-bottom: 11rem !important;
  }
  .xl\:m-44 {
    margin-bottom: 11rem !important;
    margin-top: 11rem !important;
    margin-right: 11rem !important;
    margin-left: 11rem !important;
  }
  .xl\:gap-44 {
    gap: 11rem;
  }
  .xl\:gap-x-44 {
    -moz-column-gap: 11rem;
         column-gap: 11rem;
  }
  .xl\:gap-y-44 {
    row-gap: 11rem;
  }
  .xl\:text-44 {
    font-size: 11rem !important;
  }
  .xl\:h-44 {
    height: 11rem !important;
  }
  .xl\:w-44 {
    width: 11rem !important;
  }
  .xl\:top-44 {
    top: 11rem;
  }
  .xl\:-top-44 {
    top: -11rem;
  }
  .xl\:bottom-44 {
    bottom: 11rem;
  }
  .xl\:-bottom-44 {
    bottom: -11rem;
  }
  .xl\:left-44 {
    left: 11rem;
  }
  .xl\:-left-44 {
    left: -11rem;
  }
  .xl\:right-44 {
    right: 11rem;
  }
  .xl\:-right-44 {
    right: -11rem;
  }
  .xl\:start-44 {
    inset-inline-start: 11rem;
  }
  .xl\:-start-44 {
    inset-inline-start: -11rem;
  }
  .xl\:end-44 {
    inset-inline-end: 11rem;
  }
  .xl\:-end-44 {
    inset-inline-end: -11rem;
  }
  .xl\:p-46 {
    padding: 11.5rem !important;
  }
  .xl\:px-46 {
    padding-left: 11.5rem !important;
    padding-right: 11.5rem !important;
  }
  .xl\:py-46 {
    padding-top: 11.5rem !important;
    padding-bottom: 11.5rem !important;
  }
  .xl\:pl-46 {
    padding-left: 11.5rem !important;
  }
  .xl\:pr-46 {
    padding-right: 11.5rem !important;
  }
  .xl\:pt-46 {
    padding-top: 11.5rem !important;
  }
  .xl\:pb-46 {
    padding-bottom: 11.5rem !important;
  }
  .xl\:mx-46 {
    margin-left: 11.5rem !important;
    margin-right: 11.5rem !important;
  }
  .xl\:my-46 {
    margin-top: 11.5rem !important;
    margin-bottom: 11.5rem !important;
  }
  .xl\:ml-46 {
    margin-left: 11.5rem !important;
  }
  .xl\:mr-46 {
    margin-right: 11.5rem !important;
  }
  .xl\:mt-46 {
    margin-top: 11.5rem !important;
  }
  .xl\:mb-46 {
    margin-bottom: 11.5rem !important;
  }
  .xl\:m-46 {
    margin-bottom: 11.5rem !important;
    margin-top: 11.5rem !important;
    margin-right: 11.5rem !important;
    margin-left: 11.5rem !important;
  }
  .xl\:gap-46 {
    gap: 11.5rem;
  }
  .xl\:gap-x-46 {
    -moz-column-gap: 11.5rem;
         column-gap: 11.5rem;
  }
  .xl\:gap-y-46 {
    row-gap: 11.5rem;
  }
  .xl\:text-46 {
    font-size: 11.5rem !important;
  }
  .xl\:h-46 {
    height: 11.5rem !important;
  }
  .xl\:w-46 {
    width: 11.5rem !important;
  }
  .xl\:top-46 {
    top: 11.5rem;
  }
  .xl\:-top-46 {
    top: -11.5rem;
  }
  .xl\:bottom-46 {
    bottom: 11.5rem;
  }
  .xl\:-bottom-46 {
    bottom: -11.5rem;
  }
  .xl\:left-46 {
    left: 11.5rem;
  }
  .xl\:-left-46 {
    left: -11.5rem;
  }
  .xl\:right-46 {
    right: 11.5rem;
  }
  .xl\:-right-46 {
    right: -11.5rem;
  }
  .xl\:start-46 {
    inset-inline-start: 11.5rem;
  }
  .xl\:-start-46 {
    inset-inline-start: -11.5rem;
  }
  .xl\:end-46 {
    inset-inline-end: 11.5rem;
  }
  .xl\:-end-46 {
    inset-inline-end: -11.5rem;
  }
  .xl\:p-48 {
    padding: 12rem !important;
  }
  .xl\:px-48 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }
  .xl\:py-48 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .xl\:pl-48 {
    padding-left: 12rem !important;
  }
  .xl\:pr-48 {
    padding-right: 12rem !important;
  }
  .xl\:pt-48 {
    padding-top: 12rem !important;
  }
  .xl\:pb-48 {
    padding-bottom: 12rem !important;
  }
  .xl\:mx-48 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }
  .xl\:my-48 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .xl\:ml-48 {
    margin-left: 12rem !important;
  }
  .xl\:mr-48 {
    margin-right: 12rem !important;
  }
  .xl\:mt-48 {
    margin-top: 12rem !important;
  }
  .xl\:mb-48 {
    margin-bottom: 12rem !important;
  }
  .xl\:m-48 {
    margin-bottom: 12rem !important;
    margin-top: 12rem !important;
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .xl\:gap-48 {
    gap: 12rem;
  }
  .xl\:gap-x-48 {
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }
  .xl\:gap-y-48 {
    row-gap: 12rem;
  }
  .xl\:text-48 {
    font-size: 12rem !important;
  }
  .xl\:h-48 {
    height: 12rem !important;
  }
  .xl\:w-48 {
    width: 12rem !important;
  }
  .xl\:top-48 {
    top: 12rem;
  }
  .xl\:-top-48 {
    top: -12rem;
  }
  .xl\:bottom-48 {
    bottom: 12rem;
  }
  .xl\:-bottom-48 {
    bottom: -12rem;
  }
  .xl\:left-48 {
    left: 12rem;
  }
  .xl\:-left-48 {
    left: -12rem;
  }
  .xl\:right-48 {
    right: 12rem;
  }
  .xl\:-right-48 {
    right: -12rem;
  }
  .xl\:start-48 {
    inset-inline-start: 12rem;
  }
  .xl\:-start-48 {
    inset-inline-start: -12rem;
  }
  .xl\:end-48 {
    inset-inline-end: 12rem;
  }
  .xl\:-end-48 {
    inset-inline-end: -12rem;
  }
  .xl\:p-49 {
    padding: 12.25rem !important;
  }
  .xl\:px-49 {
    padding-left: 12.25rem !important;
    padding-right: 12.25rem !important;
  }
  .xl\:py-49 {
    padding-top: 12.25rem !important;
    padding-bottom: 12.25rem !important;
  }
  .xl\:pl-49 {
    padding-left: 12.25rem !important;
  }
  .xl\:pr-49 {
    padding-right: 12.25rem !important;
  }
  .xl\:pt-49 {
    padding-top: 12.25rem !important;
  }
  .xl\:pb-49 {
    padding-bottom: 12.25rem !important;
  }
  .xl\:mx-49 {
    margin-left: 12.25rem !important;
    margin-right: 12.25rem !important;
  }
  .xl\:my-49 {
    margin-top: 12.25rem !important;
    margin-bottom: 12.25rem !important;
  }
  .xl\:ml-49 {
    margin-left: 12.25rem !important;
  }
  .xl\:mr-49 {
    margin-right: 12.25rem !important;
  }
  .xl\:mt-49 {
    margin-top: 12.25rem !important;
  }
  .xl\:mb-49 {
    margin-bottom: 12.25rem !important;
  }
  .xl\:m-49 {
    margin-bottom: 12.25rem !important;
    margin-top: 12.25rem !important;
    margin-right: 12.25rem !important;
    margin-left: 12.25rem !important;
  }
  .xl\:gap-49 {
    gap: 12.25rem;
  }
  .xl\:gap-x-49 {
    -moz-column-gap: 12.25rem;
         column-gap: 12.25rem;
  }
  .xl\:gap-y-49 {
    row-gap: 12.25rem;
  }
  .xl\:text-49 {
    font-size: 12.25rem !important;
  }
  .xl\:h-49 {
    height: 12.25rem !important;
  }
  .xl\:w-49 {
    width: 12.25rem !important;
  }
  .xl\:top-49 {
    top: 12.25rem;
  }
  .xl\:-top-49 {
    top: -12.25rem;
  }
  .xl\:bottom-49 {
    bottom: 12.25rem;
  }
  .xl\:-bottom-49 {
    bottom: -12.25rem;
  }
  .xl\:left-49 {
    left: 12.25rem;
  }
  .xl\:-left-49 {
    left: -12.25rem;
  }
  .xl\:right-49 {
    right: 12.25rem;
  }
  .xl\:-right-49 {
    right: -12.25rem;
  }
  .xl\:start-49 {
    inset-inline-start: 12.25rem;
  }
  .xl\:-start-49 {
    inset-inline-start: -12.25rem;
  }
  .xl\:end-49 {
    inset-inline-end: 12.25rem;
  }
  .xl\:-end-49 {
    inset-inline-end: -12.25rem;
  }
  .xl\:p-50 {
    padding: 12.5rem !important;
  }
  .xl\:px-50 {
    padding-left: 12.5rem !important;
    padding-right: 12.5rem !important;
  }
  .xl\:py-50 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }
  .xl\:pl-50 {
    padding-left: 12.5rem !important;
  }
  .xl\:pr-50 {
    padding-right: 12.5rem !important;
  }
  .xl\:pt-50 {
    padding-top: 12.5rem !important;
  }
  .xl\:pb-50 {
    padding-bottom: 12.5rem !important;
  }
  .xl\:mx-50 {
    margin-left: 12.5rem !important;
    margin-right: 12.5rem !important;
  }
  .xl\:my-50 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }
  .xl\:ml-50 {
    margin-left: 12.5rem !important;
  }
  .xl\:mr-50 {
    margin-right: 12.5rem !important;
  }
  .xl\:mt-50 {
    margin-top: 12.5rem !important;
  }
  .xl\:mb-50 {
    margin-bottom: 12.5rem !important;
  }
  .xl\:m-50 {
    margin-bottom: 12.5rem !important;
    margin-top: 12.5rem !important;
    margin-right: 12.5rem !important;
    margin-left: 12.5rem !important;
  }
  .xl\:gap-50 {
    gap: 12.5rem;
  }
  .xl\:gap-x-50 {
    -moz-column-gap: 12.5rem;
         column-gap: 12.5rem;
  }
  .xl\:gap-y-50 {
    row-gap: 12.5rem;
  }
  .xl\:text-50 {
    font-size: 12.5rem !important;
  }
  .xl\:h-50 {
    height: 12.5rem !important;
  }
  .xl\:w-50 {
    width: 12.5rem !important;
  }
  .xl\:top-50 {
    top: 12.5rem;
  }
  .xl\:-top-50 {
    top: -12.5rem;
  }
  .xl\:bottom-50 {
    bottom: 12.5rem;
  }
  .xl\:-bottom-50 {
    bottom: -12.5rem;
  }
  .xl\:left-50 {
    left: 12.5rem;
  }
  .xl\:-left-50 {
    left: -12.5rem;
  }
  .xl\:right-50 {
    right: 12.5rem;
  }
  .xl\:-right-50 {
    right: -12.5rem;
  }
  .xl\:start-50 {
    inset-inline-start: 12.5rem;
  }
  .xl\:-start-50 {
    inset-inline-start: -12.5rem;
  }
  .xl\:end-50 {
    inset-inline-end: 12.5rem;
  }
  .xl\:-end-50 {
    inset-inline-end: -12.5rem;
  }
  .xl\:p-52 {
    padding: 13rem !important;
  }
  .xl\:px-52 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }
  .xl\:py-52 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .xl\:pl-52 {
    padding-left: 13rem !important;
  }
  .xl\:pr-52 {
    padding-right: 13rem !important;
  }
  .xl\:pt-52 {
    padding-top: 13rem !important;
  }
  .xl\:pb-52 {
    padding-bottom: 13rem !important;
  }
  .xl\:mx-52 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }
  .xl\:my-52 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .xl\:ml-52 {
    margin-left: 13rem !important;
  }
  .xl\:mr-52 {
    margin-right: 13rem !important;
  }
  .xl\:mt-52 {
    margin-top: 13rem !important;
  }
  .xl\:mb-52 {
    margin-bottom: 13rem !important;
  }
  .xl\:m-52 {
    margin-bottom: 13rem !important;
    margin-top: 13rem !important;
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .xl\:gap-52 {
    gap: 13rem;
  }
  .xl\:gap-x-52 {
    -moz-column-gap: 13rem;
         column-gap: 13rem;
  }
  .xl\:gap-y-52 {
    row-gap: 13rem;
  }
  .xl\:text-52 {
    font-size: 13rem !important;
  }
  .xl\:h-52 {
    height: 13rem !important;
  }
  .xl\:w-52 {
    width: 13rem !important;
  }
  .xl\:top-52 {
    top: 13rem;
  }
  .xl\:-top-52 {
    top: -13rem;
  }
  .xl\:bottom-52 {
    bottom: 13rem;
  }
  .xl\:-bottom-52 {
    bottom: -13rem;
  }
  .xl\:left-52 {
    left: 13rem;
  }
  .xl\:-left-52 {
    left: -13rem;
  }
  .xl\:right-52 {
    right: 13rem;
  }
  .xl\:-right-52 {
    right: -13rem;
  }
  .xl\:start-52 {
    inset-inline-start: 13rem;
  }
  .xl\:-start-52 {
    inset-inline-start: -13rem;
  }
  .xl\:end-52 {
    inset-inline-end: 13rem;
  }
  .xl\:-end-52 {
    inset-inline-end: -13rem;
  }
  .xl\:p-56 {
    padding: 14rem !important;
  }
  .xl\:px-56 {
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }
  .xl\:py-56 {
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }
  .xl\:pl-56 {
    padding-left: 14rem !important;
  }
  .xl\:pr-56 {
    padding-right: 14rem !important;
  }
  .xl\:pt-56 {
    padding-top: 14rem !important;
  }
  .xl\:pb-56 {
    padding-bottom: 14rem !important;
  }
  .xl\:mx-56 {
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }
  .xl\:my-56 {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }
  .xl\:ml-56 {
    margin-left: 14rem !important;
  }
  .xl\:mr-56 {
    margin-right: 14rem !important;
  }
  .xl\:mt-56 {
    margin-top: 14rem !important;
  }
  .xl\:mb-56 {
    margin-bottom: 14rem !important;
  }
  .xl\:m-56 {
    margin-bottom: 14rem !important;
    margin-top: 14rem !important;
    margin-right: 14rem !important;
    margin-left: 14rem !important;
  }
  .xl\:gap-56 {
    gap: 14rem;
  }
  .xl\:gap-x-56 {
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }
  .xl\:gap-y-56 {
    row-gap: 14rem;
  }
  .xl\:text-56 {
    font-size: 14rem !important;
  }
  .xl\:h-56 {
    height: 14rem !important;
  }
  .xl\:w-56 {
    width: 14rem !important;
  }
  .xl\:top-56 {
    top: 14rem;
  }
  .xl\:-top-56 {
    top: -14rem;
  }
  .xl\:bottom-56 {
    bottom: 14rem;
  }
  .xl\:-bottom-56 {
    bottom: -14rem;
  }
  .xl\:left-56 {
    left: 14rem;
  }
  .xl\:-left-56 {
    left: -14rem;
  }
  .xl\:right-56 {
    right: 14rem;
  }
  .xl\:-right-56 {
    right: -14rem;
  }
  .xl\:start-56 {
    inset-inline-start: 14rem;
  }
  .xl\:-start-56 {
    inset-inline-start: -14rem;
  }
  .xl\:end-56 {
    inset-inline-end: 14rem;
  }
  .xl\:-end-56 {
    inset-inline-end: -14rem;
  }
  .xl\:p-60 {
    padding: 15rem !important;
  }
  .xl\:px-60 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }
  .xl\:py-60 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .xl\:pl-60 {
    padding-left: 15rem !important;
  }
  .xl\:pr-60 {
    padding-right: 15rem !important;
  }
  .xl\:pt-60 {
    padding-top: 15rem !important;
  }
  .xl\:pb-60 {
    padding-bottom: 15rem !important;
  }
  .xl\:mx-60 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }
  .xl\:my-60 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .xl\:ml-60 {
    margin-left: 15rem !important;
  }
  .xl\:mr-60 {
    margin-right: 15rem !important;
  }
  .xl\:mt-60 {
    margin-top: 15rem !important;
  }
  .xl\:mb-60 {
    margin-bottom: 15rem !important;
  }
  .xl\:m-60 {
    margin-bottom: 15rem !important;
    margin-top: 15rem !important;
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .xl\:gap-60 {
    gap: 15rem;
  }
  .xl\:gap-x-60 {
    -moz-column-gap: 15rem;
         column-gap: 15rem;
  }
  .xl\:gap-y-60 {
    row-gap: 15rem;
  }
  .xl\:text-60 {
    font-size: 15rem !important;
  }
  .xl\:h-60 {
    height: 15rem !important;
  }
  .xl\:w-60 {
    width: 15rem !important;
  }
  .xl\:top-60 {
    top: 15rem;
  }
  .xl\:-top-60 {
    top: -15rem;
  }
  .xl\:bottom-60 {
    bottom: 15rem;
  }
  .xl\:-bottom-60 {
    bottom: -15rem;
  }
  .xl\:left-60 {
    left: 15rem;
  }
  .xl\:-left-60 {
    left: -15rem;
  }
  .xl\:right-60 {
    right: 15rem;
  }
  .xl\:-right-60 {
    right: -15rem;
  }
  .xl\:start-60 {
    inset-inline-start: 15rem;
  }
  .xl\:-start-60 {
    inset-inline-start: -15rem;
  }
  .xl\:end-60 {
    inset-inline-end: 15rem;
  }
  .xl\:-end-60 {
    inset-inline-end: -15rem;
  }
  .xl\:p-64 {
    padding: 16rem !important;
  }
  .xl\:px-64 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }
  .xl\:py-64 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }
  .xl\:pl-64 {
    padding-left: 16rem !important;
  }
  .xl\:pr-64 {
    padding-right: 16rem !important;
  }
  .xl\:pt-64 {
    padding-top: 16rem !important;
  }
  .xl\:pb-64 {
    padding-bottom: 16rem !important;
  }
  .xl\:mx-64 {
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }
  .xl\:my-64 {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }
  .xl\:ml-64 {
    margin-left: 16rem !important;
  }
  .xl\:mr-64 {
    margin-right: 16rem !important;
  }
  .xl\:mt-64 {
    margin-top: 16rem !important;
  }
  .xl\:mb-64 {
    margin-bottom: 16rem !important;
  }
  .xl\:m-64 {
    margin-bottom: 16rem !important;
    margin-top: 16rem !important;
    margin-right: 16rem !important;
    margin-left: 16rem !important;
  }
  .xl\:gap-64 {
    gap: 16rem;
  }
  .xl\:gap-x-64 {
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }
  .xl\:gap-y-64 {
    row-gap: 16rem;
  }
  .xl\:text-64 {
    font-size: 16rem !important;
  }
  .xl\:h-64 {
    height: 16rem !important;
  }
  .xl\:w-64 {
    width: 16rem !important;
  }
  .xl\:top-64 {
    top: 16rem;
  }
  .xl\:-top-64 {
    top: -16rem;
  }
  .xl\:bottom-64 {
    bottom: 16rem;
  }
  .xl\:-bottom-64 {
    bottom: -16rem;
  }
  .xl\:left-64 {
    left: 16rem;
  }
  .xl\:-left-64 {
    left: -16rem;
  }
  .xl\:right-64 {
    right: 16rem;
  }
  .xl\:-right-64 {
    right: -16rem;
  }
  .xl\:start-64 {
    inset-inline-start: 16rem;
  }
  .xl\:-start-64 {
    inset-inline-start: -16rem;
  }
  .xl\:end-64 {
    inset-inline-end: 16rem;
  }
  .xl\:-end-64 {
    inset-inline-end: -16rem;
  }
  .xl\:p-66 {
    padding: 17rem !important;
  }
  .xl\:px-66 {
    padding-left: 17rem !important;
    padding-right: 17rem !important;
  }
  .xl\:py-66 {
    padding-top: 17rem !important;
    padding-bottom: 17rem !important;
  }
  .xl\:pl-66 {
    padding-left: 17rem !important;
  }
  .xl\:pr-66 {
    padding-right: 17rem !important;
  }
  .xl\:pt-66 {
    padding-top: 17rem !important;
  }
  .xl\:pb-66 {
    padding-bottom: 17rem !important;
  }
  .xl\:mx-66 {
    margin-left: 17rem !important;
    margin-right: 17rem !important;
  }
  .xl\:my-66 {
    margin-top: 17rem !important;
    margin-bottom: 17rem !important;
  }
  .xl\:ml-66 {
    margin-left: 17rem !important;
  }
  .xl\:mr-66 {
    margin-right: 17rem !important;
  }
  .xl\:mt-66 {
    margin-top: 17rem !important;
  }
  .xl\:mb-66 {
    margin-bottom: 17rem !important;
  }
  .xl\:m-66 {
    margin-bottom: 17rem !important;
    margin-top: 17rem !important;
    margin-right: 17rem !important;
    margin-left: 17rem !important;
  }
  .xl\:gap-66 {
    gap: 17rem;
  }
  .xl\:gap-x-66 {
    -moz-column-gap: 17rem;
         column-gap: 17rem;
  }
  .xl\:gap-y-66 {
    row-gap: 17rem;
  }
  .xl\:text-66 {
    font-size: 17rem !important;
  }
  .xl\:h-66 {
    height: 17rem !important;
  }
  .xl\:w-66 {
    width: 17rem !important;
  }
  .xl\:top-66 {
    top: 17rem;
  }
  .xl\:-top-66 {
    top: -17rem;
  }
  .xl\:bottom-66 {
    bottom: 17rem;
  }
  .xl\:-bottom-66 {
    bottom: -17rem;
  }
  .xl\:left-66 {
    left: 17rem;
  }
  .xl\:-left-66 {
    left: -17rem;
  }
  .xl\:right-66 {
    right: 17rem;
  }
  .xl\:-right-66 {
    right: -17rem;
  }
  .xl\:start-66 {
    inset-inline-start: 17rem;
  }
  .xl\:-start-66 {
    inset-inline-start: -17rem;
  }
  .xl\:end-66 {
    inset-inline-end: 17rem;
  }
  .xl\:-end-66 {
    inset-inline-end: -17rem;
  }
  .xl\:p-72 {
    padding: 18rem !important;
  }
  .xl\:px-72 {
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }
  .xl\:py-72 {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }
  .xl\:pl-72 {
    padding-left: 18rem !important;
  }
  .xl\:pr-72 {
    padding-right: 18rem !important;
  }
  .xl\:pt-72 {
    padding-top: 18rem !important;
  }
  .xl\:pb-72 {
    padding-bottom: 18rem !important;
  }
  .xl\:mx-72 {
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }
  .xl\:my-72 {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }
  .xl\:ml-72 {
    margin-left: 18rem !important;
  }
  .xl\:mr-72 {
    margin-right: 18rem !important;
  }
  .xl\:mt-72 {
    margin-top: 18rem !important;
  }
  .xl\:mb-72 {
    margin-bottom: 18rem !important;
  }
  .xl\:m-72 {
    margin-bottom: 18rem !important;
    margin-top: 18rem !important;
    margin-right: 18rem !important;
    margin-left: 18rem !important;
  }
  .xl\:gap-72 {
    gap: 18rem;
  }
  .xl\:gap-x-72 {
    -moz-column-gap: 18rem;
         column-gap: 18rem;
  }
  .xl\:gap-y-72 {
    row-gap: 18rem;
  }
  .xl\:text-72 {
    font-size: 18rem !important;
  }
  .xl\:h-72 {
    height: 18rem !important;
  }
  .xl\:w-72 {
    width: 18rem !important;
  }
  .xl\:top-72 {
    top: 18rem;
  }
  .xl\:-top-72 {
    top: -18rem;
  }
  .xl\:bottom-72 {
    bottom: 18rem;
  }
  .xl\:-bottom-72 {
    bottom: -18rem;
  }
  .xl\:left-72 {
    left: 18rem;
  }
  .xl\:-left-72 {
    left: -18rem;
  }
  .xl\:right-72 {
    right: 18rem;
  }
  .xl\:-right-72 {
    right: -18rem;
  }
  .xl\:start-72 {
    inset-inline-start: 18rem;
  }
  .xl\:-start-72 {
    inset-inline-start: -18rem;
  }
  .xl\:end-72 {
    inset-inline-end: 18rem;
  }
  .xl\:-end-72 {
    inset-inline-end: -18rem;
  }
  .xl\:p-80 {
    padding: 20rem !important;
  }
  .xl\:px-80 {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }
  .xl\:py-80 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .xl\:pl-80 {
    padding-left: 20rem !important;
  }
  .xl\:pr-80 {
    padding-right: 20rem !important;
  }
  .xl\:pt-80 {
    padding-top: 20rem !important;
  }
  .xl\:pb-80 {
    padding-bottom: 20rem !important;
  }
  .xl\:mx-80 {
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }
  .xl\:my-80 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .xl\:ml-80 {
    margin-left: 20rem !important;
  }
  .xl\:mr-80 {
    margin-right: 20rem !important;
  }
  .xl\:mt-80 {
    margin-top: 20rem !important;
  }
  .xl\:mb-80 {
    margin-bottom: 20rem !important;
  }
  .xl\:m-80 {
    margin-bottom: 20rem !important;
    margin-top: 20rem !important;
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .xl\:gap-80 {
    gap: 20rem;
  }
  .xl\:gap-x-80 {
    -moz-column-gap: 20rem;
         column-gap: 20rem;
  }
  .xl\:gap-y-80 {
    row-gap: 20rem;
  }
  .xl\:text-80 {
    font-size: 20rem !important;
  }
  .xl\:h-80 {
    height: 20rem !important;
  }
  .xl\:w-80 {
    width: 20rem !important;
  }
  .xl\:top-80 {
    top: 20rem;
  }
  .xl\:-top-80 {
    top: -20rem;
  }
  .xl\:bottom-80 {
    bottom: 20rem;
  }
  .xl\:-bottom-80 {
    bottom: -20rem;
  }
  .xl\:left-80 {
    left: 20rem;
  }
  .xl\:-left-80 {
    left: -20rem;
  }
  .xl\:right-80 {
    right: 20rem;
  }
  .xl\:-right-80 {
    right: -20rem;
  }
  .xl\:start-80 {
    inset-inline-start: 20rem;
  }
  .xl\:-start-80 {
    inset-inline-start: -20rem;
  }
  .xl\:end-80 {
    inset-inline-end: 20rem;
  }
  .xl\:-end-80 {
    inset-inline-end: -20rem;
  }
  .xl\:p-96 {
    padding: 24rem !important;
  }
  .xl\:px-96 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }
  .xl\:py-96 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }
  .xl\:pl-96 {
    padding-left: 24rem !important;
  }
  .xl\:pr-96 {
    padding-right: 24rem !important;
  }
  .xl\:pt-96 {
    padding-top: 24rem !important;
  }
  .xl\:pb-96 {
    padding-bottom: 24rem !important;
  }
  .xl\:mx-96 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }
  .xl\:my-96 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }
  .xl\:ml-96 {
    margin-left: 24rem !important;
  }
  .xl\:mr-96 {
    margin-right: 24rem !important;
  }
  .xl\:mt-96 {
    margin-top: 24rem !important;
  }
  .xl\:mb-96 {
    margin-bottom: 24rem !important;
  }
  .xl\:m-96 {
    margin-bottom: 24rem !important;
    margin-top: 24rem !important;
    margin-right: 24rem !important;
    margin-left: 24rem !important;
  }
  .xl\:gap-96 {
    gap: 24rem;
  }
  .xl\:gap-x-96 {
    -moz-column-gap: 24rem;
         column-gap: 24rem;
  }
  .xl\:gap-y-96 {
    row-gap: 24rem;
  }
  .xl\:text-96 {
    font-size: 24rem !important;
  }
  .xl\:h-96 {
    height: 24rem !important;
  }
  .xl\:w-96 {
    width: 24rem !important;
  }
  .xl\:top-96 {
    top: 24rem;
  }
  .xl\:-top-96 {
    top: -24rem;
  }
  .xl\:bottom-96 {
    bottom: 24rem;
  }
  .xl\:-bottom-96 {
    bottom: -24rem;
  }
  .xl\:left-96 {
    left: 24rem;
  }
  .xl\:-left-96 {
    left: -24rem;
  }
  .xl\:right-96 {
    right: 24rem;
  }
  .xl\:-right-96 {
    right: -24rem;
  }
  .xl\:start-96 {
    inset-inline-start: 24rem;
  }
  .xl\:-start-96 {
    inset-inline-start: -24rem;
  }
  .xl\:end-96 {
    inset-inline-end: 24rem;
  }
  .xl\:-end-96 {
    inset-inline-end: -24rem;
  }
  .xl\:h-10-percent {
    height: 10% !important;
  }
  .xl\:w-10-percent {
    width: 10% !important;
  }
  .xl\:top-10-percent {
    top: 10% !important;
  }
  .xl\:-top-10-percent {
    top: -10% !important;
  }
  .xl\:bottom-10-percent {
    bottom: 10% !important;
  }
  .xl\:-bottom-10-percent {
    bottom: -10% !important;
  }
  .xl\:left-10-percent {
    left: 10% !important;
  }
  .xl\:-left-10-percent {
    left: -10% !important;
  }
  .xl\:right-10-percent {
    right: 10% !important;
  }
  .xl\:-right-10-percent {
    right: -10% !important;
  }
  .xl\:h-15-percent {
    height: 15% !important;
  }
  .xl\:w-15-percent {
    width: 15% !important;
  }
  .xl\:top-15-percent {
    top: 15% !important;
  }
  .xl\:-top-15-percent {
    top: -15% !important;
  }
  .xl\:bottom-15-percent {
    bottom: 15% !important;
  }
  .xl\:-bottom-15-percent {
    bottom: -15% !important;
  }
  .xl\:left-15-percent {
    left: 15% !important;
  }
  .xl\:-left-15-percent {
    left: -15% !important;
  }
  .xl\:right-15-percent {
    right: 15% !important;
  }
  .xl\:-right-15-percent {
    right: -15% !important;
  }
  .xl\:h-20-percent {
    height: 20% !important;
  }
  .xl\:w-20-percent {
    width: 20% !important;
  }
  .xl\:top-20-percent {
    top: 20% !important;
  }
  .xl\:-top-20-percent {
    top: -20% !important;
  }
  .xl\:bottom-20-percent {
    bottom: 20% !important;
  }
  .xl\:-bottom-20-percent {
    bottom: -20% !important;
  }
  .xl\:left-20-percent {
    left: 20% !important;
  }
  .xl\:-left-20-percent {
    left: -20% !important;
  }
  .xl\:right-20-percent {
    right: 20% !important;
  }
  .xl\:-right-20-percent {
    right: -20% !important;
  }
  .xl\:h-25-percent {
    height: 25% !important;
  }
  .xl\:w-25-percent {
    width: 25% !important;
  }
  .xl\:top-25-percent {
    top: 25% !important;
  }
  .xl\:-top-25-percent {
    top: -25% !important;
  }
  .xl\:bottom-25-percent {
    bottom: 25% !important;
  }
  .xl\:-bottom-25-percent {
    bottom: -25% !important;
  }
  .xl\:left-25-percent {
    left: 25% !important;
  }
  .xl\:-left-25-percent {
    left: -25% !important;
  }
  .xl\:right-25-percent {
    right: 25% !important;
  }
  .xl\:-right-25-percent {
    right: -25% !important;
  }
  .xl\:h-30-percent {
    height: 30% !important;
  }
  .xl\:w-30-percent {
    width: 30% !important;
  }
  .xl\:top-30-percent {
    top: 30% !important;
  }
  .xl\:-top-30-percent {
    top: -30% !important;
  }
  .xl\:bottom-30-percent {
    bottom: 30% !important;
  }
  .xl\:-bottom-30-percent {
    bottom: -30% !important;
  }
  .xl\:left-30-percent {
    left: 30% !important;
  }
  .xl\:-left-30-percent {
    left: -30% !important;
  }
  .xl\:right-30-percent {
    right: 30% !important;
  }
  .xl\:-right-30-percent {
    right: -30% !important;
  }
  .xl\:h-35-percent {
    height: 35% !important;
  }
  .xl\:w-35-percent {
    width: 35% !important;
  }
  .xl\:top-35-percent {
    top: 35% !important;
  }
  .xl\:-top-35-percent {
    top: -35% !important;
  }
  .xl\:bottom-35-percent {
    bottom: 35% !important;
  }
  .xl\:-bottom-35-percent {
    bottom: -35% !important;
  }
  .xl\:left-35-percent {
    left: 35% !important;
  }
  .xl\:-left-35-percent {
    left: -35% !important;
  }
  .xl\:right-35-percent {
    right: 35% !important;
  }
  .xl\:-right-35-percent {
    right: -35% !important;
  }
  .xl\:h-40-percent {
    height: 40% !important;
  }
  .xl\:w-40-percent {
    width: 40% !important;
  }
  .xl\:top-40-percent {
    top: 40% !important;
  }
  .xl\:-top-40-percent {
    top: -40% !important;
  }
  .xl\:bottom-40-percent {
    bottom: 40% !important;
  }
  .xl\:-bottom-40-percent {
    bottom: -40% !important;
  }
  .xl\:left-40-percent {
    left: 40% !important;
  }
  .xl\:-left-40-percent {
    left: -40% !important;
  }
  .xl\:right-40-percent {
    right: 40% !important;
  }
  .xl\:-right-40-percent {
    right: -40% !important;
  }
  .xl\:h-45-percent {
    height: 45% !important;
  }
  .xl\:w-45-percent {
    width: 45% !important;
  }
  .xl\:top-45-percent {
    top: 45% !important;
  }
  .xl\:-top-45-percent {
    top: -45% !important;
  }
  .xl\:bottom-45-percent {
    bottom: 45% !important;
  }
  .xl\:-bottom-45-percent {
    bottom: -45% !important;
  }
  .xl\:left-45-percent {
    left: 45% !important;
  }
  .xl\:-left-45-percent {
    left: -45% !important;
  }
  .xl\:right-45-percent {
    right: 45% !important;
  }
  .xl\:-right-45-percent {
    right: -45% !important;
  }
  .xl\:h-50-percent {
    height: 50% !important;
  }
  .xl\:w-50-percent {
    width: 50% !important;
  }
  .xl\:top-50-percent {
    top: 50% !important;
  }
  .xl\:-top-50-percent {
    top: -50% !important;
  }
  .xl\:bottom-50-percent {
    bottom: 50% !important;
  }
  .xl\:-bottom-50-percent {
    bottom: -50% !important;
  }
  .xl\:left-50-percent {
    left: 50% !important;
  }
  .xl\:-left-50-percent {
    left: -50% !important;
  }
  .xl\:right-50-percent {
    right: 50% !important;
  }
  .xl\:-right-50-percent {
    right: -50% !important;
  }
  .xl\:h-55-percent {
    height: 55% !important;
  }
  .xl\:w-55-percent {
    width: 55% !important;
  }
  .xl\:top-55-percent {
    top: 55% !important;
  }
  .xl\:-top-55-percent {
    top: -55% !important;
  }
  .xl\:bottom-55-percent {
    bottom: 55% !important;
  }
  .xl\:-bottom-55-percent {
    bottom: -55% !important;
  }
  .xl\:left-55-percent {
    left: 55% !important;
  }
  .xl\:-left-55-percent {
    left: -55% !important;
  }
  .xl\:right-55-percent {
    right: 55% !important;
  }
  .xl\:-right-55-percent {
    right: -55% !important;
  }
  .xl\:h-60-percent {
    height: 60% !important;
  }
  .xl\:w-60-percent {
    width: 60% !important;
  }
  .xl\:top-60-percent {
    top: 60% !important;
  }
  .xl\:-top-60-percent {
    top: -60% !important;
  }
  .xl\:bottom-60-percent {
    bottom: 60% !important;
  }
  .xl\:-bottom-60-percent {
    bottom: -60% !important;
  }
  .xl\:left-60-percent {
    left: 60% !important;
  }
  .xl\:-left-60-percent {
    left: -60% !important;
  }
  .xl\:right-60-percent {
    right: 60% !important;
  }
  .xl\:-right-60-percent {
    right: -60% !important;
  }
  .xl\:h-65-percent {
    height: 65% !important;
  }
  .xl\:w-65-percent {
    width: 65% !important;
  }
  .xl\:top-65-percent {
    top: 65% !important;
  }
  .xl\:-top-65-percent {
    top: -65% !important;
  }
  .xl\:bottom-65-percent {
    bottom: 65% !important;
  }
  .xl\:-bottom-65-percent {
    bottom: -65% !important;
  }
  .xl\:left-65-percent {
    left: 65% !important;
  }
  .xl\:-left-65-percent {
    left: -65% !important;
  }
  .xl\:right-65-percent {
    right: 65% !important;
  }
  .xl\:-right-65-percent {
    right: -65% !important;
  }
  .xl\:h-70-percent {
    height: 70% !important;
  }
  .xl\:w-70-percent {
    width: 70% !important;
  }
  .xl\:top-70-percent {
    top: 70% !important;
  }
  .xl\:-top-70-percent {
    top: -70% !important;
  }
  .xl\:bottom-70-percent {
    bottom: 70% !important;
  }
  .xl\:-bottom-70-percent {
    bottom: -70% !important;
  }
  .xl\:left-70-percent {
    left: 70% !important;
  }
  .xl\:-left-70-percent {
    left: -70% !important;
  }
  .xl\:right-70-percent {
    right: 70% !important;
  }
  .xl\:-right-70-percent {
    right: -70% !important;
  }
  .xl\:h-75-percent {
    height: 75% !important;
  }
  .xl\:w-75-percent {
    width: 75% !important;
  }
  .xl\:top-75-percent {
    top: 75% !important;
  }
  .xl\:-top-75-percent {
    top: -75% !important;
  }
  .xl\:bottom-75-percent {
    bottom: 75% !important;
  }
  .xl\:-bottom-75-percent {
    bottom: -75% !important;
  }
  .xl\:left-75-percent {
    left: 75% !important;
  }
  .xl\:-left-75-percent {
    left: -75% !important;
  }
  .xl\:right-75-percent {
    right: 75% !important;
  }
  .xl\:-right-75-percent {
    right: -75% !important;
  }
  .xl\:h-80-percent {
    height: 80% !important;
  }
  .xl\:w-80-percent {
    width: 80% !important;
  }
  .xl\:top-80-percent {
    top: 80% !important;
  }
  .xl\:-top-80-percent {
    top: -80% !important;
  }
  .xl\:bottom-80-percent {
    bottom: 80% !important;
  }
  .xl\:-bottom-80-percent {
    bottom: -80% !important;
  }
  .xl\:left-80-percent {
    left: 80% !important;
  }
  .xl\:-left-80-percent {
    left: -80% !important;
  }
  .xl\:right-80-percent {
    right: 80% !important;
  }
  .xl\:-right-80-percent {
    right: -80% !important;
  }
  .xl\:h-85-percent {
    height: 85% !important;
  }
  .xl\:w-85-percent {
    width: 85% !important;
  }
  .xl\:top-85-percent {
    top: 85% !important;
  }
  .xl\:-top-85-percent {
    top: -85% !important;
  }
  .xl\:bottom-85-percent {
    bottom: 85% !important;
  }
  .xl\:-bottom-85-percent {
    bottom: -85% !important;
  }
  .xl\:left-85-percent {
    left: 85% !important;
  }
  .xl\:-left-85-percent {
    left: -85% !important;
  }
  .xl\:right-85-percent {
    right: 85% !important;
  }
  .xl\:-right-85-percent {
    right: -85% !important;
  }
  .xl\:h-90-percent {
    height: 90% !important;
  }
  .xl\:w-90-percent {
    width: 90% !important;
  }
  .xl\:top-90-percent {
    top: 90% !important;
  }
  .xl\:-top-90-percent {
    top: -90% !important;
  }
  .xl\:bottom-90-percent {
    bottom: 90% !important;
  }
  .xl\:-bottom-90-percent {
    bottom: -90% !important;
  }
  .xl\:left-90-percent {
    left: 90% !important;
  }
  .xl\:-left-90-percent {
    left: -90% !important;
  }
  .xl\:right-90-percent {
    right: 90% !important;
  }
  .xl\:-right-90-percent {
    right: -90% !important;
  }
  .xl\:h-95-percent {
    height: 95% !important;
  }
  .xl\:w-95-percent {
    width: 95% !important;
  }
  .xl\:top-95-percent {
    top: 95% !important;
  }
  .xl\:-top-95-percent {
    top: -95% !important;
  }
  .xl\:bottom-95-percent {
    bottom: 95% !important;
  }
  .xl\:-bottom-95-percent {
    bottom: -95% !important;
  }
  .xl\:left-95-percent {
    left: 95% !important;
  }
  .xl\:-left-95-percent {
    left: -95% !important;
  }
  .xl\:right-95-percent {
    right: 95% !important;
  }
  .xl\:-right-95-percent {
    right: -95% !important;
  }
  .xl\:h-100-percent {
    height: 100% !important;
  }
  .xl\:w-100-percent {
    width: 100% !important;
  }
  .xl\:top-100-percent {
    top: 100% !important;
  }
  .xl\:-top-100-percent {
    top: -100% !important;
  }
  .xl\:bottom-100-percent {
    bottom: 100% !important;
  }
  .xl\:-bottom-100-percent {
    bottom: -100% !important;
  }
  .xl\:left-100-percent {
    left: 100% !important;
  }
  .xl\:-left-100-percent {
    left: -100% !important;
  }
  .xl\:right-100-percent {
    right: 100% !important;
  }
  .xl\:-right-100-percent {
    right: -100% !important;
  }
  .xl\:text-center {
    text-align: center;
  }
  .xl\:line-height-lg {
    line-height: 3rem;
  }
  .xl\:line-height-md {
    line-height: 2rem;
  }
  .xl\:line-height-sm {
    line-height: 1rem;
  }
  .xl\:display {
    display: block !important;
  }
  .xl\:display-flex {
    display: flex !important;
  }
  .xl\:display-grid {
    display: grid !important;
  }
  .xl\:hidden {
    display: none !important;
  }
  .xl\:absolute {
    position: absolute !important;
  }
  .xl\:relative {
    position: relative !important;
  }
  .xl\:justify-between {
    justify-content: space-between !important;
  }
  .xl\:justify-end {
    justify-content: end !important;
  }
  .xl\:justify-center {
    justify-content: center !important;
  }
  .xl\:items-end {
    align-items: end !important;
  }
  .xl\:bg-solutions {
    background-image: url("../images/solutions-bg.png");
    background-size: cover;
  }
  .xl\:min-h-100-vh {
    min-height: 100vh;
  }
  .xl\:max-h-100-vh {
    max-height: 100vh;
  }
}/*# sourceMappingURL=global.css.map */