* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "ClashDisplay-Variable";
  scroll-behavior: smooth;
}

section {
  padding: 120px 0;
}
@media screen and (max-width: 1024.5px) {
  section {
    padding: 30px 0;
  }
}

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.img-contain {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  -o-object-fit: contain;
}

.bubble-pink {
  background-color: #E073B7;
  padding: 12px 24px;
  border-radius: 36px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1024.5px) {
  .bubble-pink {
    padding: 12px 5px;
  }
}

.bg-violeta {
  background-color: #323A6F;
}

.bg-celeste {
  background-color: #29A5DE;
}

.bg-rosa {
  background-color: #E073B7;
}

.text-start {
  text-align: start;
}

.fadeTop {
  opacity: 0;
  transform: translate3d(0, 20%, 0);
  transition: 1s ease-in-out;
}

.tag {
  opacity: 0;
  transform: translate(0, 10vh);
  transition: 1s ease-in-out;
}

.tag.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.error {
  height: 100vh;
}

.d-flex {
  display: flex !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-baseline {
  justify-content: baseline;
}

.align-content-center {
  align-content: center;
}

.align-content-end {
  align-content: flex-end;
}

.align-content-start {
  align-content: flex-start;
}

.align-content-baseline {
  align-content: baseline;
}

.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-baseline {
  align-items: baseline;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.text-center {
  text-align: center;
}

@media screen and (min-width: 600.5px) {
  .d-flex-sm {
    display: flex !important;
  }
  .d-none-sm {
    display: none !important;
  }
  .d-block-sm {
    display: block !important;
  }
  .justify-center-sm {
    justify-content: center;
  }
  .justify-end-sm {
    justify-content: flex-end;
  }
  .justify-start-sm {
    justify-content: flex-start;
  }
  .justify-between-sm {
    justify-content: space-between;
  }
  .justify-around-sm {
    justify-content: space-around;
  }
  .justify-baseline-sm {
    justify-content: baseline;
  }
  .align-content-center-sm {
    align-content: center;
  }
  .align-content-end-sm {
    align-content: flex-end;
  }
  .align-content-start-sm {
    align-content: flex-start;
  }
  .align-content-baseline-sm {
    align-content: baseline;
  }
  .align-items-center-sm {
    align-items: center;
  }
  .align-items-end-sm {
    align-items: flex-end;
  }
  .align-items-start-sm {
    align-items: flex-start;
  }
  .align-items-baseline-sm {
    align-items: baseline;
  }
  .flex-wrap-sm {
    flex-wrap: wrap;
  }
  .flex-nowrap-sm {
    flex-wrap: nowrap;
  }
  .flex-column-sm {
    flex-direction: column;
  }
  .flex-column-reverse-sm {
    flex-direction: column-reverse;
  }
  .flex-row-sm {
    flex-direction: row;
  }
  .flex-row-reverse-sm {
    flex-direction: row-reverse;
  }
  .text-center-sm {
    text-align: center;
  }
}
@media screen and (min-width: 1024.5px) {
  .d-flex-md {
    display: flex !important;
  }
  .d-none-md {
    display: none !important;
  }
  .d-block-md {
    display: block !important;
  }
  .justify-center-md {
    justify-content: center;
  }
  .justify-end-md {
    justify-content: flex-end;
  }
  .justify-start-md {
    justify-content: flex-start;
  }
  .justify-between-md {
    justify-content: space-between;
  }
  .justify-around-md {
    justify-content: space-around;
  }
  .justify-baseline-md {
    justify-content: baseline;
  }
  .align-content-center-md {
    align-content: center;
  }
  .align-content-end-md {
    align-content: flex-end;
  }
  .align-content-start-md {
    align-content: flex-start;
  }
  .align-content-baseline-md {
    align-content: baseline;
  }
  .align-items-center-md {
    align-items: center;
  }
  .align-items-end-md {
    align-items: flex-end;
  }
  .align-items-start-md {
    align-items: flex-start;
  }
  .align-items-baseline-md {
    align-items: baseline;
  }
  .flex-wrap-md {
    flex-wrap: wrap;
  }
  .flex-nowrap-md {
    flex-wrap: nowrap;
  }
  .flex-column-md {
    flex-direction: column;
  }
  .flex-column-reverse-md {
    flex-direction: column-reverse;
  }
  .flex-row-md {
    flex-direction: row;
  }
  .flex-row-reverse-md {
    flex-direction: row-reverse;
  }
  .text-center-md {
    text-align: center;
  }
}
@media screen and (min-width: 1240.5px) {
  .d-flex-lg {
    display: flex !important;
  }
  .d-none-lg {
    display: none !important;
  }
  .d-block-lg {
    display: block !important;
  }
  .justify-center-lg {
    justify-content: center;
  }
  .justify-end-lg {
    justify-content: flex-end;
  }
  .justify-start-lg {
    justify-content: flex-start;
  }
  .justify-between-lg {
    justify-content: space-between;
  }
  .justify-around-lg {
    justify-content: space-around;
  }
  .justify-baseline-lg {
    justify-content: baseline;
  }
  .align-content-center-lg {
    align-content: center;
  }
  .align-content-end-lg {
    align-content: flex-end;
  }
  .align-content-start-lg {
    align-content: flex-start;
  }
  .align-content-baseline-lg {
    align-content: baseline;
  }
  .align-items-center-lg {
    align-items: center;
  }
  .align-items-end-lg {
    align-items: flex-end;
  }
  .align-items-start-lg {
    align-items: flex-start;
  }
  .align-items-baseline-lg {
    align-items: baseline;
  }
  .flex-wrap-lg {
    flex-wrap: wrap;
  }
  .flex-nowrap-lg {
    flex-wrap: nowrap;
  }
  .flex-column-lg {
    flex-direction: column;
  }
  .flex-column-reverse-lg {
    flex-direction: column-reverse;
  }
  .flex-row-lg {
    flex-direction: row;
  }
  .flex-row-reverse-lg {
    flex-direction: row-reverse;
  }
  .text-center-lg {
    text-align: center;
  }
}
@media screen and (min-width: 1366.5px) {
  .d-flex-xl {
    display: flex !important;
  }
  .d-none-xl {
    display: none !important;
  }
  .d-block-xl {
    display: block !important;
  }
  .justify-center-xl {
    justify-content: center;
  }
  .justify-end-xl {
    justify-content: flex-end;
  }
  .justify-start-xl {
    justify-content: flex-start;
  }
  .justify-between-xl {
    justify-content: space-between;
  }
  .justify-around-xl {
    justify-content: space-around;
  }
  .justify-baseline-xl {
    justify-content: baseline;
  }
  .align-content-center-xl {
    align-content: center;
  }
  .align-content-end-xl {
    align-content: flex-end;
  }
  .align-content-start-xl {
    align-content: flex-start;
  }
  .align-content-baseline-xl {
    align-content: baseline;
  }
  .align-items-center-xl {
    align-items: center;
  }
  .align-items-end-xl {
    align-items: flex-end;
  }
  .align-items-start-xl {
    align-items: flex-start;
  }
  .align-items-baseline-xl {
    align-items: baseline;
  }
  .flex-wrap-xl {
    flex-wrap: wrap;
  }
  .flex-nowrap-xl {
    flex-wrap: nowrap;
  }
  .flex-column-xl {
    flex-direction: column;
  }
  .flex-column-reverse-xl {
    flex-direction: column-reverse;
  }
  .flex-row-xl {
    flex-direction: row;
  }
  .flex-row-reverse-xl {
    flex-direction: row-reverse;
  }
  .text-center-xl {
    text-align: center;
  }
}
@media screen and (min-width: 1366.5px) {
  .d-flex-xxl {
    display: flex !important;
  }
  .d-none-xxl {
    display: none !important;
  }
  .d-block-xxl {
    display: block !important;
  }
  .justify-center-xxl {
    justify-content: center;
  }
  .justify-end-xxl {
    justify-content: flex-end;
  }
  .justify-start-xxl {
    justify-content: flex-start;
  }
  .justify-between-xxl {
    justify-content: space-between;
  }
  .justify-around-xxl {
    justify-content: space-around;
  }
  .justify-baseline-xxl {
    justify-content: baseline;
  }
  .align-content-center-xxl {
    align-content: center;
  }
  .align-content-end-xxl {
    align-content: flex-end;
  }
  .align-content-start-xxl {
    align-content: flex-start;
  }
  .align-content-baseline-xxl {
    align-content: baseline;
  }
  .align-items-center-xxl {
    align-items: center;
  }
  .align-items-end-xxl {
    align-items: flex-end;
  }
  .align-items-start-xxl {
    align-items: flex-start;
  }
  .align-items-baseline-xxl {
    align-items: baseline;
  }
  .flex-wrap-xxl {
    flex-wrap: wrap;
  }
  .flex-nowrap-xxl {
    flex-wrap: nowrap;
  }
  .flex-column-xxl {
    flex-direction: column;
  }
  .flex-column-reverse-xxl {
    flex-direction: column-reverse;
  }
  .flex-row-xxl {
    flex-direction: row;
  }
  .flex-row-reverse-xxl {
    flex-direction: row-reverse;
  }
  .text-center-xxl {
    text-align: center;
  }
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024.5px) {
  .container {
    width: 90%;
  }
}

.container-fluid {
  width: 100%;
  margin: 0;
}

.row {
  display: flex;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
}

.w-100 {
  width: 100%;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 15px;
}
@media screen and (max-width: 1024.5px) {
  .grid-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 3fr);
  gap: 15px;
}
@media screen and (max-width: 1024.5px) {
  .grid-3 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
}
@media screen and (max-width: 1024.5px) {
  .grid-4 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.col-1 {
  flex-basis: 8.3333333333%;
  width: 8.3333333333%;
}

.col-2 {
  flex-basis: 16.6666666667%;
  width: 16.6666666667%;
}

.col-3 {
  flex-basis: 25%;
  width: 25%;
}

.col-4 {
  flex-basis: 33.3333333333%;
  width: 33.3333333333%;
}

.col-5 {
  flex-basis: 41.6666666667%;
  width: 41.6666666667%;
}

.col-6 {
  flex-basis: 50%;
  width: 50%;
}

.col-7 {
  flex-basis: 58.3333333333%;
  width: 58.3333333333%;
}

.col-8 {
  flex-basis: 66.6666666667%;
  width: 66.6666666667%;
}

.col-9 {
  flex-basis: 75%;
  width: 75%;
}

.col-10 {
  flex-basis: 83.3333333333%;
  width: 83.3333333333%;
}

.col-11 {
  flex-basis: 91.6666666667%;
  width: 91.6666666667%;
}

.col-12 {
  flex-basis: 100%;
  width: 100%;
}

@media screen and (min-width: 600.5px) {
  .col-sm-1 {
    flex-basis: 8.3333333333%;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex-basis: 16.6666666667%;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .col-sm-4 {
    flex-basis: 33.3333333333%;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex-basis: 41.6666666667%;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .col-sm-7 {
    flex-basis: 58.3333333333%;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex-basis: 66.6666666667%;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .col-sm-10 {
    flex-basis: 83.3333333333%;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex-basis: 91.6666666667%;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (min-width: 1024.5px) {
  .col-md-1 {
    flex-basis: 8.3333333333%;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex-basis: 16.6666666667%;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .col-md-4 {
    flex-basis: 33.3333333333%;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex-basis: 41.6666666667%;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .col-md-7 {
    flex-basis: 58.3333333333%;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex-basis: 66.6666666667%;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .col-md-10 {
    flex-basis: 83.3333333333%;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex-basis: 91.6666666667%;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (min-width: 1240.5px) {
  .col-lg-1 {
    flex-basis: 8.3333333333%;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex-basis: 16.6666666667%;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .col-lg-4 {
    flex-basis: 33.3333333333%;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex-basis: 41.6666666667%;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .col-lg-7 {
    flex-basis: 58.3333333333%;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex-basis: 66.6666666667%;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .col-lg-10 {
    flex-basis: 83.3333333333%;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex-basis: 91.6666666667%;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (min-width: 1366.5px) {
  .col-xl-1 {
    flex-basis: 8.3333333333%;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex-basis: 16.6666666667%;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .col-xl-4 {
    flex-basis: 33.3333333333%;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex-basis: 41.6666666667%;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .col-xl-7 {
    flex-basis: 58.3333333333%;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex-basis: 66.6666666667%;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .col-xl-10 {
    flex-basis: 83.3333333333%;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex-basis: 91.6666666667%;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (min-width: 1366.5px) {
  .col-xxl-1 {
    flex-basis: 8.3333333333%;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex-basis: 16.6666666667%;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .col-xxl-4 {
    flex-basis: 33.3333333333%;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex-basis: 41.6666666667%;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .col-xxl-7 {
    flex-basis: 58.3333333333%;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex-basis: 66.6666666667%;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .col-xxl-10 {
    flex-basis: 83.3333333333%;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex-basis: 91.6666666667%;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

@media screen and (min-width: 600.5px) {
  .p-relative-sm {
    position: relative;
  }
  .p-absolute-sm {
    position: absolute;
  }
}
@media screen and (min-width: 1024.5px) {
  .p-relative-md {
    position: relative;
  }
  .p-absolute-md {
    position: absolute;
  }
}
@media screen and (min-width: 1240.5px) {
  .p-relative-lg {
    position: relative;
  }
  .p-absolute-lg {
    position: absolute;
  }
}
@media screen and (min-width: 1366.5px) {
  .p-relative-xl {
    position: relative;
  }
  .p-absolute-xl {
    position: absolute;
  }
}
@media screen and (min-width: 1366.5px) {
  .p-relative-xxl {
    position: relative;
  }
  .p-absolute-xxl {
    position: absolute;
  }
}
.m-0 {
  margin: 0rem;
}

.m-1 {
  margin: 0.5rem;
}

.m-2 {
  margin: 1rem;
}

.m-3 {
  margin: 1.5rem;
}

.m-4 {
  margin: 2rem;
}

.m-5 {
  margin: 2.5rem;
}

.m-6 {
  margin: 3rem;
}

.m-7 {
  margin: 3.5rem;
}

.m-8 {
  margin: 4rem;
}

.m-9 {
  margin: 4.5rem;
}

.m-10 {
  margin: 5rem;
}

.m-11 {
  margin: 5.5rem;
}

.m-12 {
  margin: 6rem;
}

.m-13 {
  margin: 6.5rem;
}

.m-14 {
  margin: 7rem;
}

.m-15 {
  margin: 7.5rem;
}

.m-16 {
  margin: 8rem;
}

.m-17 {
  margin: 8.5rem;
}

.m-18 {
  margin: 9rem;
}

.m-19 {
  margin: 9.5rem;
}

.m-20 {
  margin: 10rem;
}

.m-21 {
  margin: 10.5rem;
}

.m-22 {
  margin: 11rem;
}

.m-23 {
  margin: 11.5rem;
}

.m-24 {
  margin: 12rem;
}

.ml-0 {
  margin-left: 0rem !important;
}

.ml-1 {
  margin-left: 0.5rem !important;
}

.ml-2 {
  margin-left: 1rem !important;
}

.ml-3 {
  margin-left: 1.5rem !important;
}

.ml-4 {
  margin-left: 2rem !important;
}

.ml-5 {
  margin-left: 2.5rem !important;
}

.ml-6 {
  margin-left: 3rem !important;
}

.ml-7 {
  margin-left: 3.5rem !important;
}

.ml-8 {
  margin-left: 4rem !important;
}

.ml-9 {
  margin-left: 4.5rem !important;
}

.ml-10 {
  margin-left: 5rem !important;
}

.ml-11 {
  margin-left: 5.5rem !important;
}

.ml-12 {
  margin-left: 6rem !important;
}

.ml-13 {
  margin-left: 6.5rem !important;
}

.ml-14 {
  margin-left: 7rem !important;
}

.ml-15 {
  margin-left: 7.5rem !important;
}

.ml-16 {
  margin-left: 8rem !important;
}

.ml-17 {
  margin-left: 8.5rem !important;
}

.ml-18 {
  margin-left: 9rem !important;
}

.ml-19 {
  margin-left: 9.5rem !important;
}

.ml-20 {
  margin-left: 10rem !important;
}

.ml-21 {
  margin-left: 10.5rem !important;
}

.ml-22 {
  margin-left: 11rem !important;
}

.ml-23 {
  margin-left: 11.5rem !important;
}

.ml-24 {
  margin-left: 12rem !important;
}

.mr-0 {
  margin-right: 0rem !important;
}

.mr-1 {
  margin-right: 0.5rem !important;
}

.mr-2 {
  margin-right: 1rem !important;
}

.mr-3 {
  margin-right: 1.5rem !important;
}

.mr-4 {
  margin-right: 2rem !important;
}

.mr-5 {
  margin-right: 2.5rem !important;
}

.mr-6 {
  margin-right: 3rem !important;
}

.mr-7 {
  margin-right: 3.5rem !important;
}

.mr-8 {
  margin-right: 4rem !important;
}

.mr-9 {
  margin-right: 4.5rem !important;
}

.mr-10 {
  margin-right: 5rem !important;
}

.mr-11 {
  margin-right: 5.5rem !important;
}

.mr-12 {
  margin-right: 6rem !important;
}

.mr-13 {
  margin-right: 6.5rem !important;
}

.mr-14 {
  margin-right: 7rem !important;
}

.mr-15 {
  margin-right: 7.5rem !important;
}

.mr-16 {
  margin-right: 8rem !important;
}

.mr-17 {
  margin-right: 8.5rem !important;
}

.mr-18 {
  margin-right: 9rem !important;
}

.mr-19 {
  margin-right: 9.5rem !important;
}

.mr-20 {
  margin-right: 10rem !important;
}

.mr-21 {
  margin-right: 10.5rem !important;
}

.mr-22 {
  margin-right: 11rem !important;
}

.mr-23 {
  margin-right: 11.5rem !important;
}

.mr-24 {
  margin-right: 12rem !important;
}

.mt-0 {
  margin-top: 0rem !important;
}

.mt-1 {
  margin-top: 0.5rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mt-3 {
  margin-top: 1.5rem !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mt-5 {
  margin-top: 2.5rem !important;
}

.mt-6 {
  margin-top: 3rem !important;
}

.mt-7 {
  margin-top: 3.5rem !important;
}

.mt-8 {
  margin-top: 4rem !important;
}

.mt-9 {
  margin-top: 4.5rem !important;
}

.mt-10 {
  margin-top: 5rem !important;
}

.mt-11 {
  margin-top: 5.5rem !important;
}

.mt-12 {
  margin-top: 6rem !important;
}

.mt-13 {
  margin-top: 6.5rem !important;
}

.mt-14 {
  margin-top: 7rem !important;
}

.mt-15 {
  margin-top: 7.5rem !important;
}

.mt-16 {
  margin-top: 8rem !important;
}

.mt-17 {
  margin-top: 8.5rem !important;
}

.mt-18 {
  margin-top: 9rem !important;
}

.mt-19 {
  margin-top: 9.5rem !important;
}

.mt-20 {
  margin-top: 10rem !important;
}

.mt-21 {
  margin-top: 10.5rem !important;
}

.mt-22 {
  margin-top: 11rem !important;
}

.mt-23 {
  margin-top: 11.5rem !important;
}

.mt-24 {
  margin-top: 12rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mb-5 {
  margin-bottom: 2.5rem !important;
}

.mb-6 {
  margin-bottom: 3rem !important;
}

.mb-7 {
  margin-bottom: 3.5rem !important;
}

.mb-8 {
  margin-bottom: 4rem !important;
}

.mb-9 {
  margin-bottom: 4.5rem !important;
}

.mb-10 {
  margin-bottom: 5rem !important;
}

.mb-11 {
  margin-bottom: 5.5rem !important;
}

.mb-12 {
  margin-bottom: 6rem !important;
}

.mb-13 {
  margin-bottom: 6.5rem !important;
}

.mb-14 {
  margin-bottom: 7rem !important;
}

.mb-15 {
  margin-bottom: 7.5rem !important;
}

.mb-16 {
  margin-bottom: 8rem !important;
}

.mb-17 {
  margin-bottom: 8.5rem !important;
}

.mb-18 {
  margin-bottom: 9rem !important;
}

.mb-19 {
  margin-bottom: 9.5rem !important;
}

.mb-20 {
  margin-bottom: 10rem !important;
}

.mb-21 {
  margin-bottom: 10.5rem !important;
}

.mb-22 {
  margin-bottom: 11rem !important;
}

.mb-23 {
  margin-bottom: 11.5rem !important;
}

.mb-24 {
  margin-bottom: 12rem !important;
}

.my-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.mx-0 {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

.my-1 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.mx-1 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.mx-2 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-3 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.mx-3 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-4 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.mx-4 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.my-5 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.mx-5 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.my-6 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.mx-6 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-7 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

.mx-7 {
  margin-left: 3.5rem !important;
  margin-right: 3.5rem !important;
}

.my-8 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.mx-8 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.my-9 {
  margin-top: 4.5rem !important;
  margin-bottom: 4.5rem !important;
}

.mx-9 {
  margin-left: 4.5rem !important;
  margin-right: 4.5rem !important;
}

.my-10 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.mx-10 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.my-11 {
  margin-top: 5.5rem !important;
  margin-bottom: 5.5rem !important;
}

.mx-11 {
  margin-left: 5.5rem !important;
  margin-right: 5.5rem !important;
}

.my-12 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.mx-12 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.my-13 {
  margin-top: 6.5rem !important;
  margin-bottom: 6.5rem !important;
}

.mx-13 {
  margin-left: 6.5rem !important;
  margin-right: 6.5rem !important;
}

.my-14 {
  margin-top: 7rem !important;
  margin-bottom: 7rem !important;
}

.mx-14 {
  margin-left: 7rem !important;
  margin-right: 7rem !important;
}

.my-15 {
  margin-top: 7.5rem !important;
  margin-bottom: 7.5rem !important;
}

.mx-15 {
  margin-left: 7.5rem !important;
  margin-right: 7.5rem !important;
}

.my-16 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

.mx-16 {
  margin-left: 8rem !important;
  margin-right: 8rem !important;
}

.my-17 {
  margin-top: 8.5rem !important;
  margin-bottom: 8.5rem !important;
}

.mx-17 {
  margin-left: 8.5rem !important;
  margin-right: 8.5rem !important;
}

.my-18 {
  margin-top: 9rem !important;
  margin-bottom: 9rem !important;
}

.mx-18 {
  margin-left: 9rem !important;
  margin-right: 9rem !important;
}

.my-19 {
  margin-top: 9.5rem !important;
  margin-bottom: 9.5rem !important;
}

.mx-19 {
  margin-left: 9.5rem !important;
  margin-right: 9.5rem !important;
}

.my-20 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.mx-20 {
  margin-left: 10rem !important;
  margin-right: 10rem !important;
}

.my-21 {
  margin-top: 10.5rem !important;
  margin-bottom: 10.5rem !important;
}

.mx-21 {
  margin-left: 10.5rem !important;
  margin-right: 10.5rem !important;
}

.my-22 {
  margin-top: 11rem !important;
  margin-bottom: 11rem !important;
}

.mx-22 {
  margin-left: 11rem !important;
  margin-right: 11rem !important;
}

.my-23 {
  margin-top: 11.5rem !important;
  margin-bottom: 11.5rem !important;
}

.mx-23 {
  margin-left: 11.5rem !important;
  margin-right: 11.5rem !important;
}

.my-24 {
  margin-top: 12rem !important;
  margin-bottom: 12rem !important;
}

.mx-24 {
  margin-left: 12rem !important;
  margin-right: 12rem !important;
}

.p-0 {
  padding: 0rem;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

.p-5 {
  padding: 2.5rem;
}

.p-6 {
  padding: 3rem;
}

.p-7 {
  padding: 3.5rem;
}

.p-8 {
  padding: 4rem;
}

.p-9 {
  padding: 4.5rem;
}

.p-10 {
  padding: 5rem;
}

.p-11 {
  padding: 5.5rem;
}

.p-12 {
  padding: 6rem;
}

.p-13 {
  padding: 6.5rem;
}

.p-14 {
  padding: 7rem;
}

.p-15 {
  padding: 7.5rem;
}

.p-16 {
  padding: 8rem;
}

.p-17 {
  padding: 8.5rem;
}

.p-18 {
  padding: 9rem;
}

.p-19 {
  padding: 9.5rem;
}

.p-20 {
  padding: 10rem;
}

.p-21 {
  padding: 10.5rem;
}

.p-22 {
  padding: 11rem;
}

.p-23 {
  padding: 11.5rem;
}

.p-24 {
  padding: 12rem;
}

.pl-0 {
  padding-left: 0rem !important;
}

.pl-1 {
  padding-left: 0.5rem !important;
}

.pl-2 {
  padding-left: 1rem !important;
}

.pl-3 {
  padding-left: 1.5rem !important;
}

.pl-4 {
  padding-left: 2rem !important;
}

.pl-5 {
  padding-left: 2.5rem !important;
}

.pl-6 {
  padding-left: 3rem !important;
}

.pl-7 {
  padding-left: 3.5rem !important;
}

.pl-8 {
  padding-left: 4rem !important;
}

.pl-9 {
  padding-left: 4.5rem !important;
}

.pl-10 {
  padding-left: 5rem !important;
}

.pl-11 {
  padding-left: 5.5rem !important;
}

.pl-12 {
  padding-left: 6rem !important;
}

.pl-13 {
  padding-left: 6.5rem !important;
}

.pl-14 {
  padding-left: 7rem !important;
}

.pl-15 {
  padding-left: 7.5rem !important;
}

.pl-16 {
  padding-left: 8rem !important;
}

.pl-17 {
  padding-left: 8.5rem !important;
}

.pl-18 {
  padding-left: 9rem !important;
}

.pl-19 {
  padding-left: 9.5rem !important;
}

.pl-20 {
  padding-left: 10rem !important;
}

.pl-21 {
  padding-left: 10.5rem !important;
}

.pl-22 {
  padding-left: 11rem !important;
}

.pl-23 {
  padding-left: 11.5rem !important;
}

.pl-24 {
  padding-left: 12rem !important;
}

.pr-0 {
  padding-right: 0rem !important;
}

.pr-1 {
  padding-right: 0.5rem !important;
}

.pr-2 {
  padding-right: 1rem !important;
}

.pr-3 {
  padding-right: 1.5rem !important;
}

.pr-4 {
  padding-right: 2rem !important;
}

.pr-5 {
  padding-right: 2.5rem !important;
}

.pr-6 {
  padding-right: 3rem !important;
}

.pr-7 {
  padding-right: 3.5rem !important;
}

.pr-8 {
  padding-right: 4rem !important;
}

.pr-9 {
  padding-right: 4.5rem !important;
}

.pr-10 {
  padding-right: 5rem !important;
}

.pr-11 {
  padding-right: 5.5rem !important;
}

.pr-12 {
  padding-right: 6rem !important;
}

.pr-13 {
  padding-right: 6.5rem !important;
}

.pr-14 {
  padding-right: 7rem !important;
}

.pr-15 {
  padding-right: 7.5rem !important;
}

.pr-16 {
  padding-right: 8rem !important;
}

.pr-17 {
  padding-right: 8.5rem !important;
}

.pr-18 {
  padding-right: 9rem !important;
}

.pr-19 {
  padding-right: 9.5rem !important;
}

.pr-20 {
  padding-right: 10rem !important;
}

.pr-21 {
  padding-right: 10.5rem !important;
}

.pr-22 {
  padding-right: 11rem !important;
}

.pr-23 {
  padding-right: 11.5rem !important;
}

.pr-24 {
  padding-right: 12rem !important;
}

.pt-0 {
  padding-top: 0rem !important;
}

.pt-1 {
  padding-top: 0.5rem !important;
}

.pt-2 {
  padding-top: 1rem !important;
}

.pt-3 {
  padding-top: 1.5rem !important;
}

.pt-4 {
  padding-top: 2rem !important;
}

.pt-5 {
  padding-top: 2.5rem !important;
}

.pt-6 {
  padding-top: 3rem !important;
}

.pt-7 {
  padding-top: 3.5rem !important;
}

.pt-8 {
  padding-top: 4rem !important;
}

.pt-9 {
  padding-top: 4.5rem !important;
}

.pt-10 {
  padding-top: 5rem !important;
}

.pt-11 {
  padding-top: 5.5rem !important;
}

.pt-12 {
  padding-top: 6rem !important;
}

.pt-13 {
  padding-top: 6.5rem !important;
}

.pt-14 {
  padding-top: 7rem !important;
}

.pt-15 {
  padding-top: 7.5rem !important;
}

.pt-16 {
  padding-top: 8rem !important;
}

.pt-17 {
  padding-top: 8.5rem !important;
}

.pt-18 {
  padding-top: 9rem !important;
}

.pt-19 {
  padding-top: 9.5rem !important;
}

.pt-20 {
  padding-top: 10rem !important;
}

.pt-21 {
  padding-top: 10.5rem !important;
}

.pt-22 {
  padding-top: 11rem !important;
}

.pt-23 {
  padding-top: 11.5rem !important;
}

.pt-24 {
  padding-top: 12rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}

.pb-1 {
  padding-bottom: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 1rem !important;
}

.pb-3 {
  padding-bottom: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 2rem !important;
}

.pb-5 {
  padding-bottom: 2.5rem !important;
}

.pb-6 {
  padding-bottom: 3rem !important;
}

.pb-7 {
  padding-bottom: 3.5rem !important;
}

.pb-8 {
  padding-bottom: 4rem !important;
}

.pb-9 {
  padding-bottom: 4.5rem !important;
}

.pb-10 {
  padding-bottom: 5rem !important;
}

.pb-11 {
  padding-bottom: 5.5rem !important;
}

.pb-12 {
  padding-bottom: 6rem !important;
}

.pb-13 {
  padding-bottom: 6.5rem !important;
}

.pb-14 {
  padding-bottom: 7rem !important;
}

.pb-15 {
  padding-bottom: 7.5rem !important;
}

.pb-16 {
  padding-bottom: 8rem !important;
}

.pb-17 {
  padding-bottom: 8.5rem !important;
}

.pb-18 {
  padding-bottom: 9rem !important;
}

.pb-19 {
  padding-bottom: 9.5rem !important;
}

.pb-20 {
  padding-bottom: 10rem !important;
}

.pb-21 {
  padding-bottom: 10.5rem !important;
}

.pb-22 {
  padding-bottom: 11rem !important;
}

.pb-23 {
  padding-bottom: 11.5rem !important;
}

.pb-24 {
  padding-bottom: 12rem !important;
}

.px-0 {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

.px-1 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.px-2 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-3 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-4 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.px-5 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.px-6 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.px-7 {
  padding-left: 3.5rem !important;
  padding-right: 3.5rem !important;
}

.px-8 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.px-9 {
  padding-left: 4.5rem !important;
  padding-right: 4.5rem !important;
}

.px-10 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.px-11 {
  padding-left: 5.5rem !important;
  padding-right: 5.5rem !important;
}

.px-12 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

.px-13 {
  padding-left: 6.5rem !important;
  padding-right: 6.5rem !important;
}

.px-14 {
  padding-left: 7rem !important;
  padding-right: 7rem !important;
}

.px-15 {
  padding-left: 7.5rem !important;
  padding-right: 7.5rem !important;
}

.px-16 {
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}

.px-17 {
  padding-left: 8.5rem !important;
  padding-right: 8.5rem !important;
}

.px-18 {
  padding-left: 9rem !important;
  padding-right: 9rem !important;
}

.px-19 {
  padding-left: 9.5rem !important;
  padding-right: 9.5rem !important;
}

.px-20 {
  padding-left: 10rem !important;
  padding-right: 10rem !important;
}

.px-21 {
  padding-left: 10.5rem !important;
  padding-right: 10.5rem !important;
}

.px-22 {
  padding-left: 11rem !important;
  padding-right: 11rem !important;
}

.px-23 {
  padding-left: 11.5rem !important;
  padding-right: 11.5rem !important;
}

.px-24 {
  padding-left: 12rem !important;
  padding-right: 12rem !important;
}

.py-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.py-1 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-2 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-3 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-4 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.py-5 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.py-6 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-7 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.py-8 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.py-9 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.py-10 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.py-11 {
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
}

.py-12 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.py-13 {
  padding-top: 6.5rem !important;
  padding-bottom: 6.5rem !important;
}

.py-14 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

.py-15 {
  padding-top: 7.5rem !important;
  padding-bottom: 7.5rem !important;
}

.py-16 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.py-17 {
  padding-top: 8.5rem !important;
  padding-bottom: 8.5rem !important;
}

.py-18 {
  padding-top: 9rem !important;
  padding-bottom: 9rem !important;
}

.py-19 {
  padding-top: 9.5rem !important;
  padding-bottom: 9.5rem !important;
}

.py-20 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

.py-21 {
  padding-top: 10.5rem !important;
  padding-bottom: 10.5rem !important;
}

.py-22 {
  padding-top: 11rem !important;
  padding-bottom: 11rem !important;
}

.py-23 {
  padding-top: 11.5rem !important;
  padding-bottom: 11.5rem !important;
}

.py-24 {
  padding-top: 12rem !important;
  padding-bottom: 12rem !important;
}

@media screen and (min-width: 600.5px) {
  .m-sm-0 {
    margin: 0rem;
  }
  .m-sm-1 {
    margin: 0.5rem;
  }
  .m-sm-2 {
    margin: 1rem;
  }
  .m-sm-3 {
    margin: 1.5rem;
  }
  .m-sm-4 {
    margin: 2rem;
  }
  .m-sm-5 {
    margin: 2.5rem;
  }
  .m-sm-6 {
    margin: 3rem;
  }
  .m-sm-7 {
    margin: 3.5rem;
  }
  .m-sm-8 {
    margin: 4rem;
  }
  .m-sm-9 {
    margin: 4.5rem;
  }
  .m-sm-10 {
    margin: 5rem;
  }
  .m-sm-11 {
    margin: 5.5rem;
  }
  .m-sm-12 {
    margin: 6rem;
  }
  .m-sm-13 {
    margin: 6.5rem;
  }
  .m-sm-14 {
    margin: 7rem;
  }
  .m-sm-15 {
    margin: 7.5rem;
  }
  .m-sm-16 {
    margin: 8rem;
  }
  .m-sm-17 {
    margin: 8.5rem;
  }
  .m-sm-18 {
    margin: 9rem;
  }
  .m-sm-19 {
    margin: 9.5rem;
  }
  .m-sm-20 {
    margin: 10rem;
  }
  .m-sm-21 {
    margin: 10.5rem;
  }
  .m-sm-22 {
    margin: 11rem;
  }
  .m-sm-23 {
    margin: 11.5rem;
  }
  .m-sm-24 {
    margin: 12rem;
  }
  .ml-sm-0 {
    margin-left: 0rem !important;
  }
  .ml-sm-1 {
    margin-left: 0.5rem !important;
  }
  .ml-sm-2 {
    margin-left: 1rem !important;
  }
  .ml-sm-3 {
    margin-left: 1.5rem !important;
  }
  .ml-sm-4 {
    margin-left: 2rem !important;
  }
  .ml-sm-5 {
    margin-left: 2.5rem !important;
  }
  .ml-sm-6 {
    margin-left: 3rem !important;
  }
  .ml-sm-7 {
    margin-left: 3.5rem !important;
  }
  .ml-sm-8 {
    margin-left: 4rem !important;
  }
  .ml-sm-9 {
    margin-left: 4.5rem !important;
  }
  .ml-sm-10 {
    margin-left: 5rem !important;
  }
  .ml-sm-11 {
    margin-left: 5.5rem !important;
  }
  .ml-sm-12 {
    margin-left: 6rem !important;
  }
  .ml-sm-13 {
    margin-left: 6.5rem !important;
  }
  .ml-sm-14 {
    margin-left: 7rem !important;
  }
  .ml-sm-15 {
    margin-left: 7.5rem !important;
  }
  .ml-sm-16 {
    margin-left: 8rem !important;
  }
  .ml-sm-17 {
    margin-left: 8.5rem !important;
  }
  .ml-sm-18 {
    margin-left: 9rem !important;
  }
  .ml-sm-19 {
    margin-left: 9.5rem !important;
  }
  .ml-sm-20 {
    margin-left: 10rem !important;
  }
  .ml-sm-21 {
    margin-left: 10.5rem !important;
  }
  .ml-sm-22 {
    margin-left: 11rem !important;
  }
  .ml-sm-23 {
    margin-left: 11.5rem !important;
  }
  .ml-sm-24 {
    margin-left: 12rem !important;
  }
  .mr-sm-0 {
    margin-right: 0rem !important;
  }
  .mr-sm-1 {
    margin-right: 0.5rem !important;
  }
  .mr-sm-2 {
    margin-right: 1rem !important;
  }
  .mr-sm-3 {
    margin-right: 1.5rem !important;
  }
  .mr-sm-4 {
    margin-right: 2rem !important;
  }
  .mr-sm-5 {
    margin-right: 2.5rem !important;
  }
  .mr-sm-6 {
    margin-right: 3rem !important;
  }
  .mr-sm-7 {
    margin-right: 3.5rem !important;
  }
  .mr-sm-8 {
    margin-right: 4rem !important;
  }
  .mr-sm-9 {
    margin-right: 4.5rem !important;
  }
  .mr-sm-10 {
    margin-right: 5rem !important;
  }
  .mr-sm-11 {
    margin-right: 5.5rem !important;
  }
  .mr-sm-12 {
    margin-right: 6rem !important;
  }
  .mr-sm-13 {
    margin-right: 6.5rem !important;
  }
  .mr-sm-14 {
    margin-right: 7rem !important;
  }
  .mr-sm-15 {
    margin-right: 7.5rem !important;
  }
  .mr-sm-16 {
    margin-right: 8rem !important;
  }
  .mr-sm-17 {
    margin-right: 8.5rem !important;
  }
  .mr-sm-18 {
    margin-right: 9rem !important;
  }
  .mr-sm-19 {
    margin-right: 9.5rem !important;
  }
  .mr-sm-20 {
    margin-right: 10rem !important;
  }
  .mr-sm-21 {
    margin-right: 10.5rem !important;
  }
  .mr-sm-22 {
    margin-right: 11rem !important;
  }
  .mr-sm-23 {
    margin-right: 11.5rem !important;
  }
  .mr-sm-24 {
    margin-right: 12rem !important;
  }
  .mt-sm-0 {
    margin-top: 0rem !important;
  }
  .mt-sm-1 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-2 {
    margin-top: 1rem !important;
  }
  .mt-sm-3 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-4 {
    margin-top: 2rem !important;
  }
  .mt-sm-5 {
    margin-top: 2.5rem !important;
  }
  .mt-sm-6 {
    margin-top: 3rem !important;
  }
  .mt-sm-7 {
    margin-top: 3.5rem !important;
  }
  .mt-sm-8 {
    margin-top: 4rem !important;
  }
  .mt-sm-9 {
    margin-top: 4.5rem !important;
  }
  .mt-sm-10 {
    margin-top: 5rem !important;
  }
  .mt-sm-11 {
    margin-top: 5.5rem !important;
  }
  .mt-sm-12 {
    margin-top: 6rem !important;
  }
  .mt-sm-13 {
    margin-top: 6.5rem !important;
  }
  .mt-sm-14 {
    margin-top: 7rem !important;
  }
  .mt-sm-15 {
    margin-top: 7.5rem !important;
  }
  .mt-sm-16 {
    margin-top: 8rem !important;
  }
  .mt-sm-17 {
    margin-top: 8.5rem !important;
  }
  .mt-sm-18 {
    margin-top: 9rem !important;
  }
  .mt-sm-19 {
    margin-top: 9.5rem !important;
  }
  .mt-sm-20 {
    margin-top: 10rem !important;
  }
  .mt-sm-21 {
    margin-top: 10.5rem !important;
  }
  .mt-sm-22 {
    margin-top: 11rem !important;
  }
  .mt-sm-23 {
    margin-top: 11.5rem !important;
  }
  .mt-sm-24 {
    margin-top: 12rem !important;
  }
  .mb-sm-0 {
    margin-bottom: 0rem !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 2rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 3.5rem !important;
  }
  .mb-sm-8 {
    margin-bottom: 4rem !important;
  }
  .mb-sm-9 {
    margin-bottom: 4.5rem !important;
  }
  .mb-sm-10 {
    margin-bottom: 5rem !important;
  }
  .mb-sm-11 {
    margin-bottom: 5.5rem !important;
  }
  .mb-sm-12 {
    margin-bottom: 6rem !important;
  }
  .mb-sm-13 {
    margin-bottom: 6.5rem !important;
  }
  .mb-sm-14 {
    margin-bottom: 7rem !important;
  }
  .mb-sm-15 {
    margin-bottom: 7.5rem !important;
  }
  .mb-sm-16 {
    margin-bottom: 8rem !important;
  }
  .mb-sm-17 {
    margin-bottom: 8.5rem !important;
  }
  .mb-sm-18 {
    margin-bottom: 9rem !important;
  }
  .mb-sm-19 {
    margin-bottom: 9.5rem !important;
  }
  .mb-sm-20 {
    margin-bottom: 10rem !important;
  }
  .mb-sm-21 {
    margin-bottom: 10.5rem !important;
  }
  .mb-sm-22 {
    margin-bottom: 11rem !important;
  }
  .mb-sm-23 {
    margin-bottom: 11.5rem !important;
  }
  .mb-sm-24 {
    margin-bottom: 12rem !important;
  }
  .my-sm-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .mx-sm-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .my-sm-1 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .mx-sm-1 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .my-sm-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .mx-sm-2 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .my-sm-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .mx-sm-3 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .my-sm-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .mx-sm-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .my-sm-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .mx-sm-5 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .my-sm-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .mx-sm-6 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .my-sm-7 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .mx-sm-7 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }
  .my-sm-8 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .mx-sm-8 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .my-sm-9 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .mx-sm-9 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
  .my-sm-10 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .mx-sm-10 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .my-sm-11 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .mx-sm-11 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }
  .my-sm-12 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .mx-sm-12 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .my-sm-13 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }
  .mx-sm-13 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }
  .my-sm-14 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .mx-sm-14 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .my-sm-15 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .mx-sm-15 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }
  .my-sm-16 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .mx-sm-16 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .my-sm-17 {
    margin-top: 8.5rem !important;
    margin-bottom: 8.5rem !important;
  }
  .mx-sm-17 {
    margin-left: 8.5rem !important;
    margin-right: 8.5rem !important;
  }
  .my-sm-18 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .mx-sm-18 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .my-sm-19 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
  }
  .mx-sm-19 {
    margin-left: 9.5rem !important;
    margin-right: 9.5rem !important;
  }
  .my-sm-20 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .mx-sm-20 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .my-sm-21 {
    margin-top: 10.5rem !important;
    margin-bottom: 10.5rem !important;
  }
  .mx-sm-21 {
    margin-left: 10.5rem !important;
    margin-right: 10.5rem !important;
  }
  .my-sm-22 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .mx-sm-22 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }
  .my-sm-23 {
    margin-top: 11.5rem !important;
    margin-bottom: 11.5rem !important;
  }
  .mx-sm-23 {
    margin-left: 11.5rem !important;
    margin-right: 11.5rem !important;
  }
  .my-sm-24 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .mx-sm-24 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }
  .p-sm-0 {
    padding: 0rem;
  }
  .p-sm-1 {
    padding: 0.5rem;
  }
  .p-sm-2 {
    padding: 1rem;
  }
  .p-sm-3 {
    padding: 1.5rem;
  }
  .p-sm-4 {
    padding: 2rem;
  }
  .p-sm-5 {
    padding: 2.5rem;
  }
  .p-sm-6 {
    padding: 3rem;
  }
  .p-sm-7 {
    padding: 3.5rem;
  }
  .p-sm-8 {
    padding: 4rem;
  }
  .p-sm-9 {
    padding: 4.5rem;
  }
  .p-sm-10 {
    padding: 5rem;
  }
  .p-sm-11 {
    padding: 5.5rem;
  }
  .p-sm-12 {
    padding: 6rem;
  }
  .p-sm-13 {
    padding: 6.5rem;
  }
  .p-sm-14 {
    padding: 7rem;
  }
  .p-sm-15 {
    padding: 7.5rem;
  }
  .p-sm-16 {
    padding: 8rem;
  }
  .p-sm-17 {
    padding: 8.5rem;
  }
  .p-sm-18 {
    padding: 9rem;
  }
  .p-sm-19 {
    padding: 9.5rem;
  }
  .p-sm-20 {
    padding: 10rem;
  }
  .p-sm-21 {
    padding: 10.5rem;
  }
  .p-sm-22 {
    padding: 11rem;
  }
  .p-sm-23 {
    padding: 11.5rem;
  }
  .p-sm-24 {
    padding: 12rem;
  }
  .pl-sm-0 {
    padding-left: 0rem !important;
  }
  .pl-sm-1 {
    padding-left: 0.5rem !important;
  }
  .pl-sm-2 {
    padding-left: 1rem !important;
  }
  .pl-sm-3 {
    padding-left: 1.5rem !important;
  }
  .pl-sm-4 {
    padding-left: 2rem !important;
  }
  .pl-sm-5 {
    padding-left: 2.5rem !important;
  }
  .pl-sm-6 {
    padding-left: 3rem !important;
  }
  .pl-sm-7 {
    padding-left: 3.5rem !important;
  }
  .pl-sm-8 {
    padding-left: 4rem !important;
  }
  .pl-sm-9 {
    padding-left: 4.5rem !important;
  }
  .pl-sm-10 {
    padding-left: 5rem !important;
  }
  .pl-sm-11 {
    padding-left: 5.5rem !important;
  }
  .pl-sm-12 {
    padding-left: 6rem !important;
  }
  .pl-sm-13 {
    padding-left: 6.5rem !important;
  }
  .pl-sm-14 {
    padding-left: 7rem !important;
  }
  .pl-sm-15 {
    padding-left: 7.5rem !important;
  }
  .pl-sm-16 {
    padding-left: 8rem !important;
  }
  .pl-sm-17 {
    padding-left: 8.5rem !important;
  }
  .pl-sm-18 {
    padding-left: 9rem !important;
  }
  .pl-sm-19 {
    padding-left: 9.5rem !important;
  }
  .pl-sm-20 {
    padding-left: 10rem !important;
  }
  .pl-sm-21 {
    padding-left: 10.5rem !important;
  }
  .pl-sm-22 {
    padding-left: 11rem !important;
  }
  .pl-sm-23 {
    padding-left: 11.5rem !important;
  }
  .pl-sm-24 {
    padding-left: 12rem !important;
  }
  .pr-sm-0 {
    padding-right: 0rem !important;
  }
  .pr-sm-1 {
    padding-right: 0.5rem !important;
  }
  .pr-sm-2 {
    padding-right: 1rem !important;
  }
  .pr-sm-3 {
    padding-right: 1.5rem !important;
  }
  .pr-sm-4 {
    padding-right: 2rem !important;
  }
  .pr-sm-5 {
    padding-right: 2.5rem !important;
  }
  .pr-sm-6 {
    padding-right: 3rem !important;
  }
  .pr-sm-7 {
    padding-right: 3.5rem !important;
  }
  .pr-sm-8 {
    padding-right: 4rem !important;
  }
  .pr-sm-9 {
    padding-right: 4.5rem !important;
  }
  .pr-sm-10 {
    padding-right: 5rem !important;
  }
  .pr-sm-11 {
    padding-right: 5.5rem !important;
  }
  .pr-sm-12 {
    padding-right: 6rem !important;
  }
  .pr-sm-13 {
    padding-right: 6.5rem !important;
  }
  .pr-sm-14 {
    padding-right: 7rem !important;
  }
  .pr-sm-15 {
    padding-right: 7.5rem !important;
  }
  .pr-sm-16 {
    padding-right: 8rem !important;
  }
  .pr-sm-17 {
    padding-right: 8.5rem !important;
  }
  .pr-sm-18 {
    padding-right: 9rem !important;
  }
  .pr-sm-19 {
    padding-right: 9.5rem !important;
  }
  .pr-sm-20 {
    padding-right: 10rem !important;
  }
  .pr-sm-21 {
    padding-right: 10.5rem !important;
  }
  .pr-sm-22 {
    padding-right: 11rem !important;
  }
  .pr-sm-23 {
    padding-right: 11.5rem !important;
  }
  .pr-sm-24 {
    padding-right: 12rem !important;
  }
  .pt-sm-0 {
    padding-top: 0rem !important;
  }
  .pt-sm-1 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-2 {
    padding-top: 1rem !important;
  }
  .pt-sm-3 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-4 {
    padding-top: 2rem !important;
  }
  .pt-sm-5 {
    padding-top: 2.5rem !important;
  }
  .pt-sm-6 {
    padding-top: 3rem !important;
  }
  .pt-sm-7 {
    padding-top: 3.5rem !important;
  }
  .pt-sm-8 {
    padding-top: 4rem !important;
  }
  .pt-sm-9 {
    padding-top: 4.5rem !important;
  }
  .pt-sm-10 {
    padding-top: 5rem !important;
  }
  .pt-sm-11 {
    padding-top: 5.5rem !important;
  }
  .pt-sm-12 {
    padding-top: 6rem !important;
  }
  .pt-sm-13 {
    padding-top: 6.5rem !important;
  }
  .pt-sm-14 {
    padding-top: 7rem !important;
  }
  .pt-sm-15 {
    padding-top: 7.5rem !important;
  }
  .pt-sm-16 {
    padding-top: 8rem !important;
  }
  .pt-sm-17 {
    padding-top: 8.5rem !important;
  }
  .pt-sm-18 {
    padding-top: 9rem !important;
  }
  .pt-sm-19 {
    padding-top: 9.5rem !important;
  }
  .pt-sm-20 {
    padding-top: 10rem !important;
  }
  .pt-sm-21 {
    padding-top: 10.5rem !important;
  }
  .pt-sm-22 {
    padding-top: 11rem !important;
  }
  .pt-sm-23 {
    padding-top: 11.5rem !important;
  }
  .pt-sm-24 {
    padding-top: 12rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0rem !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 2rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 3.5rem !important;
  }
  .pb-sm-8 {
    padding-bottom: 4rem !important;
  }
  .pb-sm-9 {
    padding-bottom: 4.5rem !important;
  }
  .pb-sm-10 {
    padding-bottom: 5rem !important;
  }
  .pb-sm-11 {
    padding-bottom: 5.5rem !important;
  }
  .pb-sm-12 {
    padding-bottom: 6rem !important;
  }
  .pb-sm-13 {
    padding-bottom: 6.5rem !important;
  }
  .pb-sm-14 {
    padding-bottom: 7rem !important;
  }
  .pb-sm-15 {
    padding-bottom: 7.5rem !important;
  }
  .pb-sm-16 {
    padding-bottom: 8rem !important;
  }
  .pb-sm-17 {
    padding-bottom: 8.5rem !important;
  }
  .pb-sm-18 {
    padding-bottom: 9rem !important;
  }
  .pb-sm-19 {
    padding-bottom: 9.5rem !important;
  }
  .pb-sm-20 {
    padding-bottom: 10rem !important;
  }
  .pb-sm-21 {
    padding-bottom: 10.5rem !important;
  }
  .pb-sm-22 {
    padding-bottom: 11rem !important;
  }
  .pb-sm-23 {
    padding-bottom: 11.5rem !important;
  }
  .pb-sm-24 {
    padding-bottom: 12rem !important;
  }
  .px-sm-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .px-sm-1 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .px-sm-2 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .px-sm-3 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .px-sm-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .px-sm-5 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .px-sm-6 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .px-sm-7 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .px-sm-8 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .px-sm-9 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }
  .px-sm-10 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .px-sm-11 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }
  .px-sm-12 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .px-sm-13 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }
  .px-sm-14 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .px-sm-15 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }
  .px-sm-16 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .px-sm-17 {
    padding-left: 8.5rem !important;
    padding-right: 8.5rem !important;
  }
  .px-sm-18 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .px-sm-19 {
    padding-left: 9.5rem !important;
    padding-right: 9.5rem !important;
  }
  .px-sm-20 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .px-sm-21 {
    padding-left: 10.5rem !important;
    padding-right: 10.5rem !important;
  }
  .px-sm-22 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }
  .px-sm-23 {
    padding-left: 11.5rem !important;
    padding-right: 11.5rem !important;
  }
  .px-sm-24 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }
  .py-sm-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .py-sm-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-sm-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-sm-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-sm-7 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-sm-8 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-sm-9 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-sm-10 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-sm-11 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .py-sm-12 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-sm-13 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }
  .py-sm-14 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-sm-15 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .py-sm-16 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-sm-17 {
    padding-top: 8.5rem !important;
    padding-bottom: 8.5rem !important;
  }
  .py-sm-18 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-sm-19 {
    padding-top: 9.5rem !important;
    padding-bottom: 9.5rem !important;
  }
  .py-sm-20 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-sm-21 {
    padding-top: 10.5rem !important;
    padding-bottom: 10.5rem !important;
  }
  .py-sm-22 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .py-sm-23 {
    padding-top: 11.5rem !important;
    padding-bottom: 11.5rem !important;
  }
  .py-sm-24 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
}
@media screen and (min-width: 1024.5px) {
  .m-md-0 {
    margin: 0rem;
  }
  .m-md-1 {
    margin: 0.5rem;
  }
  .m-md-2 {
    margin: 1rem;
  }
  .m-md-3 {
    margin: 1.5rem;
  }
  .m-md-4 {
    margin: 2rem;
  }
  .m-md-5 {
    margin: 2.5rem;
  }
  .m-md-6 {
    margin: 3rem;
  }
  .m-md-7 {
    margin: 3.5rem;
  }
  .m-md-8 {
    margin: 4rem;
  }
  .m-md-9 {
    margin: 4.5rem;
  }
  .m-md-10 {
    margin: 5rem;
  }
  .m-md-11 {
    margin: 5.5rem;
  }
  .m-md-12 {
    margin: 6rem;
  }
  .m-md-13 {
    margin: 6.5rem;
  }
  .m-md-14 {
    margin: 7rem;
  }
  .m-md-15 {
    margin: 7.5rem;
  }
  .m-md-16 {
    margin: 8rem;
  }
  .m-md-17 {
    margin: 8.5rem;
  }
  .m-md-18 {
    margin: 9rem;
  }
  .m-md-19 {
    margin: 9.5rem;
  }
  .m-md-20 {
    margin: 10rem;
  }
  .m-md-21 {
    margin: 10.5rem;
  }
  .m-md-22 {
    margin: 11rem;
  }
  .m-md-23 {
    margin: 11.5rem;
  }
  .m-md-24 {
    margin: 12rem;
  }
  .ml-md-0 {
    margin-left: 0rem !important;
  }
  .ml-md-1 {
    margin-left: 0.5rem !important;
  }
  .ml-md-2 {
    margin-left: 1rem !important;
  }
  .ml-md-3 {
    margin-left: 1.5rem !important;
  }
  .ml-md-4 {
    margin-left: 2rem !important;
  }
  .ml-md-5 {
    margin-left: 2.5rem !important;
  }
  .ml-md-6 {
    margin-left: 3rem !important;
  }
  .ml-md-7 {
    margin-left: 3.5rem !important;
  }
  .ml-md-8 {
    margin-left: 4rem !important;
  }
  .ml-md-9 {
    margin-left: 4.5rem !important;
  }
  .ml-md-10 {
    margin-left: 5rem !important;
  }
  .ml-md-11 {
    margin-left: 5.5rem !important;
  }
  .ml-md-12 {
    margin-left: 6rem !important;
  }
  .ml-md-13 {
    margin-left: 6.5rem !important;
  }
  .ml-md-14 {
    margin-left: 7rem !important;
  }
  .ml-md-15 {
    margin-left: 7.5rem !important;
  }
  .ml-md-16 {
    margin-left: 8rem !important;
  }
  .ml-md-17 {
    margin-left: 8.5rem !important;
  }
  .ml-md-18 {
    margin-left: 9rem !important;
  }
  .ml-md-19 {
    margin-left: 9.5rem !important;
  }
  .ml-md-20 {
    margin-left: 10rem !important;
  }
  .ml-md-21 {
    margin-left: 10.5rem !important;
  }
  .ml-md-22 {
    margin-left: 11rem !important;
  }
  .ml-md-23 {
    margin-left: 11.5rem !important;
  }
  .ml-md-24 {
    margin-left: 12rem !important;
  }
  .mr-md-0 {
    margin-right: 0rem !important;
  }
  .mr-md-1 {
    margin-right: 0.5rem !important;
  }
  .mr-md-2 {
    margin-right: 1rem !important;
  }
  .mr-md-3 {
    margin-right: 1.5rem !important;
  }
  .mr-md-4 {
    margin-right: 2rem !important;
  }
  .mr-md-5 {
    margin-right: 2.5rem !important;
  }
  .mr-md-6 {
    margin-right: 3rem !important;
  }
  .mr-md-7 {
    margin-right: 3.5rem !important;
  }
  .mr-md-8 {
    margin-right: 4rem !important;
  }
  .mr-md-9 {
    margin-right: 4.5rem !important;
  }
  .mr-md-10 {
    margin-right: 5rem !important;
  }
  .mr-md-11 {
    margin-right: 5.5rem !important;
  }
  .mr-md-12 {
    margin-right: 6rem !important;
  }
  .mr-md-13 {
    margin-right: 6.5rem !important;
  }
  .mr-md-14 {
    margin-right: 7rem !important;
  }
  .mr-md-15 {
    margin-right: 7.5rem !important;
  }
  .mr-md-16 {
    margin-right: 8rem !important;
  }
  .mr-md-17 {
    margin-right: 8.5rem !important;
  }
  .mr-md-18 {
    margin-right: 9rem !important;
  }
  .mr-md-19 {
    margin-right: 9.5rem !important;
  }
  .mr-md-20 {
    margin-right: 10rem !important;
  }
  .mr-md-21 {
    margin-right: 10.5rem !important;
  }
  .mr-md-22 {
    margin-right: 11rem !important;
  }
  .mr-md-23 {
    margin-right: 11.5rem !important;
  }
  .mr-md-24 {
    margin-right: 12rem !important;
  }
  .mt-md-0 {
    margin-top: 0rem !important;
  }
  .mt-md-1 {
    margin-top: 0.5rem !important;
  }
  .mt-md-2 {
    margin-top: 1rem !important;
  }
  .mt-md-3 {
    margin-top: 1.5rem !important;
  }
  .mt-md-4 {
    margin-top: 2rem !important;
  }
  .mt-md-5 {
    margin-top: 2.5rem !important;
  }
  .mt-md-6 {
    margin-top: 3rem !important;
  }
  .mt-md-7 {
    margin-top: 3.5rem !important;
  }
  .mt-md-8 {
    margin-top: 4rem !important;
  }
  .mt-md-9 {
    margin-top: 4.5rem !important;
  }
  .mt-md-10 {
    margin-top: 5rem !important;
  }
  .mt-md-11 {
    margin-top: 5.5rem !important;
  }
  .mt-md-12 {
    margin-top: 6rem !important;
  }
  .mt-md-13 {
    margin-top: 6.5rem !important;
  }
  .mt-md-14 {
    margin-top: 7rem !important;
  }
  .mt-md-15 {
    margin-top: 7.5rem !important;
  }
  .mt-md-16 {
    margin-top: 8rem !important;
  }
  .mt-md-17 {
    margin-top: 8.5rem !important;
  }
  .mt-md-18 {
    margin-top: 9rem !important;
  }
  .mt-md-19 {
    margin-top: 9.5rem !important;
  }
  .mt-md-20 {
    margin-top: 10rem !important;
  }
  .mt-md-21 {
    margin-top: 10.5rem !important;
  }
  .mt-md-22 {
    margin-top: 11rem !important;
  }
  .mt-md-23 {
    margin-top: 11.5rem !important;
  }
  .mt-md-24 {
    margin-top: 12rem !important;
  }
  .mb-md-0 {
    margin-bottom: 0rem !important;
  }
  .mb-md-1 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-2 {
    margin-bottom: 1rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-4 {
    margin-bottom: 2rem !important;
  }
  .mb-md-5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-md-6 {
    margin-bottom: 3rem !important;
  }
  .mb-md-7 {
    margin-bottom: 3.5rem !important;
  }
  .mb-md-8 {
    margin-bottom: 4rem !important;
  }
  .mb-md-9 {
    margin-bottom: 4.5rem !important;
  }
  .mb-md-10 {
    margin-bottom: 5rem !important;
  }
  .mb-md-11 {
    margin-bottom: 5.5rem !important;
  }
  .mb-md-12 {
    margin-bottom: 6rem !important;
  }
  .mb-md-13 {
    margin-bottom: 6.5rem !important;
  }
  .mb-md-14 {
    margin-bottom: 7rem !important;
  }
  .mb-md-15 {
    margin-bottom: 7.5rem !important;
  }
  .mb-md-16 {
    margin-bottom: 8rem !important;
  }
  .mb-md-17 {
    margin-bottom: 8.5rem !important;
  }
  .mb-md-18 {
    margin-bottom: 9rem !important;
  }
  .mb-md-19 {
    margin-bottom: 9.5rem !important;
  }
  .mb-md-20 {
    margin-bottom: 10rem !important;
  }
  .mb-md-21 {
    margin-bottom: 10.5rem !important;
  }
  .mb-md-22 {
    margin-bottom: 11rem !important;
  }
  .mb-md-23 {
    margin-bottom: 11.5rem !important;
  }
  .mb-md-24 {
    margin-bottom: 12rem !important;
  }
  .my-md-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .mx-md-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .my-md-1 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .mx-md-1 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .my-md-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .mx-md-2 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .my-md-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .mx-md-3 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .my-md-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .mx-md-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .my-md-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .mx-md-5 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .my-md-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .mx-md-6 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .my-md-7 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .mx-md-7 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }
  .my-md-8 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .mx-md-8 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .my-md-9 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .mx-md-9 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
  .my-md-10 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .mx-md-10 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .my-md-11 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .mx-md-11 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }
  .my-md-12 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .mx-md-12 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .my-md-13 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }
  .mx-md-13 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }
  .my-md-14 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .mx-md-14 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .my-md-15 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .mx-md-15 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }
  .my-md-16 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .mx-md-16 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .my-md-17 {
    margin-top: 8.5rem !important;
    margin-bottom: 8.5rem !important;
  }
  .mx-md-17 {
    margin-left: 8.5rem !important;
    margin-right: 8.5rem !important;
  }
  .my-md-18 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .mx-md-18 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .my-md-19 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
  }
  .mx-md-19 {
    margin-left: 9.5rem !important;
    margin-right: 9.5rem !important;
  }
  .my-md-20 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .mx-md-20 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .my-md-21 {
    margin-top: 10.5rem !important;
    margin-bottom: 10.5rem !important;
  }
  .mx-md-21 {
    margin-left: 10.5rem !important;
    margin-right: 10.5rem !important;
  }
  .my-md-22 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .mx-md-22 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }
  .my-md-23 {
    margin-top: 11.5rem !important;
    margin-bottom: 11.5rem !important;
  }
  .mx-md-23 {
    margin-left: 11.5rem !important;
    margin-right: 11.5rem !important;
  }
  .my-md-24 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .mx-md-24 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }
  .p-md-0 {
    padding: 0rem;
  }
  .p-md-1 {
    padding: 0.5rem;
  }
  .p-md-2 {
    padding: 1rem;
  }
  .p-md-3 {
    padding: 1.5rem;
  }
  .p-md-4 {
    padding: 2rem;
  }
  .p-md-5 {
    padding: 2.5rem;
  }
  .p-md-6 {
    padding: 3rem;
  }
  .p-md-7 {
    padding: 3.5rem;
  }
  .p-md-8 {
    padding: 4rem;
  }
  .p-md-9 {
    padding: 4.5rem;
  }
  .p-md-10 {
    padding: 5rem;
  }
  .p-md-11 {
    padding: 5.5rem;
  }
  .p-md-12 {
    padding: 6rem;
  }
  .p-md-13 {
    padding: 6.5rem;
  }
  .p-md-14 {
    padding: 7rem;
  }
  .p-md-15 {
    padding: 7.5rem;
  }
  .p-md-16 {
    padding: 8rem;
  }
  .p-md-17 {
    padding: 8.5rem;
  }
  .p-md-18 {
    padding: 9rem;
  }
  .p-md-19 {
    padding: 9.5rem;
  }
  .p-md-20 {
    padding: 10rem;
  }
  .p-md-21 {
    padding: 10.5rem;
  }
  .p-md-22 {
    padding: 11rem;
  }
  .p-md-23 {
    padding: 11.5rem;
  }
  .p-md-24 {
    padding: 12rem;
  }
  .pl-md-0 {
    padding-left: 0rem !important;
  }
  .pl-md-1 {
    padding-left: 0.5rem !important;
  }
  .pl-md-2 {
    padding-left: 1rem !important;
  }
  .pl-md-3 {
    padding-left: 1.5rem !important;
  }
  .pl-md-4 {
    padding-left: 2rem !important;
  }
  .pl-md-5 {
    padding-left: 2.5rem !important;
  }
  .pl-md-6 {
    padding-left: 3rem !important;
  }
  .pl-md-7 {
    padding-left: 3.5rem !important;
  }
  .pl-md-8 {
    padding-left: 4rem !important;
  }
  .pl-md-9 {
    padding-left: 4.5rem !important;
  }
  .pl-md-10 {
    padding-left: 5rem !important;
  }
  .pl-md-11 {
    padding-left: 5.5rem !important;
  }
  .pl-md-12 {
    padding-left: 6rem !important;
  }
  .pl-md-13 {
    padding-left: 6.5rem !important;
  }
  .pl-md-14 {
    padding-left: 7rem !important;
  }
  .pl-md-15 {
    padding-left: 7.5rem !important;
  }
  .pl-md-16 {
    padding-left: 8rem !important;
  }
  .pl-md-17 {
    padding-left: 8.5rem !important;
  }
  .pl-md-18 {
    padding-left: 9rem !important;
  }
  .pl-md-19 {
    padding-left: 9.5rem !important;
  }
  .pl-md-20 {
    padding-left: 10rem !important;
  }
  .pl-md-21 {
    padding-left: 10.5rem !important;
  }
  .pl-md-22 {
    padding-left: 11rem !important;
  }
  .pl-md-23 {
    padding-left: 11.5rem !important;
  }
  .pl-md-24 {
    padding-left: 12rem !important;
  }
  .pr-md-0 {
    padding-right: 0rem !important;
  }
  .pr-md-1 {
    padding-right: 0.5rem !important;
  }
  .pr-md-2 {
    padding-right: 1rem !important;
  }
  .pr-md-3 {
    padding-right: 1.5rem !important;
  }
  .pr-md-4 {
    padding-right: 2rem !important;
  }
  .pr-md-5 {
    padding-right: 2.5rem !important;
  }
  .pr-md-6 {
    padding-right: 3rem !important;
  }
  .pr-md-7 {
    padding-right: 3.5rem !important;
  }
  .pr-md-8 {
    padding-right: 4rem !important;
  }
  .pr-md-9 {
    padding-right: 4.5rem !important;
  }
  .pr-md-10 {
    padding-right: 5rem !important;
  }
  .pr-md-11 {
    padding-right: 5.5rem !important;
  }
  .pr-md-12 {
    padding-right: 6rem !important;
  }
  .pr-md-13 {
    padding-right: 6.5rem !important;
  }
  .pr-md-14 {
    padding-right: 7rem !important;
  }
  .pr-md-15 {
    padding-right: 7.5rem !important;
  }
  .pr-md-16 {
    padding-right: 8rem !important;
  }
  .pr-md-17 {
    padding-right: 8.5rem !important;
  }
  .pr-md-18 {
    padding-right: 9rem !important;
  }
  .pr-md-19 {
    padding-right: 9.5rem !important;
  }
  .pr-md-20 {
    padding-right: 10rem !important;
  }
  .pr-md-21 {
    padding-right: 10.5rem !important;
  }
  .pr-md-22 {
    padding-right: 11rem !important;
  }
  .pr-md-23 {
    padding-right: 11.5rem !important;
  }
  .pr-md-24 {
    padding-right: 12rem !important;
  }
  .pt-md-0 {
    padding-top: 0rem !important;
  }
  .pt-md-1 {
    padding-top: 0.5rem !important;
  }
  .pt-md-2 {
    padding-top: 1rem !important;
  }
  .pt-md-3 {
    padding-top: 1.5rem !important;
  }
  .pt-md-4 {
    padding-top: 2rem !important;
  }
  .pt-md-5 {
    padding-top: 2.5rem !important;
  }
  .pt-md-6 {
    padding-top: 3rem !important;
  }
  .pt-md-7 {
    padding-top: 3.5rem !important;
  }
  .pt-md-8 {
    padding-top: 4rem !important;
  }
  .pt-md-9 {
    padding-top: 4.5rem !important;
  }
  .pt-md-10 {
    padding-top: 5rem !important;
  }
  .pt-md-11 {
    padding-top: 5.5rem !important;
  }
  .pt-md-12 {
    padding-top: 6rem !important;
  }
  .pt-md-13 {
    padding-top: 6.5rem !important;
  }
  .pt-md-14 {
    padding-top: 7rem !important;
  }
  .pt-md-15 {
    padding-top: 7.5rem !important;
  }
  .pt-md-16 {
    padding-top: 8rem !important;
  }
  .pt-md-17 {
    padding-top: 8.5rem !important;
  }
  .pt-md-18 {
    padding-top: 9rem !important;
  }
  .pt-md-19 {
    padding-top: 9.5rem !important;
  }
  .pt-md-20 {
    padding-top: 10rem !important;
  }
  .pt-md-21 {
    padding-top: 10.5rem !important;
  }
  .pt-md-22 {
    padding-top: 11rem !important;
  }
  .pt-md-23 {
    padding-top: 11.5rem !important;
  }
  .pt-md-24 {
    padding-top: 12rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0rem !important;
  }
  .pb-md-1 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-2 {
    padding-bottom: 1rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-4 {
    padding-bottom: 2rem !important;
  }
  .pb-md-5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-md-6 {
    padding-bottom: 3rem !important;
  }
  .pb-md-7 {
    padding-bottom: 3.5rem !important;
  }
  .pb-md-8 {
    padding-bottom: 4rem !important;
  }
  .pb-md-9 {
    padding-bottom: 4.5rem !important;
  }
  .pb-md-10 {
    padding-bottom: 5rem !important;
  }
  .pb-md-11 {
    padding-bottom: 5.5rem !important;
  }
  .pb-md-12 {
    padding-bottom: 6rem !important;
  }
  .pb-md-13 {
    padding-bottom: 6.5rem !important;
  }
  .pb-md-14 {
    padding-bottom: 7rem !important;
  }
  .pb-md-15 {
    padding-bottom: 7.5rem !important;
  }
  .pb-md-16 {
    padding-bottom: 8rem !important;
  }
  .pb-md-17 {
    padding-bottom: 8.5rem !important;
  }
  .pb-md-18 {
    padding-bottom: 9rem !important;
  }
  .pb-md-19 {
    padding-bottom: 9.5rem !important;
  }
  .pb-md-20 {
    padding-bottom: 10rem !important;
  }
  .pb-md-21 {
    padding-bottom: 10.5rem !important;
  }
  .pb-md-22 {
    padding-bottom: 11rem !important;
  }
  .pb-md-23 {
    padding-bottom: 11.5rem !important;
  }
  .pb-md-24 {
    padding-bottom: 12rem !important;
  }
  .px-md-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .px-md-1 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .px-md-2 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .px-md-3 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .px-md-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .px-md-5 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .px-md-6 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .px-md-7 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .px-md-8 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .px-md-9 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }
  .px-md-10 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .px-md-11 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }
  .px-md-12 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .px-md-13 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }
  .px-md-14 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .px-md-15 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }
  .px-md-16 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .px-md-17 {
    padding-left: 8.5rem !important;
    padding-right: 8.5rem !important;
  }
  .px-md-18 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .px-md-19 {
    padding-left: 9.5rem !important;
    padding-right: 9.5rem !important;
  }
  .px-md-20 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .px-md-21 {
    padding-left: 10.5rem !important;
    padding-right: 10.5rem !important;
  }
  .px-md-22 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }
  .px-md-23 {
    padding-left: 11.5rem !important;
    padding-right: 11.5rem !important;
  }
  .px-md-24 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }
  .py-md-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .py-md-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-md-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-md-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-md-7 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-md-8 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-md-9 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-md-10 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-md-11 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .py-md-12 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-md-13 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }
  .py-md-14 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-md-15 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .py-md-16 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-md-17 {
    padding-top: 8.5rem !important;
    padding-bottom: 8.5rem !important;
  }
  .py-md-18 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-md-19 {
    padding-top: 9.5rem !important;
    padding-bottom: 9.5rem !important;
  }
  .py-md-20 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-md-21 {
    padding-top: 10.5rem !important;
    padding-bottom: 10.5rem !important;
  }
  .py-md-22 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .py-md-23 {
    padding-top: 11.5rem !important;
    padding-bottom: 11.5rem !important;
  }
  .py-md-24 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
}
@media screen and (min-width: 1240.5px) {
  .m-lg-0 {
    margin: 0rem;
  }
  .m-lg-1 {
    margin: 0.5rem;
  }
  .m-lg-2 {
    margin: 1rem;
  }
  .m-lg-3 {
    margin: 1.5rem;
  }
  .m-lg-4 {
    margin: 2rem;
  }
  .m-lg-5 {
    margin: 2.5rem;
  }
  .m-lg-6 {
    margin: 3rem;
  }
  .m-lg-7 {
    margin: 3.5rem;
  }
  .m-lg-8 {
    margin: 4rem;
  }
  .m-lg-9 {
    margin: 4.5rem;
  }
  .m-lg-10 {
    margin: 5rem;
  }
  .m-lg-11 {
    margin: 5.5rem;
  }
  .m-lg-12 {
    margin: 6rem;
  }
  .m-lg-13 {
    margin: 6.5rem;
  }
  .m-lg-14 {
    margin: 7rem;
  }
  .m-lg-15 {
    margin: 7.5rem;
  }
  .m-lg-16 {
    margin: 8rem;
  }
  .m-lg-17 {
    margin: 8.5rem;
  }
  .m-lg-18 {
    margin: 9rem;
  }
  .m-lg-19 {
    margin: 9.5rem;
  }
  .m-lg-20 {
    margin: 10rem;
  }
  .m-lg-21 {
    margin: 10.5rem;
  }
  .m-lg-22 {
    margin: 11rem;
  }
  .m-lg-23 {
    margin: 11.5rem;
  }
  .m-lg-24 {
    margin: 12rem;
  }
  .ml-lg-0 {
    margin-left: 0rem !important;
  }
  .ml-lg-1 {
    margin-left: 0.5rem !important;
  }
  .ml-lg-2 {
    margin-left: 1rem !important;
  }
  .ml-lg-3 {
    margin-left: 1.5rem !important;
  }
  .ml-lg-4 {
    margin-left: 2rem !important;
  }
  .ml-lg-5 {
    margin-left: 2.5rem !important;
  }
  .ml-lg-6 {
    margin-left: 3rem !important;
  }
  .ml-lg-7 {
    margin-left: 3.5rem !important;
  }
  .ml-lg-8 {
    margin-left: 4rem !important;
  }
  .ml-lg-9 {
    margin-left: 4.5rem !important;
  }
  .ml-lg-10 {
    margin-left: 5rem !important;
  }
  .ml-lg-11 {
    margin-left: 5.5rem !important;
  }
  .ml-lg-12 {
    margin-left: 6rem !important;
  }
  .ml-lg-13 {
    margin-left: 6.5rem !important;
  }
  .ml-lg-14 {
    margin-left: 7rem !important;
  }
  .ml-lg-15 {
    margin-left: 7.5rem !important;
  }
  .ml-lg-16 {
    margin-left: 8rem !important;
  }
  .ml-lg-17 {
    margin-left: 8.5rem !important;
  }
  .ml-lg-18 {
    margin-left: 9rem !important;
  }
  .ml-lg-19 {
    margin-left: 9.5rem !important;
  }
  .ml-lg-20 {
    margin-left: 10rem !important;
  }
  .ml-lg-21 {
    margin-left: 10.5rem !important;
  }
  .ml-lg-22 {
    margin-left: 11rem !important;
  }
  .ml-lg-23 {
    margin-left: 11.5rem !important;
  }
  .ml-lg-24 {
    margin-left: 12rem !important;
  }
  .mr-lg-0 {
    margin-right: 0rem !important;
  }
  .mr-lg-1 {
    margin-right: 0.5rem !important;
  }
  .mr-lg-2 {
    margin-right: 1rem !important;
  }
  .mr-lg-3 {
    margin-right: 1.5rem !important;
  }
  .mr-lg-4 {
    margin-right: 2rem !important;
  }
  .mr-lg-5 {
    margin-right: 2.5rem !important;
  }
  .mr-lg-6 {
    margin-right: 3rem !important;
  }
  .mr-lg-7 {
    margin-right: 3.5rem !important;
  }
  .mr-lg-8 {
    margin-right: 4rem !important;
  }
  .mr-lg-9 {
    margin-right: 4.5rem !important;
  }
  .mr-lg-10 {
    margin-right: 5rem !important;
  }
  .mr-lg-11 {
    margin-right: 5.5rem !important;
  }
  .mr-lg-12 {
    margin-right: 6rem !important;
  }
  .mr-lg-13 {
    margin-right: 6.5rem !important;
  }
  .mr-lg-14 {
    margin-right: 7rem !important;
  }
  .mr-lg-15 {
    margin-right: 7.5rem !important;
  }
  .mr-lg-16 {
    margin-right: 8rem !important;
  }
  .mr-lg-17 {
    margin-right: 8.5rem !important;
  }
  .mr-lg-18 {
    margin-right: 9rem !important;
  }
  .mr-lg-19 {
    margin-right: 9.5rem !important;
  }
  .mr-lg-20 {
    margin-right: 10rem !important;
  }
  .mr-lg-21 {
    margin-right: 10.5rem !important;
  }
  .mr-lg-22 {
    margin-right: 11rem !important;
  }
  .mr-lg-23 {
    margin-right: 11.5rem !important;
  }
  .mr-lg-24 {
    margin-right: 12rem !important;
  }
  .mt-lg-0 {
    margin-top: 0rem !important;
  }
  .mt-lg-1 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-2 {
    margin-top: 1rem !important;
  }
  .mt-lg-3 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-4 {
    margin-top: 2rem !important;
  }
  .mt-lg-5 {
    margin-top: 2.5rem !important;
  }
  .mt-lg-6 {
    margin-top: 3rem !important;
  }
  .mt-lg-7 {
    margin-top: 3.5rem !important;
  }
  .mt-lg-8 {
    margin-top: 4rem !important;
  }
  .mt-lg-9 {
    margin-top: 4.5rem !important;
  }
  .mt-lg-10 {
    margin-top: 5rem !important;
  }
  .mt-lg-11 {
    margin-top: 5.5rem !important;
  }
  .mt-lg-12 {
    margin-top: 6rem !important;
  }
  .mt-lg-13 {
    margin-top: 6.5rem !important;
  }
  .mt-lg-14 {
    margin-top: 7rem !important;
  }
  .mt-lg-15 {
    margin-top: 7.5rem !important;
  }
  .mt-lg-16 {
    margin-top: 8rem !important;
  }
  .mt-lg-17 {
    margin-top: 8.5rem !important;
  }
  .mt-lg-18 {
    margin-top: 9rem !important;
  }
  .mt-lg-19 {
    margin-top: 9.5rem !important;
  }
  .mt-lg-20 {
    margin-top: 10rem !important;
  }
  .mt-lg-21 {
    margin-top: 10.5rem !important;
  }
  .mt-lg-22 {
    margin-top: 11rem !important;
  }
  .mt-lg-23 {
    margin-top: 11.5rem !important;
  }
  .mt-lg-24 {
    margin-top: 12rem !important;
  }
  .mb-lg-0 {
    margin-bottom: 0rem !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 2rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 3.5rem !important;
  }
  .mb-lg-8 {
    margin-bottom: 4rem !important;
  }
  .mb-lg-9 {
    margin-bottom: 4.5rem !important;
  }
  .mb-lg-10 {
    margin-bottom: 5rem !important;
  }
  .mb-lg-11 {
    margin-bottom: 5.5rem !important;
  }
  .mb-lg-12 {
    margin-bottom: 6rem !important;
  }
  .mb-lg-13 {
    margin-bottom: 6.5rem !important;
  }
  .mb-lg-14 {
    margin-bottom: 7rem !important;
  }
  .mb-lg-15 {
    margin-bottom: 7.5rem !important;
  }
  .mb-lg-16 {
    margin-bottom: 8rem !important;
  }
  .mb-lg-17 {
    margin-bottom: 8.5rem !important;
  }
  .mb-lg-18 {
    margin-bottom: 9rem !important;
  }
  .mb-lg-19 {
    margin-bottom: 9.5rem !important;
  }
  .mb-lg-20 {
    margin-bottom: 10rem !important;
  }
  .mb-lg-21 {
    margin-bottom: 10.5rem !important;
  }
  .mb-lg-22 {
    margin-bottom: 11rem !important;
  }
  .mb-lg-23 {
    margin-bottom: 11.5rem !important;
  }
  .mb-lg-24 {
    margin-bottom: 12rem !important;
  }
  .my-lg-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .mx-lg-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .my-lg-1 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .mx-lg-1 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .my-lg-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .mx-lg-2 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .my-lg-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .mx-lg-3 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .my-lg-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .mx-lg-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .my-lg-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .mx-lg-5 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .my-lg-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .mx-lg-6 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .my-lg-7 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .mx-lg-7 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }
  .my-lg-8 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .mx-lg-8 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .my-lg-9 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .mx-lg-9 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
  .my-lg-10 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .mx-lg-10 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .my-lg-11 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .mx-lg-11 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }
  .my-lg-12 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .mx-lg-12 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .my-lg-13 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }
  .mx-lg-13 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }
  .my-lg-14 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .mx-lg-14 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .my-lg-15 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .mx-lg-15 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }
  .my-lg-16 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .mx-lg-16 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .my-lg-17 {
    margin-top: 8.5rem !important;
    margin-bottom: 8.5rem !important;
  }
  .mx-lg-17 {
    margin-left: 8.5rem !important;
    margin-right: 8.5rem !important;
  }
  .my-lg-18 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .mx-lg-18 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .my-lg-19 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
  }
  .mx-lg-19 {
    margin-left: 9.5rem !important;
    margin-right: 9.5rem !important;
  }
  .my-lg-20 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .mx-lg-20 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .my-lg-21 {
    margin-top: 10.5rem !important;
    margin-bottom: 10.5rem !important;
  }
  .mx-lg-21 {
    margin-left: 10.5rem !important;
    margin-right: 10.5rem !important;
  }
  .my-lg-22 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .mx-lg-22 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }
  .my-lg-23 {
    margin-top: 11.5rem !important;
    margin-bottom: 11.5rem !important;
  }
  .mx-lg-23 {
    margin-left: 11.5rem !important;
    margin-right: 11.5rem !important;
  }
  .my-lg-24 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .mx-lg-24 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }
  .p-lg-0 {
    padding: 0rem;
  }
  .p-lg-1 {
    padding: 0.5rem;
  }
  .p-lg-2 {
    padding: 1rem;
  }
  .p-lg-3 {
    padding: 1.5rem;
  }
  .p-lg-4 {
    padding: 2rem;
  }
  .p-lg-5 {
    padding: 2.5rem;
  }
  .p-lg-6 {
    padding: 3rem;
  }
  .p-lg-7 {
    padding: 3.5rem;
  }
  .p-lg-8 {
    padding: 4rem;
  }
  .p-lg-9 {
    padding: 4.5rem;
  }
  .p-lg-10 {
    padding: 5rem;
  }
  .p-lg-11 {
    padding: 5.5rem;
  }
  .p-lg-12 {
    padding: 6rem;
  }
  .p-lg-13 {
    padding: 6.5rem;
  }
  .p-lg-14 {
    padding: 7rem;
  }
  .p-lg-15 {
    padding: 7.5rem;
  }
  .p-lg-16 {
    padding: 8rem;
  }
  .p-lg-17 {
    padding: 8.5rem;
  }
  .p-lg-18 {
    padding: 9rem;
  }
  .p-lg-19 {
    padding: 9.5rem;
  }
  .p-lg-20 {
    padding: 10rem;
  }
  .p-lg-21 {
    padding: 10.5rem;
  }
  .p-lg-22 {
    padding: 11rem;
  }
  .p-lg-23 {
    padding: 11.5rem;
  }
  .p-lg-24 {
    padding: 12rem;
  }
  .pl-lg-0 {
    padding-left: 0rem !important;
  }
  .pl-lg-1 {
    padding-left: 0.5rem !important;
  }
  .pl-lg-2 {
    padding-left: 1rem !important;
  }
  .pl-lg-3 {
    padding-left: 1.5rem !important;
  }
  .pl-lg-4 {
    padding-left: 2rem !important;
  }
  .pl-lg-5 {
    padding-left: 2.5rem !important;
  }
  .pl-lg-6 {
    padding-left: 3rem !important;
  }
  .pl-lg-7 {
    padding-left: 3.5rem !important;
  }
  .pl-lg-8 {
    padding-left: 4rem !important;
  }
  .pl-lg-9 {
    padding-left: 4.5rem !important;
  }
  .pl-lg-10 {
    padding-left: 5rem !important;
  }
  .pl-lg-11 {
    padding-left: 5.5rem !important;
  }
  .pl-lg-12 {
    padding-left: 6rem !important;
  }
  .pl-lg-13 {
    padding-left: 6.5rem !important;
  }
  .pl-lg-14 {
    padding-left: 7rem !important;
  }
  .pl-lg-15 {
    padding-left: 7.5rem !important;
  }
  .pl-lg-16 {
    padding-left: 8rem !important;
  }
  .pl-lg-17 {
    padding-left: 8.5rem !important;
  }
  .pl-lg-18 {
    padding-left: 9rem !important;
  }
  .pl-lg-19 {
    padding-left: 9.5rem !important;
  }
  .pl-lg-20 {
    padding-left: 10rem !important;
  }
  .pl-lg-21 {
    padding-left: 10.5rem !important;
  }
  .pl-lg-22 {
    padding-left: 11rem !important;
  }
  .pl-lg-23 {
    padding-left: 11.5rem !important;
  }
  .pl-lg-24 {
    padding-left: 12rem !important;
  }
  .pr-lg-0 {
    padding-right: 0rem !important;
  }
  .pr-lg-1 {
    padding-right: 0.5rem !important;
  }
  .pr-lg-2 {
    padding-right: 1rem !important;
  }
  .pr-lg-3 {
    padding-right: 1.5rem !important;
  }
  .pr-lg-4 {
    padding-right: 2rem !important;
  }
  .pr-lg-5 {
    padding-right: 2.5rem !important;
  }
  .pr-lg-6 {
    padding-right: 3rem !important;
  }
  .pr-lg-7 {
    padding-right: 3.5rem !important;
  }
  .pr-lg-8 {
    padding-right: 4rem !important;
  }
  .pr-lg-9 {
    padding-right: 4.5rem !important;
  }
  .pr-lg-10 {
    padding-right: 5rem !important;
  }
  .pr-lg-11 {
    padding-right: 5.5rem !important;
  }
  .pr-lg-12 {
    padding-right: 6rem !important;
  }
  .pr-lg-13 {
    padding-right: 6.5rem !important;
  }
  .pr-lg-14 {
    padding-right: 7rem !important;
  }
  .pr-lg-15 {
    padding-right: 7.5rem !important;
  }
  .pr-lg-16 {
    padding-right: 8rem !important;
  }
  .pr-lg-17 {
    padding-right: 8.5rem !important;
  }
  .pr-lg-18 {
    padding-right: 9rem !important;
  }
  .pr-lg-19 {
    padding-right: 9.5rem !important;
  }
  .pr-lg-20 {
    padding-right: 10rem !important;
  }
  .pr-lg-21 {
    padding-right: 10.5rem !important;
  }
  .pr-lg-22 {
    padding-right: 11rem !important;
  }
  .pr-lg-23 {
    padding-right: 11.5rem !important;
  }
  .pr-lg-24 {
    padding-right: 12rem !important;
  }
  .pt-lg-0 {
    padding-top: 0rem !important;
  }
  .pt-lg-1 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-2 {
    padding-top: 1rem !important;
  }
  .pt-lg-3 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-4 {
    padding-top: 2rem !important;
  }
  .pt-lg-5 {
    padding-top: 2.5rem !important;
  }
  .pt-lg-6 {
    padding-top: 3rem !important;
  }
  .pt-lg-7 {
    padding-top: 3.5rem !important;
  }
  .pt-lg-8 {
    padding-top: 4rem !important;
  }
  .pt-lg-9 {
    padding-top: 4.5rem !important;
  }
  .pt-lg-10 {
    padding-top: 5rem !important;
  }
  .pt-lg-11 {
    padding-top: 5.5rem !important;
  }
  .pt-lg-12 {
    padding-top: 6rem !important;
  }
  .pt-lg-13 {
    padding-top: 6.5rem !important;
  }
  .pt-lg-14 {
    padding-top: 7rem !important;
  }
  .pt-lg-15 {
    padding-top: 7.5rem !important;
  }
  .pt-lg-16 {
    padding-top: 8rem !important;
  }
  .pt-lg-17 {
    padding-top: 8.5rem !important;
  }
  .pt-lg-18 {
    padding-top: 9rem !important;
  }
  .pt-lg-19 {
    padding-top: 9.5rem !important;
  }
  .pt-lg-20 {
    padding-top: 10rem !important;
  }
  .pt-lg-21 {
    padding-top: 10.5rem !important;
  }
  .pt-lg-22 {
    padding-top: 11rem !important;
  }
  .pt-lg-23 {
    padding-top: 11.5rem !important;
  }
  .pt-lg-24 {
    padding-top: 12rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0rem !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 2rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 3.5rem !important;
  }
  .pb-lg-8 {
    padding-bottom: 4rem !important;
  }
  .pb-lg-9 {
    padding-bottom: 4.5rem !important;
  }
  .pb-lg-10 {
    padding-bottom: 5rem !important;
  }
  .pb-lg-11 {
    padding-bottom: 5.5rem !important;
  }
  .pb-lg-12 {
    padding-bottom: 6rem !important;
  }
  .pb-lg-13 {
    padding-bottom: 6.5rem !important;
  }
  .pb-lg-14 {
    padding-bottom: 7rem !important;
  }
  .pb-lg-15 {
    padding-bottom: 7.5rem !important;
  }
  .pb-lg-16 {
    padding-bottom: 8rem !important;
  }
  .pb-lg-17 {
    padding-bottom: 8.5rem !important;
  }
  .pb-lg-18 {
    padding-bottom: 9rem !important;
  }
  .pb-lg-19 {
    padding-bottom: 9.5rem !important;
  }
  .pb-lg-20 {
    padding-bottom: 10rem !important;
  }
  .pb-lg-21 {
    padding-bottom: 10.5rem !important;
  }
  .pb-lg-22 {
    padding-bottom: 11rem !important;
  }
  .pb-lg-23 {
    padding-bottom: 11.5rem !important;
  }
  .pb-lg-24 {
    padding-bottom: 12rem !important;
  }
  .px-lg-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .px-lg-1 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .px-lg-2 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .px-lg-3 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .px-lg-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .px-lg-5 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .px-lg-6 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .px-lg-7 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .px-lg-8 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .px-lg-9 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }
  .px-lg-10 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .px-lg-11 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }
  .px-lg-12 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .px-lg-13 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }
  .px-lg-14 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .px-lg-15 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }
  .px-lg-16 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .px-lg-17 {
    padding-left: 8.5rem !important;
    padding-right: 8.5rem !important;
  }
  .px-lg-18 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .px-lg-19 {
    padding-left: 9.5rem !important;
    padding-right: 9.5rem !important;
  }
  .px-lg-20 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .px-lg-21 {
    padding-left: 10.5rem !important;
    padding-right: 10.5rem !important;
  }
  .px-lg-22 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }
  .px-lg-23 {
    padding-left: 11.5rem !important;
    padding-right: 11.5rem !important;
  }
  .px-lg-24 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }
  .py-lg-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .py-lg-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-lg-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-lg-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-lg-7 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-lg-8 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-lg-9 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-lg-10 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-lg-11 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .py-lg-12 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-lg-13 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }
  .py-lg-14 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-lg-15 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .py-lg-16 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-lg-17 {
    padding-top: 8.5rem !important;
    padding-bottom: 8.5rem !important;
  }
  .py-lg-18 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-lg-19 {
    padding-top: 9.5rem !important;
    padding-bottom: 9.5rem !important;
  }
  .py-lg-20 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-lg-21 {
    padding-top: 10.5rem !important;
    padding-bottom: 10.5rem !important;
  }
  .py-lg-22 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .py-lg-23 {
    padding-top: 11.5rem !important;
    padding-bottom: 11.5rem !important;
  }
  .py-lg-24 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
}
@media screen and (min-width: 1366.5px) {
  .m-xl-0 {
    margin: 0rem;
  }
  .m-xl-1 {
    margin: 0.5rem;
  }
  .m-xl-2 {
    margin: 1rem;
  }
  .m-xl-3 {
    margin: 1.5rem;
  }
  .m-xl-4 {
    margin: 2rem;
  }
  .m-xl-5 {
    margin: 2.5rem;
  }
  .m-xl-6 {
    margin: 3rem;
  }
  .m-xl-7 {
    margin: 3.5rem;
  }
  .m-xl-8 {
    margin: 4rem;
  }
  .m-xl-9 {
    margin: 4.5rem;
  }
  .m-xl-10 {
    margin: 5rem;
  }
  .m-xl-11 {
    margin: 5.5rem;
  }
  .m-xl-12 {
    margin: 6rem;
  }
  .m-xl-13 {
    margin: 6.5rem;
  }
  .m-xl-14 {
    margin: 7rem;
  }
  .m-xl-15 {
    margin: 7.5rem;
  }
  .m-xl-16 {
    margin: 8rem;
  }
  .m-xl-17 {
    margin: 8.5rem;
  }
  .m-xl-18 {
    margin: 9rem;
  }
  .m-xl-19 {
    margin: 9.5rem;
  }
  .m-xl-20 {
    margin: 10rem;
  }
  .m-xl-21 {
    margin: 10.5rem;
  }
  .m-xl-22 {
    margin: 11rem;
  }
  .m-xl-23 {
    margin: 11.5rem;
  }
  .m-xl-24 {
    margin: 12rem;
  }
  .ml-xl-0 {
    margin-left: 0rem !important;
  }
  .ml-xl-1 {
    margin-left: 0.5rem !important;
  }
  .ml-xl-2 {
    margin-left: 1rem !important;
  }
  .ml-xl-3 {
    margin-left: 1.5rem !important;
  }
  .ml-xl-4 {
    margin-left: 2rem !important;
  }
  .ml-xl-5 {
    margin-left: 2.5rem !important;
  }
  .ml-xl-6 {
    margin-left: 3rem !important;
  }
  .ml-xl-7 {
    margin-left: 3.5rem !important;
  }
  .ml-xl-8 {
    margin-left: 4rem !important;
  }
  .ml-xl-9 {
    margin-left: 4.5rem !important;
  }
  .ml-xl-10 {
    margin-left: 5rem !important;
  }
  .ml-xl-11 {
    margin-left: 5.5rem !important;
  }
  .ml-xl-12 {
    margin-left: 6rem !important;
  }
  .ml-xl-13 {
    margin-left: 6.5rem !important;
  }
  .ml-xl-14 {
    margin-left: 7rem !important;
  }
  .ml-xl-15 {
    margin-left: 7.5rem !important;
  }
  .ml-xl-16 {
    margin-left: 8rem !important;
  }
  .ml-xl-17 {
    margin-left: 8.5rem !important;
  }
  .ml-xl-18 {
    margin-left: 9rem !important;
  }
  .ml-xl-19 {
    margin-left: 9.5rem !important;
  }
  .ml-xl-20 {
    margin-left: 10rem !important;
  }
  .ml-xl-21 {
    margin-left: 10.5rem !important;
  }
  .ml-xl-22 {
    margin-left: 11rem !important;
  }
  .ml-xl-23 {
    margin-left: 11.5rem !important;
  }
  .ml-xl-24 {
    margin-left: 12rem !important;
  }
  .mr-xl-0 {
    margin-right: 0rem !important;
  }
  .mr-xl-1 {
    margin-right: 0.5rem !important;
  }
  .mr-xl-2 {
    margin-right: 1rem !important;
  }
  .mr-xl-3 {
    margin-right: 1.5rem !important;
  }
  .mr-xl-4 {
    margin-right: 2rem !important;
  }
  .mr-xl-5 {
    margin-right: 2.5rem !important;
  }
  .mr-xl-6 {
    margin-right: 3rem !important;
  }
  .mr-xl-7 {
    margin-right: 3.5rem !important;
  }
  .mr-xl-8 {
    margin-right: 4rem !important;
  }
  .mr-xl-9 {
    margin-right: 4.5rem !important;
  }
  .mr-xl-10 {
    margin-right: 5rem !important;
  }
  .mr-xl-11 {
    margin-right: 5.5rem !important;
  }
  .mr-xl-12 {
    margin-right: 6rem !important;
  }
  .mr-xl-13 {
    margin-right: 6.5rem !important;
  }
  .mr-xl-14 {
    margin-right: 7rem !important;
  }
  .mr-xl-15 {
    margin-right: 7.5rem !important;
  }
  .mr-xl-16 {
    margin-right: 8rem !important;
  }
  .mr-xl-17 {
    margin-right: 8.5rem !important;
  }
  .mr-xl-18 {
    margin-right: 9rem !important;
  }
  .mr-xl-19 {
    margin-right: 9.5rem !important;
  }
  .mr-xl-20 {
    margin-right: 10rem !important;
  }
  .mr-xl-21 {
    margin-right: 10.5rem !important;
  }
  .mr-xl-22 {
    margin-right: 11rem !important;
  }
  .mr-xl-23 {
    margin-right: 11.5rem !important;
  }
  .mr-xl-24 {
    margin-right: 12rem !important;
  }
  .mt-xl-0 {
    margin-top: 0rem !important;
  }
  .mt-xl-1 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-2 {
    margin-top: 1rem !important;
  }
  .mt-xl-3 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-4 {
    margin-top: 2rem !important;
  }
  .mt-xl-5 {
    margin-top: 2.5rem !important;
  }
  .mt-xl-6 {
    margin-top: 3rem !important;
  }
  .mt-xl-7 {
    margin-top: 3.5rem !important;
  }
  .mt-xl-8 {
    margin-top: 4rem !important;
  }
  .mt-xl-9 {
    margin-top: 4.5rem !important;
  }
  .mt-xl-10 {
    margin-top: 5rem !important;
  }
  .mt-xl-11 {
    margin-top: 5.5rem !important;
  }
  .mt-xl-12 {
    margin-top: 6rem !important;
  }
  .mt-xl-13 {
    margin-top: 6.5rem !important;
  }
  .mt-xl-14 {
    margin-top: 7rem !important;
  }
  .mt-xl-15 {
    margin-top: 7.5rem !important;
  }
  .mt-xl-16 {
    margin-top: 8rem !important;
  }
  .mt-xl-17 {
    margin-top: 8.5rem !important;
  }
  .mt-xl-18 {
    margin-top: 9rem !important;
  }
  .mt-xl-19 {
    margin-top: 9.5rem !important;
  }
  .mt-xl-20 {
    margin-top: 10rem !important;
  }
  .mt-xl-21 {
    margin-top: 10.5rem !important;
  }
  .mt-xl-22 {
    margin-top: 11rem !important;
  }
  .mt-xl-23 {
    margin-top: 11.5rem !important;
  }
  .mt-xl-24 {
    margin-top: 12rem !important;
  }
  .mb-xl-0 {
    margin-bottom: 0rem !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 2rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xl-8 {
    margin-bottom: 4rem !important;
  }
  .mb-xl-9 {
    margin-bottom: 4.5rem !important;
  }
  .mb-xl-10 {
    margin-bottom: 5rem !important;
  }
  .mb-xl-11 {
    margin-bottom: 5.5rem !important;
  }
  .mb-xl-12 {
    margin-bottom: 6rem !important;
  }
  .mb-xl-13 {
    margin-bottom: 6.5rem !important;
  }
  .mb-xl-14 {
    margin-bottom: 7rem !important;
  }
  .mb-xl-15 {
    margin-bottom: 7.5rem !important;
  }
  .mb-xl-16 {
    margin-bottom: 8rem !important;
  }
  .mb-xl-17 {
    margin-bottom: 8.5rem !important;
  }
  .mb-xl-18 {
    margin-bottom: 9rem !important;
  }
  .mb-xl-19 {
    margin-bottom: 9.5rem !important;
  }
  .mb-xl-20 {
    margin-bottom: 10rem !important;
  }
  .mb-xl-21 {
    margin-bottom: 10.5rem !important;
  }
  .mb-xl-22 {
    margin-bottom: 11rem !important;
  }
  .mb-xl-23 {
    margin-bottom: 11.5rem !important;
  }
  .mb-xl-24 {
    margin-bottom: 12rem !important;
  }
  .my-xl-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .mx-xl-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .my-xl-1 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .mx-xl-1 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .my-xl-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .mx-xl-2 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .my-xl-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .mx-xl-3 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .my-xl-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .mx-xl-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .my-xl-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .mx-xl-5 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .my-xl-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .mx-xl-6 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .my-xl-7 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .mx-xl-7 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }
  .my-xl-8 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .mx-xl-8 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .my-xl-9 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .mx-xl-9 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
  .my-xl-10 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .mx-xl-10 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .my-xl-11 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .mx-xl-11 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }
  .my-xl-12 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .mx-xl-12 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .my-xl-13 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }
  .mx-xl-13 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }
  .my-xl-14 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .mx-xl-14 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .my-xl-15 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .mx-xl-15 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }
  .my-xl-16 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .mx-xl-16 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .my-xl-17 {
    margin-top: 8.5rem !important;
    margin-bottom: 8.5rem !important;
  }
  .mx-xl-17 {
    margin-left: 8.5rem !important;
    margin-right: 8.5rem !important;
  }
  .my-xl-18 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .mx-xl-18 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .my-xl-19 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
  }
  .mx-xl-19 {
    margin-left: 9.5rem !important;
    margin-right: 9.5rem !important;
  }
  .my-xl-20 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .mx-xl-20 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .my-xl-21 {
    margin-top: 10.5rem !important;
    margin-bottom: 10.5rem !important;
  }
  .mx-xl-21 {
    margin-left: 10.5rem !important;
    margin-right: 10.5rem !important;
  }
  .my-xl-22 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .mx-xl-22 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }
  .my-xl-23 {
    margin-top: 11.5rem !important;
    margin-bottom: 11.5rem !important;
  }
  .mx-xl-23 {
    margin-left: 11.5rem !important;
    margin-right: 11.5rem !important;
  }
  .my-xl-24 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .mx-xl-24 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }
  .p-xl-0 {
    padding: 0rem;
  }
  .p-xl-1 {
    padding: 0.5rem;
  }
  .p-xl-2 {
    padding: 1rem;
  }
  .p-xl-3 {
    padding: 1.5rem;
  }
  .p-xl-4 {
    padding: 2rem;
  }
  .p-xl-5 {
    padding: 2.5rem;
  }
  .p-xl-6 {
    padding: 3rem;
  }
  .p-xl-7 {
    padding: 3.5rem;
  }
  .p-xl-8 {
    padding: 4rem;
  }
  .p-xl-9 {
    padding: 4.5rem;
  }
  .p-xl-10 {
    padding: 5rem;
  }
  .p-xl-11 {
    padding: 5.5rem;
  }
  .p-xl-12 {
    padding: 6rem;
  }
  .p-xl-13 {
    padding: 6.5rem;
  }
  .p-xl-14 {
    padding: 7rem;
  }
  .p-xl-15 {
    padding: 7.5rem;
  }
  .p-xl-16 {
    padding: 8rem;
  }
  .p-xl-17 {
    padding: 8.5rem;
  }
  .p-xl-18 {
    padding: 9rem;
  }
  .p-xl-19 {
    padding: 9.5rem;
  }
  .p-xl-20 {
    padding: 10rem;
  }
  .p-xl-21 {
    padding: 10.5rem;
  }
  .p-xl-22 {
    padding: 11rem;
  }
  .p-xl-23 {
    padding: 11.5rem;
  }
  .p-xl-24 {
    padding: 12rem;
  }
  .pl-xl-0 {
    padding-left: 0rem !important;
  }
  .pl-xl-1 {
    padding-left: 0.5rem !important;
  }
  .pl-xl-2 {
    padding-left: 1rem !important;
  }
  .pl-xl-3 {
    padding-left: 1.5rem !important;
  }
  .pl-xl-4 {
    padding-left: 2rem !important;
  }
  .pl-xl-5 {
    padding-left: 2.5rem !important;
  }
  .pl-xl-6 {
    padding-left: 3rem !important;
  }
  .pl-xl-7 {
    padding-left: 3.5rem !important;
  }
  .pl-xl-8 {
    padding-left: 4rem !important;
  }
  .pl-xl-9 {
    padding-left: 4.5rem !important;
  }
  .pl-xl-10 {
    padding-left: 5rem !important;
  }
  .pl-xl-11 {
    padding-left: 5.5rem !important;
  }
  .pl-xl-12 {
    padding-left: 6rem !important;
  }
  .pl-xl-13 {
    padding-left: 6.5rem !important;
  }
  .pl-xl-14 {
    padding-left: 7rem !important;
  }
  .pl-xl-15 {
    padding-left: 7.5rem !important;
  }
  .pl-xl-16 {
    padding-left: 8rem !important;
  }
  .pl-xl-17 {
    padding-left: 8.5rem !important;
  }
  .pl-xl-18 {
    padding-left: 9rem !important;
  }
  .pl-xl-19 {
    padding-left: 9.5rem !important;
  }
  .pl-xl-20 {
    padding-left: 10rem !important;
  }
  .pl-xl-21 {
    padding-left: 10.5rem !important;
  }
  .pl-xl-22 {
    padding-left: 11rem !important;
  }
  .pl-xl-23 {
    padding-left: 11.5rem !important;
  }
  .pl-xl-24 {
    padding-left: 12rem !important;
  }
  .pr-xl-0 {
    padding-right: 0rem !important;
  }
  .pr-xl-1 {
    padding-right: 0.5rem !important;
  }
  .pr-xl-2 {
    padding-right: 1rem !important;
  }
  .pr-xl-3 {
    padding-right: 1.5rem !important;
  }
  .pr-xl-4 {
    padding-right: 2rem !important;
  }
  .pr-xl-5 {
    padding-right: 2.5rem !important;
  }
  .pr-xl-6 {
    padding-right: 3rem !important;
  }
  .pr-xl-7 {
    padding-right: 3.5rem !important;
  }
  .pr-xl-8 {
    padding-right: 4rem !important;
  }
  .pr-xl-9 {
    padding-right: 4.5rem !important;
  }
  .pr-xl-10 {
    padding-right: 5rem !important;
  }
  .pr-xl-11 {
    padding-right: 5.5rem !important;
  }
  .pr-xl-12 {
    padding-right: 6rem !important;
  }
  .pr-xl-13 {
    padding-right: 6.5rem !important;
  }
  .pr-xl-14 {
    padding-right: 7rem !important;
  }
  .pr-xl-15 {
    padding-right: 7.5rem !important;
  }
  .pr-xl-16 {
    padding-right: 8rem !important;
  }
  .pr-xl-17 {
    padding-right: 8.5rem !important;
  }
  .pr-xl-18 {
    padding-right: 9rem !important;
  }
  .pr-xl-19 {
    padding-right: 9.5rem !important;
  }
  .pr-xl-20 {
    padding-right: 10rem !important;
  }
  .pr-xl-21 {
    padding-right: 10.5rem !important;
  }
  .pr-xl-22 {
    padding-right: 11rem !important;
  }
  .pr-xl-23 {
    padding-right: 11.5rem !important;
  }
  .pr-xl-24 {
    padding-right: 12rem !important;
  }
  .pt-xl-0 {
    padding-top: 0rem !important;
  }
  .pt-xl-1 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-2 {
    padding-top: 1rem !important;
  }
  .pt-xl-3 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-4 {
    padding-top: 2rem !important;
  }
  .pt-xl-5 {
    padding-top: 2.5rem !important;
  }
  .pt-xl-6 {
    padding-top: 3rem !important;
  }
  .pt-xl-7 {
    padding-top: 3.5rem !important;
  }
  .pt-xl-8 {
    padding-top: 4rem !important;
  }
  .pt-xl-9 {
    padding-top: 4.5rem !important;
  }
  .pt-xl-10 {
    padding-top: 5rem !important;
  }
  .pt-xl-11 {
    padding-top: 5.5rem !important;
  }
  .pt-xl-12 {
    padding-top: 6rem !important;
  }
  .pt-xl-13 {
    padding-top: 6.5rem !important;
  }
  .pt-xl-14 {
    padding-top: 7rem !important;
  }
  .pt-xl-15 {
    padding-top: 7.5rem !important;
  }
  .pt-xl-16 {
    padding-top: 8rem !important;
  }
  .pt-xl-17 {
    padding-top: 8.5rem !important;
  }
  .pt-xl-18 {
    padding-top: 9rem !important;
  }
  .pt-xl-19 {
    padding-top: 9.5rem !important;
  }
  .pt-xl-20 {
    padding-top: 10rem !important;
  }
  .pt-xl-21 {
    padding-top: 10.5rem !important;
  }
  .pt-xl-22 {
    padding-top: 11rem !important;
  }
  .pt-xl-23 {
    padding-top: 11.5rem !important;
  }
  .pt-xl-24 {
    padding-top: 12rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0rem !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 2rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xl-8 {
    padding-bottom: 4rem !important;
  }
  .pb-xl-9 {
    padding-bottom: 4.5rem !important;
  }
  .pb-xl-10 {
    padding-bottom: 5rem !important;
  }
  .pb-xl-11 {
    padding-bottom: 5.5rem !important;
  }
  .pb-xl-12 {
    padding-bottom: 6rem !important;
  }
  .pb-xl-13 {
    padding-bottom: 6.5rem !important;
  }
  .pb-xl-14 {
    padding-bottom: 7rem !important;
  }
  .pb-xl-15 {
    padding-bottom: 7.5rem !important;
  }
  .pb-xl-16 {
    padding-bottom: 8rem !important;
  }
  .pb-xl-17 {
    padding-bottom: 8.5rem !important;
  }
  .pb-xl-18 {
    padding-bottom: 9rem !important;
  }
  .pb-xl-19 {
    padding-bottom: 9.5rem !important;
  }
  .pb-xl-20 {
    padding-bottom: 10rem !important;
  }
  .pb-xl-21 {
    padding-bottom: 10.5rem !important;
  }
  .pb-xl-22 {
    padding-bottom: 11rem !important;
  }
  .pb-xl-23 {
    padding-bottom: 11.5rem !important;
  }
  .pb-xl-24 {
    padding-bottom: 12rem !important;
  }
  .px-xl-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .px-xl-1 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .px-xl-2 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .px-xl-3 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .px-xl-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .px-xl-5 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .px-xl-6 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .px-xl-7 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .px-xl-8 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .px-xl-9 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }
  .px-xl-10 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .px-xl-11 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }
  .px-xl-12 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .px-xl-13 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }
  .px-xl-14 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .px-xl-15 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }
  .px-xl-16 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .px-xl-17 {
    padding-left: 8.5rem !important;
    padding-right: 8.5rem !important;
  }
  .px-xl-18 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .px-xl-19 {
    padding-left: 9.5rem !important;
    padding-right: 9.5rem !important;
  }
  .px-xl-20 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .px-xl-21 {
    padding-left: 10.5rem !important;
    padding-right: 10.5rem !important;
  }
  .px-xl-22 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }
  .px-xl-23 {
    padding-left: 11.5rem !important;
    padding-right: 11.5rem !important;
  }
  .px-xl-24 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }
  .py-xl-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .py-xl-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xl-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xl-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xl-7 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xl-8 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xl-9 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-xl-10 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xl-11 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .py-xl-12 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xl-13 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }
  .py-xl-14 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-xl-15 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .py-xl-16 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-xl-17 {
    padding-top: 8.5rem !important;
    padding-bottom: 8.5rem !important;
  }
  .py-xl-18 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-xl-19 {
    padding-top: 9.5rem !important;
    padding-bottom: 9.5rem !important;
  }
  .py-xl-20 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-xl-21 {
    padding-top: 10.5rem !important;
    padding-bottom: 10.5rem !important;
  }
  .py-xl-22 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .py-xl-23 {
    padding-top: 11.5rem !important;
    padding-bottom: 11.5rem !important;
  }
  .py-xl-24 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
}
@media screen and (min-width: 1366.5px) {
  .m-xxl-0 {
    margin: 0rem;
  }
  .m-xxl-1 {
    margin: 0.5rem;
  }
  .m-xxl-2 {
    margin: 1rem;
  }
  .m-xxl-3 {
    margin: 1.5rem;
  }
  .m-xxl-4 {
    margin: 2rem;
  }
  .m-xxl-5 {
    margin: 2.5rem;
  }
  .m-xxl-6 {
    margin: 3rem;
  }
  .m-xxl-7 {
    margin: 3.5rem;
  }
  .m-xxl-8 {
    margin: 4rem;
  }
  .m-xxl-9 {
    margin: 4.5rem;
  }
  .m-xxl-10 {
    margin: 5rem;
  }
  .m-xxl-11 {
    margin: 5.5rem;
  }
  .m-xxl-12 {
    margin: 6rem;
  }
  .m-xxl-13 {
    margin: 6.5rem;
  }
  .m-xxl-14 {
    margin: 7rem;
  }
  .m-xxl-15 {
    margin: 7.5rem;
  }
  .m-xxl-16 {
    margin: 8rem;
  }
  .m-xxl-17 {
    margin: 8.5rem;
  }
  .m-xxl-18 {
    margin: 9rem;
  }
  .m-xxl-19 {
    margin: 9.5rem;
  }
  .m-xxl-20 {
    margin: 10rem;
  }
  .m-xxl-21 {
    margin: 10.5rem;
  }
  .m-xxl-22 {
    margin: 11rem;
  }
  .m-xxl-23 {
    margin: 11.5rem;
  }
  .m-xxl-24 {
    margin: 12rem;
  }
  .ml-xxl-0 {
    margin-left: 0rem !important;
  }
  .ml-xxl-1 {
    margin-left: 0.5rem !important;
  }
  .ml-xxl-2 {
    margin-left: 1rem !important;
  }
  .ml-xxl-3 {
    margin-left: 1.5rem !important;
  }
  .ml-xxl-4 {
    margin-left: 2rem !important;
  }
  .ml-xxl-5 {
    margin-left: 2.5rem !important;
  }
  .ml-xxl-6 {
    margin-left: 3rem !important;
  }
  .ml-xxl-7 {
    margin-left: 3.5rem !important;
  }
  .ml-xxl-8 {
    margin-left: 4rem !important;
  }
  .ml-xxl-9 {
    margin-left: 4.5rem !important;
  }
  .ml-xxl-10 {
    margin-left: 5rem !important;
  }
  .ml-xxl-11 {
    margin-left: 5.5rem !important;
  }
  .ml-xxl-12 {
    margin-left: 6rem !important;
  }
  .ml-xxl-13 {
    margin-left: 6.5rem !important;
  }
  .ml-xxl-14 {
    margin-left: 7rem !important;
  }
  .ml-xxl-15 {
    margin-left: 7.5rem !important;
  }
  .ml-xxl-16 {
    margin-left: 8rem !important;
  }
  .ml-xxl-17 {
    margin-left: 8.5rem !important;
  }
  .ml-xxl-18 {
    margin-left: 9rem !important;
  }
  .ml-xxl-19 {
    margin-left: 9.5rem !important;
  }
  .ml-xxl-20 {
    margin-left: 10rem !important;
  }
  .ml-xxl-21 {
    margin-left: 10.5rem !important;
  }
  .ml-xxl-22 {
    margin-left: 11rem !important;
  }
  .ml-xxl-23 {
    margin-left: 11.5rem !important;
  }
  .ml-xxl-24 {
    margin-left: 12rem !important;
  }
  .mr-xxl-0 {
    margin-right: 0rem !important;
  }
  .mr-xxl-1 {
    margin-right: 0.5rem !important;
  }
  .mr-xxl-2 {
    margin-right: 1rem !important;
  }
  .mr-xxl-3 {
    margin-right: 1.5rem !important;
  }
  .mr-xxl-4 {
    margin-right: 2rem !important;
  }
  .mr-xxl-5 {
    margin-right: 2.5rem !important;
  }
  .mr-xxl-6 {
    margin-right: 3rem !important;
  }
  .mr-xxl-7 {
    margin-right: 3.5rem !important;
  }
  .mr-xxl-8 {
    margin-right: 4rem !important;
  }
  .mr-xxl-9 {
    margin-right: 4.5rem !important;
  }
  .mr-xxl-10 {
    margin-right: 5rem !important;
  }
  .mr-xxl-11 {
    margin-right: 5.5rem !important;
  }
  .mr-xxl-12 {
    margin-right: 6rem !important;
  }
  .mr-xxl-13 {
    margin-right: 6.5rem !important;
  }
  .mr-xxl-14 {
    margin-right: 7rem !important;
  }
  .mr-xxl-15 {
    margin-right: 7.5rem !important;
  }
  .mr-xxl-16 {
    margin-right: 8rem !important;
  }
  .mr-xxl-17 {
    margin-right: 8.5rem !important;
  }
  .mr-xxl-18 {
    margin-right: 9rem !important;
  }
  .mr-xxl-19 {
    margin-right: 9.5rem !important;
  }
  .mr-xxl-20 {
    margin-right: 10rem !important;
  }
  .mr-xxl-21 {
    margin-right: 10.5rem !important;
  }
  .mr-xxl-22 {
    margin-right: 11rem !important;
  }
  .mr-xxl-23 {
    margin-right: 11.5rem !important;
  }
  .mr-xxl-24 {
    margin-right: 12rem !important;
  }
  .mt-xxl-0 {
    margin-top: 0rem !important;
  }
  .mt-xxl-1 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-2 {
    margin-top: 1rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-4 {
    margin-top: 2rem !important;
  }
  .mt-xxl-5 {
    margin-top: 2.5rem !important;
  }
  .mt-xxl-6 {
    margin-top: 3rem !important;
  }
  .mt-xxl-7 {
    margin-top: 3.5rem !important;
  }
  .mt-xxl-8 {
    margin-top: 4rem !important;
  }
  .mt-xxl-9 {
    margin-top: 4.5rem !important;
  }
  .mt-xxl-10 {
    margin-top: 5rem !important;
  }
  .mt-xxl-11 {
    margin-top: 5.5rem !important;
  }
  .mt-xxl-12 {
    margin-top: 6rem !important;
  }
  .mt-xxl-13 {
    margin-top: 6.5rem !important;
  }
  .mt-xxl-14 {
    margin-top: 7rem !important;
  }
  .mt-xxl-15 {
    margin-top: 7.5rem !important;
  }
  .mt-xxl-16 {
    margin-top: 8rem !important;
  }
  .mt-xxl-17 {
    margin-top: 8.5rem !important;
  }
  .mt-xxl-18 {
    margin-top: 9rem !important;
  }
  .mt-xxl-19 {
    margin-top: 9.5rem !important;
  }
  .mt-xxl-20 {
    margin-top: 10rem !important;
  }
  .mt-xxl-21 {
    margin-top: 10.5rem !important;
  }
  .mt-xxl-22 {
    margin-top: 11rem !important;
  }
  .mt-xxl-23 {
    margin-top: 11.5rem !important;
  }
  .mt-xxl-24 {
    margin-top: 12rem !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0rem !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 2rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xxl-6 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-7 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xxl-8 {
    margin-bottom: 4rem !important;
  }
  .mb-xxl-9 {
    margin-bottom: 4.5rem !important;
  }
  .mb-xxl-10 {
    margin-bottom: 5rem !important;
  }
  .mb-xxl-11 {
    margin-bottom: 5.5rem !important;
  }
  .mb-xxl-12 {
    margin-bottom: 6rem !important;
  }
  .mb-xxl-13 {
    margin-bottom: 6.5rem !important;
  }
  .mb-xxl-14 {
    margin-bottom: 7rem !important;
  }
  .mb-xxl-15 {
    margin-bottom: 7.5rem !important;
  }
  .mb-xxl-16 {
    margin-bottom: 8rem !important;
  }
  .mb-xxl-17 {
    margin-bottom: 8.5rem !important;
  }
  .mb-xxl-18 {
    margin-bottom: 9rem !important;
  }
  .mb-xxl-19 {
    margin-bottom: 9.5rem !important;
  }
  .mb-xxl-20 {
    margin-bottom: 10rem !important;
  }
  .mb-xxl-21 {
    margin-bottom: 10.5rem !important;
  }
  .mb-xxl-22 {
    margin-bottom: 11rem !important;
  }
  .mb-xxl-23 {
    margin-bottom: 11.5rem !important;
  }
  .mb-xxl-24 {
    margin-bottom: 12rem !important;
  }
  .my-xxl-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .mx-xxl-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .my-xxl-1 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .mx-xxl-1 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .my-xxl-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .mx-xxl-2 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .my-xxl-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .mx-xxl-3 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .my-xxl-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .mx-xxl-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .my-xxl-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .mx-xxl-5 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .my-xxl-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .mx-xxl-6 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .my-xxl-7 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .mx-xxl-7 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }
  .my-xxl-8 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .mx-xxl-8 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .my-xxl-9 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .mx-xxl-9 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
  .my-xxl-10 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .mx-xxl-10 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .my-xxl-11 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .mx-xxl-11 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }
  .my-xxl-12 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .mx-xxl-12 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .my-xxl-13 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }
  .mx-xxl-13 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }
  .my-xxl-14 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .mx-xxl-14 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .my-xxl-15 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .mx-xxl-15 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }
  .my-xxl-16 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .mx-xxl-16 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .my-xxl-17 {
    margin-top: 8.5rem !important;
    margin-bottom: 8.5rem !important;
  }
  .mx-xxl-17 {
    margin-left: 8.5rem !important;
    margin-right: 8.5rem !important;
  }
  .my-xxl-18 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .mx-xxl-18 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .my-xxl-19 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
  }
  .mx-xxl-19 {
    margin-left: 9.5rem !important;
    margin-right: 9.5rem !important;
  }
  .my-xxl-20 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .mx-xxl-20 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .my-xxl-21 {
    margin-top: 10.5rem !important;
    margin-bottom: 10.5rem !important;
  }
  .mx-xxl-21 {
    margin-left: 10.5rem !important;
    margin-right: 10.5rem !important;
  }
  .my-xxl-22 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .mx-xxl-22 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }
  .my-xxl-23 {
    margin-top: 11.5rem !important;
    margin-bottom: 11.5rem !important;
  }
  .mx-xxl-23 {
    margin-left: 11.5rem !important;
    margin-right: 11.5rem !important;
  }
  .my-xxl-24 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .mx-xxl-24 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }
  .p-xxl-0 {
    padding: 0rem;
  }
  .p-xxl-1 {
    padding: 0.5rem;
  }
  .p-xxl-2 {
    padding: 1rem;
  }
  .p-xxl-3 {
    padding: 1.5rem;
  }
  .p-xxl-4 {
    padding: 2rem;
  }
  .p-xxl-5 {
    padding: 2.5rem;
  }
  .p-xxl-6 {
    padding: 3rem;
  }
  .p-xxl-7 {
    padding: 3.5rem;
  }
  .p-xxl-8 {
    padding: 4rem;
  }
  .p-xxl-9 {
    padding: 4.5rem;
  }
  .p-xxl-10 {
    padding: 5rem;
  }
  .p-xxl-11 {
    padding: 5.5rem;
  }
  .p-xxl-12 {
    padding: 6rem;
  }
  .p-xxl-13 {
    padding: 6.5rem;
  }
  .p-xxl-14 {
    padding: 7rem;
  }
  .p-xxl-15 {
    padding: 7.5rem;
  }
  .p-xxl-16 {
    padding: 8rem;
  }
  .p-xxl-17 {
    padding: 8.5rem;
  }
  .p-xxl-18 {
    padding: 9rem;
  }
  .p-xxl-19 {
    padding: 9.5rem;
  }
  .p-xxl-20 {
    padding: 10rem;
  }
  .p-xxl-21 {
    padding: 10.5rem;
  }
  .p-xxl-22 {
    padding: 11rem;
  }
  .p-xxl-23 {
    padding: 11.5rem;
  }
  .p-xxl-24 {
    padding: 12rem;
  }
  .pl-xxl-0 {
    padding-left: 0rem !important;
  }
  .pl-xxl-1 {
    padding-left: 0.5rem !important;
  }
  .pl-xxl-2 {
    padding-left: 1rem !important;
  }
  .pl-xxl-3 {
    padding-left: 1.5rem !important;
  }
  .pl-xxl-4 {
    padding-left: 2rem !important;
  }
  .pl-xxl-5 {
    padding-left: 2.5rem !important;
  }
  .pl-xxl-6 {
    padding-left: 3rem !important;
  }
  .pl-xxl-7 {
    padding-left: 3.5rem !important;
  }
  .pl-xxl-8 {
    padding-left: 4rem !important;
  }
  .pl-xxl-9 {
    padding-left: 4.5rem !important;
  }
  .pl-xxl-10 {
    padding-left: 5rem !important;
  }
  .pl-xxl-11 {
    padding-left: 5.5rem !important;
  }
  .pl-xxl-12 {
    padding-left: 6rem !important;
  }
  .pl-xxl-13 {
    padding-left: 6.5rem !important;
  }
  .pl-xxl-14 {
    padding-left: 7rem !important;
  }
  .pl-xxl-15 {
    padding-left: 7.5rem !important;
  }
  .pl-xxl-16 {
    padding-left: 8rem !important;
  }
  .pl-xxl-17 {
    padding-left: 8.5rem !important;
  }
  .pl-xxl-18 {
    padding-left: 9rem !important;
  }
  .pl-xxl-19 {
    padding-left: 9.5rem !important;
  }
  .pl-xxl-20 {
    padding-left: 10rem !important;
  }
  .pl-xxl-21 {
    padding-left: 10.5rem !important;
  }
  .pl-xxl-22 {
    padding-left: 11rem !important;
  }
  .pl-xxl-23 {
    padding-left: 11.5rem !important;
  }
  .pl-xxl-24 {
    padding-left: 12rem !important;
  }
  .pr-xxl-0 {
    padding-right: 0rem !important;
  }
  .pr-xxl-1 {
    padding-right: 0.5rem !important;
  }
  .pr-xxl-2 {
    padding-right: 1rem !important;
  }
  .pr-xxl-3 {
    padding-right: 1.5rem !important;
  }
  .pr-xxl-4 {
    padding-right: 2rem !important;
  }
  .pr-xxl-5 {
    padding-right: 2.5rem !important;
  }
  .pr-xxl-6 {
    padding-right: 3rem !important;
  }
  .pr-xxl-7 {
    padding-right: 3.5rem !important;
  }
  .pr-xxl-8 {
    padding-right: 4rem !important;
  }
  .pr-xxl-9 {
    padding-right: 4.5rem !important;
  }
  .pr-xxl-10 {
    padding-right: 5rem !important;
  }
  .pr-xxl-11 {
    padding-right: 5.5rem !important;
  }
  .pr-xxl-12 {
    padding-right: 6rem !important;
  }
  .pr-xxl-13 {
    padding-right: 6.5rem !important;
  }
  .pr-xxl-14 {
    padding-right: 7rem !important;
  }
  .pr-xxl-15 {
    padding-right: 7.5rem !important;
  }
  .pr-xxl-16 {
    padding-right: 8rem !important;
  }
  .pr-xxl-17 {
    padding-right: 8.5rem !important;
  }
  .pr-xxl-18 {
    padding-right: 9rem !important;
  }
  .pr-xxl-19 {
    padding-right: 9.5rem !important;
  }
  .pr-xxl-20 {
    padding-right: 10rem !important;
  }
  .pr-xxl-21 {
    padding-right: 10.5rem !important;
  }
  .pr-xxl-22 {
    padding-right: 11rem !important;
  }
  .pr-xxl-23 {
    padding-right: 11.5rem !important;
  }
  .pr-xxl-24 {
    padding-right: 12rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0rem !important;
  }
  .pt-xxl-1 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-2 {
    padding-top: 1rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-4 {
    padding-top: 2rem !important;
  }
  .pt-xxl-5 {
    padding-top: 2.5rem !important;
  }
  .pt-xxl-6 {
    padding-top: 3rem !important;
  }
  .pt-xxl-7 {
    padding-top: 3.5rem !important;
  }
  .pt-xxl-8 {
    padding-top: 4rem !important;
  }
  .pt-xxl-9 {
    padding-top: 4.5rem !important;
  }
  .pt-xxl-10 {
    padding-top: 5rem !important;
  }
  .pt-xxl-11 {
    padding-top: 5.5rem !important;
  }
  .pt-xxl-12 {
    padding-top: 6rem !important;
  }
  .pt-xxl-13 {
    padding-top: 6.5rem !important;
  }
  .pt-xxl-14 {
    padding-top: 7rem !important;
  }
  .pt-xxl-15 {
    padding-top: 7.5rem !important;
  }
  .pt-xxl-16 {
    padding-top: 8rem !important;
  }
  .pt-xxl-17 {
    padding-top: 8.5rem !important;
  }
  .pt-xxl-18 {
    padding-top: 9rem !important;
  }
  .pt-xxl-19 {
    padding-top: 9.5rem !important;
  }
  .pt-xxl-20 {
    padding-top: 10rem !important;
  }
  .pt-xxl-21 {
    padding-top: 10.5rem !important;
  }
  .pt-xxl-22 {
    padding-top: 11rem !important;
  }
  .pt-xxl-23 {
    padding-top: 11.5rem !important;
  }
  .pt-xxl-24 {
    padding-top: 12rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0rem !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 2rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xxl-6 {
    padding-bottom: 3rem !important;
  }
  .pb-xxl-7 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xxl-8 {
    padding-bottom: 4rem !important;
  }
  .pb-xxl-9 {
    padding-bottom: 4.5rem !important;
  }
  .pb-xxl-10 {
    padding-bottom: 5rem !important;
  }
  .pb-xxl-11 {
    padding-bottom: 5.5rem !important;
  }
  .pb-xxl-12 {
    padding-bottom: 6rem !important;
  }
  .pb-xxl-13 {
    padding-bottom: 6.5rem !important;
  }
  .pb-xxl-14 {
    padding-bottom: 7rem !important;
  }
  .pb-xxl-15 {
    padding-bottom: 7.5rem !important;
  }
  .pb-xxl-16 {
    padding-bottom: 8rem !important;
  }
  .pb-xxl-17 {
    padding-bottom: 8.5rem !important;
  }
  .pb-xxl-18 {
    padding-bottom: 9rem !important;
  }
  .pb-xxl-19 {
    padding-bottom: 9.5rem !important;
  }
  .pb-xxl-20 {
    padding-bottom: 10rem !important;
  }
  .pb-xxl-21 {
    padding-bottom: 10.5rem !important;
  }
  .pb-xxl-22 {
    padding-bottom: 11rem !important;
  }
  .pb-xxl-23 {
    padding-bottom: 11.5rem !important;
  }
  .pb-xxl-24 {
    padding-bottom: 12rem !important;
  }
  .px-xxl-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .px-xxl-1 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .px-xxl-2 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .px-xxl-3 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .px-xxl-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .px-xxl-5 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .px-xxl-6 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .px-xxl-7 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .px-xxl-8 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .px-xxl-9 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }
  .px-xxl-10 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .px-xxl-11 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }
  .px-xxl-12 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .px-xxl-13 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }
  .px-xxl-14 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .px-xxl-15 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }
  .px-xxl-16 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .px-xxl-17 {
    padding-left: 8.5rem !important;
    padding-right: 8.5rem !important;
  }
  .px-xxl-18 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .px-xxl-19 {
    padding-left: 9.5rem !important;
    padding-right: 9.5rem !important;
  }
  .px-xxl-20 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .px-xxl-21 {
    padding-left: 10.5rem !important;
    padding-right: 10.5rem !important;
  }
  .px-xxl-22 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }
  .px-xxl-23 {
    padding-left: 11.5rem !important;
    padding-right: 11.5rem !important;
  }
  .px-xxl-24 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }
  .py-xxl-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .py-xxl-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxl-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xxl-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxl-7 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xxl-8 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xxl-9 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-xxl-10 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xxl-11 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .py-xxl-12 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xxl-13 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }
  .py-xxl-14 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-xxl-15 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .py-xxl-16 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-xxl-17 {
    padding-top: 8.5rem !important;
    padding-bottom: 8.5rem !important;
  }
  .py-xxl-18 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-xxl-19 {
    padding-top: 9.5rem !important;
    padding-bottom: 9.5rem !important;
  }
  .py-xxl-20 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-xxl-21 {
    padding-top: 10.5rem !important;
    padding-bottom: 10.5rem !important;
  }
  .py-xxl-22 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .py-xxl-23 {
    padding-top: 11.5rem !important;
    padding-bottom: 11.5rem !important;
  }
  .py-xxl-24 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
}
.nota {
  width: 100%;
  box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
  background-color: white;
}
.nota .cont-img {
  width: 100%;
  height: 230px;
  overflow: hidden;
}
.nota .cont-img img {
  transition: all 0.3s ease-in-out;
}
.nota .btn {
  width: -moz-min-content;
  width: min-content;
}
.nota .texto {
  gap: 30px;
  padding: 20px;
}
.nota .texto p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.nota:hover {
  scale: 1.02;
}
.nota:hover .cont-img img {
  scale: 1.05;
}
.nota:hover .btn {
  background-color: #E073B7;
}

button {
  border: none;
}

a {
  text-decoration: none;
}

.btn {
  font-size: 14px;
  font-weight: 500;
  color: white;
  padding: 10px 12px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
}

.btn-rosa {
  background-color: #E073B7;
}
.btn-rosa:hover {
  background-color: #323A6F;
}

.btn-celeste {
  background-color: #29A5DE;
}
.btn-celeste:hover {
  background-color: #E073B7;
}

.btn-violeta {
  background-color: #323A6F;
}
.btn-violeta:hover {
  background-color: #E073B7;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}
.modal.active {
  display: flex;
}
.modal .modal-content {
  padding: 50px;
  position: relative;
  width: 654px;
}
@media screen and (max-width: 1024.5px) {
  .modal .modal-content {
    width: 90%;
    padding: 20px;
  }
}
.modal .close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  padding: 0;
}
@media screen and (max-width: 1024.5px) {
  .modal .close {
    width: 35px;
    height: 35px;
    padding: 0;
  }
}
.modal .cont-img {
  width: 100%;
  height: 290px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024.5px) {
  .modal .cont-img {
    height: 200px;
  }
}
.modal .cont-texto {
  gap: 20px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
.modal .btn-celeste:hover {
  background-color: #323A6F;
}
.modal#modal1 .btn-rosa:hover {
  background-color: #29A5DE;
}

@font-face {
  font-family: "ClashDisplay-Variable";
  src: url("../fonts/ClashDisplay-Variable.woff2") format("woff2"), url("../fonts/ClashDisplay-Variable.woff") format("woff"), url("../fonts/ClashDisplay-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}
.p3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 1.4px;
}

.p2 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}
@media screen and (max-width: 1024.5px) {
  .p2 {
    font-size: 16px;
  }
}

.p1 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
}
@media screen and (max-width: 1024.5px) {
  .p1 {
    font-size: 18px;
  }
}

h1 {
  font-size: 70px;
  font-weight: 600;
  line-height: 120%;
}
@media screen and (max-width: 1024.5px) {
  h1 {
    font-size: 50px;
    line-height: 110%;
  }
}

.h2 {
  font-size: 44px;
  line-height: 120%;
  font-weight: 600;
}
@media screen and (max-width: 1024.5px) {
  .h2 {
    font-size: 26px;
  }
}

.h2-medium {
  font-size: 26px;
  line-height: 120%;
  font-weight: 600;
}
@media screen and (max-width: 1024.5px) {
  .h2-medium {
    font-size: 18px;
  }
}

.h3 {
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 90%;
}
@media screen and (max-width: 1024.5px) {
  .h3 {
    font-size: 36px;
    line-height: 24px;
  }
}

.h3-small {
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 90%;
}
@media screen and (max-width: 1024.5px) {
  .h3-small {
    font-size: 26px;
    line-height: 32px;
  }
}

.white {
  color: white;
}

.celeste {
  color: #29A5DE;
}

.violeta {
  color: #323A6F;
}

.rosa {
  color: #E073B7;
}

.cont-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.cont-links a:hover {
  border-bottom: 1px solid white;
}
.cont-links a.btn:hover {
  border-bottom: none;
}

sup {
  font-size: 10px;
}

footer {
  background-color: #29A5DE;
  padding-bottom: 60px;
}
footer .logo {
  position: relative;
  top: -53px;
  margin-left: 68px;
}
footer .redes {
  gap: 15px;
  margin: -10px 0 45px;
}
footer .redes a:hover {
  scale: 1.2;
}
footer .cont-links {
  gap: 40px;
}

header {
  background-color: #323A6F;
  padding: 10px 0;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 99;
  transition: 5ms ease-in;
}
header .container {
  height: 70px;
}
header .container .logo {
  margin-top: 40px;
}
header.visible {
  position: fixed;
  top: 0;
  box-shadow: 1px 1px 14px rgba(0, 0, 0, 0.25);
  opacity: 1;
  transform: translateY(0);
  transition: 5ms ease-in;
}
header .menu {
  gap: 60px;
  display: flex;
}
@media screen and (max-width: 1024.5px) {
  header .menu {
    display: none;
  }
  header .menu-mobile {
    z-index: 999;
    cursor: pointer;
    padding: 5px;
    border-radius: 6px;
  }
  header span {
    width: 30px;
    display: block;
    height: 2px;
    margin: 6px 0;
    background-color: white;
    transition: all 0.3s ease-in-out;
  }
  header .logo {
    z-index: 999;
  }
  header .menu-mobile.active span:nth-child(2) {
    opacity: 0;
  }
  header .menu-mobile.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    background-color: white;
  }
  header .menu-mobile.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    background-color: white;
  }
  header .menu {
    display: none;
  }
  header .menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #323A6F;
    padding: 130px 10% 50px;
    width: 100vw;
    z-index: 99;
    gap: 30px;
  }
  header .menu.active li {
    margin: 0;
  }
  header .menu.active li a {
    height: 27px;
    width: 150px;
  }
}
@media screen and (max-width: 1024.5px) and (max-width: 1024.5px) {
  header .menu.active li a {
    width: auto;
    padding: 20px;
  }
}

.template-home {
  z-index: 1;
  position: relative;
}
.template-home .bg-colores {
  z-index: -1;
  position: relative;
  background: radial-gradient(circle at 15% 80%, rgba(0, 200, 255, 0.9), transparent 60%), radial-gradient(circle at 85% 85%, rgba(255, 50, 150, 0.7), transparent 60%), radial-gradient(circle at 90% 10%, rgba(0, 0, 0, 0.55), transparent 70%), linear-gradient(135deg, #4b5bdc, #283066 60%, #1e2748);
  background-blend-mode: screen;
  border-radius: 0 0 120px 0;
}
@media screen and (max-width: 1024.5px) {
  .template-home .bg-colores {
    border-radius: 0 0 40px 0;
  }
}
.template-home .section-1 {
  height: 95vh;
  border-radius: 0 0 0 120px;
  overflow: hidden;
  padding-bottom: 105px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-1 {
    padding-bottom: 30px;
    border-radius: 0 0 0 60px;
  }
}
.template-home .section-1::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.template-home .section-1 .container {
  z-index: 1;
  gap: 15px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-1 .container {
    text-align: center;
  }
  .template-home .section-1 .container .h2-medium {
    padding: 0 16px;
  }
}
.template-home .section-1 .container h3, .template-home .section-1 .container .h2-medium {
  font-weight: 500;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-2 {
    padding-bottom: 0;
  }
}
.template-home .section-2 .container .cont-texto {
  width: 70%;
  z-index: 1;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-2 .container .cont-texto {
    width: 100%;
  }
}
.template-home .section-2 .container .cont-texto h2 {
  width: 70%;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-2 .container .cont-texto h2 {
    width: 100%;
  }
}
.template-home .section-2 .container .cont-texto .grid-2 {
  margin-top: 60px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-2 .container .cont-texto .grid-2 {
    margin-top: 20px;
  }
}
.template-home .section-2 .container .cont-texto .grid-2 .card {
  background-color: #323A6F;
  border-radius: 32px 0;
  gap: 24px;
  padding: 24px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-2 .container .cont-texto .grid-2 .card {
    padding: 15px;
    gap: 15px;
    border-radius: 15px 0;
  }
}
.template-home .section-2 .container .cont-img {
  width: 490px;
  height: 630px;
  border-radius: 90px 0;
  overflow: hidden;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-2 .container .cont-img {
    width: 100vw;
    height: 305px;
    position: relative;
    border-radius: 0;
    margin-top: -45px;
  }
}
.template-home .section-texto {
  background-color: #262E63;
  border-radius: 120px 0 0 0;
  margin: 0 0 -120px 0;
  padding: 120px 0 240px 0;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-texto {
    border-radius: 0;
    margin: 0;
    padding: 40px 0;
  }
}
.template-home .section-texto .container {
  width: 930px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-texto .container {
    width: 90%;
  }
}
.template-home .section-texto .container h2 {
  font-weight: 600;
  max-width: 640px;
  letter-spacing: 1px;
  margin: 0 auto 1rem auto;
}
.template-home .section-texto .container h2 a {
  color: #E073B7;
}
.template-home .section-texto .container h2 a:hover {
  text-decoration: underline;
}
.template-home .section-texto .container p {
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: normal;
  max-width: 640px;
  margin: 0 auto;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-texto .container p {
    font-size: 16px;
  }
}
.template-home .section-3 {
  background-color: #323A6F;
  border-radius: 120px 0;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-3 {
    border-radius: 0 0 40px 0;
  }
}
.template-home .section-3 h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-3 h2 {
    margin-bottom: 30px;
  }
}
.template-home .section-3 .grid-4 {
  width: 100%;
}
.template-home .section-3 .grid-4 .card {
  border-radius: 0 60px;
  background: #262E63;
  gap: 24px;
  padding: 36px 30px;
}
.template-home .section-3 .grid-4 .card p {
  height: 50px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-3 .grid-4 .card {
    border-radius: 0 30px;
    gap: 0;
    width: 100%;
    padding: 15px;
  }
  .template-home .section-3 .grid-4 .card p {
    height: auto;
  }
}
.template-home .section-4 {
  background: url(../img/fondo.png) no-repeat;
  background-size: cover;
  background-blend-mode: screen;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-4 {
    background: url(../img/fondo-mobile.png) no-repeat;
    background-size: cover;
  }
}
.template-home .section-4 h2 {
  margin-bottom: 25px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-4 h2 {
    margin-bottom: 20px;
  }
}
.template-home .section-4 .p1 {
  margin-bottom: 60px;
  width: 790px;
  text-align: center;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-4 .p1 {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-4 .grid-4 .card {
    gap: 25px;
    padding: 15px 40px;
  }
  .template-home .section-4 .grid-4 .card .texto {
    text-align: start;
    width: 140px;
  }
}
.template-home .section-5 {
  margin-bottom: -200px;
  padding-top: 60px;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-5 {
    margin-bottom: -120px;
    padding-top: 35px;
  }
}
.template-home .section-5 .container .cont-img {
  width: 585px;
  height: 540px;
  overflow: hidden;
  border-radius: 90px 0;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-5 .container .cont-img {
    width: 100%;
    height: 205px;
    border-radius: 40px 0;
  }
}
.template-home .section-5 .container .cont-texto {
  gap: 20px;
  width: 490px;
  margin-top: -90px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-5 .container .cont-texto {
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
  }
}
.template-home .section-6 {
  border-radius: 0 0 120px 0;
  background: #29A5DE;
  padding-top: 200px;
  margin-top: -95px;
  z-index: -1;
  position: relative;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-6 {
    border-radius: 0;
    padding-top: 140px;
    padding-bottom: 0;
  }
}
.template-home .section-6 .container .cont-img {
  width: 560px;
  height: 580px;
  border-radius: 0 90px;
  overflow: hidden;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-6 .container .cont-img {
    width: 100%;
    height: 205px;
    border-radius: 0 40px;
    margin-bottom: -65px;
  }
}
.template-home .section-6 .container .cont-texto {
  width: 520px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-6 .container .cont-texto {
    width: 100%;
    margin-bottom: 20px;
  }
}
.template-home .section-6 .container .cont-texto h2 {
  margin-bottom: 20px;
}
.template-home .section-6 .container .cont-texto ul {
  gap: 10px;
  list-style-position: outside;
  margin-left: 15px;
}
.template-home .section-6 .container .cont-texto li {
  color: white;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-7 {
    padding-top: 100px;
  }
}
.template-home .section-7 .texto {
  width: 45%;
}
.template-home .section-7 .texto h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-7 .texto {
    width: 100%;
  }
  .template-home .section-7 .texto h2 {
    margin-bottom: 20px;
  }
}
.template-home .section-7 .container {
  gap: 60px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-7 .container {
    gap: 20px;
  }
}
.template-home .section-7 .container .grid-2:nth-of-type(2) {
  grid-template-columns: 590px 430px;
  -moz-column-gap: 75px;
       column-gap: 75px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-7 .container .grid-2:nth-of-type(2) {
    grid-template-columns: 100%;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.template-home .section-7 .container .grid-2:nth-of-type(3) {
  grid-template-columns: 430px 590px;
  -moz-column-gap: 75px;
       column-gap: 75px;
  justify-content: end;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-7 .container .grid-2:nth-of-type(3) {
    grid-template-columns: 100%;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.template-home .section-7 .container .grid-2 .btn {
  width: 48px;
  height: 48px;
  padding: 0;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-7 .container .grid-2 .btn {
    width: 35px;
    height: 35px;
  }
}
.template-home .section-7 .container .grid-2 .texto {
  width: auto;
  margin: 25px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-7 .container .grid-2 .texto {
    margin: 10px;
  }
}
.template-home .section-7 .container .grid-2 .card-violeta {
  cursor: pointer;
  background-color: #323A6F;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-7 .container .grid-2 .card-violeta {
    height: 120px;
  }
}
.template-home .section-7 .container .grid-2 .card-violeta:hover {
  scale: 1.02;
}
.template-home .section-7 .container .grid-2 .card-violeta:hover .btn {
  background-color: #29A5DE;
}
.template-home .section-7 .container .grid-2 .card-violeta:hover .cont-img img {
  scale: 1.05;
}
.template-home .section-7 .container .grid-2 .card-violeta .cont-img {
  height: 100%;
  width: 260px;
  overflow: hidden;
}
.template-home .section-7 .container .grid-2 .card-violeta .cont-img img {
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-7 .container .grid-2 .card-violeta .cont-img {
    width: 120px;
  }
}
.template-home .section-7 .container .grid-2 .card-violeta .btn {
  right: 25px;
  bottom: 25px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-7 .container .grid-2 .card-violeta .btn {
    right: 10px;
    bottom: 10px;
  }
}
.template-home .section-7 .container .grid-2 .card-violeta .btn:hover {
  background-color: #29A5DE;
}
.template-home .section-7 .container .grid-2 .card-rosa {
  background-color: #E073B7;
  box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.25);
  top: -155px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-7 .container .grid-2 .card-rosa {
    top: 0;
    height: 120px;
  }
}
.template-home .section-7 .container .grid-2 .card-rosa:hover {
  scale: 1.02;
}
.template-home .section-7 .container .grid-2 .card-rosa:hover .btn {
  background-color: #323A6F;
}
.template-home .section-7 .container .grid-2 .card-rosa:hover .cont-img img {
  scale: 1.05;
}
.template-home .section-7 .container .grid-2 .card-rosa .cont-img {
  width: 100%;
  height: 205px;
  overflow: hidden;
}
.template-home .section-7 .container .grid-2 .card-rosa .cont-img img {
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-7 .container .grid-2 .card-rosa .cont-img {
    width: 120px;
    height: 100%;
  }
}
.template-home .section-7 .container .grid-2 .card-rosa .btn {
  right: 25px;
  top: 60px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-7 .container .grid-2 .card-rosa .btn {
    right: 10px;
    bottom: 10px;
    top: auto;
  }
}
.template-home .section-7 .container .grid-2 .card-rosa:nth-of-type(1) {
  top: auto;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-7 .container .grid-2 .card-rosa:nth-of-type(1) {
    grid-row: 2;
  }
}
.template-home .section-7 .container .grid-2 .card-rosa:nth-of-type(1) .btn {
  right: 25px;
  bottom: 25px;
  top: auto;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-7 .container .grid-2 .card-rosa:nth-of-type(1) .btn {
    right: 10px;
    bottom: 10px;
  }
}
.template-home .section-7 .container .grid-2 .card-celeste {
  background-color: #29A5DE;
  box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.25);
  top: -155px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.template-home .section-7 .container .grid-2 .card-celeste:hover {
  scale: 1.02;
}
.template-home .section-7 .container .grid-2 .card-celeste:hover .btn {
  background-color: #E073B7;
}
.template-home .section-7 .container .grid-2 .card-celeste:hover .cont-img img {
  scale: 1.05;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-7 .container .grid-2 .card-celeste {
    top: 0;
    height: 120px;
    grid-row: 1;
  }
}
.template-home .section-7 .container .grid-2 .card-celeste .cont-img {
  overflow: hidden;
  height: 100%;
  width: 260px;
}
.template-home .section-7 .container .grid-2 .card-celeste .cont-img img {
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-7 .container .grid-2 .card-celeste .cont-img {
    width: 120px;
    min-width: 120px;
  }
}
.template-home .section-7 .container .grid-2 .card-celeste .btn {
  bottom: 25px;
  right: 25px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-7 .container .grid-2 .card-celeste .btn {
    right: 10px;
    bottom: 10px;
  }
}
.template-home .section-8 .container {
  gap: 15px;
}
.template-home .section-8 .container .card {
  padding: 45px 65px;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-8 .container .card {
    padding: 15px 20px;
  }
}
.template-home .section-8 .container .card::after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: #E073B7;
  mix-blend-mode: multiply;
  z-index: 0;
}
.template-home .section-8 .container .card h2, .template-home .section-8 .container .card div {
  z-index: 1;
}
.template-home .section-8 .container .card:nth-child(1) {
  border-radius: 90px 0 0 0;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-8 .container .card:nth-child(1) {
    border-radius: 28px 0 0 0;
  }
}
.template-home .section-8 .container .card:nth-child(2) {
  border-radius: 0 0 90px 0;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-8 .container .card:nth-child(2) {
    border-radius: 0 0 28px 0;
  }
}
.template-home .section-8 .container .card h2 {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-8 .container .card h2 {
    margin-bottom: 10px;
  }
}
.template-home .section-8 .container .card .cont-img {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  mix-blend-mode: multiply;
  background: rgba(224, 115, 183, 0.6);
  margin-right: 10px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-8 .container .card .cont-img {
    width: 25px;
    height: 25px;
  }
}
.template-home .section-9 {
  border-radius: 120px 0;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-9 {
    border-radius: 60px 0;
    padding: 60px 0;
  }
}
.template-home .section-9 .texto {
  width: 45%;
  gap: 25px;
  margin-top: 55px;
}
.template-home .section-9 .texto .h2-medium {
  font-weight: 500;
}
.template-home .section-9 .texto a {
  text-decoration: underline;
}
.template-home .section-9 .texto a:hover {
  color: #29A5DE;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-9 .texto {
    width: 100%;
    gap: 20px;
    margin-top: 0;
    margin-bottom: 20px;
  }
  .template-home .section-9 .texto .h2-medium {
    font-size: 16px;
  }
}
.template-home .section-9 form {
  padding: 50px;
  width: 50%;
  border-radius: 0 90px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-9 form {
    width: 100%;
    padding: 45px 25px;
    border-radius: 0 40px;
  }
}
.template-home .section-9 form input, .template-home .section-9 form textarea {
  background: white;
  height: 40px;
  padding: 10px;
  margin: 10px 0 25px;
  border: none;
  border-radius: 8px;
  width: 100%;
  color: #323A6F;
}
.template-home .section-9 form textarea {
  height: 90px;
}
.template-home .section-novedades h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-novedades h2 {
    margin-bottom: 20px;
  }
}
.template-home .section-novedades .grid-3 .fake {
  opacity: 0;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-novedades .grid-3 .fake {
    display: none;
  }
}
.template-home .section-novedades .back {
  display: flex;
  margin: 3rem 0 0 0;
}
.template-home .section-novedades .back a {
  color: #29A5DE;
  background-color: white;
  border: 1px solid #29A5DE;
  padding: 15px 25px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.4px;
  border-radius: 8px;
}
.template-home .section-novedades .back a:hover {
  color: white;
  background-color: #29A5DE;
}
.template-home .section-10 {
  background-color: #323A6F;
  padding-bottom: 200px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-10 {
    padding-bottom: 80px;
  }
}
.template-home .section-10 .cont-texto {
  height: 460px;
  width: 540px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-10 .cont-texto {
    height: auto;
    gap: 30px;
    margin-bottom: 20px;
    width: 100%;
  }
}
.template-home .section-10 .cont-texto h2 {
  margin-bottom: 30px;
}
.template-home .section-10 .cont-texto .p3.km {
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.template-home .section-10 .cont-texto .cont-svg {
  background-color: #E073B7;
  border-radius: 100px;
  width: 45px;
  height: 45px;
  margin-right: 15px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-10 .cont-texto .cont-svg {
    width: 35px;
    height: 35px;
    margin-right: 10px;
  }
  .template-home .section-10 .cont-texto .cont-svg svg {
    width: inherit;
  }
}
.template-home .section-10 .cont-mapa {
  width: 590px;
  height: 460px;
  border-radius: 120px 0;
  overflow: hidden;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-10 .cont-mapa {
    width: 100vw;
    height: 300px;
    border-radius: 0;
  }
}
.template-home .section-10 .cont-mapa iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.template-home .section-11 {
  border-radius: 0 90px;
  overflow: hidden;
  padding: 70px 90px;
  margin-top: -115px;
  z-index: 1;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-11 {
    width: 100vw;
    border-radius: 0;
    padding: 23px 27px;
    margin-top: -20px;
  }
}
.template-home .section-11 h2 {
  width: 435px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-11 h2 {
    width: 100%;
    font-size: 20px;
    text-align: center;
  }
}
.template-home .section-12 {
  padding-top: 80px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-12 {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}
.template-home .section-12 .grid-4 {
  gap: 174px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-12 .grid-4 {
    grid-template-columns: auto auto;
    gap: 20px;
  }
}
.template-home .section-12 .cont-img {
  width: 100%;
  height: 70px;
  justify-content: center;
}
.template-home .section-12 .cont-img:nth-child(1) img {
  width: -moz-max-content;
  width: max-content;
  max-width: 180px;
}
.template-home .section-12 .cont-img:nth-child(3) img {
  width: -moz-max-content;
  width: max-content;
  max-width: 100px;
}
.template-home .section-12 .cont-img:nth-child(4) img {
  width: -moz-max-content;
  width: max-content;
  max-width: 200px;
}
@media screen and (max-width: 1024.5px) {
  .template-home .section-12 .cont-img {
    justify-content: center;
    height: 50px;
  }
  .template-home .section-12 .cont-img:nth-child(3) img {
    max-width: 80px;
  }
  .template-home .section-12 .cont-img:nth-child(1) img {
    width: -moz-max-content;
    width: max-content;
    max-width: 160px;
  }
  .template-home .section-12 .cont-img:nth-child(4) img {
    width: -moz-max-content;
    width: max-content;
    max-width: 160px;
  }
}

.template-nota section {
  padding-top: 180px;
}
@media screen and (max-width: 1024.5px) {
  .template-nota section {
    padding-top: 130px;
  }
}
.template-nota section {
  padding-bottom: 6rem;
}
.template-nota .container {
  width: 800px;
}
@media screen and (max-width: 1024.5px) {
  .template-nota .container {
    width: 90%;
  }
}
.template-nota h1 {
  color: #262E63;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 120%;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024.5px) {
  .template-nota h1 {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 1.3;
  }
}
.template-nota .fecha {
  color: rgba(38, 46, 99, 0.6);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024.5px) {
  .template-nota .fecha {
    margin-bottom: 30px;
  }
}
.template-nota p {
  color: #262E63;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.7;
}
.template-nota h2, .template-nota h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 24px;
  margin-bottom: 15px;
  color: #262E63;
}
.template-nota h2 strong, .template-nota h3 strong {
  font-weight: 600;
}
.template-nota h3 {
  font-weight: 500;
}
.template-nota .contenido img {
  margin-bottom: 40px;
  width: 100%;
  object-fit: contain;
  -o-object-fit: contain;
  height: auto;
}
@media screen and (max-width: 1024.5px) {
  .template-nota .contenido img {
    margin-bottom: 30px;
  }
}
.template-nota .contenido p {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024.5px) {
  .template-nota .contenido p {
    margin-bottom: 30px;
  }
}
.template-nota .contenido .back,
.template-nota .contenido .wp-block-button {
  margin: 0 0 3rem 0;
}
.template-nota .contenido .back a,
.template-nota .contenido .wp-block-button a {
  color: white;
  background-color: #29A5DE;
  border: 1px solid #29A5DE;
  padding: 15px 25px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.4px;
  border-radius: 8px;
}
.template-nota .contenido .back a:hover,
.template-nota .contenido .wp-block-button a:hover {
  color: #29A5DE;
  background-color: white;
}
.template-nota .contenido .back {
  display: flex;
  margin: 3rem 0 0 0;
}
.template-nota .contenido .back a {
  color: #29A5DE;
  background-color: white;
}
.template-nota .contenido .back a:hover {
  color: white;
  background-color: #29A5DE;
}

.template-blog section {
  background: radial-gradient(circle at 80% 85%, rgba(255, 0, 140, 0.6), transparent 40%), radial-gradient(circle at 10% 80%, rgba(0, 200, 255, 0.7), transparent 40%), radial-gradient(circle at 50% 10%, rgba(0, 0, 60, 0.7), transparent 50%), linear-gradient(135deg, #4a5fd1 0%, #1e2a50 100%);
  padding-top: 180px;
  background-blend-mode: screen;
  padding-bottom: 6rem;
}
@media screen and (max-width: 1024.5px) {
  .template-blog section {
    padding-top: 130px;
  }
}
.template-blog section h1 {
  margin: 0 auto 2rem auto;
}
.template-blog section h2, .template-blog section p.h2-medium {
  width: 690px;
}
@media screen and (max-width: 1024.5px) {
  .template-blog section h2, .template-blog section p.h2-medium {
    width: 100%;
  }
}
.template-blog section h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024.5px) {
  .template-blog section h2 {
    margin-bottom: 15px;
  }
}
.template-blog section .h2-medium {
  font-weight: 500;
}
@media screen and (max-width: 1024.5px) {
  .template-blog section .h2-medium {
    margin-bottom: 20px;
  }
}
.template-blog section .grid-3 {
  margin: 5rem auto 0 auto;
}
@media screen and (max-width: 1024.5px) {
  .template-blog section .grid-3 {
    margin: 2rem auto 0 auto;
  }
}
/*# sourceMappingURL=../sourcemaps/style.min.css.map */
