.box-container {
  box-sizing: border-box;
  padding-right: 1rem;
  padding-left: 1rem;
}

.flex-container,
.flex-container-fluid {
  margin-right: auto;
  margin-left: auto;
}

.flex-container {
  overflow: hidden;
}

.flex-container-fluid {
  padding-right: 2rem;
  padding-left: 2rem;
}

.row {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -2rem;
  gap: 2rem 0;
}

.row.nosep {
  margin-right: 0;
  margin-left: 0;
  gap: 0;
}

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

.centered-col {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

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

.col-box {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.col {
  padding-left: 2rem;
}

[class^="col-xs"],
[class*=" col-xs"] {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-left: 2rem;
}

.row.nosep>[class^="col-xs"],
.row.nosep>[class*=" col-xs"] {
  padding-left: 0;
}

.col-xs-fit {
  -ms-flex-preferred-size: fit-content;
  flex-basis:fit-content;
  max-width: fit-content;
}
.col-xs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}


/* For 5 Column Setup */

.col-xs-1-5 {
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  max-width: 20%;
}

.col-xs-2-5 {
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
  max-width: 40%;
}

.col-xs-4-5 {
  -ms-flex-preferred-size: 80%;
  flex-basis: 80%;
  max-width: 80%;
}

.col-xs-5-5 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
}

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: right;
}

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.baseline-xs {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

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

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

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

.first-xs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.ord-xs-1 {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: 1;
  order: 1;
}

.ord-xs-2 {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: 2;
  order: 2;
}

.ord-xs-3 {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: 3;
  order: 3;
}

.ord-xs-4 {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: 4;
  order: 4;
}

.ord-xs-5 {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: 5;
  order: 5;
}

.ord-xs-6 {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: 6;
  order: 6;
}

.ord-xs-7 {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: 7;
  order: 7;
}

.ord-xs-8 {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: 8;
  order: 8;
}

.ord-xs-9 {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: 9;
  order: 9;
}

.ord-xs-10 {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: 10;
  order: 10;
}

.ord-xs-11 {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: 11;
  order: 11;
}

.ord-xs-12 {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: 12;
  order: 12;
}

.mt-xs {
  margin-top: 1em;
}

.mb-xs {
  margin-bottom: 1em;
}

.nmt-xs {
  margin-top: 0;
}

.nmb-xs {
  margin-bottom: 0;
}

.pt-xs {
  padding-top: 1em;
}

.pb-xs {
  padding-bottom: 1em;
}

.npt-xs {
  padding-top: 0;
}

.npb-xs {
  padding-bottom: 0;
}

.col-bottom-xs {
  align-self: flex-end;
}

.col-middle-xs {
  align-self: center;
}

.col-top-xs {
  align-self: flex-start;
}

@media only screen and (max-width: 37.49em) {
  .hide-l-sm {
    display: none !important;
  }
}


/* sm: 600px */

@media only screen and (min-width: 37.5em) {
  .hide-m-sm {
    display: none !important;
  }
  [class^="col-sm"],
  [class*=" col-sm"] {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-left: 2rem;
  }
  .row.nosep>[class^="col-sm"],
  .row.nosep>[class*=" col-sm"] {
    padding-right: 0;
    padding-left: 0;
  }
  .col-sm-fit {
    -ms-flex-preferred-size: fit-content;
    flex-basis:fit-content;
    max-width: fit-content;
  }
  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  /* For 5 Column Setup */
  .col-sm-1-5 {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
  }
  .col-sm-2-5 {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    max-width: 40%;
  }
  .col-sm-4-5 {
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    max-width: 80%;
  }
  .col-sm-5-5 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
  }
  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: right;
  }
  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-sm {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-sm {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .ord-sm-1 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 1;
    order: 1;
  }
  .ord-sm-2 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 2;
    order: 2;
  }
  .ord-sm-3 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 3;
    order: 3;
  }
  .ord-sm-4 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 4;
    order: 4;
  }
  .ord-sm-5 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 5;
    order: 5;
  }
  .ord-sm-6 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 6;
    order: 6;
  }
  .ord-sm-7 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 7;
    order: 7;
  }
  .ord-sm-8 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 8;
    order: 8;
  }
  .ord-sm-9 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 9;
    order: 9;
  }
  .ord-sm-10 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 10;
    order: 10;
  }
  .ord-sm-11 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 11;
    order: 11;
  }
  .ord-sm-12 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 12;
    order: 12;
  }
  .mt-sm {
    margin-top: 1em;
  }
  .mb-sm {
    margin-bottom: 1em;
  }
  .nmt-sm {
    margin-top: 0;
  }
  .nmb-sm {
    margin-bottom: 0;
  }
  .pt-sm {
    padding-top: 1em;
  }
  .pb-sm {
    padding-bottom: 1em;
  }
  .npt-sm {
    padding-top: 0;
  }
  .npb-sm {
    padding-bottom: 0;
  }
  .col-bottom-sm {
    align-self: flex-end;
  }
  .col-middle-sm {
    align-self: center;
  }
  .col-top-sm {
    align-self: flex-start;
  }
}

@media only screen and (max-width: 47.99em) {
  .hide-l-md {
    display: none !important;
  }
}


/* md: 768px */

@media only screen and (min-width: 48em) {
  .hide-m-md {
    display: none !important;
  }
  [class^="col-md"],
  [class*=" col-md"] {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-left: 2rem;
  }
  .row.nosep>[class^="col-md"],
  .row.nosep>[class*=" col-md"] {
    padding-right: 0;
    padding-left: 0;
  }
  .col-md-fit {
    -ms-flex-preferred-size: fit-content;
    flex-basis:fit-content;
    max-width: fit-content;
  }
  .col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  /* For 5 Column Setup */
  .col-md-1-5 {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
  }
  .col-md-2-5 {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    max-width: 40%;
  }
  .col-md-4-5 {
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    max-width: 80%;
  }
  .col-md-5-5 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
  }
  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: right;
  }
  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-md {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-md {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .ord-md-1 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 1;
    order: 1;
  }
  .ord-md-2 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 2;
    order: 2;
  }
  .ord-md-3 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 3;
    order: 3;
  }
  .ord-md-4 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 4;
    order: 4;
  }
  .ord-md-5 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 5;
    order: 5;
  }
  .ord-md-6 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 6;
    order: 6;
  }
  .ord-md-7 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 7;
    order: 7;
  }
  .ord-md-8 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 8;
    order: 8;
  }
  .ord-md-9 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 9;
    order: 9;
  }
  .ord-md-10 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 10;
    order: 10;
  }
  .ord-md-11 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 11;
    order: 11;
  }
  .ord-md-12 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 12;
    order: 12;
  }
  .mt-md {
    margin-top: 1em;
  }
  .mb-md {
    margin-bottom: 1em;
  }
  .nmt-md {
    margin-top: 0;
  }
  .nmb-md {
    margin-bottom: 0;
  }
  .pt-md {
    padding-top: 1em;
  }
  .pb-md {
    padding-bottom: 1em;
  }
  .npt-md {
    padding-top: 0;
  }
  .npb-md {
    padding-bottom: 0;
  }
  .col-bottom-md {
    align-self: flex-end;
  }
  .col-middle-md {
    align-self: center;
  }
  .col-top-md {
    align-self: flex-start;
  }
}

@media only screen and (max-width: 62.49em) {
  .hide-l-lg {
    display: none !important;
  }
}


/* lg: 1000px */

@media only screen and (min-width: 62.5em) {
  .hide-m-lg {
    display: none !important;
  }
  [class^="col-lg"],
  [class*=" col-lg"] {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-left: 2rem;
  }
  .row.nosep>[class^="col-lg"],
  .row.nosep>[class*=" col-lg"] {
    padding-right: 0;
    padding-left: 0;
  }
  .col-lg-fit {
    -ms-flex-preferred-size: fit-content;
    flex-basis:fit-content;
    max-width: fit-content;
  }
  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  /* For 5 Column Setup */
  .col-lg-1-5 {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
  }
  .col-lg-2-5 {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    max-width: 40%;
  }
  .col-lg-4-5 {
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    max-width: 80%;
  }
  .col-lg-5-5 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
  }
  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: right;
  }
  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-lg {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-lg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .ord-lg-1 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 1;
    order: 1;
  }
  .ord-lg-2 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 2;
    order: 2;
  }
  .ord-lg-3 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 3;
    order: 3;
  }
  .ord-lg-4 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 4;
    order: 4;
  }
  .ord-lg-5 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 5;
    order: 5;
  }
  .ord-lg-6 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 6;
    order: 6;
  }
  .ord-lg-7 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 7;
    order: 7;
  }
  .ord-lg-8 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 8;
    order: 8;
  }
  .ord-lg-9 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 9;
    order: 9;
  }
  .ord-lg-10 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 10;
    order: 10;
  }
  .ord-lg-11 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 11;
    order: 11;
  }
  .ord-lg-12 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 12;
    order: 12;
  }
  .mt-lg {
    margin-top: 1em;
  }
  .mb-lg {
    margin-bottom: 1em;
  }
  .nmt-lg {
    margin-top: 0;
  }
  .nmb-lg {
    margin-bottom: 0;
  }
  .pt-lg {
    padding-top: 1em;
  }
  .pb-lg {
    padding-bottom: 1em;
  }
  .npt-lg {
    padding-top: 0;
  }
  .npb-lg {
    padding-bottom: 0;
  }
  .col-bottom-lg {
    align-self: flex-end;
  }
  .col-middle-lg {
    align-self: center;
  }
  .col-top-lg {
    align-self: flex-start;
  }
}

@media only screen and (max-width: 74.99em) {
  .hide-l-xl {
    display: none !important;
  }
}


/* xl: 1200px */

@media only screen and (min-width: 75em) {
  .hide-m-xl {
    display: none !important;
  }
  [class^="col-xl"],
  [class*=" col-xl"] {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-left: 2rem;
  }
  .row.nosep>[class^="col-xl"],
  .row.nosep>[class*=" col-xl"] {
    padding-right: 0;
    padding-left: 0;
  }
  .col-xl-fit {
    -ms-flex-preferred-size: fit-content;
    flex-basis:fit-content;
    max-width: fit-content;
  }
  .col-xl {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-xl-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-xl-offset-0 {
    margin-left: 0
  }
  .col-xl-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-xl-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-xl-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-xl-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-xl-offset-11 {
    margin-left: 91.66666667%;
  }
  /* For 5 Column Setup */
  .col-xl-1-5 {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
  }
  .col-xl-2-5 {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    max-width: 40%;
  }
  .col-xl-4-5 {
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    max-width: 80%;
  }
  .col-xl-5-5 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .start-xl {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
  }
  .center-xl {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-xl {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: right;
  }
  .top-xl {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-xl {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-xl {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-xl {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-xl {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-xl {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-xl {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .ord-xl-1 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 1;
    order: 1;
  }
  .ord-xl-2 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 2;
    order: 2;
  }
  .ord-xl-3 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 3;
    order: 3;
  }
  .ord-xl-4 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 4;
    order: 4;
  }
  .ord-xl-5 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 5;
    order: 5;
  }
  .ord-xl-6 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 6;
    order: 6;
  }
  .ord-xl-7 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 7;
    order: 7;
  }
  .ord-xl-8 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 8;
    order: 8;
  }
  .ord-xl-9 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 9;
    order: 9;
  }
  .ord-xl-10 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 10;
    order: 10;
  }
  .ord-xl-11 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 11;
    order: 11;
  }
  .ord-xl-12 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 12;
    order: 12;
  }
  .mt-xl {
    margin-top: 1em;
  }
  .mb-xl {
    margin-bottom: 1em;
  }
  .nmt-xl {
    margin-top: 0;
  }
  .nmb-xl {
    margin-bottom: 0;
  }
  .pt-xl {
    padding-top: 1em;
  }
  .pb-xl {
    padding-bottom: 1em;
  }
  .npt-xl {
    padding-top: 0;
  }
  .npb-xl {
    padding-bottom: 0;
  }
  .col-bottom-xl {
    align-self: flex-end;
  }
  .col-middle-xl {
    align-self: center;
  }
  .col-top-xl {
    align-self: flex-start;
  }
}
