body {
    font-family: sans-serif;
    font-size: 1em;
  }
  h1 {
    font-size: 2.5em;
  }
  h2 {
    font-size: 2em;
  }
  h3 {
    font-size: 1.75em;
  }
  h4 {
    font-size: 1.5em;
  }
  h5 {
    font-size: 1.25em;
  }
  h6 {
    font-size: 1.1em;
  }
  .-main {
    font-family: sans-serif;
  }
  .-sans {
    font-family: sans-serif;
  }
  .-serif {
    font-family: sans-serif;
  }
  @media (max-width: 1024px) {
    .-dynamic {
      position: var(--position);
      display: var(--background);
      height: var(--height);
      width: var(--width);
      text-align: var(--text-align);
      font-size: var(--font-size);
      line-height: var(--line-height);
      background: var(--background);
      color: var(--color);
      border: var(--border);
      padding: var(--padding);
      order: var(--order);
      flex-direction: var(--flex-direction);
      justify-content: var(--justify-content);
      align-items: var(--align-items);
    }
  }
  /* Twleve Column Grid */
  .row,
  .row\:grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    width: 100%;
    max-width: 1200px;
    margin: auto;
  }
  /* Column Widths */
  .one {
    grid-column: span 1;
  }
  .two {
    grid-column: span 2;
  }
  .three {
    grid-column: span 3;
  }
  .four {
    grid-column: span 4;
  }
  .five {
    grid-column: span 5;
  }
  .six {
    grid-column: span 6;
  }
  .seven {
    grid-column: span 7;
  }
  .eight {
    grid-column: span 8;
  }
  .nine {
    grid-column: span 9;
  }
  .ten {
    grid-column: span 10;
  }
  .eleven {
    grid-column: span 11;
  }
  .twelve {
    grid-column: span 12;
  }
  .push_one {
    padding-left: calc(100% / 12 * 1);
  }
  .push_two {
    padding-left: calc(100% / 12 * 2);
  }
  .push_three {
    padding-left: calc(100% / 12 * 3);
  }
  .push_four {
    padding-left: calc(100% / 12 * 4);
  }
  .push_five {
    padding-left: calc(100% / 12 * 5);
  }
  .push_six {
    padding-left: calc(100% / 12 * 6);
  }
  .push_seven {
    padding-left: calc(100% / 12 * 7);
  }
  .push_eight {
    padding-left: calc(100% / 12 * 8);
  }
  .push_nine {
    padding-left: calc(100% / 12 * 9);
  }
  .push_ten {
    padding-left: calc(100% / 12 * 10);
  }
  .push_eleven {
    padding-left: calc(100% / 12 * 11);
  }
  /* Set Column Width with Start and End Values */
  .start_one {
    grid-column-start: 1;
  }
  .start_two {
    grid-column-start: 2;
  }
  .start_three {
    grid-column-start: 3;
  }
  .start_four {
    grid-column-start: 4;
  }
  .start_five {
    grid-column-start: 5;
  }
  .start_six {
    grid-column-start: 6;
  }
  .start_seven {
    grid-column-start: 7;
  }
  .start_eight {
    grid-column-start: 8;
  }
  .start_nine {
    grid-column-start: 9;
  }
  .start_ten {
    grid-column-start: 10;
  }
  .start_eleven {
    grid-column-start: 11;
  }
  .start_twelve {
    grid-column-start: 12;
  }
  .end_one {
    grid-column-end: 1;
  }
  .end_two {
    grid-column-end: 2;
  }
  .end_three {
    grid-column-end: 3;
  }
  .end_four {
    grid-column-end: 4;
  }
  .end_five {
    grid-column-end: 5;
  }
  .end_six {
    grid-column-end: 6;
  }
  .end_seven {
    grid-column-end: 7;
  }
  .end_eight {
    grid-column-end: 8;
  }
  .end_nine {
    grid-column-end: 9;
  }
  .end_ten {
    grid-column-end: 10;
  }
  .end_eleven {
    grid-column-end: 11;
  }
  .end_twelve {
    grid-column-end: 12;
  }
  /* Set Positions Within Cell for All Items in Grid */
  .-children-horizontal-start {
    justify-items: start;
  }
  .-children-horizontal-end {
    justify-items: end;
  }
  .-children-horizontal-center {
    justify-items: center;
  }
  .-children-horizontal-stretch {
    justify-items: stretch;
  }
  .-children-vertical-start {
    align-items: start;
  }
  .-children-vertical-end {
    align-items: end;
  }
  .-children-vertical-center {
    align-items: center;
  }
  .-children-vertical-stretch {
    align-items: stretch;
  }
  /* Set Position Within Cell for Specific Item in Grid */
  .horizontal-start {
    justify-self: start;
  }
  .horizontal-end {
    justify-self: end;
  }
  .horizontal-center {
    justify-self: center;
  }
  .horizontal-stretch {
    justify-self: stretch;
  }
  .vertical-start {
    align-self: start;
  }
  .vertical-end {
    align-self: end;
  }
  .vertical-center {
    align-self: center;
  }
  .vertical-stretch {
    align-self: stretch;
  }
  .centered {
    align-items: center;
    justify-content: center;
    place-items: center center;
  }
  .grid,
  .flex-row {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .-full {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    width: 100%;
  }
  .-nowrap {
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .-justify-start {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .-justify-end {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .-justify-center {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .-justify-space,
  .-space-between {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .-justify-around,
  .-space-around {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .-reverse {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .-vertical {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .-vertical.-reverse {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .-flex-align-top {
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-align-self: flex-start;
    align-self: flex-start;
  }
  .-flex-align-bottom {
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-align-self: flex-end;
    align-self: flex-end;
  }
  .-flex-align-center {
    -webkit-align-items: center;
    align-items: center;
    -webkit-align-self: center;
    align-self: center;
  }
  .-flex-align-baseline {
    -webkit-align-items: baseline;
    align-items: baseline;
  }
  .-flex-align-stretch {
    -webkit-align-items: stretch;
    align-items: stretch;
  }
  .cell {
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 0px;
    min-width: 0px;
    max-width: 100%;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .cell.-fit {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .cell.-fill {
    -webkit-flex: 1 1;
    flex: 1 1;
    width: auto;
  }
  .cell.-collapse {
    margin-left: 0;
    margin-right: 0;
  }
  .cell.-collapse-padding {
    padding-left: 0;
    padding-right: 0;
  }
  .-hide {
    display: none !important;
  }
  .-show {
    display: inherit !important;
  }
  ._twelve {
    max-width: calc(100%/12 * 12 - 1rem);
    flex: 0 0 calc(100%/12 * 12 - 1rem);
  }
  ._twelve.-collapse {
    max-width: calc(100%/12 * 12);
    flex: 0 0 calc(100%/12 * 12);
  }
  .-order-12 {
    -webkit-order: 12;
    order: 12;
  }
  ._eleven {
    max-width: calc(100%/12 * 11 - 1rem);
    flex: 0 0 calc(100%/12 * 11 - 1rem);
  }
  ._eleven.-collapse {
    max-width: calc(100%/12 * 11);
    flex: 0 0 calc(100%/12 * 11);
  }
  .-order-11 {
    -webkit-order: 11;
    order: 11;
  }
  ._ten {
    max-width: calc(100%/12 * 10 - 1rem);
    flex: 0 0 calc(100%/12 * 10 - 1rem);
  }
  ._ten.-collapse {
    max-width: calc(100%/12 * 10);
    flex: 0 0 calc(100%/12 * 10);
  }
  .-order-10 {
    -webkit-order: 10;
    order: 10;
  }
  ._nine {
    max-width: calc(100%/12 * 9 - 1rem);
    flex: 0 0 calc(100%/12 * 9 - 1rem);
  }
  ._nine.-collapse {
    max-width: calc(100%/12 * 9);
    flex: 0 0 calc(100%/12 * 9);
  }
  .-order-9 {
    -webkit-order: 9;
    order: 9;
  }
  ._eight {
    max-width: calc(100%/12 * 8 - 1rem);
    flex: 0 0 calc(100%/12 * 8 - 1rem);
  }
  ._eight.-collapse {
    max-width: calc(100%/12 * 8);
    flex: 0 0 calc(100%/12 * 8);
  }
  .-order-8 {
    -webkit-order: 8;
    order: 8;
  }
  ._seven {
    max-width: calc(100%/12 * 7 - 1rem);
    flex: 0 0 calc(100%/12 * 7 - 1rem);
  }
  ._seven.-collapse {
    max-width: calc(100%/12 * 7);
    flex: 0 0 calc(100%/12 * 7);
  }
  .-order-7 {
    -webkit-order: 7;
    order: 7;
  }
  ._six {
    max-width: calc(100%/12 * 6 - 1rem);
    flex: 0 0 calc(100%/12 * 6 - 1rem);
  }
  ._six.-collapse {
    max-width: calc(100%/12 * 6);
    flex: 0 0 calc(100%/12 * 6);
  }
  .-order-6 {
    -webkit-order: 6;
    order: 6;
  }
  ._five {
    max-width: calc(100%/12 * 5 - 1rem);
    flex: 0 0 calc(100%/12 * 5 - 1rem);
  }
  ._five.-collapse {
    max-width: calc(100%/12 * 5);
    flex: 0 0 calc(100%/12 * 5);
  }
  .-order-5 {
    -webkit-order: 5;
    order: 5;
  }
  ._four {
    max-width: calc(100%/12 * 4 - 1rem);
    flex: 0 0 calc(100%/12 * 4 - 1rem);
  }
  ._four.-collapse {
    max-width: calc(100%/12 * 4);
    flex: 0 0 calc(100%/12 * 4);
  }
  .-order-4 {
    -webkit-order: 4;
    order: 4;
  }
  ._three {
    max-width: calc(100%/12 * 3 - 1rem);
    flex: 0 0 calc(100%/12 * 3 - 1rem);
  }
  ._three.-collapse {
    max-width: calc(100%/12 * 3);
    flex: 0 0 calc(100%/12 * 3);
  }
  .-order-3 {
    -webkit-order: 3;
    order: 3;
  }
  ._two {
    max-width: calc(100%/12 * 2 - 1rem);
    flex: 0 0 calc(100%/12 * 2 - 1rem);
  }
  ._two.-collapse {
    max-width: calc(100%/12 * 2);
    flex: 0 0 calc(100%/12 * 2);
  }
  .-order-2 {
    -webkit-order: 2;
    order: 2;
  }
  ._one {
    max-width: calc(100%/12 * 1 - 1rem);
    flex: 0 0 calc(100%/12 * 1 - 1rem);
  }
  ._one.-collapse {
    max-width: calc(100%/12 * 1);
    flex: 0 0 calc(100%/12 * 1);
  }
  .-order-1 {
    -webkit-order: 1;
    order: 1;
  }
  ._fifth {
    max-width: calc(20% - 1rem);
    flex: 0 0 calc(20% - 1rem);
  }
  ._fifth.-collapse {
    max-width: 20%;
    flex: 0 0 20%;
  }
  @media only screen and (min-width: 480px) {
    .-small-hide {
      display: none !important;
    }
    .-small-show {
      display: inherit !important;
    }
    .-small-text-left {
      text-align: left;
    }
    .-small-text-right {
      text-align: right;
    }
    .-small-text-center {
      text-align: center;
    }
    .-small-text-justify {
      text-align: justify;
    }
    .-small-twelve {
      max-width: calc(100%/12 * 12 - 1rem);
      flex: 0 0 calc(100%/12 * 12 - 1rem);
    }
    .-small-twelve.collapse {
      max-width: calc(100%/12 * 12);
      flex: 0 0 calc(100%/12 * 12);
    }
    .-small-order-12 {
      -webkit-order: 12;
      order: 12;
    }
    .-small-eleven {
      max-width: calc(100%/12 * 11 - 1rem);
      flex: 0 0 calc(100%/12 * 11 - 1rem);
    }
    .-small-eleven.-collapse {
      max-width: calc(100%/12 * 11);
      flex: 0 0 calc(100%/12 * 11);
    }
    .-small-order-11 {
      -webkit-order: 11;
      order: 11;
    }
    .-small-ten {
      max-width: calc(100%/12 * 10 - 1rem);
      flex: 0 0 calc(100%/12 * 10 - 1rem);
    }
    .-small-ten.-collapse {
      max-width: calc(100%/12 * 10);
      flex: 0 0 calc(100%/12 * 10);
    }
    .-small-order-10 {
      -webkit-order: 10;
      order: 10;
    }
    .-small-nine {
      max-width: calc(100%/12 * 9 - 1rem);
      flex: 0 0 calc(100%/12 * 9 - 1rem);
    }
    .-small-nine.-collapse {
      max-width: calc(100%/12 * 9);
      flex: 0 0 calc(100%/12 * 9);
    }
    .-small-order-9 {
      -webkit-order: 9;
      order: 9;
    }
    .-small-eight {
      max-width: calc(100%/12 * 8 - 1rem);
      flex: 0 0 calc(100%/12 * 8 - 1rem);
    }
    .-small-eight.-collapse {
      max-width: calc(100%/12 * 8);
      flex: 0 0 calc(100%/12 * 8);
    }
    .-small-order-8 {
      -webkit-order: 8;
      order: 8;
    }
    .-small-seven {
      max-width: calc(100%/12 * 7 - 1rem);
      flex: 0 0 calc(100%/12 * 7 - 1rem);
    }
    .-small-seven.-collapse {
      max-width: calc(100%/12 * 7);
      flex: 0 0 calc(100%/12 * 7);
    }
    .-small-order-7 {
      -webkit-order: 7;
      order: 7;
    }
    .-small-six {
      max-width: calc(100%/12 * 6 - 1rem);
      flex: 0 0 calc(100%/12 * 6 - 1rem);
    }
    .-small-six.-collapse {
      max-width: calc(100%/12 * 6);
      flex: 0 0 calc(100%/12 * 6);
    }
    .-small-order-6 {
      -webkit-order: 6;
      order: 6;
    }
    .-small-five {
      max-width: calc(100%/12 * 5 - 1rem);
      flex: 0 0 calc(100%/12 * 5 - 1rem);
    }
    .-small-five.-collapse {
      max-width: calc(100%/12 * 5);
      flex: 0 0 calc(100%/12 * 5);
    }
    .-small-order-5 {
      -webkit-order: 5;
      order: 5;
    }
    .-small-four {
      max-width: calc(100%/12 * 4 - 1rem);
      flex: 0 0 calc(100%/12 * 4 - 1rem);
    }
    .-small-four.-collapse {
      max-width: calc(100%/12 * 4);
      flex: 0 0 calc(100%/12 * 4);
    }
    .-small-order-4 {
      -webkit-order: 4;
      order: 4;
    }
    .-small-three {
      max-width: calc(100%/12 * 3 - 1rem);
      flex: 0 0 calc(100%/12 * 3 - 1rem);
    }
    .-small-three.-collapse {
      max-width: calc(100%/12 * 3);
      flex: 0 0 calc(100%/12 * 3);
    }
    .-small-order-3 {
      -webkit-order: 3;
      order: 3;
    }
    .-small-two {
      max-width: calc(100%/12 * 2 - 1rem);
      flex: 0 0 calc(100%/12 * 2 - 1rem);
    }
    .-small-two.-collapse {
      max-width: calc(100%/12 * 2);
      flex: 0 0 calc(100%/12 * 2);
    }
    .-small-order-2 {
      -webkit-order: 2;
      order: 2;
    }
    .-small-one {
      max-width: calc(100%/12 * 1 - 1rem);
      flex: 0 0 calc(100%/12 * 1 - 1rem);
    }
    .-small-one.-collapse {
      max-width: calc(100%/12 * 1);
      flex: 0 0 calc(100%/12 * 1);
    }
    .-small-order-1 {
      -webkit-order: 1;
      order: 1;
    }
    .-small-fifth {
      max-width: calc(20% - 1rem);
      flex: 0 0 calc(20% - 1rem);
    }
    .-small-fifth.-collapse {
      max-width: 20%;
      flex: 0 0 20%;
    }
  }
  @media only screen and (min-width: 768px) {
    .-medium-hide {
      display: none !important;
    }
    .-medium-show {
      display: inherit !important;
    }
    .-medium-text-left {
      text-align: left;
    }
    .-medium-text-right {
      text-align: right;
    }
    .-medium-text-center {
      text-align: center;
    }
    .-medium-text-justify {
      text-align: justify;
    }
    .-medium-twelve {
      max-width: calc(100%/12 * 12 - 1rem);
      flex: 0 0 calc(100%/12 * 12 - 1rem);
    }
    .-medium-twelve.-collapse {
      max-width: calc(100%/12 * 12);
      flex: 0 0 calc(100%/12 * 12);
    }
    .-medium-order-12 {
      -webkit-order: 12;
      order: 12;
    }
    .-medium-eleven {
      max-width: calc(100%/12 * 11 - 1rem);
      flex: 0 0 calc(100%/12 * 11 - 1rem);
    }
    .-medium-eleven.-collapse {
      max-width: calc(100%/12 * 11);
      flex: 0 0 calc(100%/12 * 11);
    }
    .-medium-order-11 {
      -webkit-order: 11;
      order: 11;
    }
    .-medium-ten {
      max-width: calc(100%/12 * 10 - 1rem);
      flex: 0 0 calc(100%/12 * 10 - 1rem);
    }
    .-medium-ten.-collapse {
      max-width: calc(100%/12 * 10);
      flex: 0 0 calc(100%/12 * 10);
    }
    .-medium-order-10 {
      -webkit-order: 10;
      order: 10;
    }
    .-medium-nine {
      max-width: calc(100%/12 * 9 - 1rem);
      flex: 0 0 calc(100%/12 * 9 - 1rem);
    }
    .-medium-nine.-collapse {
      max-width: calc(100%/12 * 9);
      flex: 0 0 calc(100%/12 * 9);
    }
    .-medium-order-9 {
      -webkit-order: 9;
      order: 9;
    }
    .-medium-eight {
      max-width: calc(100%/12 * 8 - 1rem);
      flex: 0 0 calc(100%/12 * 8 - 1rem);
    }
    .-medium-eight.-collapse {
      max-width: calc(100%/12 * 8);
      flex: 0 0 calc(100%/12 * 8);
    }
    .-medium-order-8 {
      -webkit-order: 8;
      order: 8;
    }
    .-medium-seven {
      max-width: calc(100%/12 * 7 - 1rem);
      flex: 0 0 calc(100%/12 * 7 - 1rem);
    }
    .-medium-seven.-collapse {
      max-width: calc(100%/12 * 7);
      flex: 0 0 calc(100%/12 * 7);
    }
    .-medium-order-7 {
      -webkit-order: 7;
      order: 7;
    }
    .-medium-six {
      max-width: calc(100%/12 * 6 - 1rem);
      flex: 0 0 calc(100%/12 * 6 - 1rem);
    }
    .-medium-six.collapse {
      max-width: calc(100%/12 * 6);
      flex: 0 0 calc(100%/12 * 6);
    }
    .-medium-order-6 {
      -webkit-order: 6;
      order: 6;
    }
    .-medium-five {
      max-width: calc(100%/12 * 5 - 1rem);
      flex: 0 0 calc(100%/12 * 5 - 1rem);
    }
    .-medium-five.collapse {
      max-width: calc(100%/12 * 5);
      flex: 0 0 calc(100%/12 * 5);
    }
    .-medium-order-5 {
      -webkit-order: 5;
      order: 5;
    }
    .-medium-four {
      max-width: calc(100%/12 * 4 - 1rem);
      flex: 0 0 calc(100%/12 * 4 - 1rem);
    }
    .-medium-four.-collapse {
      max-width: calc(100%/12 * 4);
      flex: 0 0 calc(100%/12 * 4);
    }
    .-medium-order-4 {
      -webkit-order: 4;
      order: 4;
    }
    .-medium-three {
      max-width: calc(100%/12 * 3 - 1rem);
      flex: 0 0 calc(100%/12 * 3 - 1rem);
    }
    .-medium-three.-collapse {
      max-width: calc(100%/12 * 3);
      flex: 0 0 calc(100%/12 * 3);
    }
    .-medium-order-3 {
      -webkit-order: 3;
      order: 3;
    }
    .-medium-two {
      max-width: calc(100%/12 * 2 - 1rem);
      flex: 0 0 calc(100%/12 * 2 - 1rem);
    }
    .-medium-two.-collapse {
      max-width: calc(100%/12 * 2);
      flex: 0 0 calc(100%/12 * 2);
    }
    .-medium-order-2 {
      -webkit-order: 2;
      order: 2;
    }
    .-medium-one {
      max-width: calc(100%/12 * 1 - 1rem);
      flex: 0 0 calc(100%/12 * 1 - 1rem);
    }
    .-medium-one.-collapse {
      max-width: calc(100%/12 * 1);
      flex: 0 0 calc(100%/12 * 1);
    }
    .-medium-order-1 {
      -webkit-order: 1;
      order: 1;
    }
    .-medium-fifth {
      max-width: calc(20% - 1rem);
      flex: 0 0 calc(20% - 1rem);
    }
    .-medium-fifth.-collapse {
      max-width: 20%;
      flex: 0 0 20%;
    }
  }
  @media only screen and (min-width: 1024px) {
    .-large-hide {
      display: none !important;
    }
    .-large-show {
      display: inherit !important;
    }
    .-large-text-left {
      text-align: left;
    }
    .-large-text-right {
      text-align: right;
    }
    .-large-text-center {
      text-align: center;
    }
    .-large-text-justify {
      text-align: justify;
    }
    .-large-twelve {
      max-width: calc(100%/12 * 12 - 1rem);
      flex: 0 0 calc(100%/12 * 12 - 1rem);
    }
    .-large-twelve.-collapse {
      max-width: calc(100%/12 * 12);
      flex: 0 0 calc(100%/12 * 12);
    }
    .-large-order-12 {
      -webkit-order: 12;
      order: 12;
    }
    .-large-eleven {
      max-width: calc(100%/12 * 11 - 1rem);
      flex: 0 0 calc(100%/12 * 11 - 1rem);
    }
    .-large-eleven.-collapse {
      max-width: calc(100%/12 * 11);
      flex: 0 0 calc(100%/12 * 11);
    }
    .-large-order-11 {
      -webkit-order: 11;
      order: 11;
    }
    .-large-ten {
      max-width: calc(100%/12 * 10 - 1rem);
      flex: 0 0 calc(100%/12 * 10 - 1rem);
    }
    .-large-ten.-collapse {
      max-width: calc(100%/12 * 10);
      flex: 0 0 calc(100%/12 * 10);
    }
    .-large-order-10 {
      -webkit-order: 10;
      order: 10;
    }
    .-large-nine {
      max-width: calc(100%/12 * 9 - 1rem);
      flex: 0 0 calc(100%/12 * 9 - 1rem);
    }
    .-large-nine.-collapse {
      max-width: calc(100%/12 * 9);
      flex: 0 0 calc(100%/12 * 9);
    }
    .-large-order-9 {
      -webkit-order: 9;
      order: 9;
    }
    .-large-eight {
      max-width: calc(100%/12 * 8 - 1rem);
      flex: 0 0 calc(100%/12 * 8 - 1rem);
    }
    .-large-eight.-collapse {
      max-width: calc(100%/12 * 8);
      flex: 0 0 calc(100%/12 * 8);
    }
    .-large-order-8 {
      -webkit-order: 8;
      order: 8;
    }
    .-large-seven {
      max-width: calc(100%/12 * 7 - 1rem);
      flex: 0 0 calc(100%/12 * 7 - 1rem);
    }
    .-large-seven.-collapse {
      max-width: calc(100%/12 * 7);
      flex: 0 0 calc(100%/12 * 7);
    }
    .-large-order-7 {
      -webkit-order: 7;
      order: 7;
    }
    .-large-six {
      max-width: calc(100%/12 * 6 - 1rem);
      flex: 0 0 calc(100%/12 * 6 - 1rem);
    }
    .-large-six.collapse {
      max-width: calc(100%/12 * 6);
      flex: 0 0 calc(100%/12 * 6);
    }
    .-large-order-6 {
      -webkit-order: 6;
      order: 6;
    }
    .-large-five {
      max-width: calc(100%/12 * 5 - 1rem);
      flex: 0 0 calc(100%/12 * 5 - 1rem);
    }
    .-large-five.-collapse {
      max-width: calc(100%/12 * 5);
      flex: 0 0 calc(100%/12 * 5);
    }
    .-large-order-5 {
      -webkit-order: 5;
      order: 5;
    }
    .-large-four {
      max-width: calc(100%/12 * 4 - 1rem);
      flex: 0 0 calc(100%/12 * 4 - 1rem);
    }
    .-large-four.-collapse {
      max-width: calc(100%/12 * 4);
      flex: 0 0 calc(100%/12 * 4);
    }
    .-large-order-4 {
      -webkit-order: 4;
      order: 4;
    }
    .-large-three {
      max-width: calc(100%/12 * 3 - 1rem);
      flex: 0 0 calc(100%/12 * 3 - 1rem);
    }
    .-large-three.-collapse {
      max-width: calc(100%/12 * 3);
      flex: 0 0 calc(100%/12 * 3);
    }
    .-large-order-3 {
      -webkit-order: 3;
      order: 3;
    }
    .-large-two {
      max-width: calc(100%/12 * 2 - 1rem);
      flex: 0 0 calc(100%/12 * 2 - 1rem);
    }
    .-large-two.-collapse {
      max-width: calc(100%/12 * 2);
      flex: 0 0 calc(100%/12 * 2);
    }
    .-large-order-2 {
      -webkit-order: 2;
      order: 2;
    }
    .-large-one {
      max-width: calc(100%/12 * 1 - 1rem);
      flex: 0 0 calc(100%/12 * 1 - 1rem);
    }
    .-large-one.-collapse {
      max-width: calc(100%/12 * 1);
      flex: 0 0 calc(100%/12 * 1);
    }
    .-large-order-1 {
      -webkit-order: 1;
      order: 1;
    }
    .-large-fifth {
      max-width: calc(20% - 1rem);
      flex: 0 0 calc(20% - 1rem);
    }
    .-large-fifth.-collapse {
      max-width: 20%;
      flex: 0 0 20%;
    }
  }
  ._full {
    width: 100%;
  }
  ._half {
    width: 50%;
  }
  ._quarter {
    width: 25%;
  }
  ._third {
    width: calc(100% / 3);
  }
  ._two-thirds {
    width: calc(100% / 3 * 2);
  }
  @media (max-width: 1024px) {
    ._full {
      width: 100%;
    }
    ._half {
      width: 100%;
    }
    ._quarter {
      width: 100%;
    }
    ._third {
      width: 100%;
    }
    ._two-thirds {
      width: 100%;
    }
  }
  @media only screen and (min-width: 1200px) {
    .-xlarge-hide {
      display: none !important;
    }
    .-xlarge-show {
      display: inherit !important;
    }
    .-xlarge-text-left {
      text-align: left;
    }
    .-xlarge-text-right {
      text-align: right;
    }
    .-xlarge-text-center {
      text-align: center;
    }
    .-xlarge-text-justify {
      text-align: justify;
    }
    .-xlarge-twelve {
      max-width: calc(100%/12 * 12 - 1rem);
      flex: 0 0 calc(100%/12 * 12 - 1rem);
    }
    .-xlarge-twelve.collapse {
      max-width: calc(100%/12 * 12);
      flex: 0 0 calc(100%/12 * 12);
    }
    .-xlarge-order-12 {
      -webkit-order: 12;
      order: 12;
    }
    .-xlarge-eleven {
      max-width: calc(100%/12 * 11 - 1rem);
      flex: 0 0 calc(100%/12 * 11 - 1rem);
    }
    .-xlarge-eleven.-collapse {
      max-width: calc(100%/12 * 11);
      flex: 0 0 calc(100%/12 * 11);
    }
    .-xlarge-order-11 {
      -webkit-order: 11;
      order: 11;
    }
    .-xlarge-ten {
      max-width: calc(100%/12 * 10 - 1rem);
      flex: 0 0 calc(100%/12 * 10 - 1rem);
    }
    .-xlarge-ten.-collapse {
      max-width: calc(100%/12 * 10);
      flex: 0 0 calc(100%/12 * 10);
    }
    .-xlarge-order-10 {
      -webkit-order: 10;
      order: 10;
    }
    .-xlarge-nine {
      max-width: calc(100%/12 * 9 - 1rem);
      flex: 0 0 calc(100%/12 * 9 - 1rem);
    }
    .-xlarge-nine.-collapse {
      max-width: calc(100%/12 * 9);
      flex: 0 0 calc(100%/12 * 9);
    }
    .-xlarge-order-9 {
      -webkit-order: 9;
      order: 9;
    }
    .-xlarge-eight {
      max-width: calc(100%/12 * 8 - 1rem);
      flex: 0 0 calc(100%/12 * 8 - 1rem);
    }
    .-xlarge-eight.collapse {
      max-width: calc(100%/12 * 8);
      flex: 0 0 calc(100%/12 * 8);
    }
    .-xlarge-order-8 {
      -webkit-order: 8;
      order: 8;
    }
    .-xlarge-seven {
      max-width: calc(100%/12 * 7 - 1rem);
      flex: 0 0 calc(100%/12 * 7 - 1rem);
    }
    .-xlarge-seven.-collapse {
      max-width: calc(100%/12 * 7);
      flex: 0 0 calc(100%/12 * 7);
    }
    .-xlarge-order-7 {
      -webkit-order: 7;
      order: 7;
    }
    .-xlarge-six {
      max-width: calc(100%/12 * 6 - 1rem);
      flex: 0 0 calc(100%/12 * 6 - 1rem);
    }
    .-xlarge-six.-collapse {
      max-width: calc(100%/12 * 6);
      flex: 0 0 calc(100%/12 * 6);
    }
    .-xlarge-order-6 {
      -webkit-order: 6;
      order: 6;
    }
    .-xlarge-five {
      max-width: calc(100%/12 * 5 - 1rem);
      flex: 0 0 calc(100%/12 * 5 - 1rem);
    }
    .-xlarge-five.-collapse {
      max-width: calc(100%/12 * 5);
      flex: 0 0 calc(100%/12 * 5);
    }
    .-xlarge-order-5 {
      -webkit-order: 5;
      order: 5;
    }
    .-xlarge-four {
      max-width: calc(100%/12 * 4 - 1rem);
      flex: 0 0 calc(100%/12 * 4 - 1rem);
    }
    .-xlarge-four.-collapse {
      max-width: calc(100%/12 * 4);
      flex: 0 0 calc(100%/12 * 4);
    }
    .-xlarge-order-4 {
      -webkit-order: 4;
      order: 4;
    }
    .-xlarge-three {
      max-width: calc(100%/12 * 3 - 1rem);
      flex: 0 0 calc(100%/12 * 3 - 1rem);
    }
    .-xlarge-three.-collapse {
      max-width: calc(100%/12 * 3);
      flex: 0 0 calc(100%/12 * 3);
    }
    .-xlarge-order-3 {
      -webkit-order: 3;
      order: 3;
    }
    .-xlarge-two {
      max-width: calc(100%/12 * 2 - 1rem);
      flex: 0 0 calc(100%/12 * 2 - 1rem);
    }
    .-xlarge-two.-collapse {
      max-width: calc(100%/12 * 2);
      flex: 0 0 calc(100%/12 * 2);
    }
    .-xlarge-order-2 {
      -webkit-order: 2;
      order: 2;
    }
    .-xlarge-one {
      max-width: calc(100%/12 * 1 - 1rem);
      flex: 0 0 calc(100%/12 * 1 - 1rem);
    }
    .-xlarge-one.-collapse {
      max-width: calc(100%/12 * 1);
      flex: 0 0 calc(100%/12 * 1);
    }
    .-xlarge-order-1 {
      -webkit-order: 1;
      order: 1;
    }
    .-xlarge-fifth {
      max-width: calc(20% - 1rem);
      flex: 0 0 calc(20% - 1rem);
    }
    .-xlarge-fifth.-collapse {
      max-width: 20%;
      flex: 0 0 20%;
    }
  }
  .tiles {
    display: grid;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    width: 100%;
    margin: auto;
  }
  .one_up {
    grid-template-columns: repeat(2, 1fr);
  }
  .two_up {
    grid-template-columns: repeat(2, 1fr);
  }
  .three_up {
    grid-template-columns: repeat(3, 1fr);
  }
  .four_up {
    grid-template-columns: repeat(4, 1fr);
  }
  .five_up {
    grid-template-columns: repeat(5, 1fr);
  }
  .six_up {
    grid-template-columns: repeat(6, 1fr);
  }
  .seven_up {
    grid-template-columns: repeat(7, 1fr);
  }
  .eight_up {
    grid-template-columns: repeat(8, 1fr);
  }
  .nine_up {
    grid-template-columns: repeat(9, 1fr);
  }
  .ten_up {
    grid-template-columns: repeat(10, 1fr);
  }
  .eleven_up {
    grid-template-columns: repeat(11, 1fr);
  }
  .twelve_up {
    grid-template-columns: repeat(12, 1fr);
  }
  .sixteen_up {
    grid-template-columns: repeat(16, 1fr);
  }
  .tile {
    grid-column: span 1;
  }
  .tiles li {
    grid-column: span 1;
  }
  /* ------------------ BASIC COLORS -------------------- */
  .-dark {
    color: #333333;
  }
  .-light {
    color: #eaeaea;
  }
  .-white {
    color: white;
  }
  .-primary {
    color: #4F46E5;
  }
  .-dark-bg,
  .-dark\:bg {
    background: #333333;
  }
  .-light-bg,
  .-light\:bg {
    background: #eaeaea;
  }
  .-white-bg,
  .-white\:bg {
    background: white;
  }
  .-primary-bg,
  .-dark\:bg {
    background: #4F46E5;
  }
  .-dark-hover:hover,
  .-dark\:hover:hover {
    color: #333333;
  }
  .-light-hover:hover,
  .-light\:hover:hover {
    color: #eaeaea;
  }
  .-white-hover:hover,
  .-white\:hover:hover {
    color: white;
  }
  .-primary-hover:hover,
  .-primary\:hover:hover {
    color: #4F46E5;
  }
  .-dark-bg-hover:hover,
  .-dark-bg\:hover:hover {
    background: #333333;
  }
  .-light-bg-hover:hover,
  .-light-bg\:hover:hover {
    background: #eaeaea;
  }
  .-white-bg-hover:hover,
  .-white-bg\:hover:hover {
    background: white;
  }
  .-primary-bg-hover:hover,
  .-primary-bg\:hover:hover {
    background: #4F46E5;
  }
  /* ------------------ LAYOUT -------------------- */
  .-block {
    display: block;
  }
  .-flex {
    display: flex;
  }
  .-inline {
    display: inline;
  }
  .-inline-block {
    display: inline-block;
  }
  .-inline-flex {
    display: inline-flex;
  }
  .-absolute {
    position: absolute;
  }
  .-fixed {
    position: fixed;
  }
  .-relative {
    position: relative;
  }
  .-sticky {
    position: sticky;
  }
  @media (max-width: 1024px) {
    .-m-block,
    .-block\:mobile {
      display: block;
    }
    .-m-flex,
    .-flex\:mobile {
      display: flex;
    }
    .-m-inline,
    .-inline\:mobile {
      display: inline;
    }
    .-m-inline-block,
    .-inline-block\:mobile {
      display: inline-block;
    }
    .-m-inline-flex,
    .-inline-flex\:mobile {
      display: inline-flex;
    }
    .-m-absolute,
    .-absolute\:mobile {
      position: absolute;
    }
    .-m-fixed,
    .-fixed\:mobile {
      position: f;
    }
    .-m-relative,
    .-relative\:mobile {
      position: relative;
    }
    .-m-sticky,
    .-sticky\:mobile {
      position: sticky;
    }
  }
  /* ------------------ TYPOGRAPHY -------------------- */
  .-caps,
  .-uppercase {
    text-transform: uppercase;
  }
  .-lowercase {
    text-transform: lowercase;
  }
  .-titlecase,
  .-capitalize {
    text-transform: capitalize;
  }
  .-no-transform {
    text-transform: none;
  }
  .-italic {
    font-style: italic;
  }
  .-squished {
    line-height: 1.15em;
  }
  .-weight-100,
  .-weight\:100 {
    font-weight: 100;
  }
  .-weight-300,
  .-weight\:300 {
    font-weight: 300;
  }
  .-weight-400,
  .-weight\:400 {
    font-weight: 400;
  }
  .-weight-500,
  .-weight\:500 {
    font-weight: 500;
  }
  .-weight-700,
  .-weight\:700 {
    font-weight: 700;
  }
  .-weight-900,
  .-weight\:900 {
    font-weight: 900;
  }
  .-size-25,
  .-size\:25 {
    font-size: 0.25em;
  }
  .-size-50,
  .-size\:50 {
    font-size: 0.5em;
  }
  .-size-75,
  .-size\:75 {
    font-size: 0.75em;
  }
  .-size-100,
  .-size\:100 {
    font-size: 1em;
  }
  .-size-125,
  .-size\:125 {
    font-size: 1.25em;
  }
  .-size-150,
  .-size\:150 {
    font-size: 1.5em;
  }
  .-size-175,
  .-size\:175 {
    font-size: 1.75em;
  }
  .-size-200,
  .-size\:200 {
    font-size: 2em;
  }
  .-size-225,
  .-size\:225 {
    font-size: 2.25em;
  }
  .-size-250,
  .-size\:250 {
    font-size: 2.5em;
  }
  .-size-275,
  .-size\:275 {
    font-size: 2.75em;
  }
  .-size-300,
  .-size\:300 {
    font-size: 3em;
  }
  .-space-1,
  .-space\:1 {
    letter-spacing: 0.1em;
  }
  .-space-2,
  .-space\:2 {
    letter-spacing: 0.2em;
  }
  /* ------------------ ELEMENT STYLES -------------------- */
  .-transition {
    transition: 0.2s linear all;
  }
  .-transition-slow {
    transition: 0.5s linear all;
  }
  .-shadow-small {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }
  .-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
  .-shadow-medium {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  .-shadow-large {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  .-shadow-huge {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  .-box-shadow {
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  }
  .-gradient-fade,
  .-fade {
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.31) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.31) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.31) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4f000000', endColorstr='#00000000', GradientType=1);
  }
  .-blur {
    backdrop-filter: blur(10px);
  }
  .-opacity-0,
  .-opacity\:0 {
    opacity: 0;
  }
  .-opacity-25,
  .-opacity\:25 {
    opacity: 0.25;
  }
  .-opacity-50,
  .-opacity\:50 {
    opacity: 0.5;
  }
  .-opacity-75,
  .-opacity\:75 {
    opacity: 0.75;
  }
  .-opacity-100,
  .-opacity\:100 {
    opacity: 1;
  }
  /* ------------------ SPACING -------------------- */
  .-margin,
  .-margin-20 {
    margin: 1em;
  }
  .-margin-top {
    margin-top: 1em;
  }
  .-margin-right {
    margin-right: 1em;
  }
  .-margin-bottom {
    margin-bottom: 1em;
  }
  .-margin-left {
    margin-left: 1em;
  }
  .-margin-horizontal {
    margin-right: 1em;
    margin-left: 1em;
  }
  .-margin-vertical {
    margin-top: 1em;
    margin-bottom: 1em;
  }
  .-margin-10 {
    margin: 0.5em;
  }
  .-margin-top-10 {
    margin-top: 0.5em;
  }
  .-margin-right-10 {
    margin-right: 0.5em;
  }
  .-margin-bottom-10 {
    margin-bottom: 0.5em;
  }
  .-margin-left-10 {
    margin-left: 0.5em;
  }
  .-margin-horizontal-10 {
    margin-right: 0.5em;
    margin-left: 0.5em;
  }
  .-margin-vertical-10 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
  .-margin-5 {
    margin: 0.25em;
  }
  .-margin-top-5 {
    margin-top: 0.25em;
  }
  .-margin-right-5 {
    margin-right: 0.25em;
  }
  .-margin-bottom-5 {
    margin-bottom: 0.25em;
  }
  .-margin-left-5 {
    margin-left: 0.25em;
  }
  .-margin-horizontal-5 {
    margin-right: 0.25em;
    margin-left: 0.25em;
  }
  .-margin-vertical-5 {
    margin-top: 0.25em;
    margin-bottom: 0.25em;
  }
  .-padding,
  .-padding-20 {
    padding: 1em;
  }
  .-padding-top {
    padding-top: 1em;
  }
  .-padding-right {
    padding-right: 1em;
  }
  .-padding-bottom {
    padding-bottom: 1em;
  }
  .-padding-left {
    padding-left: 1em;
  }
  .-padding-horizontal {
    padding-right: 1em;
    padding-left: 1em;
  }
  .-padding-vertical {
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .-padding-10 {
    padding: 0.5em;
  }
  .-padding-top-10 {
    padding-top: 0.5em;
  }
  .-padding-right-10 {
    padding-right: 0.5em;
  }
  .-padding-bottom-10 {
    padding-bottom: 0.5em;
  }
  .-padding-left-10 {
    padding-left: 0.5em;
  }
  .-padding-horizontal-10 {
    padding-right: 0.5em;
    padding-left: 0.5em;
  }
  .-padding-vertical-10 {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  .-padding-5 {
    padding: 0.25em;
  }
  .-padding-top-5 {
    padding-top: 0.25em;
  }
  .-padding-right-5 {
    padding-right: 0.25em;
  }
  .-padding-bottom-5 {
    padding-bottom: 0.25em;
  }
  .-padding-left-5 {
    padding-left: 0.25em;
  }
  .-padding-horizontal-5 {
    padding-right: 0.25em;
    padding-left: 0.25em;
  }
  .-padding-vertical-5 {
    padding-top: 0.25em;
    padding-bottom: 0.25em;
  }
  .-strip {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  .-box-small {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
  .-box {
    padding-top: 3em;
    padding-bottom: 3em;
  }
  .-box-medium {
    padding-top: 5em;
    padding-bottom: 5em;
  }
  .-box-large {
    padding-top: 7em;
    padding-bottom: 7em;
  }
  .-box-top {
    padding-top: 3em;
  }
  .-box-top-small {
    padding-top: 1.5em;
  }
  .-box-top-medium {
    padding-top: 5em;
  }
  .-box-top-large {
    padding-top: 7em;
  }
  .-box-bottom {
    padding-bottom: 3em;
  }
  .-box-bottom-small {
    padding-bottom: 1.5em;
  }
  .-box-bottom-medium {
    padding-bottom: 5em;
  }
  .-box-bottom-large {
    padding-bottom: 7em;
  }
  /* ------------------ EVENT MODIFIERS -------------------- */
  .-hidden {
    display: none;
  }
  .-hidden.active {
    display: block;
  }
  .-pointer {
    cursor: pointer;
  }
  /* ------------------ BORDERS -------------------- */
  .-border-top {
    border-top: 1px solid;
  }
  .-border-right {
    border-right: 1px solid;
  }
  .-border-bottom {
    border-bottom: 1px solid;
  }
  .-border-left {
    border-left: 1px solid;
  }
  .-border {
    border: 1px solid;
  }
  .-border-white {
    border-color: white;
  }
  .-border-dark {
    border-color: #333333;
  }
  .-border-light {
    border-color: #eaeaea;
  }
  .-border-small {
    border: 0.25px solid #eaeaea;
  }
  .-rounded {
    border-radius: 5px;
  }
  .-rounded-bottom {
    border-radius: 0 0 5px 5px;
  }
  .-rounded-top {
    border-radius: 5px 5px 0 0;
  }
  .-rounded-left {
    border-radius: 5px 0 0 5px;
  }
  .-rounded-right {
    border-radius: 0 5px 5px 0;
  }
  .-rounded-top-left {
    border-radius: 5px 0 0 0;
  }
  .-rounded-top-right {
    border-radius: 0 5px 0 0;
  }
  .-rounded-bottom-right {
    border-radius: 0 0 5px 0;
  }
  .-rounded-bottom-left {
    border-radius: 0 0 0 5px;
  }
  .-circle {
    border-radius: 50%;
  }
  /* ------------------ TRANSFORMS -------------------- */
  .-rotate-45 {
    transform: rotate(45deg);
  }
  .-rotate-90 {
    transform: rotate(90deg);
  }
  .-rotate-180 {
    transform: rotate(180deg);
  }
  .-rotate-270 {
    transform: rotate(270deg);
  }
  .-rotate-360 {
    transform: rotate(360deg);
  }
  /* ------------------ RESPONSIVE -------------------- */
  .-no-mobile,
  .-hidden-mobile,
  .-only-desktop {
    display: block;
  }
  .-no-mobile-flex,
  .-hidden-mobile-flex,
  .-only-desktop-flex {
    display: flex;
  }
  .-no-desktop,
  .-hidden-desktop,
  .-only-mobile,
  .-no-desktop-flex,
  .-hidden-desktop-flex,
  .-only-mobile-flex {
    display: none;
  }
  @media (max-width: 1024px) {
    .-no-mobile,
    .-hidden-mobile,
    .-only-desktop {
      display: none;
    }
    .-no-desktop,
    .-hidden-desktop,
    .-only-mobile {
      display: block;
    }
    .-no-desktop-flex,
    .-hidden-desktop-flex,
    .-only-mobile-flex {
      display: flex;
    }
    .-no-mobile-flex,
    .-hidden-mobile-flex,
    .-only-desktop-flex {
      display: none;
    }
  }
  .\:desktop {
    display: block;
  }
  .\:tablet,
  .\:mobile {
    display: none;
  }
  @media (min-width: 767px) and (max-width: 1023px) {
    .\:tablet {
      display: block;
    }
    .\:mobile,
    .\:desktop {
      display: none;
    }
  }
  @media (max-width: 767px) {
    .\:mobile {
      display: block;
    }
    .\:tablet,
    .\:desktop {
      display: none;
    }
  }
  /*# sourceMappingURL=minke.css.map */