html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
:after,
:before {
  box-sizing: inherit;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-ws,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: 5px;
  padding-left: 5px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 100% ;
  }
}

@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1270px;
  }
}

@media (min-width: 1600px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xll,
  .container-xxl {
    max-width: 1520px;
  }
}

@media (min-width: 2000px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-ws,
  .container-xl,
  .container-xll,
  .container-xxl {
    max-width: 1920px;
  }
}

.row {
  display: flex;
  /* flex-wrap: wrap; */
  margin-right: -5px;
  margin-left: -5px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-auto,
.col-ws,
.col-ws-1,
.col-ws-2,
.col-ws-3,
.col-ws-4,
.col-ws-5,
.col-ws-6,
.col-ws-7,
.col-ws-8,
.col-ws-9,
.col-ws-10,
.col-ws-11,
.col-ws-12,
.col-ws-auto,
.col-xl,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-auto,
.col-xll,
.col-xll-1,
.col-xll-2,
.col-xll-3,
.col-xll-4,
.col-xll-5,
.col-xll-6,
.col-xll-7,
.col-xll-8,
.col-xll-9,
.col-xll-10,
.col-xll-11,
.col-xll-12,
.col-xll-auto,
.col-xxl,
.col-xxl-1,
.col-xxl-2,
.col-xxl-3,
.col-xxl-4,
.col-xxl-5,
.col-xxl-6,
.col-xxl-7,
.col-xxl-8,
.col-xxl-9,
.col-xxl-10,
.col-xxl-11,
.col-xxl-12,
.col-xxl-auto {
  position: relative;
  width: 100%;
  padding-right: 0px;
  padding-left: 0px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 11.7%;
  }

  .col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }

  .offset-sm-2 {
    margin-left: 16.66666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333333%;
  }

  .offset-sm-5 {
    margin-left: 41.66666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333333%;
  }

  .offset-sm-8 {
    margin-left: 66.66666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333333%;
  }

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333333%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333333%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333333%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 12%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 1 0 65.33333333%;
    max-width: 100%;
  }

  .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 1400px) {
  .col-xll {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-xll-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xll-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xll-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-xll-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xll-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xll-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xll-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xll-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-xll-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-xll-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xll-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-xll-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-xll-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xll-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-xll-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-xll-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xll-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-xll-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-xll-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xll-first {
    order: -1;
  }

  .order-xll-last {
    order: 13;
  }

  .order-xll-0 {
    order: 0;
  }

  .order-xll-1 {
    order: 1;
  }

  .order-xll-2 {
    order: 2;
  }

  .order-xll-3 {
    order: 3;
  }

  .order-xll-4 {
    order: 4;
  }

  .order-xll-5 {
    order: 5;
  }

  .order-xll-6 {
    order: 6;
  }

  .order-xll-7 {
    order: 7;
  }

  .order-xll-8 {
    order: 8;
  }

  .order-xll-9 {
    order: 9;
  }

  .order-xll-10 {
    order: 10;
  }

  .order-xll-11 {
    order: 11;
  }

  .order-xll-12 {
    order: 12;
  }

  .offset-xll-0 {
    margin-left: 0;
  }

  .offset-xll-1 {
    margin-left: 8.33333333%;
  }

  .offset-xll-2 {
    margin-left: 16.66666667%;
  }

  .offset-xll-3 {
    margin-left: 25%;
  }

  .offset-xll-4 {
    margin-left: 33.33333333%;
  }

  .offset-xll-5 {
    margin-left: 41.66666667%;
  }

  .offset-xll-6 {
    margin-left: 50%;
  }

  .offset-xll-7 {
    margin-left: 58.33333333%;
  }

  .offset-xll-8 {
    margin-left: 66.66666667%;
  }

  .offset-xll-9 {
    margin-left: 75%;
  }

  .offset-xll-10 {
    margin-left: 83.33333333%;
  }

  .offset-xll-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 1600px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-xxl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xxl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xxl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-xxl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xxl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xxl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xxl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-xxl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-xxl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-xxl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-xxl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xxl-first {
    order: -1;
  }

  .order-xxl-last {
    order: 13;
  }

  .order-xxl-0 {
    order: 0;
  }

  .order-xxl-1 {
    order: 1;
  }

  .order-xxl-2 {
    order: 2;
  }

  .order-xxl-3 {
    order: 3;
  }

  .order-xxl-4 {
    order: 4;
  }

  .order-xxl-5 {
    order: 5;
  }

  .order-xxl-6 {
    order: 6;
  }

  .order-xxl-7 {
    order: 7;
  }

  .order-xxl-8 {
    order: 8;
  }

  .order-xxl-9 {
    order: 9;
  }

  .order-xxl-10 {
    order: 10;
  }

  .order-xxl-11 {
    order: 11;
  }

  .order-xxl-12 {
    order: 12;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 2000px) {
  .col-ws {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-ws-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-ws-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-ws-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-ws-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-ws-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-ws-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-ws-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-ws-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-ws-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-ws-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-ws-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-ws-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-ws-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-ws-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-ws-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-ws-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-ws-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-ws-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-ws-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-ws-first {
    order: -1;
  }

  .order-ws-last {
    order: 13;
  }

  .order-ws-0 {
    order: 0;
  }

  .order-ws-1 {
    order: 1;
  }

  .order-ws-2 {
    order: 2;
  }

  .order-ws-3 {
    order: 3;
  }

  .order-ws-4 {
    order: 4;
  }

  .order-ws-5 {
    order: 5;
  }

  .order-ws-6 {
    order: 6;
  }

  .order-ws-7 {
    order: 7;
  }

  .order-ws-8 {
    order: 8;
  }

  .order-ws-9 {
    order: 9;
  }

  .order-ws-10 {
    order: 10;
  }

  .order-ws-11 {
    order: 11;
  }

  .order-ws-12 {
    order: 12;
  }

  .offset-ws-0 {
    margin-left: 0;
  }

  .offset-ws-1 {
    margin-left: 8.33333333%;
  }

  .offset-ws-2 {
    margin-left: 16.66666667%;
  }

  .offset-ws-3 {
    margin-left: 25%;
  }

  .offset-ws-4 {
    margin-left: 33.33333333%;
  }

  .offset-ws-5 {
    margin-left: 41.66666667%;
  }

  .offset-ws-6 {
    margin-left: 50%;
  }

  .offset-ws-7 {
    margin-left: 58.33333333%;
  }

  .offset-ws-8 {
    margin-left: 66.66666667%;
  }

  .offset-ws-9 {
    margin-left: 75%;
  }

  .offset-ws-10 {
    margin-left: 83.33333333%;
  }

  .offset-ws-11 {
    margin-left: 91.66666667%;
  }
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1400px) {
  .d-xll-none {
    display: none !important;
  }

  .d-xll-inline {
    display: inline !important;
  }

  .d-xll-inline-block {
    display: inline-block !important;
  }

  .d-xll-block {
    display: block !important;
  }

  .d-xll-table {
    display: table !important;
  }

  .d-xll-table-row {
    display: table-row !important;
  }

  .d-xll-table-cell {
    display: table-cell !important;
  }

  .d-xll-flex {
    display: flex !important;
  }

  .d-xll-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1600px) {
  .d-xxl-none {
    display: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 2000px) {
  .d-ws-none {
    display: none !important;
  }

  .d-ws-inline {
    display: inline !important;
  }

  .d-ws-inline-block {
    display: inline-block !important;
  }

  .d-ws-block {
    display: block !important;
  }

  .d-ws-table {
    display: table !important;
  }

  .d-ws-table-row {
    display: table-row !important;
  }

  .d-ws-table-cell {
    display: table-cell !important;
  }

  .d-ws-flex {
    display: flex !important;
  }

  .d-ws-inline-flex {
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }



  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1400px) {
  .flex-xll-row {
    flex-direction: row !important;
  }

  .flex-xll-column {
    flex-direction: column !important;
  }

  .flex-xll-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xll-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xll-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xll-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xll-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xll-fill {
    flex: 1 1 auto !important;
  }

  .flex-xll-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xll-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xll-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xll-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xll-start {
    justify-content: flex-start !important;
  }

  .justify-content-xll-end {
    justify-content: flex-end !important;
  }

  .justify-content-xll-center {
    justify-content: center !important;
  }

  .justify-content-xll-between {
    justify-content: space-between !important;
  }

  .justify-content-xll-around {
    justify-content: space-around !important;
  }

  .align-items-xll-start {
    align-items: flex-start !important;
  }

  .align-items-xll-end {
    align-items: flex-end !important;
  }

  .align-items-xll-center {
    align-items: center !important;
  }

  .align-items-xll-baseline {
    align-items: baseline !important;
  }

  .align-items-xll-stretch {
    align-items: stretch !important;
  }

  .align-content-xll-start {
    align-content: flex-start !important;
  }

  .align-content-xll-end {
    align-content: flex-end !important;
  }

  .align-content-xll-center {
    align-content: center !important;
  }

  .align-content-xll-between {
    align-content: space-between !important;
  }

  .align-content-xll-around {
    align-content: space-around !important;
  }

  .align-content-xll-stretch {
    align-content: stretch !important;
  }

  .align-self-xll-auto {
    align-self: auto !important;
  }

  .align-self-xll-start {
    align-self: flex-start !important;
  }

  .align-self-xll-end {
    align-self: flex-end !important;
  }

  .align-self-xll-center {
    align-self: center !important;
  }

  .align-self-xll-baseline {
    align-self: baseline !important;
  }

  .align-self-xll-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1600px) {
  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 2000px) {
  .flex-ws-row {
    flex-direction: row !important;
  }

  .flex-ws-column {
    flex-direction: column !important;
  }

  .flex-ws-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-ws-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-ws-wrap {
    flex-wrap: wrap !important;
  }

  .flex-ws-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-ws-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-ws-fill {
    flex: 1 1 auto !important;
  }

  .flex-ws-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-ws-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-ws-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-ws-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-ws-start {
    justify-content: flex-start !important;
  }

  .justify-content-ws-end {
    justify-content: flex-end !important;
  }

  .justify-content-ws-center {
    justify-content: center !important;
  }

  .justify-content-ws-between {
    justify-content: space-between !important;
  }

  .justify-content-ws-around {
    justify-content: space-around !important;
  }

  .align-items-ws-start {
    align-items: flex-start !important;
  }

  .align-items-ws-end {
    align-items: flex-end !important;
  }

  .align-items-ws-center {
    align-items: center !important;
  }

  .align-items-ws-baseline {
    align-items: baseline !important;
  }

  .align-items-ws-stretch {
    align-items: stretch !important;
  }

  .align-content-ws-start {
    align-content: flex-start !important;
  }

  .align-content-ws-end {
    align-content: flex-end !important;
  }

  .align-content-ws-center {
    align-content: center !important;
  }

  .align-content-ws-between {
    align-content: space-between !important;
  }

  .align-content-ws-around {
    align-content: space-around !important;
  }

  .align-content-ws-stretch {
    align-content: stretch !important;
  }

  .align-self-ws-auto {
    align-self: auto !important;
  }

  .align-self-ws-start {
    align-self: flex-start !important;
  }

  .align-self-ws-end {
    align-self: flex-end !important;
  }

  .align-self-ws-center {
    align-self: center !important;
  }

  .align-self-ws-baseline {
    align-self: baseline !important;
  }

  .align-self-ws-stretch {
    align-self: stretch !important;
  }
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 1rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.m-25 {
  margin: 0.625rem !important;
}

.mt-25,
.my-25 {
  margin-top: 0.625rem !important;
}

.mr-25,
.mx-25 {
  margin-right: 0.625rem !important;
}

.mb-25,
.my-25 {
  margin-bottom: 0.625rem !important;
}

.ml-25,
.mx-25 {
  margin-left: 0.625rem !important;
}

.m-6 {
  margin: 4.5rem !important;
}

.mt-6,
.my-6 {
  margin-top: 4.5rem !important;
}

.mr-6,
.mx-6 {
  margin-right: 4.5rem !important;
}

.mb-6,
.my-6 {
  margin-bottom: 4.5rem !important;
}

.ml-6,
.mx-6 {
  margin-left: 4.5rem !important;
}

.m-7 {
  margin: 6rem !important;
}

.mt-7,
.my-7 {
  margin-top: 6rem !important;
}

.mr-7,
.mx-7 {
  margin-right: 6rem !important;
}

.mb-7,
.my-7 {
  margin-bottom: 6rem !important;
}

.ml-7,
.mx-7 {
  margin-left: 6rem !important;
}

.m-8 {
  margin: 7.5rem !important;
}

.mt-8,
.my-8 {
  margin-top: 7.5rem !important;
}

.mr-8,
.mx-8 {
  margin-right: 7.5rem !important;
}

.mb-8,
.my-8 {
  margin-bottom: 7.5rem !important;
}

.ml-8,
.mx-8 {
  margin-left: 7.5rem !important;
}

.m-9 {
  margin: 9rem !important;
}

.mt-9,
.my-9 {
  margin-top: 9rem !important;
}

.mr-9,
.mx-9 {
  margin-right: 9rem !important;
}

.mb-9,
.my-9 {
  margin-bottom: 9rem !important;
}

.ml-9,
.mx-9 {
  margin-left: 9rem !important;
}

.m-10 {
  margin: 10.5rem !important;
}

.mt-10,
.my-10 {
  margin-top: 10.5rem !important;
}

.mr-10,
.mx-10 {
  margin-right: 10.5rem !important;
}

.mb-10,
.my-10 {
  margin-bottom: 10.5rem !important;
}

.ml-10,
.mx-10 {
  margin-left: 10.5rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  /* padding-bottom: .5rem !important */
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 0rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.p-25 {
  padding: 0.625rem !important;
}

.pt-25,
.py-25 {
  padding-top: 0.625rem !important;
}

.pr-25,
.px-25 {
  padding-right: 0.625rem !important;
}

.pb-25,
.py-25 {
  padding-bottom: 0.625rem !important;
}

.pl-25,
.px-25 {
  padding-left: 0.625rem !important;
}

.p-6 {
  padding: 4.5rem !important;
}

.pt-6,
.py-6 {
  padding-top: 4.5rem !important;
}

.pr-6,
.px-6 {
  padding-right: 4.5rem !important;
}

.pb-6,
.py-6 {
  padding-bottom: 4.5rem !important;
}

.pl-6,
.px-6 {
  padding-left: 4.5rem !important;
}

.p-7 {
  padding: 6rem !important;
}

.pt-7,
.py-7 {
  padding-top: 6rem !important;
}

.pr-7,
.px-7 {
  padding-right: 6rem !important;
}

.pb-7,
.py-7 {
  padding-bottom: 6rem !important;
}

.pl-7,
.px-7 {
  padding-left: 6rem !important;
}

.p-8 {
  padding: 7.5rem !important;
}

.pt-8,
.py-8 {
  padding-top: 7.5rem !important;
}

.pr-8,
.px-8 {
  padding-right: 7.5rem !important;
}

.pb-8,
.py-8 {
  padding-bottom: 7.5rem !important;
}

.pl-8,
.px-8 {
  padding-left: 7.5rem !important;
}

.p-9 {
  padding: 9rem !important;
}

.pt-9,
.py-9 {
  padding-top: 9rem !important;
}

.pr-9,
.px-9 {
  padding-right: 9rem !important;
}

.pb-9,
.py-9 {
  padding-bottom: 9rem !important;
}

.pl-9,
.px-9 {
  padding-left: 9rem !important;
}

.p-10 {
  padding: 10.5rem !important;
}

.pt-10,
.py-10 {
  padding-top: 10.5rem !important;
}

.pr-10,
.px-10 {
  padding-right: 10.5rem !important;
}

.pb-10,
.py-10 {
  padding-bottom: 10.5rem !important;
}

.pl-10,
.px-10 {
  padding-left: 10.5rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-n25 {
  margin: -0.625rem !important;
}

.mt-n25,
.my-n25 {
  margin-top: -0.625rem !important;
}

.mr-n25,
.mx-n25 {
  margin-right: -0.625rem !important;
}

.mb-n25,
.my-n25 {
  margin-bottom: -0.625rem !important;
}

.ml-n25,
.mx-n25 {
  margin-left: -0.625rem !important;
}

.m-n6 {
  margin: -4.5rem !important;
}

.mt-n6,
.my-n6 {
  margin-top: -4.5rem !important;
}

.mr-n6,
.mx-n6 {
  margin-right: -4.5rem !important;
}

.mb-n6,
.my-n6 {
  margin-bottom: -4.5rem !important;
}

.ml-n6,
.mx-n6 {
  margin-left: -4.5rem !important;
}

.m-n7 {
  margin: -6rem !important;
}

.mt-n7,
.my-n7 {
  margin-top: -6rem !important;
}

.mr-n7,
.mx-n7 {
  margin-right: -6rem !important;
}

.mb-n7,
.my-n7 {
  margin-bottom: -6rem !important;
}

.ml-n7,
.mx-n7 {
  margin-left: -6rem !important;
}

.m-n8 {
  margin: -7.5rem !important;
}

.mt-n8,
.my-n8 {
  margin-top: -7.5rem !important;
}

.mr-n8,
.mx-n8 {
  margin-right: -7.5rem !important;
}

.mb-n8,
.my-n8 {
  margin-bottom: -7.5rem !important;
}

.ml-n8,
.mx-n8 {
  margin-left: -7.5rem !important;
}

.m-n9 {
  margin: -9rem !important;
}

.mt-n9,
.my-n9 {
  margin-top: -9rem !important;
}

.mr-n9,
.mx-n9 {
  margin-right: -9rem !important;
}

.mb-n9,
.my-n9 {
  margin-bottom: -9rem !important;
}

.ml-n9,
.mx-n9 {
  margin-left: -9rem !important;
}

.m-n10 {
  margin: -10.5rem !important;
}

.mt-n10,
.my-n10 {
  margin-top: -10.5rem !important;
}

.mr-n10,
.mx-n10 {
  margin-right: -10.5rem !important;
}

.mb-n10,
.my-n10 {
  margin-bottom: -10.5rem !important;
}

.ml-n10,
.mx-n10 {
  margin-left: -10.5rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  .m-sm-25 {
    margin: 0.625rem !important;
  }

  .mt-sm-25,
  .my-sm-25 {
    margin-top: 0.625rem !important;
  }

  .mr-sm-25,
  .mx-sm-25 {
    margin-right: 0.625rem !important;
  }

  .mb-sm-25,
  .my-sm-25 {
    margin-bottom: 0.625rem !important;
  }

  .ml-sm-25,
  .mx-sm-25 {
    margin-left: 0.625rem !important;
  }

  .m-sm-6 {
    margin: 4.5rem !important;
  }

  .mt-sm-6,
  .my-sm-6 {
    margin-top: 4.5rem !important;
  }

  .mr-sm-6,
  .mx-sm-6 {
    margin-right: 4.5rem !important;
  }

  .mb-sm-6,
  .my-sm-6 {
    margin-bottom: 4.5rem !important;
  }

  .ml-sm-6,
  .mx-sm-6 {
    margin-left: 4.5rem !important;
  }

  .m-sm-7 {
    margin: 6rem !important;
  }

  .mt-sm-7,
  .my-sm-7 {
    margin-top: 6rem !important;
  }

  .mr-sm-7,
  .mx-sm-7 {
    margin-right: 6rem !important;
  }

  .mb-sm-7,
  .my-sm-7 {
    margin-bottom: 6rem !important;
  }

  .ml-sm-7,
  .mx-sm-7 {
    margin-left: 6rem !important;
  }

  .m-sm-8 {
    margin: 7.5rem !important;
  }

  .mt-sm-8,
  .my-sm-8 {
    margin-top: 7.5rem !important;
  }

  .mr-sm-8,
  .mx-sm-8 {
    margin-right: 7.5rem !important;
  }

  .mb-sm-8,
  .my-sm-8 {
    margin-bottom: 7.5rem !important;
  }

  .ml-sm-8,
  .mx-sm-8 {
    margin-left: 7.5rem !important;
  }

  .m-sm-9 {
    margin: 9rem !important;
  }

  .mt-sm-9,
  .my-sm-9 {
    margin-top: 9rem !important;
  }

  .mr-sm-9,
  .mx-sm-9 {
    margin-right: 9rem !important;
  }

  .mb-sm-9,
  .my-sm-9 {
    margin-bottom: 9rem !important;
  }

  .ml-sm-9,
  .mx-sm-9 {
    margin-left: 9rem !important;
  }

  .m-sm-10 {
    margin: 10.5rem !important;
  }

  .mt-sm-10,
  .my-sm-10 {
    margin-top: 10.5rem !important;
  }

  .mr-sm-10,
  .mx-sm-10 {
    margin-right: 10.5rem !important;
  }

  .mb-sm-10,
  .my-sm-10 {
    margin-bottom: 10.5rem !important;
  }

  .ml-sm-10,
  .mx-sm-10 {
    margin-left: 10.5rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  .p-sm-25 {
    padding: 0.625rem !important;
  }

  .pt-sm-25,
  .py-sm-25 {
    padding-top: 0.625rem !important;
  }

  .pr-sm-25,
  .px-sm-25 {
    padding-right: 0.625rem !important;
  }

  .pb-sm-25,
  .py-sm-25 {
    padding-bottom: 0.625rem !important;
  }

  .pl-sm-25,
  .px-sm-25 {
    padding-left: 0.625rem !important;
  }

  .p-sm-6 {
    padding: 4.5rem !important;
  }

  .pt-sm-6,
  .py-sm-6 {
    padding-top: 4.5rem !important;
  }

  .pr-sm-6,
  .px-sm-6 {
    padding-right: 4.5rem !important;
  }

  .pb-sm-6,
  .py-sm-6 {
    padding-bottom: 4.5rem !important;
  }

  .pl-sm-6,
  .px-sm-6 {
    padding-left: 4.5rem !important;
  }

  .p-sm-7 {
    padding: 6rem !important;
  }

  .pt-sm-7,
  .py-sm-7 {
    padding-top: 6rem !important;
  }

  .pr-sm-7,
  .px-sm-7 {
    padding-right: 6rem !important;
  }

  .pb-sm-7,
  .py-sm-7 {
    padding-bottom: 6rem !important;
  }

  .pl-sm-7,
  .px-sm-7 {
    padding-left: 6rem !important;
  }

  .p-sm-8 {
    padding: 7.5rem !important;
  }

  .pt-sm-8,
  .py-sm-8 {
    padding-top: 7.5rem !important;
  }

  .pr-sm-8,
  .px-sm-8 {
    padding-right: 7.5rem !important;
  }

  .pb-sm-8,
  .py-sm-8 {
    padding-bottom: 7.5rem !important;
  }

  .pl-sm-8,
  .px-sm-8 {
    padding-left: 7.5rem !important;
  }

  .p-sm-9 {
    padding: 9rem !important;
  }

  .pt-sm-9,
  .py-sm-9 {
    padding-top: 9rem !important;
  }

  .pr-sm-9,
  .px-sm-9 {
    padding-right: 9rem !important;
  }

  .pb-sm-9,
  .py-sm-9 {
    padding-bottom: 9rem !important;
  }

  .pl-sm-9,
  .px-sm-9 {
    padding-left: 9rem !important;
  }

  .p-sm-10 {
    padding: 10.5rem !important;
  }

  .pt-sm-10,
  .py-sm-10 {
    padding-top: 10.5rem !important;
  }

  .pr-sm-10,
  .px-sm-10 {
    padding-right: 10.5rem !important;
  }

  .pb-sm-10,
  .py-sm-10 {
    padding-bottom: 10.5rem !important;
  }

  .pl-sm-10,
  .px-sm-10 {
    padding-left: 10.5rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-n25 {
    margin: -0.625rem !important;
  }

  .mt-sm-n25,
  .my-sm-n25 {
    margin-top: -0.625rem !important;
  }

  .mr-sm-n25,
  .mx-sm-n25 {
    margin-right: -0.625rem !important;
  }

  .mb-sm-n25,
  .my-sm-n25 {
    margin-bottom: -0.625rem !important;
  }

  .ml-sm-n25,
  .mx-sm-n25 {
    margin-left: -0.625rem !important;
  }

  .m-sm-n6 {
    margin: -4.5rem !important;
  }

  .mt-sm-n6,
  .my-sm-n6 {
    margin-top: -4.5rem !important;
  }

  .mr-sm-n6,
  .mx-sm-n6 {
    margin-right: -4.5rem !important;
  }

  .mb-sm-n6,
  .my-sm-n6 {
    margin-bottom: -4.5rem !important;
  }

  .ml-sm-n6,
  .mx-sm-n6 {
    margin-left: -4.5rem !important;
  }

  .m-sm-n7 {
    margin: -6rem !important;
  }

  .mt-sm-n7,
  .my-sm-n7 {
    margin-top: -6rem !important;
  }

  .mr-sm-n7,
  .mx-sm-n7 {
    margin-right: -6rem !important;
  }

  .mb-sm-n7,
  .my-sm-n7 {
    margin-bottom: -6rem !important;
  }

  .ml-sm-n7,
  .mx-sm-n7 {
    margin-left: -6rem !important;
  }

  .m-sm-n8 {
    margin: -7.5rem !important;
  }

  .mt-sm-n8,
  .my-sm-n8 {
    margin-top: -7.5rem !important;
  }

  .mr-sm-n8,
  .mx-sm-n8 {
    margin-right: -7.5rem !important;
  }

  .mb-sm-n8,
  .my-sm-n8 {
    margin-bottom: -7.5rem !important;
  }

  .ml-sm-n8,
  .mx-sm-n8 {
    margin-left: -7.5rem !important;
  }

  .m-sm-n9 {
    margin: -9rem !important;
  }

  .mt-sm-n9,
  .my-sm-n9 {
    margin-top: -9rem !important;
  }

  .mr-sm-n9,
  .mx-sm-n9 {
    margin-right: -9rem !important;
  }

  .mb-sm-n9,
  .my-sm-n9 {
    margin-bottom: -9rem !important;
  }

  .ml-sm-n9,
  .mx-sm-n9 {
    margin-left: -9rem !important;
  }

  .m-sm-n10 {
    margin: -10.5rem !important;
  }

  .mt-sm-n10,
  .my-sm-n10 {
    margin-top: -10.5rem !important;
  }

  .mr-sm-n10,
  .mx-sm-n10 {
    margin-right: -10.5rem !important;
  }

  .mb-sm-n10,
  .my-sm-n10 {
    margin-bottom: -10.5rem !important;
  }

  .ml-sm-n10,
  .mx-sm-n10 {
    margin-left: -10.5rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  .m-md-25 {
    margin: 0.625rem !important;
  }

  .mt-md-25,
  .my-md-25 {
    margin-top: 0.625rem !important;
  }

  .mr-md-25,
  .mx-md-25 {
    margin-right: 0.625rem !important;
  }

  .mb-md-25,
  .my-md-25 {
    margin-bottom: 0.625rem !important;
  }

  .ml-md-25,
  .mx-md-25 {
    margin-left: 0.625rem !important;
  }

  .m-md-6 {
    margin: 4.5rem !important;
  }

  .mt-md-6,
  .my-md-6 {
    margin-top: 4.5rem !important;
  }

  .mr-md-6,
  .mx-md-6 {
    margin-right: 4.5rem !important;
  }

  .mb-md-6,
  .my-md-6 {
    margin-bottom: 4.5rem !important;
  }

  .ml-md-6,
  .mx-md-6 {
    margin-left: 4.5rem !important;
  }

  .m-md-7 {
    margin: 6rem !important;
  }

  .mt-md-7,
  .my-md-7 {
    margin-top: 6rem !important;
  }

  .mr-md-7,
  .mx-md-7 {
    margin-right: 6rem !important;
  }

  .mb-md-7,
  .my-md-7 {
    margin-bottom: 6rem !important;
  }

  .ml-md-7,
  .mx-md-7 {
    margin-left: 6rem !important;
  }

  .m-md-8 {
    margin: 7.5rem !important;
  }

  .mt-md-8,
  .my-md-8 {
    margin-top: 7.5rem !important;
  }

  .mr-md-8,
  .mx-md-8 {
    margin-right: 7.5rem !important;
  }

  .mb-md-8,
  .my-md-8 {
    margin-bottom: 7.5rem !important;
  }

  .ml-md-8,
  .mx-md-8 {
    margin-left: 7.5rem !important;
  }

  .m-md-9 {
    margin: 9rem !important;
  }

  .mt-md-9,
  .my-md-9 {
    margin-top: 9rem !important;
  }

  .mr-md-9,
  .mx-md-9 {
    margin-right: 9rem !important;
  }

  .mb-md-9,
  .my-md-9 {
    margin-bottom: 9rem !important;
  }

  .ml-md-9,
  .mx-md-9 {
    margin-left: 9rem !important;
  }

  .m-md-10 {
    margin: 10.5rem !important;
  }

  .mt-md-10,
  .my-md-10 {
    margin-top: 10.5rem !important;
  }

  .mr-md-10,
  .mx-md-10 {
    margin-right: 10.5rem !important;
  }

  .mb-md-10,
  .my-md-10 {
    margin-bottom: 10.5rem !important;
  }

  .ml-md-10,
  .mx-md-10 {
    margin-left: 10.5rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  .p-md-25 {
    padding: 0.625rem !important;
  }

  .pt-md-25,
  .py-md-25 {
    padding-top: 0.625rem !important;
  }

  .pr-md-25,
  .px-md-25 {
    padding-right: 0.625rem !important;
  }

  .pb-md-25,
  .py-md-25 {
    padding-bottom: 0.625rem !important;
  }

  .pl-md-25,
  .px-md-25 {
    padding-left: 0.625rem !important;
  }

  .p-md-6 {
    padding: 4.5rem !important;
  }

  .pt-md-6,
  .py-md-6 {
    padding-top: 4.5rem !important;
  }

  .pr-md-6,
  .px-md-6 {
    padding-right: 4.5rem !important;
  }

  .pb-md-6,
  .py-md-6 {
    padding-bottom: 4.5rem !important;
  }

  .pl-md-6,
  .px-md-6 {
    padding-left: 4.5rem !important;
  }

  .p-md-7 {
    padding: 6rem !important;
  }

  .pt-md-7,
  .py-md-7 {
    padding-top: 6rem !important;
  }

  .pr-md-7,
  .px-md-7 {
    padding-right: 6rem !important;
  }

  .pb-md-7,
  .py-md-7 {
    padding-bottom: 6rem !important;
  }

  .pl-md-7,
  .px-md-7 {
    padding-left: 6rem !important;
  }

  .p-md-8 {
    padding: 7.5rem !important;
  }

  .pt-md-8,
  .py-md-8 {
    padding-top: 7.5rem !important;
  }

  .pr-md-8,
  .px-md-8 {
    padding-right: 7.5rem !important;
  }

  .pb-md-8,
  .py-md-8 {
    padding-bottom: 7.5rem !important;
  }

  .pl-md-8,
  .px-md-8 {
    padding-left: 7.5rem !important;
  }

  .p-md-9 {
    padding: 9rem !important;
  }

  .pt-md-9,
  .py-md-9 {
    padding-top: 9rem !important;
  }

  .pr-md-9,
  .px-md-9 {
    padding-right: 9rem !important;
  }

  .pb-md-9,
  .py-md-9 {
    padding-bottom: 9rem !important;
  }

  .pl-md-9,
  .px-md-9 {
    padding-left: 9rem !important;
  }

  .p-md-10 {
    padding: 10.5rem !important;
  }

  .pt-md-10,
  .py-md-10 {
    padding-top: 10.5rem !important;
  }

  .pr-md-10,
  .px-md-10 {
    padding-right: 10.5rem !important;
  }

  .pb-md-10,
  .py-md-10 {
    padding-bottom: 10.5rem !important;
  }

  .pl-md-10,
  .px-md-10 {
    padding-left: 10.5rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-n25 {
    margin: -0.625rem !important;
  }

  .mt-md-n25,
  .my-md-n25 {
    margin-top: -0.625rem !important;
  }

  .mr-md-n25,
  .mx-md-n25 {
    margin-right: -0.625rem !important;
  }

  .mb-md-n25,
  .my-md-n25 {
    margin-bottom: -0.625rem !important;
  }

  .ml-md-n25,
  .mx-md-n25 {
    margin-left: -0.625rem !important;
  }

  .m-md-n6 {
    margin: -4.5rem !important;
  }

  .mt-md-n6,
  .my-md-n6 {
    margin-top: -4.5rem !important;
  }

  .mr-md-n6,
  .mx-md-n6 {
    margin-right: -4.5rem !important;
  }

  .mb-md-n6,
  .my-md-n6 {
    margin-bottom: -4.5rem !important;
  }

  .ml-md-n6,
  .mx-md-n6 {
    margin-left: -4.5rem !important;
  }

  .m-md-n7 {
    margin: -6rem !important;
  }

  .mt-md-n7,
  .my-md-n7 {
    margin-top: -6rem !important;
  }

  .mr-md-n7,
  .mx-md-n7 {
    margin-right: -6rem !important;
  }

  .mb-md-n7,
  .my-md-n7 {
    margin-bottom: -6rem !important;
  }

  .ml-md-n7,
  .mx-md-n7 {
    margin-left: -6rem !important;
  }

  .m-md-n8 {
    margin: -7.5rem !important;
  }

  .mt-md-n8,
  .my-md-n8 {
    margin-top: -7.5rem !important;
  }

  .mr-md-n8,
  .mx-md-n8 {
    margin-right: -7.5rem !important;
  }

  .mb-md-n8,
  .my-md-n8 {
    margin-bottom: -7.5rem !important;
  }

  .ml-md-n8,
  .mx-md-n8 {
    margin-left: -7.5rem !important;
  }

  .m-md-n9 {
    margin: -9rem !important;
  }

  .mt-md-n9,
  .my-md-n9 {
    margin-top: -9rem !important;
  }

  .mr-md-n9,
  .mx-md-n9 {
    margin-right: -9rem !important;
  }

  .mb-md-n9,
  .my-md-n9 {
    margin-bottom: -9rem !important;
  }

  .ml-md-n9,
  .mx-md-n9 {
    margin-left: -9rem !important;
  }

  .m-md-n10 {
    margin: -10.5rem !important;
  }

  .mt-md-n10,
  .my-md-n10 {
    margin-top: -10.5rem !important;
  }

  .mr-md-n10,
  .mx-md-n10 {
    margin-right: -10.5rem !important;
  }

  .mb-md-n10,
  .my-md-n10 {
    margin-bottom: -10.5rem !important;
  }

  .ml-md-n10,
  .mx-md-n10 {
    margin-left: -10.5rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  .m-lg-25 {
    margin: 0.625rem !important;
  }

  .mt-lg-25,
  .my-lg-25 {
    margin-top: 0.625rem !important;
  }

  .mr-lg-25,
  .mx-lg-25 {
    margin-right: 0.625rem !important;
  }

  .mb-lg-25,
  .my-lg-25 {
    margin-bottom: 0.625rem !important;
  }

  .ml-lg-25,
  .mx-lg-25 {
    margin-left: 0.625rem !important;
  }

  .m-lg-6 {
    margin: 4.5rem !important;
  }

  .mt-lg-6,
  .my-lg-6 {
    margin-top: 4.5rem !important;
  }

  .mr-lg-6,
  .mx-lg-6 {
    margin-right: 4.5rem !important;
  }

  .mb-lg-6,
  .my-lg-6 {
    margin-bottom: 4.5rem !important;
  }

  .ml-lg-6,
  .mx-lg-6 {
    margin-left: 4.5rem !important;
  }

  .m-lg-7 {
    margin: 6rem !important;
  }

  .mt-lg-7,
  .my-lg-7 {
    margin-top: 6rem !important;
  }

  .mr-lg-7,
  .mx-lg-7 {
    margin-right: 6rem !important;
  }

  .mb-lg-7,
  .my-lg-7 {
    margin-bottom: 6rem !important;
  }

  .ml-lg-7,
  .mx-lg-7 {
    margin-left: 6rem !important;
  }

  .m-lg-8 {
    margin: 7.5rem !important;
  }

  .mt-lg-8,
  .my-lg-8 {
    margin-top: 7.5rem !important;
  }

  .mr-lg-8,
  .mx-lg-8 {
    margin-right: 7.5rem !important;
  }

  .mb-lg-8,
  .my-lg-8 {
    margin-bottom: 7.5rem !important;
  }

  .ml-lg-8,
  .mx-lg-8 {
    margin-left: 7.5rem !important;
  }

  .m-lg-9 {
    margin: 9rem !important;
  }

  .mt-lg-9,
  .my-lg-9 {
    margin-top: 9rem !important;
  }

  .mr-lg-9,
  .mx-lg-9 {
    margin-right: 9rem !important;
  }

  .mb-lg-9,
  .my-lg-9 {
    margin-bottom: 9rem !important;
  }

  .ml-lg-9,
  .mx-lg-9 {
    margin-left: 9rem !important;
  }

  .m-lg-10 {
    margin: 10.5rem !important;
  }

  .mt-lg-10,
  .my-lg-10 {
    margin-top: 10.5rem !important;
  }

  .mr-lg-10,
  .mx-lg-10 {
    margin-right: 10.5rem !important;
  }

  .mb-lg-10,
  .my-lg-10 {
    margin-bottom: 10.5rem !important;
  }

  .ml-lg-10,
  .mx-lg-10 {
    margin-left: 10.5rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  .p-lg-25 {
    padding: 0.625rem !important;
  }

  .pt-lg-25,
  .py-lg-25 {
    padding-top: 0.625rem !important;
  }

  .pr-lg-25,
  .px-lg-25 {
    padding-right: 0.625rem !important;
  }

  .pb-lg-25,
  .py-lg-25 {
    padding-bottom: 0.625rem !important;
  }

  .pl-lg-25,
  .px-lg-25 {
    padding-left: 0.625rem !important;
  }

  .p-lg-6 {
    padding: 4.5rem !important;
  }

  .pt-lg-6,
  .py-lg-6 {
    padding-top: 4.5rem !important;
  }

  .pr-lg-6,
  .px-lg-6 {
    padding-right: 4.5rem !important;
  }

  .pb-lg-6,
  .py-lg-6 {
    padding-bottom: 4.5rem !important;
  }

  .pl-lg-6,
  .px-lg-6 {
    padding-left: 4.5rem !important;
  }

  .p-lg-7 {
    padding: 6rem !important;
  }

  .pt-lg-7,
  .py-lg-7 {
    padding-top: 6rem !important;
  }

  .pr-lg-7,
  .px-lg-7 {
    padding-right: 6rem !important;
  }

  .pb-lg-7,
  .py-lg-7 {
    padding-bottom: 6rem !important;
  }

  .pl-lg-7,
  .px-lg-7 {
    padding-left: 6rem !important;
  }

  .p-lg-8 {
    padding: 7.5rem !important;
  }

  .pt-lg-8,
  .py-lg-8 {
    padding-top: 7.5rem !important;
  }

  .pr-lg-8,
  .px-lg-8 {
    padding-right: 7.5rem !important;
  }

  .pb-lg-8,
  .py-lg-8 {
    padding-bottom: 7.5rem !important;
  }

  .pl-lg-8,
  .px-lg-8 {
    padding-left: 7.5rem !important;
  }

  .p-lg-9 {
    padding: 9rem !important;
  }

  .pt-lg-9,
  .py-lg-9 {
    padding-top: 9rem !important;
  }

  .pr-lg-9,
  .px-lg-9 {
    padding-right: 9rem !important;
  }

  .pb-lg-9,
  .py-lg-9 {
    padding-bottom: 9rem !important;
  }

  .pl-lg-9,
  .px-lg-9 {
    padding-left: 9rem !important;
  }

  .p-lg-10 {
    padding: 10.5rem !important;
  }

  .pt-lg-10,
  .py-lg-10 {
    padding-top: 10.5rem !important;
  }

  .pr-lg-10,
  .px-lg-10 {
    padding-right: 10.5rem !important;
  }

  .pb-lg-10,
  .py-lg-10 {
    padding-bottom: 10.5rem !important;
  }

  .pl-lg-10,
  .px-lg-10 {
    padding-left: 10.5rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-n25 {
    margin: -0.625rem !important;
  }

  .mt-lg-n25,
  .my-lg-n25 {
    margin-top: -0.625rem !important;
  }

  .mr-lg-n25,
  .mx-lg-n25 {
    margin-right: -0.625rem !important;
  }

  .mb-lg-n25,
  .my-lg-n25 {
    margin-bottom: -0.625rem !important;
  }

  .ml-lg-n25,
  .mx-lg-n25 {
    margin-left: -0.625rem !important;
  }

  .m-lg-n6 {
    margin: -4.5rem !important;
  }

  .mt-lg-n6,
  .my-lg-n6 {
    margin-top: -4.5rem !important;
  }

  .mr-lg-n6,
  .mx-lg-n6 {
    margin-right: -4.5rem !important;
  }

  .mb-lg-n6,
  .my-lg-n6 {
    margin-bottom: -4.5rem !important;
  }

  .ml-lg-n6,
  .mx-lg-n6 {
    margin-left: -4.5rem !important;
  }

  .m-lg-n7 {
    margin: -6rem !important;
  }

  .mt-lg-n7,
  .my-lg-n7 {
    margin-top: -6rem !important;
  }

  .mr-lg-n7,
  .mx-lg-n7 {
    margin-right: -6rem !important;
  }

  .mb-lg-n7,
  .my-lg-n7 {
    margin-bottom: -6rem !important;
  }

  .ml-lg-n7,
  .mx-lg-n7 {
    margin-left: -6rem !important;
  }

  .m-lg-n8 {
    margin: -7.5rem !important;
  }

  .mt-lg-n8,
  .my-lg-n8 {
    margin-top: -7.5rem !important;
  }

  .mr-lg-n8,
  .mx-lg-n8 {
    margin-right: -7.5rem !important;
  }

  .mb-lg-n8,
  .my-lg-n8 {
    margin-bottom: -7.5rem !important;
  }

  .ml-lg-n8,
  .mx-lg-n8 {
    margin-left: -7.5rem !important;
  }

  .m-lg-n9 {
    margin: -9rem !important;
  }

  .mt-lg-n9,
  .my-lg-n9 {
    margin-top: -9rem !important;
  }

  .mr-lg-n9,
  .mx-lg-n9 {
    margin-right: -9rem !important;
  }

  .mb-lg-n9,
  .my-lg-n9 {
    margin-bottom: -9rem !important;
  }

  .ml-lg-n9,
  .mx-lg-n9 {
    margin-left: -9rem !important;
  }

  .m-lg-n10 {
    margin: -10.5rem !important;
  }

  .mt-lg-n10,
  .my-lg-n10 {
    margin-top: -10.5rem !important;
  }

  .mr-lg-n10,
  .mx-lg-n10 {
    margin-right: -10.5rem !important;
  }

  .mb-lg-n10,
  .my-lg-n10 {
    margin-bottom: -10.5rem !important;
  }

  .ml-lg-n10,
  .mx-lg-n10 {
    margin-left: -10.5rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  .m-xl-25 {
    margin: 0.625rem !important;
  }

  .mt-xl-25,
  .my-xl-25 {
    margin-top: 0.625rem !important;
  }

  .mr-xl-25,
  .mx-xl-25 {
    margin-right: 0.625rem !important;
  }

  .mb-xl-25,
  .my-xl-25 {
    margin-bottom: 0.625rem !important;
  }

  .ml-xl-25,
  .mx-xl-25 {
    margin-left: 0.625rem !important;
  }

  .m-xl-6 {
    margin: 4.5rem !important;
  }

  .mt-xl-6,
  .my-xl-6 {
    margin-top: 4.5rem !important;
  }

  .mr-xl-6,
  .mx-xl-6 {
    margin-right: 4.5rem !important;
  }

  .mb-xl-6,
  .my-xl-6 {
    margin-bottom: 4.5rem !important;
  }

  .ml-xl-6,
  .mx-xl-6 {
    margin-left: 4.5rem !important;
  }

  .m-xl-7 {
    margin: 6rem !important;
  }

  .mt-xl-7,
  .my-xl-7 {
    margin-top: 6rem !important;
  }

  .mr-xl-7,
  .mx-xl-7 {
    margin-right: 6rem !important;
  }

  .mb-xl-7,
  .my-xl-7 {
    margin-bottom: 6rem !important;
  }

  .ml-xl-7,
  .mx-xl-7 {
    margin-left: 6rem !important;
  }

  .m-xl-8 {
    margin: 7.5rem !important;
  }

  .mt-xl-8,
  .my-xl-8 {
    margin-top: 7.5rem !important;
  }

  .mr-xl-8,
  .mx-xl-8 {
    margin-right: 7.5rem !important;
  }

  .mb-xl-8,
  .my-xl-8 {
    margin-bottom: 7.5rem !important;
  }

  .ml-xl-8,
  .mx-xl-8 {
    margin-left: 7.5rem !important;
  }

  .m-xl-9 {
    margin: 9rem !important;
  }

  .mt-xl-9,
  .my-xl-9 {
    margin-top: 9rem !important;
  }

  .mr-xl-9,
  .mx-xl-9 {
    margin-right: 9rem !important;
  }

  .mb-xl-9,
  .my-xl-9 {
    margin-bottom: 9rem !important;
  }

  .ml-xl-9,
  .mx-xl-9 {
    margin-left: 9rem !important;
  }

  .m-xl-10 {
    margin: 10.5rem !important;
  }

  .mt-xl-10,
  .my-xl-10 {
    margin-top: 10.5rem !important;
  }

  .mr-xl-10,
  .mx-xl-10 {
    margin-right: 10.5rem !important;
  }

  .mb-xl-10,
  .my-xl-10 {
    margin-bottom: 10.5rem !important;
  }

  .ml-xl-10,
  .mx-xl-10 {
    margin-left: 10.5rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  .p-xl-25 {
    padding: 0.625rem !important;
  }

  .pt-xl-25,
  .py-xl-25 {
    padding-top: 0.625rem !important;
  }

  .pr-xl-25,
  .px-xl-25 {
    padding-right: 0.625rem !important;
  }

  .pb-xl-25,
  .py-xl-25 {
    padding-bottom: 0.625rem !important;
  }

  .pl-xl-25,
  .px-xl-25 {
    padding-left: 0.625rem !important;
  }

  .p-xl-6 {
    padding: 4.5rem !important;
  }

  .pt-xl-6,
  .py-xl-6 {
    padding-top: 4.5rem !important;
  }

  .pr-xl-6,
  .px-xl-6 {
    padding-right: 4.5rem !important;
  }

  .pb-xl-6,
  .py-xl-6 {
    padding-bottom: 4.5rem !important;
  }

  .pl-xl-6,
  .px-xl-6 {
    padding-left: 4.5rem !important;
  }

  .p-xl-7 {
    padding: 6rem !important;
  }

  .pt-xl-7,
  .py-xl-7 {
    padding-top: 6rem !important;
  }

  .pr-xl-7,
  .px-xl-7 {
    padding-right: 6rem !important;
  }

  .pb-xl-7,
  .py-xl-7 {
    padding-bottom: 6rem !important;
  }

  .pl-xl-7,
  .px-xl-7 {
    padding-left: 6rem !important;
  }

  .p-xl-8 {
    padding: 7.5rem !important;
  }

  .pt-xl-8,
  .py-xl-8 {
    padding-top: 7.5rem !important;
  }

  .pr-xl-8,
  .px-xl-8 {
    padding-right: 7.5rem !important;
  }

  .pb-xl-8,
  .py-xl-8 {
    padding-bottom: 7.5rem !important;
  }

  .pl-xl-8,
  .px-xl-8 {
    padding-left: 7.5rem !important;
  }

  .p-xl-9 {
    padding: 9rem !important;
  }

  .pt-xl-9,
  .py-xl-9 {
    padding-top: 9rem !important;
  }

  .pr-xl-9,
  .px-xl-9 {
    padding-right: 9rem !important;
  }

  .pb-xl-9,
  .py-xl-9 {
    padding-bottom: 9rem !important;
  }

  .pl-xl-9,
  .px-xl-9 {
    padding-left: 9rem !important;
  }

  .p-xl-10 {
    padding: 10.5rem !important;
  }

  .pt-xl-10,
  .py-xl-10 {
    padding-top: 10.5rem !important;
  }

  .pr-xl-10,
  .px-xl-10 {
    padding-right: 10.5rem !important;
  }

  .pb-xl-10,
  .py-xl-10 {
    padding-bottom: 10.5rem !important;
  }

  .pl-xl-10,
  .px-xl-10 {
    padding-left: 10.5rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-n25 {
    margin: -0.625rem !important;
  }

  .mt-xl-n25,
  .my-xl-n25 {
    margin-top: -0.625rem !important;
  }

  .mr-xl-n25,
  .mx-xl-n25 {
    margin-right: -0.625rem !important;
  }

  .mb-xl-n25,
  .my-xl-n25 {
    margin-bottom: -0.625rem !important;
  }

  .ml-xl-n25,
  .mx-xl-n25 {
    margin-left: -0.625rem !important;
  }

  .m-xl-n6 {
    margin: -4.5rem !important;
  }

  .mt-xl-n6,
  .my-xl-n6 {
    margin-top: -4.5rem !important;
  }

  .mr-xl-n6,
  .mx-xl-n6 {
    margin-right: -4.5rem !important;
  }

  .mb-xl-n6,
  .my-xl-n6 {
    margin-bottom: -4.5rem !important;
  }

  .ml-xl-n6,
  .mx-xl-n6 {
    margin-left: -4.5rem !important;
  }

  .m-xl-n7 {
    margin: -6rem !important;
  }

  .mt-xl-n7,
  .my-xl-n7 {
    margin-top: -6rem !important;
  }

  .mr-xl-n7,
  .mx-xl-n7 {
    margin-right: -6rem !important;
  }

  .mb-xl-n7,
  .my-xl-n7 {
    margin-bottom: -6rem !important;
  }

  .ml-xl-n7,
  .mx-xl-n7 {
    margin-left: -6rem !important;
  }

  .m-xl-n8 {
    margin: -7.5rem !important;
  }

  .mt-xl-n8,
  .my-xl-n8 {
    margin-top: -7.5rem !important;
  }

  .mr-xl-n8,
  .mx-xl-n8 {
    margin-right: -7.5rem !important;
  }

  .mb-xl-n8,
  .my-xl-n8 {
    margin-bottom: -7.5rem !important;
  }

  .ml-xl-n8,
  .mx-xl-n8 {
    margin-left: -7.5rem !important;
  }

  .m-xl-n9 {
    margin: -9rem !important;
  }

  .mt-xl-n9,
  .my-xl-n9 {
    margin-top: -9rem !important;
  }

  .mr-xl-n9,
  .mx-xl-n9 {
    margin-right: -9rem !important;
  }

  .mb-xl-n9,
  .my-xl-n9 {
    margin-bottom: -9rem !important;
  }

  .ml-xl-n9,
  .mx-xl-n9 {
    margin-left: -9rem !important;
  }

  .m-xl-n10 {
    margin: -10.5rem !important;
  }

  .mt-xl-n10,
  .my-xl-n10 {
    margin-top: -10.5rem !important;
  }

  .mr-xl-n10,
  .mx-xl-n10 {
    margin-right: -10.5rem !important;
  }

  .mb-xl-n10,
  .my-xl-n10 {
    margin-bottom: -10.5rem !important;
  }

  .ml-xl-n10,
  .mx-xl-n10 {
    margin-left: -10.5rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1400px) {
  .m-xll-0 {
    margin: 0 !important;
  }

  .mt-xll-0,
  .my-xll-0 {
    margin-top: 0 !important;
  }

  .mr-xll-0,
  .mx-xll-0 {
    margin-right: 0 !important;
  }

  .mb-xll-0,
  .my-xll-0 {
    margin-bottom: 0 !important;
  }

  .ml-xll-0,
  .mx-xll-0 {
    margin-left: 0 !important;
  }

  .m-xll-1 {
    margin: 0.25rem !important;
  }

  .mt-xll-1,
  .my-xll-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xll-1,
  .mx-xll-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xll-1,
  .my-xll-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xll-1,
  .mx-xll-1 {
    margin-left: 0.25rem !important;
  }

  .m-xll-2 {
    margin: 0.5rem !important;
  }

  .mt-xll-2,
  .my-xll-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xll-2,
  .mx-xll-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xll-2,
  .my-xll-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xll-2,
  .mx-xll-2 {
    margin-left: 0.5rem !important;
  }

  .m-xll-3 {
    margin: 1rem !important;
  }

  .mt-xll-3,
  .my-xll-3 {
    margin-top: 1rem !important;
  }

  .mr-xll-3,
  .mx-xll-3 {
    margin-right: 1rem !important;
  }

  .mb-xll-3,
  .my-xll-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xll-3,
  .mx-xll-3 {
    margin-left: 1rem !important;
  }

  .m-xll-4 {
    margin: 1.5rem !important;
  }

  .mt-xll-4,
  .my-xll-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xll-4,
  .mx-xll-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xll-4,
  .my-xll-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xll-4,
  .mx-xll-4 {
    margin-left: 1.5rem !important;
  }

  .m-xll-5 {
    margin: 3rem !important;
  }

  .mt-xll-5,
  .my-xll-5 {
    margin-top: 3rem !important;
  }

  .mr-xll-5,
  .mx-xll-5 {
    margin-right: 3rem !important;
  }

  .mb-xll-5,
  .my-xll-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xll-5,
  .mx-xll-5 {
    margin-left: 3rem !important;
  }

  .m-xll-25 {
    margin: 0.625rem !important;
  }

  .mt-xll-25,
  .my-xll-25 {
    margin-top: 0.625rem !important;
  }

  .mr-xll-25,
  .mx-xll-25 {
    margin-right: 0.625rem !important;
  }

  .mb-xll-25,
  .my-xll-25 {
    margin-bottom: 0.625rem !important;
  }

  .ml-xll-25,
  .mx-xll-25 {
    margin-left: 0.625rem !important;
  }

  .m-xll-6 {
    margin: 4.5rem !important;
  }

  .mt-xll-6,
  .my-xll-6 {
    margin-top: 4.5rem !important;
  }

  .mr-xll-6,
  .mx-xll-6 {
    margin-right: 4.5rem !important;
  }

  .mb-xll-6,
  .my-xll-6 {
    margin-bottom: 4.5rem !important;
  }

  .ml-xll-6,
  .mx-xll-6 {
    margin-left: 4.5rem !important;
  }

  .m-xll-7 {
    margin: 6rem !important;
  }

  .mt-xll-7,
  .my-xll-7 {
    margin-top: 6rem !important;
  }

  .mr-xll-7,
  .mx-xll-7 {
    margin-right: 6rem !important;
  }

  .mb-xll-7,
  .my-xll-7 {
    margin-bottom: 6rem !important;
  }

  .ml-xll-7,
  .mx-xll-7 {
    margin-left: 6rem !important;
  }

  .m-xll-8 {
    margin: 7.5rem !important;
  }

  .mt-xll-8,
  .my-xll-8 {
    margin-top: 7.5rem !important;
  }

  .mr-xll-8,
  .mx-xll-8 {
    margin-right: 7.5rem !important;
  }

  .mb-xll-8,
  .my-xll-8 {
    margin-bottom: 7.5rem !important;
  }

  .ml-xll-8,
  .mx-xll-8 {
    margin-left: 7.5rem !important;
  }

  .m-xll-9 {
    margin: 9rem !important;
  }

  .mt-xll-9,
  .my-xll-9 {
    margin-top: 9rem !important;
  }

  .mr-xll-9,
  .mx-xll-9 {
    margin-right: 9rem !important;
  }

  .mb-xll-9,
  .my-xll-9 {
    margin-bottom: 9rem !important;
  }

  .ml-xll-9,
  .mx-xll-9 {
    margin-left: 9rem !important;
  }

  .m-xll-10 {
    margin: 10.5rem !important;
  }

  .mt-xll-10,
  .my-xll-10 {
    margin-top: 10.5rem !important;
  }

  .mr-xll-10,
  .mx-xll-10 {
    margin-right: 10.5rem !important;
  }

  .mb-xll-10,
  .my-xll-10 {
    margin-bottom: 10.5rem !important;
  }

  .ml-xll-10,
  .mx-xll-10 {
    margin-left: 10.5rem !important;
  }

  .p-xll-0 {
    padding: 0 !important;
  }

  .pt-xll-0,
  .py-xll-0 {
    padding-top: 0 !important;
  }

  .pr-xll-0,
  .px-xll-0 {
    padding-right: 0 !important;
  }

  .pb-xll-0,
  .py-xll-0 {
    padding-bottom: 0 !important;
  }

  .pl-xll-0,
  .px-xll-0 {
    padding-left: 0 !important;
  }

  .p-xll-1 {
    padding: 0.25rem !important;
  }

  .pt-xll-1,
  .py-xll-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xll-1,
  .px-xll-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xll-1,
  .py-xll-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xll-1,
  .px-xll-1 {
    padding-left: 0.25rem !important;
  }

  .p-xll-2 {
    padding: 0.5rem !important;
  }

  .pt-xll-2,
  .py-xll-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xll-2,
  .px-xll-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xll-2,
  .py-xll-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xll-2,
  .px-xll-2 {
    padding-left: 0.5rem !important;
  }

  .p-xll-3 {
    padding: 1rem !important;
  }

  .pt-xll-3,
  .py-xll-3 {
    padding-top: 1rem !important;
  }

  .pr-xll-3,
  .px-xll-3 {
    padding-right: 1rem !important;
  }

  .pb-xll-3,
  .py-xll-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xll-3,
  .px-xll-3 {
    padding-left: 1rem !important;
  }

  .p-xll-4 {
    padding: 1.5rem !important;
  }

  .pt-xll-4,
  .py-xll-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xll-4,
  .px-xll-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xll-4,
  .py-xll-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xll-4,
  .px-xll-4 {
    padding-left: 1.5rem !important;
  }

  .p-xll-5 {
    padding: 3rem !important;
  }

  .pt-xll-5,
  .py-xll-5 {
    padding-top: 3rem !important;
  }

  .pr-xll-5,
  .px-xll-5 {
    padding-right: 3rem !important;
  }

  .pb-xll-5,
  .py-xll-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xll-5,
  .px-xll-5 {
    padding-left: 3rem !important;
  }

  .p-xll-25 {
    padding: 0.625rem !important;
  }

  .pt-xll-25,
  .py-xll-25 {
    padding-top: 0.625rem !important;
  }

  .pr-xll-25,
  .px-xll-25 {
    padding-right: 0.625rem !important;
  }

  .pb-xll-25,
  .py-xll-25 {
    padding-bottom: 0.625rem !important;
  }

  .pl-xll-25,
  .px-xll-25 {
    padding-left: 0.625rem !important;
  }

  .p-xll-6 {
    padding: 4.5rem !important;
  }

  .pt-xll-6,
  .py-xll-6 {
    padding-top: 4.5rem !important;
  }

  .pr-xll-6,
  .px-xll-6 {
    padding-right: 4.5rem !important;
  }

  .pb-xll-6,
  .py-xll-6 {
    padding-bottom: 4.5rem !important;
  }

  .pl-xll-6,
  .px-xll-6 {
    padding-left: 4.5rem !important;
  }

  .p-xll-7 {
    padding: 6rem !important;
  }

  .pt-xll-7,
  .py-xll-7 {
    padding-top: 6rem !important;
  }

  .pr-xll-7,
  .px-xll-7 {
    padding-right: 6rem !important;
  }

  .pb-xll-7,
  .py-xll-7 {
    padding-bottom: 6rem !important;
  }

  .pl-xll-7,
  .px-xll-7 {
    padding-left: 6rem !important;
  }

  .p-xll-8 {
    padding: 7.5rem !important;
  }

  .pt-xll-8,
  .py-xll-8 {
    padding-top: 7.5rem !important;
  }

  .pr-xll-8,
  .px-xll-8 {
    padding-right: 7.5rem !important;
  }

  .pb-xll-8,
  .py-xll-8 {
    padding-bottom: 7.5rem !important;
  }

  .pl-xll-8,
  .px-xll-8 {
    padding-left: 7.5rem !important;
  }

  .p-xll-9 {
    padding: 9rem !important;
  }

  .pt-xll-9,
  .py-xll-9 {
    padding-top: 9rem !important;
  }

  .pr-xll-9,
  .px-xll-9 {
    padding-right: 9rem !important;
  }

  .pb-xll-9,
  .py-xll-9 {
    padding-bottom: 9rem !important;
  }

  .pl-xll-9,
  .px-xll-9 {
    padding-left: 9rem !important;
  }

  .p-xll-10 {
    padding: 10.5rem !important;
  }

  .pt-xll-10,
  .py-xll-10 {
    padding-top: 10.5rem !important;
  }

  .pr-xll-10,
  .px-xll-10 {
    padding-right: 10.5rem !important;
  }

  .pb-xll-10,
  .py-xll-10 {
    padding-bottom: 10.5rem !important;
  }

  .pl-xll-10,
  .px-xll-10 {
    padding-left: 10.5rem !important;
  }

  .m-xll-n1 {
    margin: -0.25rem !important;
  }

  .mt-xll-n1,
  .my-xll-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xll-n1,
  .mx-xll-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xll-n1,
  .my-xll-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xll-n1,
  .mx-xll-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xll-n2 {
    margin: -0.5rem !important;
  }

  .mt-xll-n2,
  .my-xll-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xll-n2,
  .mx-xll-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xll-n2,
  .my-xll-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xll-n2,
  .mx-xll-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xll-n3 {
    margin: -1rem !important;
  }

  .mt-xll-n3,
  .my-xll-n3 {
    margin-top: -1rem !important;
  }

  .mr-xll-n3,
  .mx-xll-n3 {
    margin-right: -1rem !important;
  }

  .mb-xll-n3,
  .my-xll-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xll-n3,
  .mx-xll-n3 {
    margin-left: -1rem !important;
  }

  .m-xll-n4 {
    margin: -1.5rem !important;
  }

  .mt-xll-n4,
  .my-xll-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xll-n4,
  .mx-xll-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xll-n4,
  .my-xll-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xll-n4,
  .mx-xll-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xll-n5 {
    margin: -3rem !important;
  }

  .mt-xll-n5,
  .my-xll-n5 {
    margin-top: -3rem !important;
  }

  .mr-xll-n5,
  .mx-xll-n5 {
    margin-right: -3rem !important;
  }

  .mb-xll-n5,
  .my-xll-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xll-n5,
  .mx-xll-n5 {
    margin-left: -3rem !important;
  }

  .m-xll-n25 {
    margin: -0.625rem !important;
  }

  .mt-xll-n25,
  .my-xll-n25 {
    margin-top: -0.625rem !important;
  }

  .mr-xll-n25,
  .mx-xll-n25 {
    margin-right: -0.625rem !important;
  }

  .mb-xll-n25,
  .my-xll-n25 {
    margin-bottom: -0.625rem !important;
  }

  .ml-xll-n25,
  .mx-xll-n25 {
    margin-left: -0.625rem !important;
  }

  .m-xll-n6 {
    margin: -4.5rem !important;
  }

  .mt-xll-n6,
  .my-xll-n6 {
    margin-top: -4.5rem !important;
  }

  .mr-xll-n6,
  .mx-xll-n6 {
    margin-right: -4.5rem !important;
  }

  .mb-xll-n6,
  .my-xll-n6 {
    margin-bottom: -4.5rem !important;
  }

  .ml-xll-n6,
  .mx-xll-n6 {
    margin-left: -4.5rem !important;
  }

  .m-xll-n7 {
    margin: -6rem !important;
  }

  .mt-xll-n7,
  .my-xll-n7 {
    margin-top: -6rem !important;
  }

  .mr-xll-n7,
  .mx-xll-n7 {
    margin-right: -6rem !important;
  }

  .mb-xll-n7,
  .my-xll-n7 {
    margin-bottom: -6rem !important;
  }

  .ml-xll-n7,
  .mx-xll-n7 {
    margin-left: -6rem !important;
  }

  .m-xll-n8 {
    margin: -7.5rem !important;
  }

  .mt-xll-n8,
  .my-xll-n8 {
    margin-top: -7.5rem !important;
  }

  .mr-xll-n8,
  .mx-xll-n8 {
    margin-right: -7.5rem !important;
  }

  .mb-xll-n8,
  .my-xll-n8 {
    margin-bottom: -7.5rem !important;
  }

  .ml-xll-n8,
  .mx-xll-n8 {
    margin-left: -7.5rem !important;
  }

  .m-xll-n9 {
    margin: -9rem !important;
  }

  .mt-xll-n9,
  .my-xll-n9 {
    margin-top: -9rem !important;
  }

  .mr-xll-n9,
  .mx-xll-n9 {
    margin-right: -9rem !important;
  }

  .mb-xll-n9,
  .my-xll-n9 {
    margin-bottom: -9rem !important;
  }

  .ml-xll-n9,
  .mx-xll-n9 {
    margin-left: -9rem !important;
  }

  .m-xll-n10 {
    margin: -10.5rem !important;
  }

  .mt-xll-n10,
  .my-xll-n10 {
    margin-top: -10.5rem !important;
  }

  .mr-xll-n10,
  .mx-xll-n10 {
    margin-right: -10.5rem !important;
  }

  .mb-xll-n10,
  .my-xll-n10 {
    margin-bottom: -10.5rem !important;
  }

  .ml-xll-n10,
  .mx-xll-n10 {
    margin-left: -10.5rem !important;
  }

  .m-xll-auto {
    margin: auto !important;
  }

  .mt-xll-auto,
  .my-xll-auto {
    margin-top: auto !important;
  }

  .mr-xll-auto,
  .mx-xll-auto {
    margin-right: auto !important;
  }

  .mb-xll-auto,
  .my-xll-auto {
    margin-bottom: auto !important;
  }

  .ml-xll-auto,
  .mx-xll-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1600px) {
  .m-xxl-0 {
    margin: 0 !important;
  }

  .mt-xxl-0,
  .my-xxl-0 {
    margin-top: 0 !important;
  }

  .mr-xxl-0,
  .mx-xxl-0 {
    margin-right: 0 !important;
  }

  .mb-xxl-0,
  .my-xxl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xxl-0,
  .mx-xxl-0 {
    margin-left: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .mt-xxl-1,
  .my-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xxl-1,
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xxl-1,
  .my-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xxl-1,
  .mx-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .mt-xxl-2,
  .my-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xxl-2,
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xxl-2,
  .my-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xxl-2,
  .mx-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .mt-xxl-3,
  .my-xxl-3 {
    margin-top: 1rem !important;
  }

  .mr-xxl-3,
  .mx-xxl-3 {
    margin-right: 1rem !important;
  }

  .mb-xxl-3,
  .my-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xxl-3,
  .mx-xxl-3 {
    margin-left: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .mt-xxl-4,
  .my-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xxl-4,
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xxl-4,
  .my-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xxl-4,
  .mx-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .mt-xxl-5,
  .my-xxl-5 {
    margin-top: 3rem !important;
  }

  .mr-xxl-5,
  .mx-xxl-5 {
    margin-right: 3rem !important;
  }

  .mb-xxl-5,
  .my-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xxl-5,
  .mx-xxl-5 {
    margin-left: 3rem !important;
  }

  .m-xxl-25 {
    margin: 0.625rem !important;
  }

  .mt-xxl-25,
  .my-xxl-25 {
    margin-top: 0.625rem !important;
  }

  .mr-xxl-25,
  .mx-xxl-25 {
    margin-right: 0.625rem !important;
  }

  .mb-xxl-25,
  .my-xxl-25 {
    margin-bottom: 0.625rem !important;
  }

  .ml-xxl-25,
  .mx-xxl-25 {
    margin-left: 0.625rem !important;
  }

  .m-xxl-6 {
    margin: 4.5rem !important;
  }

  .mt-xxl-6,
  .my-xxl-6 {
    margin-top: 4.5rem !important;
  }

  .mr-xxl-6,
  .mx-xxl-6 {
    margin-right: 4.5rem !important;
  }

  .mb-xxl-6,
  .my-xxl-6 {
    margin-bottom: 4.5rem !important;
  }

  .ml-xxl-6,
  .mx-xxl-6 {
    margin-left: 4.5rem !important;
  }

  .m-xxl-7 {
    margin: 6rem !important;
  }

  .mt-xxl-7,
  .my-xxl-7 {
    margin-top: 6rem !important;
  }

  .mr-xxl-7,
  .mx-xxl-7 {
    margin-right: 6rem !important;
  }

  .mb-xxl-7,
  .my-xxl-7 {
    margin-bottom: 6rem !important;
  }

  .ml-xxl-7,
  .mx-xxl-7 {
    margin-left: 6rem !important;
  }

  .m-xxl-8 {
    margin: 7.5rem !important;
  }

  .mt-xxl-8,
  .my-xxl-8 {
    margin-top: 7.5rem !important;
  }

  .mr-xxl-8,
  .mx-xxl-8 {
    margin-right: 7.5rem !important;
  }

  .mb-xxl-8,
  .my-xxl-8 {
    margin-bottom: 7.5rem !important;
  }

  .ml-xxl-8,
  .mx-xxl-8 {
    margin-left: 7.5rem !important;
  }

  .m-xxl-9 {
    margin: 9rem !important;
  }

  .mt-xxl-9,
  .my-xxl-9 {
    margin-top: 9rem !important;
  }

  .mr-xxl-9,
  .mx-xxl-9 {
    margin-right: 9rem !important;
  }

  .mb-xxl-9,
  .my-xxl-9 {
    margin-bottom: 9rem !important;
  }

  .ml-xxl-9,
  .mx-xxl-9 {
    margin-left: 9rem !important;
  }

  .m-xxl-10 {
    margin: 10.5rem !important;
  }

  .mt-xxl-10,
  .my-xxl-10 {
    margin-top: 10.5rem !important;
  }

  .mr-xxl-10,
  .mx-xxl-10 {
    margin-right: 10.5rem !important;
  }

  .mb-xxl-10,
  .my-xxl-10 {
    margin-bottom: 10.5rem !important;
  }

  .ml-xxl-10,
  .mx-xxl-10 {
    margin-left: 10.5rem !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .pt-xxl-0,
  .py-xxl-0 {
    padding-top: 0 !important;
  }

  .pr-xxl-0,
  .px-xxl-0 {
    padding-right: 0 !important;
  }

  .pb-xxl-0,
  .py-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xxl-0,
  .px-xxl-0 {
    padding-left: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .pt-xxl-1,
  .py-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xxl-1,
  .px-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xxl-1,
  .py-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xxl-1,
  .px-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .pt-xxl-2,
  .py-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xxl-2,
  .px-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xxl-2,
  .py-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xxl-2,
  .px-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .pt-xxl-3,
  .py-xxl-3 {
    padding-top: 1rem !important;
  }

  .pr-xxl-3,
  .px-xxl-3 {
    padding-right: 1rem !important;
  }

  .pb-xxl-3,
  .py-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xxl-3,
  .px-xxl-3 {
    padding-left: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .pt-xxl-4,
  .py-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xxl-4,
  .px-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xxl-4,
  .py-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xxl-4,
  .px-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .pt-xxl-5,
  .py-xxl-5 {
    padding-top: 3rem !important;
  }

  .pr-xxl-5,
  .px-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-5,
  .py-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xxl-5,
  .px-xxl-5 {
    padding-left: 3rem !important;
  }

  .p-xxl-25 {
    padding: 0.625rem !important;
  }

  .pt-xxl-25,
  .py-xxl-25 {
    padding-top: 0.625rem !important;
  }

  .pr-xxl-25,
  .px-xxl-25 {
    padding-right: 0.625rem !important;
  }

  .pb-xxl-25,
  .py-xxl-25 {
    padding-bottom: 0.625rem !important;
  }

  .pl-xxl-25,
  .px-xxl-25 {
    padding-left: 0.625rem !important;
  }

  .p-xxl-6 {
    padding: 4.5rem !important;
  }

  .pt-xxl-6,
  .py-xxl-6 {
    padding-top: 4.5rem !important;
  }

  .pr-xxl-6,
  .px-xxl-6 {
    padding-right: 4.5rem !important;
  }

  .pb-xxl-6,
  .py-xxl-6 {
    padding-bottom: 4.5rem !important;
  }

  .pl-xxl-6,
  .px-xxl-6 {
    padding-left: 4.5rem !important;
  }

  .p-xxl-7 {
    padding: 6rem !important;
  }

  .pt-xxl-7,
  .py-xxl-7 {
    padding-top: 6rem !important;
  }

  .pr-xxl-7,
  .px-xxl-7 {
    padding-right: 6rem !important;
  }

  .pb-xxl-7,
  .py-xxl-7 {
    padding-bottom: 6rem !important;
  }

  .pl-xxl-7,
  .px-xxl-7 {
    padding-left: 6rem !important;
  }

  .p-xxl-8 {
    padding: 7.5rem !important;
  }

  .pt-xxl-8,
  .py-xxl-8 {
    padding-top: 7.5rem !important;
  }

  .pr-xxl-8,
  .px-xxl-8 {
    padding-right: 7.5rem !important;
  }

  .pb-xxl-8,
  .py-xxl-8 {
    padding-bottom: 7.5rem !important;
  }

  .pl-xxl-8,
  .px-xxl-8 {
    padding-left: 7.5rem !important;
  }

  .p-xxl-9 {
    padding: 9rem !important;
  }

  .pt-xxl-9,
  .py-xxl-9 {
    padding-top: 9rem !important;
  }

  .pr-xxl-9,
  .px-xxl-9 {
    padding-right: 9rem !important;
  }

  .pb-xxl-9,
  .py-xxl-9 {
    padding-bottom: 9rem !important;
  }

  .pl-xxl-9,
  .px-xxl-9 {
    padding-left: 9rem !important;
  }

  .p-xxl-10 {
    padding: 10.5rem !important;
  }

  .pt-xxl-10,
  .py-xxl-10 {
    padding-top: 10.5rem !important;
  }

  .pr-xxl-10,
  .px-xxl-10 {
    padding-right: 10.5rem !important;
  }

  .pb-xxl-10,
  .py-xxl-10 {
    padding-bottom: 10.5rem !important;
  }

  .pl-xxl-10,
  .px-xxl-10 {
    padding-left: 10.5rem !important;
  }

  .m-xxl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xxl-n1,
  .my-xxl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xxl-n1,
  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xxl-n1,
  .my-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xxl-n1,
  .mx-xxl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xxl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xxl-n2,
  .my-xxl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xxl-n2,
  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xxl-n2,
  .my-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xxl-n2,
  .mx-xxl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xxl-n3 {
    margin: -1rem !important;
  }

  .mt-xxl-n3,
  .my-xxl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xxl-n3,
  .mx-xxl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xxl-n3,
  .my-xxl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xxl-n3,
  .mx-xxl-n3 {
    margin-left: -1rem !important;
  }

  .m-xxl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xxl-n4,
  .my-xxl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xxl-n4,
  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xxl-n4,
  .my-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xxl-n4,
  .mx-xxl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xxl-n5 {
    margin: -3rem !important;
  }

  .mt-xxl-n5,
  .my-xxl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xxl-n5,
  .mx-xxl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xxl-n5,
  .my-xxl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xxl-n5,
  .mx-xxl-n5 {
    margin-left: -3rem !important;
  }

  .m-xxl-n25 {
    margin: -0.625rem !important;
  }

  .mt-xxl-n25,
  .my-xxl-n25 {
    margin-top: -0.625rem !important;
  }

  .mr-xxl-n25,
  .mx-xxl-n25 {
    margin-right: -0.625rem !important;
  }

  .mb-xxl-n25,
  .my-xxl-n25 {
    margin-bottom: -0.625rem !important;
  }

  .ml-xxl-n25,
  .mx-xxl-n25 {
    margin-left: -0.625rem !important;
  }

  .m-xxl-n6 {
    margin: -4.5rem !important;
  }

  .mt-xxl-n6,
  .my-xxl-n6 {
    margin-top: -4.5rem !important;
  }

  .mr-xxl-n6,
  .mx-xxl-n6 {
    margin-right: -4.5rem !important;
  }

  .mb-xxl-n6,
  .my-xxl-n6 {
    margin-bottom: -4.5rem !important;
  }

  .ml-xxl-n6,
  .mx-xxl-n6 {
    margin-left: -4.5rem !important;
  }

  .m-xxl-n7 {
    margin: -6rem !important;
  }

  .mt-xxl-n7,
  .my-xxl-n7 {
    margin-top: -6rem !important;
  }

  .mr-xxl-n7,
  .mx-xxl-n7 {
    margin-right: -6rem !important;
  }

  .mb-xxl-n7,
  .my-xxl-n7 {
    margin-bottom: -6rem !important;
  }

  .ml-xxl-n7,
  .mx-xxl-n7 {
    margin-left: -6rem !important;
  }

  .m-xxl-n8 {
    margin: -7.5rem !important;
  }

  .mt-xxl-n8,
  .my-xxl-n8 {
    margin-top: -7.5rem !important;
  }

  .mr-xxl-n8,
  .mx-xxl-n8 {
    margin-right: -7.5rem !important;
  }

  .mb-xxl-n8,
  .my-xxl-n8 {
    margin-bottom: -7.5rem !important;
  }

  .ml-xxl-n8,
  .mx-xxl-n8 {
    margin-left: -7.5rem !important;
  }

  .m-xxl-n9 {
    margin: -9rem !important;
  }

  .mt-xxl-n9,
  .my-xxl-n9 {
    margin-top: -9rem !important;
  }

  .mr-xxl-n9,
  .mx-xxl-n9 {
    margin-right: -9rem !important;
  }

  .mb-xxl-n9,
  .my-xxl-n9 {
    margin-bottom: -9rem !important;
  }

  .ml-xxl-n9,
  .mx-xxl-n9 {
    margin-left: -9rem !important;
  }

  .m-xxl-n10 {
    margin: -10.5rem !important;
  }

  .mt-xxl-n10,
  .my-xxl-n10 {
    margin-top: -10.5rem !important;
  }

  .mr-xxl-n10,
  .mx-xxl-n10 {
    margin-right: -10.5rem !important;
  }

  .mb-xxl-n10,
  .my-xxl-n10 {
    margin-bottom: -10.5rem !important;
  }

  .ml-xxl-n10,
  .mx-xxl-n10 {
    margin-left: -10.5rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mt-xxl-auto,
  .my-xxl-auto {
    margin-top: auto !important;
  }

  .mr-xxl-auto,
  .mx-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-auto,
  .my-xxl-auto {
    margin-bottom: auto !important;
  }

  .ml-xxl-auto,
  .mx-xxl-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 2000px) {
  .m-ws-0 {
    margin: 0 !important;
  }

  .mt-ws-0,
  .my-ws-0 {
    margin-top: 0 !important;
  }

  .mr-ws-0,
  .mx-ws-0 {
    margin-right: 0 !important;
  }

  .mb-ws-0,
  .my-ws-0 {
    margin-bottom: 0 !important;
  }

  .ml-ws-0,
  .mx-ws-0 {
    margin-left: 0 !important;
  }

  .m-ws-1 {
    margin: 0.25rem !important;
  }

  .mt-ws-1,
  .my-ws-1 {
    margin-top: 0.25rem !important;
  }

  .mr-ws-1,
  .mx-ws-1 {
    margin-right: 0.25rem !important;
  }

  .mb-ws-1,
  .my-ws-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-ws-1,
  .mx-ws-1 {
    margin-left: 0.25rem !important;
  }

  .m-ws-2 {
    margin: 0.5rem !important;
  }

  .mt-ws-2,
  .my-ws-2 {
    margin-top: 0.5rem !important;
  }

  .mr-ws-2,
  .mx-ws-2 {
    margin-right: 0.5rem !important;
  }

  .mb-ws-2,
  .my-ws-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-ws-2,
  .mx-ws-2 {
    margin-left: 0.5rem !important;
  }

  .m-ws-3 {
    margin: 1rem !important;
  }

  .mt-ws-3,
  .my-ws-3 {
    margin-top: 1rem !important;
  }

  .mr-ws-3,
  .mx-ws-3 {
    margin-right: 1rem !important;
  }

  .mb-ws-3,
  .my-ws-3 {
    margin-bottom: 1rem !important;
  }

  .ml-ws-3,
  .mx-ws-3 {
    margin-left: 1rem !important;
  }

  .m-ws-4 {
    margin: 1.5rem !important;
  }

  .mt-ws-4,
  .my-ws-4 {
    margin-top: 1.5rem !important;
  }

  .mr-ws-4,
  .mx-ws-4 {
    margin-right: 1.5rem !important;
  }

  .mb-ws-4,
  .my-ws-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-ws-4,
  .mx-ws-4 {
    margin-left: 1.5rem !important;
  }

  .m-ws-5 {
    margin: 3rem !important;
  }

  .mt-ws-5,
  .my-ws-5 {
    margin-top: 3rem !important;
  }

  .mr-ws-5,
  .mx-ws-5 {
    margin-right: 3rem !important;
  }

  .mb-ws-5,
  .my-ws-5 {
    margin-bottom: 3rem !important;
  }

  .ml-ws-5,
  .mx-ws-5 {
    margin-left: 3rem !important;
  }

  .m-ws-25 {
    margin: 0.625rem !important;
  }

  .mt-ws-25,
  .my-ws-25 {
    margin-top: 0.625rem !important;
  }

  .mr-ws-25,
  .mx-ws-25 {
    margin-right: 0.625rem !important;
  }

  .mb-ws-25,
  .my-ws-25 {
    margin-bottom: 0.625rem !important;
  }

  .ml-ws-25,
  .mx-ws-25 {
    margin-left: 0.625rem !important;
  }

  .m-ws-6 {
    margin: 4.5rem !important;
  }

  .mt-ws-6,
  .my-ws-6 {
    margin-top: 4.5rem !important;
  }

  .mr-ws-6,
  .mx-ws-6 {
    margin-right: 4.5rem !important;
  }

  .mb-ws-6,
  .my-ws-6 {
    margin-bottom: 4.5rem !important;
  }

  .ml-ws-6,
  .mx-ws-6 {
    margin-left: 4.5rem !important;
  }

  .m-ws-7 {
    margin: 6rem !important;
  }

  .mt-ws-7,
  .my-ws-7 {
    margin-top: 6rem !important;
  }

  .mr-ws-7,
  .mx-ws-7 {
    margin-right: 6rem !important;
  }

  .mb-ws-7,
  .my-ws-7 {
    margin-bottom: 6rem !important;
  }

  .ml-ws-7,
  .mx-ws-7 {
    margin-left: 6rem !important;
  }

  .m-ws-8 {
    margin: 7.5rem !important;
  }

  .mt-ws-8,
  .my-ws-8 {
    margin-top: 7.5rem !important;
  }

  .mr-ws-8,
  .mx-ws-8 {
    margin-right: 7.5rem !important;
  }

  .mb-ws-8,
  .my-ws-8 {
    margin-bottom: 7.5rem !important;
  }

  .ml-ws-8,
  .mx-ws-8 {
    margin-left: 7.5rem !important;
  }

  .m-ws-9 {
    margin: 9rem !important;
  }

  .mt-ws-9,
  .my-ws-9 {
    margin-top: 9rem !important;
  }

  .mr-ws-9,
  .mx-ws-9 {
    margin-right: 9rem !important;
  }

  .mb-ws-9,
  .my-ws-9 {
    margin-bottom: 9rem !important;
  }

  .ml-ws-9,
  .mx-ws-9 {
    margin-left: 9rem !important;
  }

  .m-ws-10 {
    margin: 10.5rem !important;
  }

  .mt-ws-10,
  .my-ws-10 {
    margin-top: 10.5rem !important;
  }

  .mr-ws-10,
  .mx-ws-10 {
    margin-right: 10.5rem !important;
  }

  .mb-ws-10,
  .my-ws-10 {
    margin-bottom: 10.5rem !important;
  }

  .ml-ws-10,
  .mx-ws-10 {
    margin-left: 10.5rem !important;
  }

  .p-ws-0 {
    padding: 0 !important;
  }

  .pt-ws-0,
  .py-ws-0 {
    padding-top: 0 !important;
  }

  .pr-ws-0,
  .px-ws-0 {
    padding-right: 0 !important;
  }

  .pb-ws-0,
  .py-ws-0 {
    padding-bottom: 0 !important;
  }

  .pl-ws-0,
  .px-ws-0 {
    padding-left: 0 !important;
  }

  .p-ws-1 {
    padding: 0.25rem !important;
  }

  .pt-ws-1,
  .py-ws-1 {
    padding-top: 0.25rem !important;
  }

  .pr-ws-1,
  .px-ws-1 {
    padding-right: 0.25rem !important;
  }

  .pb-ws-1,
  .py-ws-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-ws-1,
  .px-ws-1 {
    padding-left: 0.25rem !important;
  }

  .p-ws-2 {
    padding: 0.5rem !important;
  }

  .pt-ws-2,
  .py-ws-2 {
    padding-top: 0.5rem !important;
  }

  .pr-ws-2,
  .px-ws-2 {
    padding-right: 0.5rem !important;
  }

  .pb-ws-2,
  .py-ws-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-ws-2,
  .px-ws-2 {
    padding-left: 0.5rem !important;
  }

  .p-ws-3 {
    padding: 1rem !important;
  }

  .pt-ws-3,
  .py-ws-3 {
    padding-top: 1rem !important;
  }

  .pr-ws-3,
  .px-ws-3 {
    padding-right: 1rem !important;
  }

  .pb-ws-3,
  .py-ws-3 {
    padding-bottom: 1rem !important;
  }

  .pl-ws-3,
  .px-ws-3 {
    padding-left: 1rem !important;
  }

  .p-ws-4 {
    padding: 1.5rem !important;
  }

  .pt-ws-4,
  .py-ws-4 {
    padding-top: 1.5rem !important;
  }

  .pr-ws-4,
  .px-ws-4 {
    padding-right: 1.5rem !important;
  }

  .pb-ws-4,
  .py-ws-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-ws-4,
  .px-ws-4 {
    padding-left: 1.5rem !important;
  }

  .p-ws-5 {
    padding: 3rem !important;
  }

  .pt-ws-5,
  .py-ws-5 {
    padding-top: 3rem !important;
  }

  .pr-ws-5,
  .px-ws-5 {
    padding-right: 3rem !important;
  }

  .pb-ws-5,
  .py-ws-5 {
    padding-bottom: 3rem !important;
  }

  .pl-ws-5,
  .px-ws-5 {
    padding-left: 3rem !important;
  }

  .p-ws-25 {
    padding: 0.625rem !important;
  }

  .pt-ws-25,
  .py-ws-25 {
    padding-top: 0.625rem !important;
  }

  .pr-ws-25,
  .px-ws-25 {
    padding-right: 0.625rem !important;
  }

  .pb-ws-25,
  .py-ws-25 {
    padding-bottom: 0.625rem !important;
  }

  .pl-ws-25,
  .px-ws-25 {
    padding-left: 0.625rem !important;
  }

  .p-ws-6 {
    padding: 4.5rem !important;
  }

  .pt-ws-6,
  .py-ws-6 {
    padding-top: 4.5rem !important;
  }

  .pr-ws-6,
  .px-ws-6 {
    padding-right: 4.5rem !important;
  }

  .pb-ws-6,
  .py-ws-6 {
    padding-bottom: 4.5rem !important;
  }

  .pl-ws-6,
  .px-ws-6 {
    padding-left: 4.5rem !important;
  }

  .p-ws-7 {
    padding: 6rem !important;
  }

  .pt-ws-7,
  .py-ws-7 {
    padding-top: 6rem !important;
  }

  .pr-ws-7,
  .px-ws-7 {
    padding-right: 6rem !important;
  }

  .pb-ws-7,
  .py-ws-7 {
    padding-bottom: 6rem !important;
  }

  .pl-ws-7,
  .px-ws-7 {
    padding-left: 6rem !important;
  }

  .p-ws-8 {
    padding: 7.5rem !important;
  }

  .pt-ws-8,
  .py-ws-8 {
    padding-top: 7.5rem !important;
  }

  .pr-ws-8,
  .px-ws-8 {
    padding-right: 7.5rem !important;
  }

  .pb-ws-8,
  .py-ws-8 {
    padding-bottom: 7.5rem !important;
  }

  .pl-ws-8,
  .px-ws-8 {
    padding-left: 7.5rem !important;
  }

  .p-ws-9 {
    padding: 9rem !important;
  }

  .pt-ws-9,
  .py-ws-9 {
    padding-top: 9rem !important;
  }

  .pr-ws-9,
  .px-ws-9 {
    padding-right: 9rem !important;
  }

  .pb-ws-9,
  .py-ws-9 {
    padding-bottom: 9rem !important;
  }

  .pl-ws-9,
  .px-ws-9 {
    padding-left: 9rem !important;
  }

  .p-ws-10 {
    padding: 10.5rem !important;
  }

  .pt-ws-10,
  .py-ws-10 {
    padding-top: 10.5rem !important;
  }

  .pr-ws-10,
  .px-ws-10 {
    padding-right: 10.5rem !important;
  }

  .pb-ws-10,
  .py-ws-10 {
    padding-bottom: 10.5rem !important;
  }

  .pl-ws-10,
  .px-ws-10 {
    padding-left: 10.5rem !important;
  }

  .m-ws-n1 {
    margin: -0.25rem !important;
  }

  .mt-ws-n1,
  .my-ws-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-ws-n1,
  .mx-ws-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-ws-n1,
  .my-ws-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-ws-n1,
  .mx-ws-n1 {
    margin-left: -0.25rem !important;
  }

  .m-ws-n2 {
    margin: -0.5rem !important;
  }

  .mt-ws-n2,
  .my-ws-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-ws-n2,
  .mx-ws-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-ws-n2,
  .my-ws-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-ws-n2,
  .mx-ws-n2 {
    margin-left: -0.5rem !important;
  }

  .m-ws-n3 {
    margin: -1rem !important;
  }

  .mt-ws-n3,
  .my-ws-n3 {
    margin-top: -1rem !important;
  }

  .mr-ws-n3,
  .mx-ws-n3 {
    margin-right: -1rem !important;
  }

  .mb-ws-n3,
  .my-ws-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-ws-n3,
  .mx-ws-n3 {
    margin-left: -1rem !important;
  }

  .m-ws-n4 {
    margin: -1.5rem !important;
  }

  .mt-ws-n4,
  .my-ws-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-ws-n4,
  .mx-ws-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-ws-n4,
  .my-ws-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-ws-n4,
  .mx-ws-n4 {
    margin-left: -1.5rem !important;
  }

  .m-ws-n5 {
    margin: -3rem !important;
  }

  .mt-ws-n5,
  .my-ws-n5 {
    margin-top: -3rem !important;
  }

  .mr-ws-n5,
  .mx-ws-n5 {
    margin-right: -3rem !important;
  }

  .mb-ws-n5,
  .my-ws-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-ws-n5,
  .mx-ws-n5 {
    margin-left: -3rem !important;
  }

  .m-ws-n25 {
    margin: -0.625rem !important;
  }

  .mt-ws-n25,
  .my-ws-n25 {
    margin-top: -0.625rem !important;
  }

  .mr-ws-n25,
  .mx-ws-n25 {
    margin-right: -0.625rem !important;
  }

  .mb-ws-n25,
  .my-ws-n25 {
    margin-bottom: -0.625rem !important;
  }

  .ml-ws-n25,
  .mx-ws-n25 {
    margin-left: -0.625rem !important;
  }

  .m-ws-n6 {
    margin: -4.5rem !important;
  }

  .mt-ws-n6,
  .my-ws-n6 {
    margin-top: -4.5rem !important;
  }

  .mr-ws-n6,
  .mx-ws-n6 {
    margin-right: -4.5rem !important;
  }

  .mb-ws-n6,
  .my-ws-n6 {
    margin-bottom: -4.5rem !important;
  }

  .ml-ws-n6,
  .mx-ws-n6 {
    margin-left: -4.5rem !important;
  }

  .m-ws-n7 {
    margin: -6rem !important;
  }

  .mt-ws-n7,
  .my-ws-n7 {
    margin-top: -6rem !important;
  }

  .mr-ws-n7,
  .mx-ws-n7 {
    margin-right: -6rem !important;
  }

  .mb-ws-n7,
  .my-ws-n7 {
    margin-bottom: -6rem !important;
  }

  .ml-ws-n7,
  .mx-ws-n7 {
    margin-left: -6rem !important;
  }

  .m-ws-n8 {
    margin: -7.5rem !important;
  }

  .mt-ws-n8,
  .my-ws-n8 {
    margin-top: -7.5rem !important;
  }

  .mr-ws-n8,
  .mx-ws-n8 {
    margin-right: -7.5rem !important;
  }

  .mb-ws-n8,
  .my-ws-n8 {
    margin-bottom: -7.5rem !important;
  }

  .ml-ws-n8,
  .mx-ws-n8 {
    margin-left: -7.5rem !important;
  }

  .m-ws-n9 {
    margin: -9rem !important;
  }

  .mt-ws-n9,
  .my-ws-n9 {
    margin-top: -9rem !important;
  }

  .mr-ws-n9,
  .mx-ws-n9 {
    margin-right: -9rem !important;
  }

  .mb-ws-n9,
  .my-ws-n9 {
    margin-bottom: -9rem !important;
  }

  .ml-ws-n9,
  .mx-ws-n9 {
    margin-left: -9rem !important;
  }

  .m-ws-n10 {
    margin: -10.5rem !important;
  }

  .mt-ws-n10,
  .my-ws-n10 {
    margin-top: -10.5rem !important;
  }

  .mr-ws-n10,
  .mx-ws-n10 {
    margin-right: -10.5rem !important;
  }

  .mb-ws-n10,
  .my-ws-n10 {
    margin-bottom: -10.5rem !important;
  }

  .ml-ws-n10,
  .mx-ws-n10 {
    margin-left: -10.5rem !important;
  }

  .m-ws-auto {
    margin: auto !important;
  }

  .mt-ws-auto,
  .my-ws-auto {
    margin-top: auto !important;
  }

  .mr-ws-auto,
  .mx-ws-auto {
    margin-right: auto !important;
  }

  .mb-ws-auto,
  .my-ws-auto {
    margin-bottom: auto !important;
  }

  .ml-ws-auto,
  .mx-ws-auto {
    margin-left: auto !important;
  }
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

h1,
h2,
h3,
h4,
li,
p {
  font-family: "Calibri";
}

h1 {
  position: relative;
  font-size: 2.6rem;
  line-height: 1.2em;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.4rem;
}

p {
  font-size: 1rem;
}

p.t--preamble {
  font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
  font-size: 1.4rem;
}

.t--right {
  text-align: right;
}

.t--uppercase {
  text-transform: uppercase;
}

.t--bold {
  font-weight: 700;
}

@media (min-width: 1200px) {
  h1 {
    font-size: 3.2rem;
  }

  p {
    font-size: 1.2rem;
  }
}

@media (min-width: 2000px) {
  h1 {
    font-size: 2.25rem;
  }
}

.t--alt {
  font-size: 1.125rem;
}

.t--alt h1 {
  font-size: 2.6rem;
  line-height: 1.2em;
}

.t--alt h2 {
  font-size: 1.25rem;
}

.t--alt h3 {
  font-size: 1.125rem;
}

.t--alt h4 {
  font-size: 1.2rem;
}

.t--alt p.t--preamble {
  font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
  font-size: 1.4rem;
}

.t--primary.c-button,
.t--primary .c-button {
  background-color: #8bd14d;
  color: #fff;
}

.t--primary.c-button:active,
.t--primary .c-button:active,
.t--primary.c-button:focus,
.t--primary .c-button:focus,
.t--primary.c-button:hover,
.t--primary .c-button:hover {
  color: #fff;
  background-color: #006400;
}

.t--primary .c-card {
  background-color: #fff;
}

.t--primary .c-card__title {
  color: #ff7900;
}

.t--primary .c-card__text {
  color: #4d4d4d;
}

.t--tertiary-1 .c-button,
.t--tertiary-1.c-button {
  background-color: #660054;
  color: #fff;
}

.t--tertiary-1 .c-button:active,
.t--tertiary-1 .c-button:focus,
.t--tertiary-1 .c-button:hover,
.t--tertiary-1.c-button:active,
.t--tertiary-1.c-button:focus,
.t--tertiary-1.c-button:hover {
  color: #fff;
  background-color: #800069;
}

.t--tertiary-1 .c-card {
  background-color: #fff;
}

.t--tertiary-1 .c-card__title {
  color: #660054;
}

.t--tertiary-1 .c-card__text {
  color: #4d4d4d;
}

.t--tertiary-2 .c-button,
.t--tertiary-2.c-button {
  background-color: #0082ab;
  color: #fff;
}

.t--tertiary-2 .c-button:active,
.t--tertiary-2 .c-button:focus,
.t--tertiary-2 .c-button:hover,
.t--tertiary-2.c-button:active,
.t--tertiary-2.c-button:focus,
.t--tertiary-2.c-button:hover {
  color: #fff;
  background-color: #0095c5;
}

.t--tertiary-2 .c-card {
  background-color: #fff;
}

.t--tertiary-2 .c-card__title {
  color: #0082ab;
}

.t--tertiary-2 .c-card__text {
  color: #4d4d4d;
}

.t--tertiary-3 .c-button,
.t--tertiary-3.c-button {
  background-color: #a2bc13;
  color: #fff;
}

.t--tertiary-3 .c-button:active,
.t--tertiary-3 .c-button:focus,
.t--tertiary-3 .c-button:hover,
.t--tertiary-3.c-button:active,
.t--tertiary-3.c-button:focus,
.t--tertiary-3.c-button:hover {
  color: #fff;
  background-color: #b6d315;
}

.t--tertiary-3 .c-card {
  background-color: #fff;
}

.t--tertiary-3 .c-card__title {
  color: #a2bc13;
}

.t--tertiary-3 .c-card__text {
  color: #4d4d4d;
}

.c-author .c-author__card .c-author__text .c-author__name,
.c-focus a .c-focus__heading,
.c-hero-long-text .c-hero-long-text__title,
.c-hero-product-details__title,
.c-row__title.t--underline,
.c-triple-block__title,
.e-accent,
a.c-card .c-card__title,
a.c-img-teaser .c-img-teaser__title > span,
a.c-teaser .c-teaser__text.t--large,
a.c-teaser .c-teaser__title {
  position: relative;
}

.c-author .c-author__card .c-author__text .c-author__name:after,
.c-focus a .c-focus__heading:after,
.c-hero-long-text .c-hero-long-text__title:after,
.c-hero-product-details__title:after,
.c-row__title.t--underline:after,
.c-triple-block__title:after,
.e-accent:after,
a.c-card .c-card__title:after,
a.c-img-teaser .c-img-teaser__title > span:after,
a.c-teaser .c-teaser__text.t--large:after,
a.c-teaser .c-teaser__title:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  max-width: 2em;
  height: 2px;
  margin-bottom: -0.2rem;
  background-color: #ff7900;
  transition: 0.1s;
}

.c-row__title.t--underline:after,
.e-accent-wide:after {
  background-color: #0082ab !important;
  height: 3px !important;
  width: 90% !important;
  max-width: 90% !important;
}

.c-author
  .c-author__card
  .c-author__text
  .c-header__main-nav
  .c-author__name:after,
.c-focus a .c-header__main-nav .c-focus__heading:after,
.c-header__main-nav
  .c-author
  .c-author__card
  .c-author__text
  .c-author__name:after,
.c-header__main-nav .c-focus a .c-focus__heading:after,
.c-header__main-nav .c-hero-long-text .c-hero-long-text__title:after,
.c-header__main-nav .c-hero-product-details__title:after,
.c-header__main-nav .c-row__title.t--underline:after,
.c-header__main-nav .c-triple-block__title:after,
.c-header__main-nav .e-accent:after,
.c-header__main-nav a.c-card .c-card__title:after,
.c-header__main-nav a.c-img-teaser .c-img-teaser__title > span:after,
.c-header__main-nav a.c-teaser .c-teaser__text.t--large:after,
.c-header__main-nav a.c-teaser .c-teaser__title:after,
.c-hero-long-text .c-header__main-nav .c-hero-long-text__title:after,
a.c-card .c-header__main-nav .c-card__title:after,
a.c-img-teaser .c-header__main-nav .c-img-teaser__title > span:after,
a.c-teaser .c-header__main-nav .c-teaser__text.t--large:after,
a.c-teaser .c-header__main-nav .c-teaser__title:after {
  margin-bottom: 0.4rem;
}

@media (min-width: 768px) {
  .c-author
    .c-author__card
    .c-author__text
    .c-header__main-nav
    .c-author__name:after,
  .c-focus a .c-header__main-nav .c-focus__heading:after,
  .c-header__main-nav
    .c-author
    .c-author__card
    .c-author__text
    .c-author__name:after,
  .c-header__main-nav .c-focus a .c-focus__heading:after,
  .c-header__main-nav .c-hero-long-text .c-hero-long-text__title:after,
  .c-header__main-nav .c-hero-product-details__title:after,
  .c-header__main-nav .c-row__title.t--underline:after,
  .c-header__main-nav .c-triple-block__title:after,
  .c-header__main-nav .e-accent:after,
  .c-header__main-nav a.c-card .c-card__title:after,
  .c-header__main-nav a.c-img-teaser .c-img-teaser__title > span:after,
  .c-header__main-nav a.c-teaser .c-teaser__text.t--large:after,
  .c-header__main-nav a.c-teaser .c-teaser__title:after,
  .c-hero-long-text .c-header__main-nav .c-hero-long-text__title:after,
  a.c-card .c-header__main-nav .c-card__title:after,
  a.c-img-teaser .c-header__main-nav .c-img-teaser__title > span:after,
  a.c-teaser .c-header__main-nav .c-teaser__text.t--large:after,
  a.c-teaser .c-header__main-nav .c-teaser__title:after {
    margin-bottom: -0.2rem;
  }

  .c-author
    .c-author__card
    .c-author__text
    .c-header__sub-nav
    .c-author__name:after,
  .c-focus a .c-header__sub-nav .c-focus__heading:after,
  .c-header__sub-nav
    .c-author
    .c-author__card
    .c-author__text
    .c-author__name:after,
  .c-header__sub-nav .c-focus a .c-focus__heading:after,
  .c-header__sub-nav .c-hero-long-text .c-hero-long-text__title:after,
  .c-header__sub-nav .c-hero-product-details__title:after,
  .c-header__sub-nav .c-row__title.t--underline:after,
  .c-header__sub-nav .c-triple-block__title:after,
  .c-header__sub-nav .e-accent:after,
  .c-header__sub-nav a.c-card .c-card__title:after,
  .c-header__sub-nav a.c-img-teaser .c-img-teaser__title > span:after,
  .c-header__sub-nav a.c-teaser .c-teaser__text.t--large:after,
  .c-header__sub-nav a.c-teaser .c-teaser__title:after,
  .c-hero-long-text .c-header__sub-nav .c-hero-long-text__title:after,
  a.c-card .c-header__sub-nav .c-card__title:after,
  a.c-img-teaser .c-header__sub-nav .c-img-teaser__title > span:after,
  a.c-teaser .c-header__sub-nav .c-teaser__text.t--large:after,
  a.c-teaser .c-header__sub-nav .c-teaser__title:after {
    margin-bottom: 0.6rem;
  }
}

.c-focus a:active .c-focus__heading:after,
.c-focus a:focus .c-focus__heading:after,
.c-focus a:hover .c-focus__heading:after,
.e-accent--extended:after,
a.c-card:active .c-card__title:after,
a.c-card:focus .c-card__title:after,
a.c-card:hover .c-card__title:after,
a.c-img-teaser:active .c-img-teaser__title > span:after,
a.c-img-teaser:focus .c-img-teaser__title > span:after,
a.c-img-teaser:hover .c-img-teaser__title > span:after,
a.c-teaser:active .c-teaser__text.t--large:after,
a.c-teaser:active .c-teaser__title:after,
a.c-teaser:focus .c-teaser__text.t--large:after,
a.c-teaser:focus .c-teaser__title:after,
a.c-teaser:hover .c-teaser__text.t--large:after,
a.c-teaser:hover .c-teaser__title:after {
  width: 2em !important;
}

.c-article-hero__gradient,
.c-hero__gradient,
.c-img-teaser__gradient,
.c-quote__image-gradient,
.c-teaser__image-gradient,
.e-gradient {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 0;
  }

  40% {
    opacity: 0.3;
  }

  60% {
    opacity: 0.5;
  }

  80% {
    opacity: 0.9;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 0;
  }

  40% {
    opacity: 0.3;
  }

  60% {
    opacity: 0.5;
  }

  80% {
    opacity: 0.9;
  }

  to {
    opacity: 1;
  }
}

.u-border {
  border: 1px solid;
}

.u-border-top {
  border-top: 1px solid;
}

.u-border-right {
  border-right: 1px solid;
}

.u-border-bottom {
  border-bottom: 1px solid;
}

.u-border-left {
  border-left: 1px solid;
}

.u-border-0 {
  border: 0 !important;
}

.u-border-top-0 {
  border-top: 0 !important;
}

.u-border-right-0 {
  border-right: 0 !important;
}

.u-border-bottom-0 {
  border-bottom: 0 !important;
}

.u-border-left-0 {
  border-left: 0 !important;
}

.u-border- {
  border: 1px solid !important;
}

.u-border--top {
  border-top: 1px solid !important;
}

.u-border--right {
  border-right: 1px solid !important;
}

.u-border--bottom {
  border-bottom: 1px solid !important;
}

.u-border--left {
  border-left: 1px solid !important;
}

.u-border--0 {
  border: 0 !important;
}

.u-border--top-0 {
  border-top: 0 !important;
}

.u-border--right-0 {
  border-right: 0 !important;
}

.u-border--bottom-0 {
  border-bottom: 0 !important;
}

.u-border--left-0 {
  border-left: 0 !important;
}

@media (min-width: 576px) {
  .u-border--sm {
    border: 1px solid !important;
  }

  .u-border--sm-top {
    border-top: 1px solid !important;
  }

  .u-border--sm-right {
    border-right: 1px solid !important;
  }

  .u-border--sm-bottom {
    border-bottom: 1px solid !important;
  }

  .u-border--sm-left {
    border-left: 1px solid !important;
  }

  .u-border--sm-0 {
    border: 0 !important;
  }

  .u-border--sm-top-0 {
    border-top: 0 !important;
  }

  .u-border--sm-right-0 {
    border-right: 0 !important;
  }

  .u-border--sm-bottom-0 {
    border-bottom: 0 !important;
  }

  .u-border--sm-left-0 {
    border-left: 0 !important;
  }
}

@media (min-width: 768px) {
  .u-border--md {
    border: 1px solid !important;
  }

  .u-border--md-top {
    border-top: 1px solid !important;
  }

  .u-border--md-right {
    border-right: 1px solid !important;
  }

  .u-border--md-bottom {
    border-bottom: 1px solid !important;
  }

  .u-border--md-left {
    border-left: 1px solid !important;
  }

  .u-border--md-0 {
    border: 0 !important;
  }

  .u-border--md-top-0 {
    border-top: 0 !important;
  }

  .u-border--md-right-0 {
    border-right: 0 !important;
  }

  .u-border--md-bottom-0 {
    border-bottom: 0 !important;
  }

  .u-border--md-left-0 {
    border-left: 0 !important;
  }
}

@media (min-width: 992px) {
  .u-border--lg {
    border: 1px solid !important;
  }

  .u-border--lg-top {
    border-top: 1px solid !important;
  }

  .u-border--lg-right {
    border-right: 1px solid !important;
  }

  .u-border--lg-bottom {
    border-bottom: 1px solid !important;
  }

  .u-border--lg-left {
    border-left: 1px solid !important;
  }

  .u-border--lg-0 {
    border: 0 !important;
  }

  .u-border--lg-top-0 {
    border-top: 0 !important;
  }

  .u-border--lg-right-0 {
    border-right: 0 !important;
  }

  .u-border--lg-bottom-0 {
    border-bottom: 0 !important;
  }

  .u-border--lg-left-0 {
    border-left: 0 !important;
  }
}

@media (min-width: 1200px) {
  .u-border--xl {
    border: 1px solid !important;
  }

  .u-border--xl-top {
    border-top: 1px solid !important;
  }

  .u-border--xl-right {
    border-right: 1px solid !important;
  }

  .u-border--xl-bottom {
    border-bottom: 1px solid !important;
  }

  .u-border--xl-left {
    border-left: 1px solid !important;
  }

  .u-border--xl-0 {
    border: 0 !important;
  }

  .u-border--xl-top-0 {
    border-top: 0 !important;
  }

  .u-border--xl-right-0 {
    border-right: 0 !important;
  }

  .u-border--xl-bottom-0 {
    border-bottom: 0 !important;
  }

  .u-border--xl-left-0 {
    border-left: 0 !important;
  }
}

@media (min-width: 1400px) {
  .u-border--xll {
    border: 1px solid !important;
  }

  .u-border--xll-top {
    border-top: 1px solid !important;
  }

  .u-border--xll-right {
    border-right: 1px solid !important;
  }

  .u-border--xll-bottom {
    border-bottom: 1px solid !important;
  }

  .u-border--xll-left {
    border-left: 1px solid !important;
  }

  .u-border--xll-0 {
    border: 0 !important;
  }

  .u-border--xll-top-0 {
    border-top: 0 !important;
  }

  .u-border--xll-right-0 {
    border-right: 0 !important;
  }

  .u-border--xll-bottom-0 {
    border-bottom: 0 !important;
  }

  .u-border--xll-left-0 {
    border-left: 0 !important;
  }
}

@media (min-width: 1600px) {
  .u-border--xxl {
    border: 1px solid !important;
  }

  .u-border--xxl-top {
    border-top: 1px solid !important;
  }

  .u-border--xxl-right {
    border-right: 1px solid !important;
  }

  .u-border--xxl-bottom {
    border-bottom: 1px solid !important;
  }

  .u-border--xxl-left {
    border-left: 1px solid !important;
  }

  .u-border--xxl-0 {
    border: 0 !important;
  }

  .u-border--xxl-top-0 {
    border-top: 0 !important;
  }

  .u-border--xxl-right-0 {
    border-right: 0 !important;
  }

  .u-border--xxl-bottom-0 {
    border-bottom: 0 !important;
  }

  .u-border--xxl-left-0 {
    border-left: 0 !important;
  }
}

@media (min-width: 2000px) {
  .u-border--ws {
    border: 1px solid !important;
  }

  .u-border--ws-top {
    border-top: 1px solid !important;
  }

  .u-border--ws-right {
    border-right: 1px solid !important;
  }

  .u-border--ws-bottom {
    border-bottom: 1px solid !important;
  }

  .u-border--ws-left {
    border-left: 1px solid !important;
  }

  .u-border--ws-0 {
    border: 0 !important;
  }

  .u-border--ws-top-0 {
    border-top: 0 !important;
  }

  .u-border--ws-right-0 {
    border-right: 0 !important;
  }

  .u-border--ws-bottom-0 {
    border-bottom: 0 !important;
  }

  .u-border--ws-left-0 {
    border-left: 0 !important;
  }
}

.u-bg--neutral-100 {
  background-color: #fff !important;
}

.u-color--neutral-100 {
  color: #fff !important;
}

@media (min-width: 576px) {
  .u-bg-sm--neutral-100 {
    background-color: #fff !important;
  }

  .u-color-sm--neutral-100 {
    color: #fff !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--neutral-100 {
    background-color: #fff !important;
  }

  .u-color-md--neutral-100 {
    color: #fff !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--neutral-100 {
    background-color: #fff !important;
  }

  .u-color-lg--neutral-100 {
    color: #fff !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--neutral-100 {
    background-color: #fff !important;
  }

  .u-color-xl--neutral-100 {
    color: #fff !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--neutral-100 {
    background-color: #fff !important;
  }

  .u-color-xll--neutral-100 {
    color: #fff !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--neutral-100 {
    background-color: #fff !important;
  }

  .u-color-xxl--neutral-100 {
    color: #fff !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--neutral-100 {
    background-color: #fff !important;
  }

  .u-color-ws--neutral-100 {
    color: #fff !important;
  }
}

.u-bg--neutral-90 {
  background-color: #fefefe !important;
}

.u-color--neutral-90 {
  color: #fefefe !important;
}

@media (min-width: 576px) {
  .u-bg-sm--neutral-90 {
    background-color: #fefefe !important;
  }

  .u-color-sm--neutral-90 {
    color: #fefefe !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--neutral-90 {
    background-color: #fefefe !important;
  }

  .u-color-md--neutral-90 {
    color: #fefefe !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--neutral-90 {
    background-color: #fefefe !important;
  }

  .u-color-lg--neutral-90 {
    color: #fefefe !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--neutral-90 {
    background-color: #fefefe !important;
  }

  .u-color-xl--neutral-90 {
    color: #fefefe !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--neutral-90 {
    background-color: #fefefe !important;
  }

  .u-color-xll--neutral-90 {
    color: #fefefe !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--neutral-90 {
    background-color: #fefefe !important;
  }

  .u-color-xxl--neutral-90 {
    color: #fefefe !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--neutral-90 {
    background-color: #fefefe !important;
  }

  .u-color-ws--neutral-90 {
    color: #fefefe !important;
  }
}

.u-bg--neutral-80 {
  background-color: #efefef !important;
}

.u-color--neutral-80 {
  color: #efefef !important;
}

@media (min-width: 576px) {
  .u-bg-sm--neutral-80 {
    background-color: #efefef !important;
  }

  .u-color-sm--neutral-80 {
    color: #efefef !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--neutral-80 {
    background-color: #efefef !important;
  }

  .u-color-md--neutral-80 {
    color: #efefef !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--neutral-80 {
    background-color: #efefef !important;
  }

  .u-color-lg--neutral-80 {
    color: #efefef !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--neutral-80 {
    background-color: #efefef !important;
  }

  .u-color-xl--neutral-80 {
    color: #efefef !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--neutral-80 {
    background-color: #efefef !important;
  }

  .u-color-xll--neutral-80 {
    color: #efefef !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--neutral-80 {
    background-color: #efefef !important;
  }

  .u-color-xxl--neutral-80 {
    color: #efefef !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--neutral-80 {
    background-color: #efefef !important;
  }

  .u-color-ws--neutral-80 {
    color: #efefef !important;
  }
}

.u-bg--neutral-70 {
  background-color: #d8d8d8 !important;
}

.u-color--neutral-70 {
  color: #d8d8d8 !important;
}

@media (min-width: 576px) {
  .u-bg-sm--neutral-70 {
    background-color: #d8d8d8 !important;
  }

  .u-color-sm--neutral-70 {
    color: #d8d8d8 !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--neutral-70 {
    background-color: #d8d8d8 !important;
  }

  .u-color-md--neutral-70 {
    color: #d8d8d8 !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--neutral-70 {
    background-color: #d8d8d8 !important;
  }

  .u-color-lg--neutral-70 {
    color: #d8d8d8 !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--neutral-70 {
    background-color: #d8d8d8 !important;
  }

  .u-color-xl--neutral-70 {
    color: #d8d8d8 !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--neutral-70 {
    background-color: #d8d8d8 !important;
  }

  .u-color-xll--neutral-70 {
    color: #d8d8d8 !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--neutral-70 {
    background-color: #d8d8d8 !important;
  }

  .u-color-xxl--neutral-70 {
    color: #d8d8d8 !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--neutral-70 {
    background-color: #d8d8d8 !important;
  }

  .u-color-ws--neutral-70 {
    color: #d8d8d8 !important;
  }
}

.u-bg--neutral-60 {
  background-color: #d6d6d6 !important;
}

.u-color--neutral-60 {
  color: #d6d6d6 !important;
}

@media (min-width: 576px) {
  .u-bg-sm--neutral-60 {
    background-color: #d6d6d6 !important;
  }

  .u-color-sm--neutral-60 {
    color: #d6d6d6 !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--neutral-60 {
    background-color: #d6d6d6 !important;
  }

  .u-color-md--neutral-60 {
    color: #d6d6d6 !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--neutral-60 {
    background-color: #d6d6d6 !important;
  }

  .u-color-lg--neutral-60 {
    color: #d6d6d6 !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--neutral-60 {
    background-color: #d6d6d6 !important;
  }

  .u-color-xl--neutral-60 {
    color: #d6d6d6 !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--neutral-60 {
    background-color: #d6d6d6 !important;
  }

  .u-color-xll--neutral-60 {
    color: #d6d6d6 !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--neutral-60 {
    background-color: #d6d6d6 !important;
  }

  .u-color-xxl--neutral-60 {
    color: #d6d6d6 !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--neutral-60 {
    background-color: #d6d6d6 !important;
  }

  .u-color-ws--neutral-60 {
    color: #d6d6d6 !important;
  }
}

.u-bg--neutral-50 {
  background-color: #c4c4c4 !important;
}

.u-color--neutral-50 {
  color: #c4c4c4 !important;
}

@media (min-width: 576px) {
  .u-bg-sm--neutral-50 {
    background-color: #c4c4c4 !important;
  }

  .u-color-sm--neutral-50 {
    color: #c4c4c4 !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--neutral-50 {
    background-color: #c4c4c4 !important;
  }

  .u-color-md--neutral-50 {
    color: #c4c4c4 !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--neutral-50 {
    background-color: #c4c4c4 !important;
  }

  .u-color-lg--neutral-50 {
    color: #c4c4c4 !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--neutral-50 {
    background-color: #c4c4c4 !important;
  }

  .u-color-xl--neutral-50 {
    color: #c4c4c4 !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--neutral-50 {
    background-color: #c4c4c4 !important;
  }

  .u-color-xll--neutral-50 {
    color: #c4c4c4 !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--neutral-50 {
    background-color: #c4c4c4 !important;
  }

  .u-color-xxl--neutral-50 {
    color: #c4c4c4 !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--neutral-50 {
    background-color: #c4c4c4 !important;
  }

  .u-color-ws--neutral-50 {
    color: #c4c4c4 !important;
  }
}

.u-bg--neutral-48 {
  background-color: #b1b0b0 !important;
}

.u-color--neutral-48 {
  color: #b1b0b0 !important;
}

@media (min-width: 576px) {
  .u-bg-sm--neutral-48 {
    background-color: #b1b0b0 !important;
  }

  .u-color-sm--neutral-48 {
    color: #b1b0b0 !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--neutral-48 {
    background-color: #b1b0b0 !important;
  }

  .u-color-md--neutral-48 {
    color: #b1b0b0 !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--neutral-48 {
    background-color: #b1b0b0 !important;
  }

  .u-color-lg--neutral-48 {
    color: #b1b0b0 !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--neutral-48 {
    background-color: #b1b0b0 !important;
  }

  .u-color-xl--neutral-48 {
    color: #b1b0b0 !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--neutral-48 {
    background-color: #b1b0b0 !important;
  }

  .u-color-xll--neutral-48 {
    color: #b1b0b0 !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--neutral-48 {
    background-color: #b1b0b0 !important;
  }

  .u-color-xxl--neutral-48 {
    color: #b1b0b0 !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--neutral-48 {
    background-color: #b1b0b0 !important;
  }

  .u-color-ws--neutral-48 {
    color: #b1b0b0 !important;
  }
}

.u-bg--neutral-47 {
  background-color: #979797 !important;
}

.u-color--neutral-47 {
  color: #979797 !important;
}

@media (min-width: 576px) {
  .u-bg-sm--neutral-47 {
    background-color: #979797 !important;
  }

  .u-color-sm--neutral-47 {
    color: #979797 !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--neutral-47 {
    background-color: #979797 !important;
  }

  .u-color-md--neutral-47 {
    color: #979797 !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--neutral-47 {
    background-color: #979797 !important;
  }

  .u-color-lg--neutral-47 {
    color: #979797 !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--neutral-47 {
    background-color: #979797 !important;
  }

  .u-color-xl--neutral-47 {
    color: #979797 !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--neutral-47 {
    background-color: #979797 !important;
  }

  .u-color-xll--neutral-47 {
    color: #979797 !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--neutral-47 {
    background-color: #979797 !important;
  }

  .u-color-xxl--neutral-47 {
    color: #979797 !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--neutral-47 {
    background-color: #979797 !important;
  }

  .u-color-ws--neutral-47 {
    color: #979797 !important;
  }
}

.u-bg--neutral-45 {
  background-color: grey !important;
}

.u-color--neutral-45 {
  color: grey !important;
}

@media (min-width: 576px) {
  .u-bg-sm--neutral-45 {
    background-color: grey !important;
  }

  .u-color-sm--neutral-45 {
    color: grey !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--neutral-45 {
    background-color: grey !important;
  }

  .u-color-md--neutral-45 {
    color: grey !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--neutral-45 {
    background-color: grey !important;
  }

  .u-color-lg--neutral-45 {
    color: grey !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--neutral-45 {
    background-color: grey !important;
  }

  .u-color-xl--neutral-45 {
    color: grey !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--neutral-45 {
    background-color: grey !important;
  }

  .u-color-xll--neutral-45 {
    color: grey !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--neutral-45 {
    background-color: grey !important;
  }

  .u-color-xxl--neutral-45 {
    color: grey !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--neutral-45 {
    background-color: grey !important;
  }

  .u-color-ws--neutral-45 {
    color: grey !important;
  }
}

.u-bg--neutral-40 {
  background-color: #4d4d4d !important;
}

.u-color--neutral-40 {
  color: #4d4d4d !important;
}

@media (min-width: 576px) {
  .u-bg-sm--neutral-40 {
    background-color: #4d4d4d !important;
  }

  .u-color-sm--neutral-40 {
    color: #4d4d4d !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--neutral-40 {
    background-color: #4d4d4d !important;
  }

  .u-color-md--neutral-40 {
    color: #4d4d4d !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--neutral-40 {
    background-color: #4d4d4d !important;
  }

  .u-color-lg--neutral-40 {
    color: #4d4d4d !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--neutral-40 {
    background-color: #4d4d4d !important;
  }

  .u-color-xl--neutral-40 {
    color: #4d4d4d !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--neutral-40 {
    background-color: #4d4d4d !important;
  }

  .u-color-xll--neutral-40 {
    color: #4d4d4d !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--neutral-40 {
    background-color: #4d4d4d !important;
  }

  .u-color-xxl--neutral-40 {
    color: #4d4d4d !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--neutral-40 {
    background-color: #4d4d4d !important;
  }

  .u-color-ws--neutral-40 {
    color: #4d4d4d !important;
  }
}

.u-bg--neutral-30 {
  background-color: #333 !important;
}

.u-color--neutral-30 {
  color: #333 !important;
}

@media (min-width: 576px) {
  .u-bg-sm--neutral-30 {
    background-color: #333 !important;
  }

  .u-color-sm--neutral-30 {
    color: #333 !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--neutral-30 {
    background-color: #333 !important;
  }

  .u-color-md--neutral-30 {
    color: #333 !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--neutral-30 {
    background-color: #333 !important;
  }

  .u-color-lg--neutral-30 {
    color: #333 !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--neutral-30 {
    background-color: #333 !important;
  }

  .u-color-xl--neutral-30 {
    color: #333 !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--neutral-30 {
    background-color: #333 !important;
  }

  .u-color-xll--neutral-30 {
    color: #333 !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--neutral-30 {
    background-color: #333 !important;
  }

  .u-color-xxl--neutral-30 {
    color: #333 !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--neutral-30 {
    background-color: #333 !important;
  }

  .u-color-ws--neutral-30 {
    color: #333 !important;
  }
}

.u-bg--neutral-20 {
  background-color: #222 !important;
}

.u-color--neutral-20 {
  color: #222 !important;
}

@media (min-width: 576px) {
  .u-bg-sm--neutral-20 {
    background-color: #222 !important;
  }

  .u-color-sm--neutral-20 {
    color: #222 !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--neutral-20 {
    background-color: #222 !important;
  }

  .u-color-md--neutral-20 {
    color: #222 !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--neutral-20 {
    background-color: #222 !important;
  }

  .u-color-lg--neutral-20 {
    color: #222 !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--neutral-20 {
    background-color: #222 !important;
  }

  .u-color-xl--neutral-20 {
    color: #222 !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--neutral-20 {
    background-color: #222 !important;
  }

  .u-color-xll--neutral-20 {
    color: #222 !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--neutral-20 {
    background-color: #222 !important;
  }

  .u-color-xxl--neutral-20 {
    color: #222 !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--neutral-20 {
    background-color: #222 !important;
  }

  .u-color-ws--neutral-20 {
    color: #222 !important;
  }
}

.u-bg--neutral-00 {
  background-color: #000 !important;
}

.u-color--neutral-00 {
  color: #000 !important;
}

@media (min-width: 576px) {
  .u-bg-sm--neutral-00 {
    background-color: #000 !important;
  }

  .u-color-sm--neutral-00 {
    color: #000 !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--neutral-00 {
    background-color: #000 !important;
  }

  .u-color-md--neutral-00 {
    color: #000 !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--neutral-00 {
    background-color: #000 !important;
  }

  .u-color-lg--neutral-00 {
    color: #000 !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--neutral-00 {
    background-color: #000 !important;
  }

  .u-color-xl--neutral-00 {
    color: #000 !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--neutral-00 {
    background-color: #000 !important;
  }

  .u-color-xll--neutral-00 {
    color: #000 !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--neutral-00 {
    background-color: #000 !important;
  }

  .u-color-xxl--neutral-00 {
    color: #000 !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--neutral-00 {
    background-color: #000 !important;
  }

  .u-color-ws--neutral-00 {
    color: #000 !important;
  }
}

.u-bg--blue-light {
  background-color: #c7dfea !important;
}

.u-color--blue-light {
  color: #c7dfea !important;
}

@media (min-width: 576px) {
  .u-bg-sm--blue-light {
    background-color: #c7dfea !important;
  }

  .u-color-sm--blue-light {
    color: #c7dfea !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--blue-light {
    background-color: #c7dfea !important;
  }

  .u-color-md--blue-light {
    color: #c7dfea !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--blue-light {
    background-color: #c7dfea !important;
  }

  .u-color-lg--blue-light {
    color: #c7dfea !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--blue-light {
    background-color: #c7dfea !important;
  }

  .u-color-xl--blue-light {
    color: #c7dfea !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--blue-light {
    background-color: #c7dfea !important;
  }

  .u-color-xll--blue-light {
    color: #c7dfea !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--blue-light {
    background-color: #c7dfea !important;
  }

  .u-color-xxl--blue-light {
    color: #c7dfea !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--blue-light {
    background-color: #c7dfea !important;
  }

  .u-color-ws--blue-light {
    color: #c7dfea !important;
  }
}

.u-bg--blue {
  background-color: #0082ab !important;
}

.u-color--blue {
  color: #0082ab !important;
}

@media (min-width: 576px) {
  .u-bg-sm--blue {
    background-color: #0082ab !important;
  }

  .u-color-sm--blue {
    color: #0082ab !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--blue {
    background-color: #0082ab !important;
  }

  .u-color-md--blue {
    color: #0082ab !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--blue {
    background-color: #0082ab !important;
  }

  .u-color-lg--blue {
    color: #0082ab !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--blue {
    background-color: #0082ab !important;
  }

  .u-color-xl--blue {
    color: #0082ab !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--blue {
    background-color: #0082ab !important;
  }

  .u-color-xll--blue {
    color: #0082ab !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--blue {
    background-color: #0082ab !important;
  }

  .u-color-xxl--blue {
    color: #0082ab !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--blue {
    background-color: #0082ab !important;
  }

  .u-color-ws--blue {
    color: #0082ab !important;
  }
}

.u-bg--dark-blue {
  background-color: #1f5695 !important;
}

.u-color--dark-blue {
  color: #1f5695 !important;
}

@media (min-width: 576px) {
  .u-bg-sm--dark-blue {
    background-color: #1f5695 !important;
  }

  .u-color-sm--dark-blue {
    color: #1f5695 !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--dark-blue {
    background-color: #1f5695 !important;
  }

  .u-color-md--dark-blue {
    color: #1f5695 !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--dark-blue {
    background-color: #1f5695 !important;
  }

  .u-color-lg--dark-blue {
    color: #1f5695 !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--dark-blue {
    background-color: #1f5695 !important;
  }

  .u-color-xl--dark-blue {
    color: #1f5695 !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--dark-blue {
    background-color: #1f5695 !important;
  }

  .u-color-xll--dark-blue {
    color: #1f5695 !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--dark-blue {
    background-color: #1f5695 !important;
  }

  .u-color-xxl--dark-blue {
    color: #1f5695 !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--dark-blue {
    background-color: #1f5695 !important;
  }

  .u-color-ws--dark-blue {
    color: #1f5695 !important;
  }
}

.u-bg--darkest-blue {
  background-color: #182037 !important;
}

.u-color--darkest-blue {
  color: #182037 !important;
}

@media (min-width: 576px) {
  .u-bg-sm--darkest-blue {
    background-color: #182037 !important;
  }

  .u-color-sm--darkest-blue {
    color: #182037 !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--darkest-blue {
    background-color: #182037 !important;
  }

  .u-color-md--darkest-blue {
    color: #182037 !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--darkest-blue {
    background-color: #182037 !important;
  }

  .u-color-lg--darkest-blue {
    color: #182037 !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--darkest-blue {
    background-color: #182037 !important;
  }

  .u-color-xl--darkest-blue {
    color: #182037 !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--darkest-blue {
    background-color: #182037 !important;
  }

  .u-color-xll--darkest-blue {
    color: #182037 !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--darkest-blue {
    background-color: #182037 !important;
  }

  .u-color-xxl--darkest-blue {
    color: #182037 !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--darkest-blue {
    background-color: #182037 !important;
  }

  .u-color-ws--darkest-blue {
    color: #182037 !important;
  }
}

.u-bg--green {
  background-color: #a2bc13 !important;
}

.u-color--green {
  color: #a2bc13 !important;
}

@media (min-width: 576px) {
  .u-bg-sm--green {
    background-color: #a2bc13 !important;
  }

  .u-color-sm--green {
    color: #a2bc13 !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--green {
    background-color: #a2bc13 !important;
  }

  .u-color-md--green {
    color: #a2bc13 !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--green {
    background-color: #a2bc13 !important;
  }

  .u-color-lg--green {
    color: #a2bc13 !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--green {
    background-color: #a2bc13 !important;
  }

  .u-color-xl--green {
    color: #a2bc13 !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--green {
    background-color: #a2bc13 !important;
  }

  .u-color-xll--green {
    color: #a2bc13 !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--green {
    background-color: #a2bc13 !important;
  }

  .u-color-xxl--green {
    color: #a2bc13 !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--green {
    background-color: #a2bc13 !important;
  }

  .u-color-ws--green {
    color: #a2bc13 !important;
  }
}

.u-bg--green-light {
  background-color: #bfcf93 !important;
}

.u-color--green-light {
  color: #bfcf93 !important;
}

@media (min-width: 576px) {
  .u-bg-sm--green-light {
    background-color: #bfcf93 !important;
  }

  .u-color-sm--green-light {
    color: #bfcf93 !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--green-light {
    background-color: #bfcf93 !important;
  }

  .u-color-md--green-light {
    color: #bfcf93 !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--green-light {
    background-color: #bfcf93 !important;
  }

  .u-color-lg--green-light {
    color: #bfcf93 !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--green-light {
    background-color: #bfcf93 !important;
  }

  .u-color-xl--green-light {
    color: #bfcf93 !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--green-light {
    background-color: #bfcf93 !important;
  }

  .u-color-xll--green-light {
    color: #bfcf93 !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--green-light {
    background-color: #bfcf93 !important;
  }

  .u-color-xxl--green-light {
    color: #bfcf93 !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--green-light {
    background-color: #bfcf93 !important;
  }

  .u-color-ws--green-light {
    color: #bfcf93 !important;
  }
}

.u-bg--green-lighter {
  background-color: #ddeacf !important;
}

.u-color--green-lighter {
  color: #ddeacf !important;
}

@media (min-width: 576px) {
  .u-bg-sm--green-lighter {
    background-color: #ddeacf !important;
  }

  .u-color-sm--green-lighter {
    color: #ddeacf !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--green-lighter {
    background-color: #ddeacf !important;
  }

  .u-color-md--green-lighter {
    color: #ddeacf !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--green-lighter {
    background-color: #ddeacf !important;
  }

  .u-color-lg--green-lighter {
    color: #ddeacf !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--green-lighter {
    background-color: #ddeacf !important;
  }

  .u-color-xl--green-lighter {
    color: #ddeacf !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--green-lighter {
    background-color: #ddeacf !important;
  }

  .u-color-xll--green-lighter {
    color: #ddeacf !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--green-lighter {
    background-color: #ddeacf !important;
  }

  .u-color-xxl--green-lighter {
    color: #ddeacf !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--green-lighter {
    background-color: #ddeacf !important;
  }

  .u-color-ws--green-lighter {
    color: #ddeacf !important;
  }
}

.u-bg--orange {
  background-color: #ff7900 !important;
}

.u-color--orange {
  color: #ff7900 !important;
}

@media (min-width: 576px) {
  .u-bg-sm--orange {
    background-color: #ff7900 !important;
  }

  .u-color-sm--orange {
    color: #ff7900 !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--orange {
    background-color: #ff7900 !important;
  }

  .u-color-md--orange {
    color: #ff7900 !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--orange {
    background-color: #ff7900 !important;
  }

  .u-color-lg--orange {
    color: #ff7900 !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--orange {
    background-color: #ff7900 !important;
  }

  .u-color-xl--orange {
    color: #ff7900 !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--orange {
    background-color: #ff7900 !important;
  }

  .u-color-xll--orange {
    color: #ff7900 !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--orange {
    background-color: #ff7900 !important;
  }

  .u-color-xxl--orange {
    color: #ff7900 !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--orange {
    background-color: #ff7900 !important;
  }

  .u-color-ws--orange {
    color: #ff7900 !important;
  }
}

.u-bg--orange-accent {
  background-color: #ff861a !important;
}

.u-color--orange-accent {
  color: #ff861a !important;
}

@media (min-width: 576px) {
  .u-bg-sm--orange-accent {
    background-color: #ff861a !important;
  }

  .u-color-sm--orange-accent {
    color: #ff861a !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--orange-accent {
    background-color: #ff861a !important;
  }

  .u-color-md--orange-accent {
    color: #ff861a !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--orange-accent {
    background-color: #ff861a !important;
  }

  .u-color-lg--orange-accent {
    color: #ff861a !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--orange-accent {
    background-color: #ff861a !important;
  }

  .u-color-xl--orange-accent {
    color: #ff861a !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--orange-accent {
    background-color: #ff861a !important;
  }

  .u-color-xll--orange-accent {
    color: #ff861a !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--orange-accent {
    background-color: #ff861a !important;
  }

  .u-color-xxl--orange-accent {
    color: #ff861a !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--orange-accent {
    background-color: #ff861a !important;
  }

  .u-color-ws--orange-accent {
    color: #ff861a !important;
  }
}

.u-bg--orange-lighter {
  background-color: #fcd7c8 !important;
}

.u-color--orange-lighter {
  color: #fcd7c8 !important;
}

@media (min-width: 576px) {
  .u-bg-sm--orange-lighter {
    background-color: #fcd7c8 !important;
  }

  .u-color-sm--orange-lighter {
    color: #fcd7c8 !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--orange-lighter {
    background-color: #fcd7c8 !important;
  }

  .u-color-md--orange-lighter {
    color: #fcd7c8 !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--orange-lighter {
    background-color: #fcd7c8 !important;
  }

  .u-color-lg--orange-lighter {
    color: #fcd7c8 !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--orange-lighter {
    background-color: #fcd7c8 !important;
  }

  .u-color-xl--orange-lighter {
    color: #fcd7c8 !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--orange-lighter {
    background-color: #fcd7c8 !important;
  }

  .u-color-xll--orange-lighter {
    color: #fcd7c8 !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--orange-lighter {
    background-color: #fcd7c8 !important;
  }

  .u-color-xxl--orange-lighter {
    color: #fcd7c8 !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--orange-lighter {
    background-color: #fcd7c8 !important;
  }

  .u-color-ws--orange-lighter {
    color: #fcd7c8 !important;
  }
}

.u-bg--orange-lightest {
  background-color: #f3dccf !important;
}

.u-color--orange-lightest {
  color: #f3dccf !important;
}

@media (min-width: 576px) {
  .u-bg-sm--orange-lightest {
    background-color: #f3dccf !important;
  }

  .u-color-sm--orange-lightest {
    color: #f3dccf !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--orange-lightest {
    background-color: #f3dccf !important;
  }

  .u-color-md--orange-lightest {
    color: #f3dccf !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--orange-lightest {
    background-color: #f3dccf !important;
  }

  .u-color-lg--orange-lightest {
    color: #f3dccf !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--orange-lightest {
    background-color: #f3dccf !important;
  }

  .u-color-xl--orange-lightest {
    color: #f3dccf !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--orange-lightest {
    background-color: #f3dccf !important;
  }

  .u-color-xll--orange-lightest {
    color: #f3dccf !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--orange-lightest {
    background-color: #f3dccf !important;
  }

  .u-color-xxl--orange-lightest {
    color: #f3dccf !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--orange-lightest {
    background-color: #f3dccf !important;
  }

  .u-color-ws--orange-lightest {
    color: #f3dccf !important;
  }
}

.u-bg--orange-light {
  background-color: #ffedd4 !important;
}

.u-color--orange-light {
  color: #ffedd4 !important;
}

@media (min-width: 576px) {
  .u-bg-sm--orange-light {
    background-color: #ffedd4 !important;
  }

  .u-color-sm--orange-light {
    color: #ffedd4 !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--orange-light {
    background-color: #ffedd4 !important;
  }

  .u-color-md--orange-light {
    color: #ffedd4 !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--orange-light {
    background-color: #ffedd4 !important;
  }

  .u-color-lg--orange-light {
    color: #ffedd4 !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--orange-light {
    background-color: #ffedd4 !important;
  }

  .u-color-xl--orange-light {
    color: #ffedd4 !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--orange-light {
    background-color: #ffedd4 !important;
  }

  .u-color-xll--orange-light {
    color: #ffedd4 !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--orange-light {
    background-color: #ffedd4 !important;
  }

  .u-color-xxl--orange-light {
    color: #ffedd4 !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--orange-light {
    background-color: #ffedd4 !important;
  }

  .u-color-ws--orange-light {
    color: #ffedd4 !important;
  }
}

.u-bg--purple {
  background-color: #660054 !important;
}

.u-color--purple {
  color: #660054 !important;
}

@media (min-width: 576px) {
  .u-bg-sm--purple {
    background-color: #660054 !important;
  }

  .u-color-sm--purple {
    color: #660054 !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--purple {
    background-color: #660054 !important;
  }

  .u-color-md--purple {
    color: #660054 !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--purple {
    background-color: #660054 !important;
  }

  .u-color-lg--purple {
    color: #660054 !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--purple {
    background-color: #660054 !important;
  }

  .u-color-xl--purple {
    color: #660054 !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--purple {
    background-color: #660054 !important;
  }

  .u-color-xll--purple {
    color: #660054 !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--purple {
    background-color: #660054 !important;
  }

  .u-color-xxl--purple {
    color: #660054 !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--purple {
    background-color: #660054 !important;
  }

  .u-color-ws--purple {
    color: #660054 !important;
  }
}

.u-bg--purple-lighter {
  background-color: #d3bcd0 !important;
}

.u-color--purple-lighter {
  color: #d3bcd0 !important;
}

@media (min-width: 576px) {
  .u-bg-sm--purple-lighter {
    background-color: #d3bcd0 !important;
  }

  .u-color-sm--purple-lighter {
    color: #d3bcd0 !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--purple-lighter {
    background-color: #d3bcd0 !important;
  }

  .u-color-md--purple-lighter {
    color: #d3bcd0 !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--purple-lighter {
    background-color: #d3bcd0 !important;
  }

  .u-color-lg--purple-lighter {
    color: #d3bcd0 !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--purple-lighter {
    background-color: #d3bcd0 !important;
  }

  .u-color-xl--purple-lighter {
    color: #d3bcd0 !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--purple-lighter {
    background-color: #d3bcd0 !important;
  }

  .u-color-xll--purple-lighter {
    color: #d3bcd0 !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--purple-lighter {
    background-color: #d3bcd0 !important;
  }

  .u-color-xxl--purple-lighter {
    color: #d3bcd0 !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--purple-lighter {
    background-color: #d3bcd0 !important;
  }

  .u-color-ws--purple-lighter {
    color: #d3bcd0 !important;
  }
}

.u-bg--red {
  background-color: #c7352d !important;
}

.u-color--red {
  color: #c7352d !important;
}

@media (min-width: 576px) {
  .u-bg-sm--red {
    background-color: #c7352d !important;
  }

  .u-color-sm--red {
    color: #c7352d !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--red {
    background-color: #c7352d !important;
  }

  .u-color-md--red {
    color: #c7352d !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--red {
    background-color: #c7352d !important;
  }

  .u-color-lg--red {
    color: #c7352d !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--red {
    background-color: #c7352d !important;
  }

  .u-color-xl--red {
    color: #c7352d !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--red {
    background-color: #c7352d !important;
  }

  .u-color-xll--red {
    color: #c7352d !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--red {
    background-color: #c7352d !important;
  }

  .u-color-xxl--red {
    color: #c7352d !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--red {
    background-color: #c7352d !important;
  }

  .u-color-ws--red {
    color: #c7352d !important;
  }
}

.u-bg--red-light {
  background-color: #c9382f !important;
}

.u-color--red-light {
  color: #c9382f !important;
}

@media (min-width: 576px) {
  .u-bg-sm--red-light {
    background-color: #c9382f !important;
  }

  .u-color-sm--red-light {
    color: #c9382f !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--red-light {
    background-color: #c9382f !important;
  }

  .u-color-md--red-light {
    color: #c9382f !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--red-light {
    background-color: #c9382f !important;
  }

  .u-color-lg--red-light {
    color: #c9382f !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--red-light {
    background-color: #c9382f !important;
  }

  .u-color-xl--red-light {
    color: #c9382f !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--red-light {
    background-color: #c9382f !important;
  }

  .u-color-xll--red-light {
    color: #c9382f !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--red-light {
    background-color: #c9382f !important;
  }

  .u-color-xxl--red-light {
    color: #c9382f !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--red-light {
    background-color: #c9382f !important;
  }

  .u-color-ws--red-light {
    color: #c9382f !important;
  }
}

.u-bg--red-lighter {
  background-color: #d15734 !important;
}

.u-color--red-lighter {
  color: #d15734 !important;
}

@media (min-width: 576px) {
  .u-bg-sm--red-lighter {
    background-color: #d15734 !important;
  }

  .u-color-sm--red-lighter {
    color: #d15734 !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--red-lighter {
    background-color: #d15734 !important;
  }

  .u-color-md--red-lighter {
    color: #d15734 !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--red-lighter {
    background-color: #d15734 !important;
  }

  .u-color-lg--red-lighter {
    color: #d15734 !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--red-lighter {
    background-color: #d15734 !important;
  }

  .u-color-xl--red-lighter {
    color: #d15734 !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--red-lighter {
    background-color: #d15734 !important;
  }

  .u-color-xll--red-lighter {
    color: #d15734 !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--red-lighter {
    background-color: #d15734 !important;
  }

  .u-color-xxl--red-lighter {
    color: #d15734 !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--red-lighter {
    background-color: #d15734 !important;
  }

  .u-color-ws--red-lighter {
    color: #d15734 !important;
  }
}

.u-bg--black {
  background-color: #000 !important;
}

.u-color--black {
  color: #000 !important;
}

@media (min-width: 576px) {
  .u-bg-sm--black {
    background-color: #000 !important;
  }

  .u-color-sm--black {
    color: #000 !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--black {
    background-color: #000 !important;
  }

  .u-color-md--black {
    color: #000 !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--black {
    background-color: #000 !important;
  }

  .u-color-lg--black {
    color: #000 !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--black {
    background-color: #000 !important;
  }

  .u-color-xl--black {
    color: #000 !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--black {
    background-color: #000 !important;
  }

  .u-color-xll--black {
    color: #000 !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--black {
    background-color: #000 !important;
  }

  .u-color-xxl--black {
    color: #000 !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--black {
    background-color: #000 !important;
  }

  .u-color-ws--black {
    color: #000 !important;
  }
}

.u-bg--white {
  background-color: #fff !important;
}

.u-color--white {
  color: #fff !important;
}

@media (min-width: 576px) {
  .u-bg-sm--white {
    background-color: #fff !important;
  }

  .u-color-sm--white {
    color: #fff !important;
  }
}

@media (min-width: 768px) {
  .u-bg-md--white {
    background-color: #fff !important;
  }

  .u-color-md--white {
    color: #fff !important;
  }
}

@media (min-width: 992px) {
  .u-bg-lg--white {
    background-color: #fff !important;
  }

  .u-color-lg--white {
    color: #fff !important;
  }
}

@media (min-width: 1200px) {
  .u-bg-xl--white {
    background-color: #fff !important;
  }

  .u-color-xl--white {
    color: #fff !important;
  }
}

@media (min-width: 1400px) {
  .u-bg-xll--white {
    background-color: #fff !important;
  }

  .u-color-xll--white {
    color: #fff !important;
  }
}

@media (min-width: 1600px) {
  .u-bg-xxl--white {
    background-color: #fff !important;
  }

  .u-color-xxl--white {
    color: #fff !important;
  }
}

@media (min-width: 2000px) {
  .u-bg-ws--white {
    background-color: #fff !important;
  }

  .u-color-ws--white {
    color: #fff !important;
  }
}

.u-color--current-color {
  color: currentColor;
}

.u-flex-height {
  height: 100%;
}

@media (max-width: 575.98px) {
  .u-hidden-xs {
    display: none !important;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .u-hidden-sm {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .u-hidden-md {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .u-hidden-lg {
    display: none !important;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .u-hidden-xl {
    display: none !important;
  }
}

@media (min-width: 1400px) and (max-width: 1599.98px) {
  .u-hidden-xll {
    display: none !important;
  }
}

@media (min-width: 1600px) and (max-width: 1999.98px) {
  .u-hidden-xxl {
    display: none !important;
  }
}

@media (min-width: 2000px) {
  .u-hidden-ws {
    display: none !important;
  }
}

.u-hidden-outside {
  position: absolute;
  left: -99999px;
}

.chevron:before {
  color: #ff7900;
  border-style: solid;
  border-width: 0.15rem 0.15rem 0 0;
  content: "";
  display: inline-block;
  height: 0.45rem;
  left: 0.15rem;
  position: relative;
  top: 0.25rem;
  transform: rotate(-45deg);
  vertical-align: top;
  width: 0.45rem;
  transition: 0.1s;
}

.chevron.down:before {
  top: 0.1rem;
  transform: rotate(135deg);
}

.chevron.check:before {
  transform: rotate(134deg);
  height: 0.5rem;
  width: 0.9rem;
}

.chevron.right:before {
  transform: rotate(45deg);
  color: #4d4d4d;
  display: block;
  text-align: center;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
}

@media (min-width: 992px) {
  .chevron:before {
    height: 0.6rem;
    width: 0.6rem;
  }

  .chevron.down:before {
    top: -0.1rem;
  }
}

body {
  color: #4d4d4d;
}

a {
  color: #ff7900;
}

html {
  scroll-behavior: smooth;
}

.c-card {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: flex-start;
  height: 100%;
  padding: 1.5rem 2rem;
  background-color: #fff;
  border-radius: 0.4rem;
}

.c-card__title {
  margin-bottom: 1rem;
  font-weight: 100;
  font-size: 1.86rem;
}

.c-card__text,
.c-card__title {
  width: 100%;
  font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
  color: #4d4d4d;
}

.c-card__text {
  height: 100%;
  font-size: 1.32rem;
}

.c-card__button {
  display: block;
  margin: 1rem auto 0;
}

a.c-card {
  text-decoration: none !important;
  transition: 0.2s;
}

a.c-card:active,
a.c-card:focus,
a.c-card:hover {
  background-color: #d6d6d6;
}

a.c-card:active .c-card__title,
a.c-card:focus .c-card__title,
a.c-card:hover .c-card__title {
  font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
  font-weight: 600;
  color: #4d4d4d;
}

a.c-card:active .c-card__text,
a.c-card:focus .c-card__text,
a.c-card:hover .c-card__text {
  color: #4d4d4d;
}

a.c-card .c-card__text,
a.c-card .c-card__title {
  transition: 0.2s;
  transition-property: color, opacity;
}

@media (min-width: 576px) {
  .c-card {
    margin-bottom: 10px;
  }
}

.c-hero {
  position: relative;
  min-height: 32rem;
  padding: 0;
  overflow: hidden;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.c-hero .c-button {
  margin-top: 2rem;
}

.c-hero__img-mobile,
.c-hero__img-mobile img {
  width: 100%;
  height: auto;
}

.c-hero__gradient {
  background-image: linear-gradient(
    0deg,
    #fff -10%,
    hsla(0, 0%, 83.9%, 0.1) 70%
  );
}

.c-hero__gradient--dark {
  background-image: linear-gradient(
    0deg,
    #222 -10%,
    hsla(0, 0%, 84.7%, 0.1) 70%
  );
}

.c-hero__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 1rem;
}

.c-hero__text,
.c-hero__title {
  width: 100%;
  padding-right: 2rem;
  color: #4d4d4d;
}

.c-hero__text {
  margin-bottom: 0;
}

.c-hero__inner--light .c-hero__text,
.c-hero__inner--light .c-hero__title {
  color: #fff;
}

.c-hero__d-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(
    0deg,
    #222 -10%,
    hsla(0, 0%, 84.7%, 0.1) 70%
  );
}

.c-hero__d-overlay.c-hero__d-overlay--light {
  background-image: linear-gradient(
    0deg,
    #fff -10%,
    hsla(0, 0%, 83.9%, 0.1) 70%
  );
  background-color: hsla(0, 0%, 100%, 0.2);
}

@media (min-width: 768px) {
  .c-hero__d-overlay {
    background-image: linear-gradient(
      270deg,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.2)
    );
    -webkit-mask-image: linear-gradient(#fff, #fff), url(gfx/brand-d.svg);
    mask-image: linear-gradient(#fff, #fff), url(gfx/brand-d.svg);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-mask-position: -30% center;
    mask-position: -30% center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
  }

  .c-hero__d-overlay.c-hero__d-overlay--light {
    background-image: linear-gradient(
      270deg,
      hsla(0, 0%, 100%, 0.8),
      hsla(0, 0%, 100%, 0.4)
    );
  }
}

@media (max-width: 767.98px) {
  .c-hero {
    border: none;
  }

  .c-hero__body-content {
    position: absolute;
    bottom: 0;
    z-index: 1;
  }

  .c-hero__title {
    font-size: 2.25rem !important;
  }

  .c-hero__button {
    padding: 0.4rem 2.8rem;
  }

  .c-hero .c-hero__text {
    font-size: 1.3rem;
  }
}

.c-hero__img-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .c-hero {
    min-height: 0;
    background-image: none !important;
    background-color: #fff;
    /* border: 4px solid #fff */
  }

  .c-hero .c-hero__title {
    font-size: 1.5rem;
    font-weight: 400;
  }

  .c-hero.c-hero--slide .c-hero__inner,
  .c-hero.c-hero--video .c-hero__inner {
    padding: 1rem;
  }

  .c-hero.c-hero--slide .c-hero__inner--light,
  .c-hero.c-hero--video .c-hero__inner--light {
    color: inherit;
  }

  .c-hero.c-hero--slide .c-hero__text,
  .c-hero.c-hero--slide .c-hero__title,
  .c-hero.c-hero--video .c-hero__text,
  .c-hero.c-hero--video .c-hero__title {
    padding-right: 0;
  }

  .c-hero.c-hero--slide .c-hero__text,
  .c-hero.c-hero--video .c-hero__text {
    margin-bottom: 0;
  }

  .c-hero.c-hero--slide .c-hero__button,
  .c-hero.c-hero--video .c-hero__button {
    align-self: center;
    margin-top: 1rem;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .c-hero.c-hero--video {
    min-height: 27rem;
  }

  .c-hero.c-hero--video .c-cloudinary-video {
    min-height: 434px;
  }

  .c-hero.c-hero--video .c-hero__body-content {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }

  .c-hero__img-wrapper {
    position: static;
  }

  .c-hero__img-mobile {
    display: none !important;
  }

  .c-hero__gradient {
    background-image: linear-gradient(
      249deg,
      hsla(0, 0%, 100%, 0.68) 5%,
      hsla(0, 0%, 83.9%, 0) 76%
    );
  }

  .c-hero__gradient--dark {
    background-image: linear-gradient(
      270deg,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.1)
    );
  }

  .c-hero__inner {
    padding: 2rem;
  }

  .c-hero__inner.c-hero__inner--right {
    justify-content: flex-end;
    text-align: right;
  }

  .c-hero__text,
  .c-hero__title {
    padding: 0;
  }

  .c-hero__d-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    background-image: linear-gradient(
      270deg,
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.3)
    );
    -webkit-mask-position: 2% center;
    mask-position: 2% center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
  }

  .c-hero__d-overlay.c-hero__d-overlay--light {
    background-color: hsla(0, 0%, 100%, 0.2);
    background-image: linear-gradient(
      270deg,
      hsla(0, 0%, 100%, 0.1),
      hsla(0, 0%, 100%, 0.3)
    );
  }
}

@media (min-width: 992px) {
  .c-hero {
    min-height: 36rem;
    padding: 6rem 0;
  }

  .c-hero.c-hero--video .c-cloudinary-video {
    margin-top: -6rem;
  }

  .c-hero.c-hero--video .c-hero__body-content {
    margin-top: 6rem;
  }
}

@media (min-width: 1200px) {
  .c-hero {
    min-height: 42rem;
    padding: 6rem 0;
  }

  .c-hero.c-hero--video .c-cloudinary-video {
    min-height: 562.5px;
  }

  .c-hero__d-overlay,
  .c-hero__d-overlay.c-hero__d-overlay--light {
    -webkit-mask-position: 20% center;
    mask-position: 20% center;
  }
}

@media (min-width: 2000px) {
  .c-hero {
    min-height: 52rem;
  }
}

.c-img-teaser {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}

.c-img-teaser__img {
  width: 100%;
  overflow: hidden;
}

.c-img-teaser__img img {
  width: 100%;
  height: auto;
}

.c-img-teaser__gradient {
  background-image: linear-gradient(
    0deg,
    rgba(34, 34, 34, 0.75) 0,
    hsla(0, 0%, 84.7%, 0)
  );
  opacity: 1;
  transition: 0.2s;
}

.c-img-teaser__title {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding: 1rem;
  margin: 0;
  font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  transition-property: color, opacity;
}

.c-img-teaser__title svg {
  position: relative;
  left: -0.2em;
  display: inline-block;
  width: 0.6em;
  height: 0.8em;
  margin-left: 0.8em;
  fill: #ff7900;
  opacity: 0;
  transition: 0.2s;
}

a.c-img-teaser .c-img-teaser__title {
  color: #fff;
}

a.c-img-teaser:active .c-img-teaser__title,
a.c-img-teaser:focus .c-img-teaser__title,
a.c-img-teaser:hover .c-img-teaser__title {
  color: #fff;
  font-weight: 600;
}

a.c-img-teaser:active .c-img-teaser__title svg,
a.c-img-teaser:focus .c-img-teaser__title svg,
a.c-img-teaser:hover .c-img-teaser__title svg {
  left: 0;
  opacity: 1;
}

a.c-img-teaser:active .c-img-teaser__gradient,
a.c-img-teaser:focus .c-img-teaser__gradient,
a.c-img-teaser:hover .c-img-teaser__gradient {
  opacity: 1;
}

@media (min-width: 768px) {
  .c-img-teaser__title {
    font-size: 1.2rem;
  }
}

@media (min-width: 1600px) {
  .c-img-teaser__title {
    font-size: 1.6rem;
  }
}

.c-promo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.c-promo__title {
  width: 100%;
  padding: 0.6rem 1rem 0.6rem 1.2rem;
  margin-bottom: 2rem;
  margin-left: 0.888rem;
  margin-right: 12%;
  border-left: 0.05em solid #8bd14d;
}

.c-promo__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 0 1rem;
}

.c-promo__content p:first-child {
  border-left: 0.1em solid #8bd14d;
}

.c-promo__content p {
  width: 100%;
  padding-left: 1rem;
}

.c-promo__content .c-button {
  margin-top: 0;
}

.c-promo__text {
  font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
  font-size: 1.4rem;
}

@media (min-breakpoint: 376px) {
  .c-promo__title {
    margin-left: 12%;
  }
}

@media (max-width: 767.98px) {
  .c-promo__title {
    font-size: 2.25rem;
    line-height: 1.8em;
  }
}

@media (min-width: 768px) {
  .c-promo {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .c-promo__title {
    margin-bottom: 2rem;
    margin-left: 1.4rem;
    border-left: none;
  }

  .c-promo__content {
    justify-content: flex-start;
  }

  .c-promo__content p:first-child {
    border-left: 0.1em solid #8bd14d;
  }

  .c-promo__content p {
    padding-left: 4rem;
  }

  .c-promo__content .c-button {
    margin-top: 2rem;
    margin-left: 4rem;
  }

  .c-promo__content,
  .c-promo__title {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 1600px) and (min-width: 1000px) {
  .c-promo__content {
    margin-left: 240px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .c-promo__title {
    font-size: 2.6rem !important;
    display: none;
  }

  .c-promo__text {
    font-size: 1.6rem;
  }
}

@media (min-width: 1600px) {
  .c-promo {
    padding-top: 7rem;
  }

  .c-promo__text {
    font-size: 1.6rem;
  }
}

@media (min-width: 2000px) {
  .c-promo__text {
    font-size: 2rem;
  }
}

.c-row {
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 40px;
  overflow: hidden;
}

.c-row + .c-row {
  margin-top: 0;
  padding-top: 10px;
}

.c-row.c-row__spacious {
  padding-top: 40px;
  padding-bottom: 40px;
}

.c-row__button {
  margin: 2rem 0 0;
}

.c-row__title-row {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.c-row__title {
  padding: 0 1rem;
  margin: 0 0 0.4em;
}

.c-row__title.t--underline {
  display: inline-block;
}

.c-row__subtitle {
  padding: 0 1em;
  margin: 0 0 1.4rem 1em;
  font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.6em;
  border-left: 2px solid #ff7900;
}

.c-row.t--dim {
  background-color: #efefef;
}

.c-row--products .c-slide-row__slide .c-teaser {
  background: #fff;
  border: 1px solid #4d4d4d;
  text-align: center;
}

.c-row--products .c-slide-row__slide .c-teaser__image img {
  width: 100%;
}

.c-row--products .c-slide-row__slide .c-teaser__content {
  display: inline-block;
  padding: 0 10px 0 0;
  position: absolute;
  bottom: 20px;
}

.c-row--products .c-slide-row__slide .c-teaser__text,
.c-row--products .c-slide-row__slide .c-teaser__title {
  display: inline-block;
  color: #fff;
}

.c-row--offering .c-slide-row__slide .c-teaser {
  text-align: center;
  border-radius: 0.875rem;
}

.c-row--offering .c-slide-row__slide .c-teaser__image {
  padding: 1rem;
}

.c-row--offering .c-slide-row__slide .c-teaser__image img {
  width: 100%;
  border-radius: 0.3rem;
}

.c-row--offering .c-slide-row__slide .c-teaser__content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1.4rem 1rem 1rem;
}

.c-row--offering .c-slide-row__slide .c-teaser__content p {
  margin: 0;
  font-size: 1rem;
}

.c-row--offering .c-slide-row__slide .c-teaser__content svg {
  display: inline-block;
  position: relative;
  left: -0.2em;
  width: 0.6em;
  height: 0.8em;
  margin-left: 0.8em;
  fill: #ff7900;
  transition: 0.2s;
}

.c-row--offering .c-slide-row__slide .c-teaser__text,
.c-row--offering .c-slide-row__slide .c-teaser__title {
  display: inline-block;
}

.c-row--offering .c-slide-row__slide .c-teaser__teasertext {
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .c-row {
    margin-top: 0;
  }

  .c-row.c-row__spacious {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .c-row + .c-row {
    padding-top: 60px;
  }

  .c-row--products .c-slide-row__slide {
    margin-bottom: 10px !important;
    padding-right: 5px;
    padding-left: 5px;
  }

  .c-row__title-row {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
  }

  .c-row__subtitle,
  .c-row__title {
    padding: 0 2rem;
    margin: 0;
  }
}

@media (min-width: 992px) {
  .c-row {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .c-row.c-row__spacious {
    padding-top: 120px;
    padding-bottom: 140px;
  }

  .c-row__subtitle {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .c-row > [class*="container"] {
    padding-left: 0;
    padding-right: 0;
  }

  .c-row .c-row__title-row {
    text-align: left;
  }
}

.c-slide-row__nav {
  display: none;
}

.c-slide-row.t--txt-color-white,
.c-slide-row.t--txt-color-white .c-teaser__text {
  color: #fff;
}

.c-slide-row.t--txt-color-white .c-teaser__image-gradient {
  display: block;
}

@media (max-width: 767.98px) {
  .c-slide-row {
    position: relative;
    /* padding: 0 0 3rem */
  }

  .c-slide-row.c-slide-row--alt {
    background-color: #fff;
  }

  .c-slide-row .c-row {
    padding: 0;
    overflow: visible;
  }

  .c-slide-row .c-row .c-slide-row__inner {
    padding: 0;
  }

  .c-slide-row__track {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .c-slide-row__track::-webkit-scrollbar {
    display: none;
  }

  .c-slide-row__inner {
    display: flex;
    flex-wrap: nowrap !important;
    overflow: visible;
    /* padding: 0 .5rem; */
    margin: 0;
  }

  .c-slide-row .c-slide-row__slide {
    display: flex;
    flex: 0 0 auto;
    width: 100vw;
    /* margin: 0 .2rem */
  }

  .c-slide-row .c-slide-row__slide > * {
    /* box-shadow: 0 .1rem 1rem -.2rem rgba(0, 0, 0, .2) */
  }

  .c-slide-row .c-slide-row__slide > .col-12 {
    padding: 0;
    margin: 0;
  }

  .c-slide-row__nav {
    display: flex;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
  }

  .c-slide-row__nav-inner {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 1rem;
  }

  .c-slide-row__nav-item {
    display: block;
    width: 1rem;
    height: 1rem;
    margin: 0 0.5rem;
    background-color: #ff7900;
    border-radius: 100%;
    transition: 0.2s;
  }

  .c-slide-row__nav-item:focus,
  .c-slide-row__nav-item:hover {
    cursor: pointer;
    background-color: #ff861a;
  }

  .c-slide-row__nav-item.s--active {
    background-color: #4d4d4d;
  }
}

.c-teaser {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: #4d4d4d;
  background-color: #efefef;
}

@media (max-width: 767.98px) {
  .c-teaser.c-teaser--alt {
    background-color: #fff;
    border: 4px solid #fff;
  }

  .c-teaser.c-teaser--alt:hover {
    border-color: #d6d6d6;
  }
}

.c-teaser__image-gradient {
  background-image: linear-gradient(
    0deg,
    rgba(34, 34, 34, 0.75) 0,
    hsla(0, 0%, 84.7%, 0)
  );
  display: none;
  opacity: 1;
}

.c-teaser--product {
  border-color: #b1b0b0 !important;
}

.c-teaser--product .c-teaser__image-gradient {
  display: block;
}

.c-teaser.s--horizontal {
  flex-direction: column;
}

.c-teaser.s--horizontal .c-teaser__image {
  -webkit-clip-path: ellipse(90% 140% at left);
  clip-path: ellipse(90% 140% at left);
}

.c-teaser__image {
  position: relative;
}

.c-teaser__image img {
  width: 100%;
  height: auto;
  min-width: 1rem;
}

.c-teaser__image svg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

.c-teaser__content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1rem 1.4rem 1rem 1rem;
}

.c-teaser__content p {
  margin: 0;
}

.c-teaser__content svg {
  display: none;
}

.c-teaser__title {
  font-weight: 400;
}

.c-teaser__text,
.c-teaser__title {
  font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
}

.c-teaser__text.t--large {
  font-size: 1.2rem;
  font-weight: 400;
}

a.c-teaser {
  transition-duration: 0.2s;
  transition-property: background-color, color, opacity;
}

a.c-teaser:active,
a.c-teaser:focus,
a.c-teaser:hover {
  text-decoration: none;
  color: #4d4d4d;
  background-color: #d6d6d6;
}

a.c-teaser:active .c-teaser__text.t--large,
a.c-teaser:focus .c-teaser__text.t--large,
a.c-teaser:hover .c-teaser__text.t--large {
  font-weight: 600;
}

@media (min-width: 768px) {
  .c-teaser.s--horizontal {
    height: 16rem;
    flex-direction: row;
  }

  .c-teaser.s--horizontal .c-teaser__content {
    justify-content: center;
    padding-left: 2.6rem;
  }

  .c-teaser.s--horizontal .c-teaser__title {
    max-width: 20rem;
  }

  .c-teaser.s--horizontal .c-teaser__image {
    width: auto;
    height: 100%;
    -webkit-clip-path: ellipse(100% 140% at left);
    clip-path: ellipse(100% 140% at left);
  }

  .c-teaser.s--horizontal .c-teaser__image img,
  .c-teaser.s--horizontal .c-teaser__squared-image,
  .c-teaser.s--horizontal .c-teaser__squared-image img {
    width: auto;
    height: 100%;
  }

  .c-teaser .t--large {
    font-size: 1rem;
  }

  .c-teaser__title {
    font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
  }

  a.c-teaser:active .c-teaser__title,
  a.c-teaser:focus .c-teaser__title,
  a.c-teaser:hover .c-teaser__title {
    font-weight: 600;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .c-teaser__content {
    padding: 1rem;
  }
}

@media (min-width: 992px) {
  .c-teaser .t--large {
    font-size: 1.2rem;
  }

  .c-teaser--product .c-teaser__text.t--large {
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .c-teaser .t--large {
    font-size: 1.4rem;
  }

  .c-teaser__title {
    font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .c-teaser__title {
    font-size: 1.4rem;
  }

  .c-teaser .c-teaser__text {
    font-size: 1rem;
  }
}

@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .c-teaser .c-teaser__image {
    flex: 0 0 auto;
  }

  .c-teaser.s--horizontal .c-teaser__image {
    flex: 1 1 auto;
  }
}

@media (-ms-high-contrast: active) and (min-width: 768px),
  (-ms-high-contrast: none) and (min-width: 768px) {
  .c-teaser.s--horizontal .c-teaser__image {
    width: 26rem;
  }
}

@media (-ms-high-contrast: active) and (min-width: 992px),
  (-ms-high-contrast: none) and (min-width: 992px) {
  .c-teaser.s--horizontal .c-teaser__image {
    width: 24rem;
  }
}

@media (-ms-high-contrast: active) and (min-width: 1200px),
  (-ms-high-contrast: none) and (min-width: 1200px) {
  .c-teaser.s--horizontal .c-teaser__image {
    width: 30rem;
  }
}

@media (-ms-high-contrast: active) and (min-width: 1600px),
  (-ms-high-contrast: none) and (min-width: 1600px) {
  .c-teaser.s--horizontal .c-teaser__image {
    width: 26rem;
  }
}

@media (-ms-high-contrast: active) and (min-width: 2000px),
  (-ms-high-contrast: none) and (min-width: 2000px) {
  .c-teaser.s--horizontal .c-teaser__image {
    width: 24rem;
  }
}

.c-row--offering .c-slide-row__slide .c-teaser {
  text-align: left;
}

.c-row--offering .c-slide-row__slide .c-teaser__content {
  position: static;
}

.c-row--offering .c-slide-row__slide .c-teaser__content svg {
  position: absolute;
  bottom: 20px;
  right: 20px;
  left: auto;
}

.c-row--offering .c-slide-row__slide .c-teaser--nolink svg {
  display: none;
}

.c-contact-cards {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767.98px) {
  .c-contact-cards {
    padding-top: 3rem !important;
  }
}

.c-contact-cards .photo-wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 8rem;
  height: 8rem;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid #c7dfea;
  position: relative;
}

.c-contact-cards .photo-wrapper img {
  width: 100%;
  min-width: 7.875rem;
  height: 100%;
}

@media (min-width: 768px) {
  .c-contact-cards .contact-card-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
}

@media (min-width: 1200px) {
  .c-contact-cards .contact-card-list {
    justify-content: normal;
  }
}

.c-contact-cards .cards {
  justify-content: center;
}

@media (min-width: 1200px) {
  .c-contact-cards .cards .contact-card:nth-last-child(2):first-child {
    margin-right: 60px;
  }
}

.c-contact-cards .cards .headline {
  display: inline-block;
}

.c-contact-cards .cards .single-contact-card {
  width: 22rem;
}

.c-contact-cards .cards .single-contact-card .block-row {
  display: inline-flex;
}

.c-contact-cards .cards .single-contact-card .photo-wrapper {
  margin-top: 1.5rem;
}

.c-contact-cards .cards .single-contact-card .span5 {
  text-align: left;
  margin-left: 4.5rem;
}

@media (max-width: 991.98px) {
  .c-contact-cards .cards .single-contact-card {
    text-align: center;
  }

  .c-contact-cards .cards .single-contact-card .block-row {
    display: inline-block;
    padding-left: 0;
  }

  .c-contact-cards .cards .single-contact-card .photo-wrapper {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .c-contact-cards .cards .single-contact-card .span5 {
    text-align: center;
    margin-left: 0;
    padding-right: 0 !important;
  }
}

@media (min-width: 992px) {
  .c-contact-cards .cards .single-contact-card {
    width: 51rem;
  }
}

.c-contact-cards .cards .multiple-contact-card {
  width: 22rem;
}

@media (min-width: 1200px) {
  .c-contact-cards .container-wrapper {
    width: 1150px;
  }
}

.c-contact-cards .contact-card {
  background-color: #fff;
  text-align: center;
  border-radius: 8px;
  padding-top: 3rem;
  margin-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media (max-width: 767.98px) {
  .c-contact-cards .contact-card {
    max-width: 100%;
    margin-bottom: 1.5rem;
    margin-right: 0;
    margin-left: 0;
  }
}

@media (min-width: 1200px) {
  .c-contact-cards .contact-card {
    margin-right: 30px;
  }
}

.c-contact-cards .contact-card:last-child {
  margin-right: 0;
}

.c-contact-cards .headline {
  font-size: 1.9rem;
}

.c-contact-cards .headline:after {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background: #0082ab;
  bottom: 0;
  left: 0;
}

.c-contact-cards .email {
  color: #0082ab;
}

.c-contact-cards .tel {
  color: #4d4d4d;
  font-size: 1.3rem;
  font-weight: 600;
}

.c-contact-cards .name {
  font-size: 1.5rem;
  padding-top: 1.5rem;
  display: inline-block;
}

.c-contact-cards .name:after {
  display: block;
  content: "";
  height: 2px;
  background: #ff7900;
  bottom: 0;
  left: 0;
  width: 6rem;
}

.c-contact-cards.c--purple {
  background-color: #d2bcd0;
}

.c-contact-cards.c--blue {
  background-color: #c7dfea;
}

.c-contact-cards.c--green {
  background-color: #dde9cf;
}

.c-contact-cards.c--yellow {
  background-color: #ffedd4;
}

.c-contact-cards.c--grey {
  background-color: #efefef;
}

.c-contact-cards.c--grey .contact-card {
  background-color: #fff;
}

.c-contact-cards.c--orange {
  background-color: #fcd7c8;
}

.c-contact-cards.c--white {
  background-color: #fff;
}

.h-100 {
  height: 100%;
}

.c-triple-flex {
  flex: 1;
}

.c-triple-block__image {
  height: 350px;
  min-height: 350px;
  max-height: 350px;
  flex-wrap: wrap;
  background-position: 50%;
  background-size: cover;
  width: 100%;
  padding: 2.5rem;
  position: relative;
}

.c-triple-block__image:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  background: linear-gradient(
    180deg,
    hsla(0, 0%, 100%, 0) 40%,
    rgba(0, 0, 0, 0.5)
  );
  z-index: 1;
}

@media (min-width: 768px) {
  .c-triple-block__image:before {
    background: linear-gradient(
      180deg,
      hsla(0, 0%, 100%, 0) 50%,
      rgba(0, 0, 0, 0.5)
    );
  }
}

.c-triple-block__link {
  display: flex;
  align-items: center;
  font-family: Soho Gothic W01 Medium, Soho Gothic W01 Regular, Verdana, Arial,
    sans-serif;
  color: #4d4d4d;
  font-size: 1rem;
}

.c-triple-block__link .c-triple-block__nav-arrow {
  width: 0.9em;
  height: 0.9em;
  margin-left: 0.4rem;
  fill: #0082ab;
}

.c-triple-block__text {
  width: 100%;
  font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
  font-size: 1rem;
  color: #4d4d4d;
}

.c-triple-block__title {
  color: #fff;
  font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
  font-weight: 600;
  z-index: 2;
}

.c-triple-block__title:after {
  background-color: #0082ab;
  height: 3px;
  width: 35%;
  max-width: 40%;
}

.c-triple-block-text-wrap {
  padding: 2.5rem;
}

.c-triple-block__green-lighter {
  background-color: #ddeacf;
}

.c-triple-block__purple-lighter {
  background-color: #d3bcd0;
}

.c-triple-block__orange-lighter {
  background-color: #fcd7c8;
}

.c-triple-block-link-wrap {
  text-decoration: none !important;
}

@media (min-width: 992px) {
  .c-triple-block__first .c-triple-block__title {
    width: 50%;
  }

  .c-triple-block__first .c-triple-block__text {
    width: 55%;
  }

  .c-triple-block__first .c-triple-block__image {
    height: 28.125rem;
    min-height: 28.125rem;
    max-height: 28.125rem;
  }
}

.c-hero-long-text {
  position: relative;
  background: #fff;
  margin-top: 2rem;
}

.c-hero-long-text .c-hero-long-text__title {
  color: #222;
}

.c-hero-long-text .c-hero-long-text__title:after {
  background-color: #0082ab;
  height: 3px;
  width: 35%;
  max-width: 40%;
}

.c-hero-long-text h3,
.c-hero-long-text p.c-hero-long-text__ingress-text {
  font-size: 1.2rem;
}

.c-hero-long-text p {
  font-size: 1rem;
}

.c-hero-long-text__image {
  width: 100%;
}

@media (min-width: 768px) {
  .c-hero-long-text {
    border: 1px solid #b1b0b0;
    border-radius: 1.2rem;
    margin-top: -7rem;
  }
}

.c-hero-product-details__title {
  color: #222;
}

.c-cloudinary-video {
  width: 100%;
}

.c-hero-product-details__title:after {
  background-color: #0082ab;
  height: 3px;
  width: 20%;
  max-width: 40%;
}

.c-product-details h4 {
  font-size: 1.1rem;
}

.c-hero-product-details__image {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 40vh;
}

.c-hero-product-details__ingress {
  font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.6em;
}

.c-slide-row__inner.c-product-details__slide-row__inner {
  padding: 1.5rem 0.5rem 0;
}

.c-product-details {
  background-color: #d8d8d8;
}

.c-product-details ul.c-product-details__list li {
  font-size: 0.9rem;
}

.c-product-details ul.c-product-details__list li:before {
  min-width: 0.65rem;
  width: 0.65rem;
  height: 0.65rem;
}

.c-product-details .c-slide-row__slide {
  background-color: #fff;
  padding: 0;
  margin: 0 0.4rem;
}

@media (min-width: 768px) {
  .c-product-details {
    background-color: #fff;
  }

  .c-product-details .c-product-details__title {
    width: 50%;
  }

  .c-product-details .c-slide-row__slide {
    margin: 0;
  }
}

@media (min-width: 992px) {
  .c-product-details .c-slide-row__track .c-slide-row__inner.row {
    justify-content: space-between;
  }

  .c-product-details
    .c-slide-row__track
    .c-slide-row__inner
    .c-slide-row__slide {
    flex: 0 0 48.5%;
  }
}

.c-sticky-button-wrapper {
  position: relative;
}

.c-sticky-button.c-sticky-button-inner {
  position: fixed;
  z-index: 10;
}

.c-sticky-button.sticky__button-wrapper {
  background-color: hsla(0, 0%, 100%, 0.8);
}

.c-sticky-button.c-sticky__enquire-button {
  right: inherit;
  width: 100%;
  background: linear-gradient(
    0deg,
    hsla(0, 0%, 100%, 0.8) 0,
    hsla(0, 0%, 100%, 0) 70%
  );
  border-top: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
  left: 0;
  padding: 25px;
}

@media (min-width: 768px) {
  .c-sticky-button.c-sticky__enquire-button {
    right: 12%;
    left: inherit;
    width: auto;
    background: transparent;
    border: none;
  }
}

.fade-from-bottom {
  animation: fadeFromBottom 1s ease;
  bottom: 50px;
  -webkit-animation: fadeFromBottom 1s ease;
  -moz-animation: fadeFromBottom ease 1s;
  -o-animation: fadeFromBottom ease 1s;
  -ms-animation: fadeFromBottom ease 1s;
}

@keyframes fadeFromBottom {
  0% {
    transform: translateY(100px);
  }

  to {
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeFromBottom {
  0% {
    transform: translateY(100px);
  }

  to {
    transform: translateY(0);
  }
}

.fade-out-to-bottom {
  animation: fadeOutToBottom 1s ease;
  transform: translateY(200px);
  bottom: 50px;
  -webkit-animation: fadeOutToBottom 1s ease;
  -moz-animation: fadeOutToBottom ease 1s;
  -o-animation: fadeOutToBottom ease 1s;
  -ms-animation: fadeOutToBottom ease 1s;
}

@keyframes fadeOutToBottom {
  0% {
    transform: translateY(0);
  }

  to {
    transform: translateY(200px);
  }
}

@-webkit-keyframes fadeOutToBottom {
  0% {
    transform: translateY(0);
  }

  to {
    transform: translateY(200px);
  }
}

.c-hidden__sticky-button {
  display: none;
}

.c-modal {
  display: flex;
  align-items: center;
  position: fixed;
  max-height: 85vh;
  top: 50%;
  left: 50%;
  z-index: 21;
  overflow-y: auto;
  opacity: 1;
  -webkit-animation: show 0.2s;
  animation: show 0.2s;
  transform: translate(-50%, -50%);
}

.c-modal,
.c-modal .c-modal-wrap {
  width: 100%;
  height: 100%;
}

.c-modal .c-modal--inner {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #efefef;
  border-radius: 0.125rem;
  min-width: 20rem;
  z-index: 10;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .c-modal .c-modal--inner .carousel .thumbs-wrapper .control-disabled {
    display: none;
  }
}

.c-modal .c-modal--inner .c-modal__close-button {
  border: none;
  background: transparent;
  position: absolute;
  right: 0;
  outline: none;
  z-index: 999;
  top: -0.688rem;
}

@media (min-width: 768px) {
  .c-modal .c-modal--inner .c-modal__close-button {
    top: 0;
  }
}

.c-modal .c-modal--inner .c-modal__close-button .icon {
  width: 1.125rem;
  height: 1.125rem;
}

.c-modal__content {
  position: relative;
}

@-webkit-keyframes show {
  0% {
    transform: scale(0);
    opacity: 0;
    z-index: -1;
  }

  to {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
  }
}

@keyframes show {
  0% {
    transform: scale(0);
    opacity: 0;
    z-index: -1;
  }

  to {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
  }
}

.c-modal-overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.8;
  z-index: 20;
  transition: opacity 0.2s ease-out;
}

.modal-carousel__title {
  display: inline-block;
  font-size: 1.313rem;
  padding: 0;
}

@media (min-width: 768px) {
  .modal-carousel__title {
    font-size: 1.125rem;
  }
}

.modal-carousel__title.c-row__title.t--underline:after {
  width: 23% !important;
}

.c-related-products {
  background: #efefef;
}

.c-related-products .c-row__title {
  margin: 1.5rem 1.4rem;
  padding: 0;
  color: #222;
}

.c-related-products .c-row__title:after {
  width: 50% !important;
}

.c-related-products img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 18.4rem;
}

@media (min-width: 768px) {
  .c-related-products img {
    height: 13.3rem;
  }
}

.c-related-products .c-related-products__content {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: flex-end;
}

.c-related-products .c-related-products__content svg {
  width: 0.9em;
  height: 0.9em;
  margin-left: 0.4rem;
  fill: #0082ab;
  position: absolute;
  bottom: -4px;
  right: -8px;
}

@media (min-width: 768px) {
  .c-related-products .c-related-products__wrapper {
    box-shadow: 0.063rem -0.063rem 1.688rem 0 rgba(0, 0, 0, 0.2);
  }

  .c-related-products .c-row__title-row {
    justify-content: flex-start;
  }

  .c-related-products .c-teaser.s--horizontal {
    height: auto;
    flex-direction: column;
    justify-content: space-between;
  }
}

.c-related-products__title-wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.c-related-products__title-wrap h3 {
  font-size: 1.2rem;
  flex: 1;
  margin-right: 2rem;
}

.c-video-block__wrapper .c-row__title.t--underline:after {
  width: 35% !important;
}

.c-video-block__wrapper button {
  position: relative;
}

.c-video-block__wrapper button .new-window-icon {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  right: 0.7rem;
}

.c-video-block--blue {
  background-color: #c7dfea;
}

.c-video-block--gray {
  background-color: #efefef;
}

.c-video-block--green {
  background-color: #ddeacf;
}

.c-video-block__play-icon,
.c-video__wrapper {
  position: relative;
}

.c-video-block__play-icon:after {
  content: "";
  background: url(gfx/video-play-icon.svg) no-repeat 0 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6.125rem;
  height: 6.125rem;
  background-size: contain;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.c-video-block__video-element {
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 768px) {
  .c-video-block__wrapper {
    border-radius: 1rem;
  }

  .c-video-block__modal .c-row__title.t--underline:after {
    width: 23% !important;
  }
}

.full-size .c-video-block__wrapper {
  padding: 0 !important;
  display: block !important;
  background-color: transparent !important;
  position: relative;
  border-radius: 1rem;
  max-width: 1208px;
  margin-left: auto;
  margin-right: auto;
}

.full-size .c-video-block__wrapper h2,
.full-size .c-video-block__wrapper p {
  display: none;
}

.full-size .c-video-block__wrapper .c-video__wrapper {
  flex: none;
  max-width: none;
}

.full-size .c-video-block__wrapper .container-lg {
  position: static;
}

.full-size .c-video-block__wrapper video {
  border-radius: 1rem;
  max-height: 500px;
}

.full-size .c-video-block__wrapper .c-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent !important;
  text-indent: -9999px;
}

.full-size .c-video-block__wrapper .new-window-icon {
  display: none;
}

.c-focus + div[data-react-component="StandardVideoBlock"] {
  margin-top: 170px;
}

@media (max-width: 767.98px) {
  .c-video-block.full-size {
    padding: 10px 0 40px;
  }
}

.c-case-html__heading-wrap {
  margin: 0 auto;
  overflow-wrap: break-word;
  position: relative;
}

.c-case-html__heading-wrap h2 {
  font-weight: 400;
  text-align: center;
}

.c-case-html__heading-wrap strong {
  font-weight: 400;
}

.c-case__title h1,
.c-case__title h2,
.c-case__title h3,
.c-case__title p,
.c-case__title span,
.c-row__title-row {
  text-align: center;
}

.c-case__image-wrap .c-case__image {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-case__text-wrap p,
.c-case__text-wrap strong {
  font-size: 1.2rem;
}

.c-case__quote-wrap {
  position: relative;
}

.c-case__quote-wrap:before {
  content: "“";
  left: -0.5rem;
  top: -4.5rem;
}

.c-case__quote-wrap:after,
.c-case__quote-wrap:before {
  font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
  position: absolute;
  width: 4rem;
  height: 4rem;
  z-index: 9;
  text-align: center;
  line-height: 9.375rem;
  font-weight: 600;
  font-size: 9.375rem;
  color: #ff7900;
}

.c-case__quote-wrap:after {
  content: "”";
  right: -0.5rem;
  bottom: -4.5rem;
}

.c-case__quote-wrap div,
.c-case__quote-wrap p,
.c-case__quote-wrap span {
  margin: 0;
}

.c-case__quote-wrap p {
  font-size: 1.32rem;
}

.c-case-subtitle {
  text-align: left;
}

@media (min-width: 768px) {
  .c-case-html__heading-wrap h2,
  .c-case-html__heading-wrap strong {
    font-size: 4rem;
  }

  .c-case__quote-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .c-case__item--even .c-case__quote-bg {
    right: -50vw;
  }

  .c-case__item--odd .c-case__quote-bg {
    left: -50vw;
  }
}

.c-case__image-background {
  position: relative;
}

.c-case__image-background:before {
  content: "";
  background: url(gfx/large-gradient.svg) no-repeat 0 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center 0;
}

.c-case-subtitle__border {
  border-color: #0082ab;
}

@media (min-width: 768px) {
  .c-case-subtitle__border {
    width: 540px;
  }

  .c-case__text-wrap p,
  .c-case__text-wrap strong {
    font-size: 1rem;
  }

  .c-case__quote-wrap:before {
    left: -1.5rem;
  }

  .c-case__quote-wrap:after {
    right: -1.5rem;
  }

  .c-case__image-wrap .c-case__image {
    width: 100%;
    height: 21.875rem;
    min-height: 21.875rem;
    max-height: 21.875rem;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .c-case__item .c-video-block__video-element {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .c-case__item .c-video-block__video-element,
  .c-case__quote-box {
    height: 21.875rem;
    min-height: 21.875rem;
    max-height: 21.875rem;
  }
}

@media (min-width: 1600px) {
  .c-case__image-wrap .c-case__image {
    width: 100%;
    height: 26.25rem;
    min-height: 26.25rem;
    max-height: 26.25rem;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .c-case__item .c-video-block__wrapper {
    padding: 0;
  }

  .c-case__item .c-video-block__video-element {
    width: 100%;
    height: 26.25rem;
    min-height: 26.25rem;
    max-height: 26.25rem;
    -o-object-fit: fill;
    object-fit: fill;
  }

  .c-case__quote-box {
    height: 26.25rem;
    min-height: 26.25rem;
    max-height: 26.25rem;
  }
}

.c-equipment .c-row__title.t--underline:after {
  width: 55% !important;
}

.c-equipment .c-equipment__subtitle {
  font-size: 1.7rem;
  font-weight: 400;
}

.c-equipment .c-equipment__text {
  font-size: 1.2rem;
}

.c-equipment .c-equipment__attribute,
.c-equipment .c-equipment__capacity-title {
  font-weight: 700;
  min-width: 4.063rem;
}

.c-equipment .c-equipment__select {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: 0.063rem solid #0082ab;
  text-align: center;
  -moz-text-align-last: center;
  text-align-last: center;
  border-radius: 1.2rem;
  outline: none;
  font-size: 1.4rem;
  background: url(gfx/dropdown.svg) no-repeat 0 0;
  background-size: 1rem 1rem;
  background-position: 97%;
  background-color: #fff;
}

.c-equipment .c-equipment__select-wrap {
  position: relative;
  width: 100%;
}

.c-equipment__image {
  width: 100%;
  border-radius: 1rem;
  min-height: 15rem;
  max-height: 15rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-equipment__container {
  border-radius: 1rem;
}

@media (min-width: 768px) {
  .c-equipment__container {
    min-height: 34.375rem;
  }
}

@media (min-width: 768px) {
  .c-equipment__attribute-container {
    min-height: 8rem;
  }
}

.c-equipment__variant-button {
  background-color: #fff;
  border-radius: 1rem;
  min-width: 6rem;
  border: 0.063rem solid transparent;
}

.c-equipment__variant-button:hover {
  border: 0.063rem solid #0082ab;
}

.c-equipment__variant-button:focus {
  outline: none;
}

.c-equipment__variant-button--active {
  border: 0.063rem solid #0082ab;
  position: relative;
}

.c-equipment__variant-button--active:before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 100%;
  background-color: #0082ab;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .c-equipment__variant-button--active:before {
    top: 50%;
    left: -1.5rem;
    transform: translateY(-50%);
  }
}

.c-equipment__product-item {
  border-radius: 1rem;
}

.c-equipment__product-item:hover {
  cursor: pointer;
  background-color: #efefef;
}

.c-equipment__product-item--active {
  background-color: #efefef;
}

.c-equipment__product-item--active .c-equipment__product-title {
  position: relative;
  font-weight: 500;
}

.c-equipment__product-item--active .c-equipment__product-title:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  margin-bottom: -0.2rem;
  height: 0.188rem;
  width: 70%;
  max-width: 70%;
  background-color: #0082ab;
}

.c-equipment__attribute-wrap strong {
  font-weight: 500;
}

@media (min-width: 768px) {
  .c-equipment__rounded {
    border-radius: 1.5rem;
  }

  .c-equipment__rounded .c-row__title.t--underline {
    font-size: 1.6rem;
  }

  .c-equipment__rounded .c-equipment__subtitle {
    font-size: 1.5rem;
  }

  .c-equipment__rounded .c-equipment__text {
    font-size: 1rem;
  }

  .c-equipment__rounded .c-equipment__product-list {
    height: 100%;
  }

  .c-equipment__rounded .c-equipment__attribute-wrap p,
  .c-equipment__rounded .c-equipment__capacity-title {
    font-size: 1rem;
  }
}

@media (min-width: 1600px) {
  .c-equipment__image {
    height: 100%;
    max-height: 100%;
  }
}

.c-catalogue-wrap {
  background-color: #ffedd4;
}

.c-catalogue-wrap p,
.c-catalogue-wrap ul > li {
  font-size: 1.2rem;
}

.c-catalogue__issuu {
  min-height: 20rem;
}

.download-rounded-block {
  border-radius: 1rem;
}

.download-block {
  border-radius: 1rem;
  background-color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.download-block:hover {
  background-color: #ff7900;
  color: #fff;
}

.download-block .download-icon {
  background: url(gfx/circle-down-orange.svg) no-repeat;
  width: 3rem;
  height: 3rem;
  background-size: contain;
}

.download-block:hover .download-icon {
  background: url(gfx/circle-down-white.svg) no-repeat;
  background-size: contain;
}

.download-wrap {
  border: 0.188rem solid #ff7900;
  background-color: #fff;
}

@media (min-width: 768px) {
  .c-catalogue-wrap {
    border-radius: 1rem;
  }
}

.c-certificate .c-row__title.t--underline:after {
  width: 40% !important;
}

.c-certificate-rounded {
  border-radius: 1rem;
}

.c-certificate-grid {
  display: grid;
  grid-auto-flow: column;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}

.c-certificate-table__header {
  line-height: 1.5rem;
}

.c-certificate-table__header:first-child {
  width: 7.813rem;
}

@media (min-width: 1600px) {
  .c-certificate-table__header:first-child {
    width: 10.813rem;
  }
}

.c-certificate__select-wrap {
  position: relative;
  width: 100%;
}

.c-certificate__select {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: 0.063rem solid #0082ab;
  text-align: center;
  -moz-text-align-last: center;
  text-align-last: center;
  text-align: -webkit-center;
  border-radius: 1.2rem;
  outline: none;
  font-size: 1.4rem;
  background: url(gfx/dropdown.svg) no-repeat 0 0;
  background-size: 1rem 1rem;
  background-position: 97%;
  background-color: #fff;
}

.c-content .t--alt .c-row__title.c-certificate__name {
  font-size: 1.5rem;
}

.c-certificate__desktop-select {
  height: 12rem;
  overflow-y: scroll;
}

.c-certificate__desktop-select-wrap {
  position: relative;
  width: 18rem;
  border-bottom: 0.125rem solid #ff7900;
  cursor: pointer;
}

.c-certificate__desktop-select-wrap .c-certificate__desktop-select {
  position: absolute;
  top: 2rem;
  z-index: 10;
  background: #fff;
  width: 100%;
  box-shadow: 0.25rem 0.25rem 0.313 0 rgba(0, 0, 0, 0.15);
}

.c-certificate__desktop-select-wrap .c-certificate__desktop-select li {
  cursor: pointer;
  transition: all 0.2s ease-in;
}

.c-certificate__desktop-select-wrap .c-certificate__desktop-select li:hover {
  background-color: #efefef;
}

.c-certificate__desktop-select-wrap .c-certificate__selected-fabric {
  color: #ff7900;
}

.c-certificate__desktop-select-wrap .c-certificate__fabric-label {
  color: #b1b0b0;
}

.c-certificate__desktop-select-wrap .dropdown-icon {
  width: 1rem;
  height: 1rem;
  fill: #ff7900;
  transition: all 0.1s ease-in;
}

.c-certificate__desktop-select-wrap .dropdown--opened {
  transform: rotate(180deg);
  transform-origin: center center;
}

.c-certificate__grid-wrapper {
  background-color: #ffedd4;
}

.c-certificate__grid-wrapper .c-certificate--exist {
  width: 0.6rem;
  height: 0.6rem;
  background-color: #0082ab;
}

.c-certificate__grid-wrapper .c-certificate--none {
  width: 0.6rem;
  height: 0.6rem;
  background-color: transparent;
}

.c-certificate__grid-wrapper .c-certificate__row-name {
  font-weight: 700;
  font-size: 1rem;
  word-break: break-word;
}

.c-certificate__grid-wrapper .c-certificate__row-name:first-child {
  width: 7.813rem;
}

@media (min-width: 1600px) {
  .c-certificate__grid-wrapper .c-certificate__row-name:first-child {
    width: 10.813rem;
  }
}

.c-certificate__wrap {
  width: 100%;
}

.download-icon__wrap .download-icon {
  transition: all 0.2s ease-in-out;
  background: url(gfx/circle-down-white.svg) no-repeat;
  width: 3rem;
  height: 3rem;
  background-size: contain;
}

.download-icon__wrap:hover .download-icon {
  background: url(gfx/circle-down-orange.svg) no-repeat;
  background-size: contain;
}

@media (min-width: 768px) {
  .c-certificate .t--alt p.t--preamble {
    font-size: 1rem;
  }

  .c-certificate__pdf-list-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 1rem;
    column-gap: 1rem;
  }

  .c-certificate__pdf-list-wrap .c-certificate__label {
    font-size: 1rem;
  }

  .c-certificate-rounded {
    min-height: 35rem;
  }

  .c-certificate-rounded .c-certificate__row {
    height: 100%;
  }
}

blockquote {
  quotes: "“" "”" "‘" "’";
}

.c-quote {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: #4d4d4d;
  background-color: #f3dccf;
  border-radius: 0;
  margin-bottom: 4.375rem;
  max-width: 75.5rem;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

@media (min-width: 576px) {
  .c-quote {
    margin-left: auto;
    margin-right: auto;
    border-radius: 1.25rem;
  }
}

@media (min-width: 768px) {
  .c-quote {
    flex-direction: row;
    height: 27.875rem;
  }
}

@media (min-width: 992px) {
  .c-quote {
    height: 30.188rem;
  }
}

.c-quote__image {
  position: relative;
  display: none;
  -webkit-clip-path: ellipse(90% 140% at left);
  clip-path: ellipse(90% 140% at left);
}

.c-quote__image img {
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
}

.c-quote__image svg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

@media (min-width: 576px) {
  .c-quote__image {
    display: block;
  }
}

@media (min-width: 768px) {
  .c-quote__image {
    width: auto;
    height: 100%;
    -webkit-clip-path: ellipse(100% 140% at left);
    clip-path: ellipse(100% 140% at left);
    max-width: 43.46%;
  }

  .c-quote__image img {
    width: auto;
    min-width: 1rem;
    height: 100%;
  }
}

@media (min-width: 992px) {
  .c-quote__image img {
    min-width: 2rem;
  }
}

.c-quote__image-gradient {
  background-image: linear-gradient(
    0deg,
    rgba(34, 34, 34, 0.75) 0,
    hsla(0, 0%, 84.7%, 0)
  );
  display: none;
  opacity: 1;
}

@media (min-width: 768px) {
  .c-quote__squared-image,
  .c-quote__squared-image img {
    width: auto;
    height: 100%;
  }
}

.c-quote__content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: auto;
  padding: 4rem 2rem;
}

.c-quote__content p {
  margin: 0;
}

.c-quote__content svg {
  display: none;
}

@media (min-width: 576px) {
  .c-quote__content {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .c-quote__content {
    justify-content: center;
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }
}

.c-quote__text {
  position: relative;
  font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
  font-weight: 200;
  font-size: 1.6rem;
  padding: 3.38rem 0 3.38rem 0.5rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .c-quote__text {
    font-size: 1.4rem;
    font-weight: 500;
    font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
  }
}

@media (min-width: 992px) {
  .c-quote__text {
    font-size: 1.6rem;
    padding: 4.38rem 0 4.38rem 0.5rem;
  }
}

@media (min-width: 1200px) {
  .c-quote__text {
    font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
    font-size: 1.75rem;
    line-height: 2.4rem;
  }
}

.c-quote__text:after,
.c-quote__text:before {
  font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
  position: absolute;
  width: 4rem;
  height: 4rem;
  z-index: 9;
  text-align: center;
  line-height: 5.375rem;
  font-weight: 600;
  font-size: 5.375rem;
  color: #ff7900;
}

@media (min-width: 768px) {
  .c-quote__text:after,
  .c-quote__text:before {
    line-height: 5.375rem;
    font-size: 6.375rem;
  }
}

@media (min-width: 992px) {
  .c-quote__text:after,
  .c-quote__text:before {
    line-height: 7.375rem;
    font-size: 8.375rem;
  }
}

@media (min-width: 1200px) {
  .c-quote__text:after,
  .c-quote__text:before {
    line-height: 7.375rem;
    font-size: 9.375rem;
  }
}

.c-quote__text:before {
  content: open-quote;
  left: -0.5rem;
  top: 0;
  text-align: start;
}

.c-quote__text:after {
  content: close-quote;
  right: 0;
  bottom: 0;
  text-align: end;
}

.c-quote__author {
  font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
  font-size: 1.5rem;
}

@media (min-width: 1200px) {
  .c-quote__author {
    font-size: 1.6rem;
    line-height: 2.063rem;
  }
}

.c-quote--product {
  border-color: #b1b0b0 !important;
}

@media (min-width: 992px) {
  .c-quote--product .c-quote__author {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .c-quote--alt {
    background-color: #fff;
    border: 4px solid #fff;
  }

  .c-quote--alt:hover {
    border-color: #d6d6d6;
  }
}

@media (min-width: 768px) {
  .c-quote--image .c-quote {
    height: 30.188rem;
  }
}

@media (min-width: 576px) {
  .c-quote--image .c-quote__content {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

@media (min-width: 992px) {
  .c-quote--image .c-quote__content {
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }
}

@media (min-width: 768px) {
  .c-quote--image .c-quote__text {
    font-size: 1.2rem;
  }
}

@media (min-width: 992px) {
  .c-quote--image .c-quote__text {
    font-size: 1.4rem;
  }
}

@media (min-width: 1200px) {
  .c-quote--image .c-quote__text {
    font-size: 1.51rem;
  }

  .c-quote--image .c-quote__text:after,
  .c-quote--image .c-quote__text:before {
    line-height: 8.375rem;
  }
}

@media (min-width: 768px) {
  .c-quote--image .c-quote__author {
    font-size: 1.1rem;
  }
}

@media (min-width: 992px) {
  .c-quote--image .c-quote__author {
    font-size: 1.3rem;
  }
}

@media (min-width: 1200px) {
  .c-quote--image .c-quote__author {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .c-quote--small {
    height: 21.875rem;
  }

  .c-quote--small .c-quote__content {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .c-quote--small .c-quote__text {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    font-size: 1.2rem;
  }

  .c-quote--small .c-quote__text:after,
  .c-quote--small .c-quote__text:before {
    font-size: 4rem;
    height: 2.5rem;
    width: 2.5rem;
    line-height: 3rem;
  }

  .c-quote--small .c-quote__author {
    font-size: 1.1rem;
  }
}

@media (min-width: 992px) {
  .c-quote--small {
    height: 27.875rem;
  }

  .c-quote--small .c-quote__content {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .c-quote--small .c-quote__text {
    font-size: 1.4rem;
    padding: 4.38rem 0 4.38rem 0.5rem;
  }

  .c-quote--small .c-quote__author {
    font-size: 1.3rem;
  }
}

@media (min-width: 1200px) {
  .c-quote--small {
    height: 36.625rem;
  }

  .c-quote--small .c-quote__content {
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .c-quote--small .c-quote__text {
    font-size: 1.8rem;
  }

  .c-quote--small .c-quote__author {
    font-size: 1.6rem;
  }
}

.column--quote {
  margin-left: 0 !important;
}

@media (min-width: 768px) {
  .c-content .column--quote {
    padding-left: 15px !important;
    padding-right: 0 !important;
  }

  .c-content .column--quote:nth-child(2n) {
    padding-left: 0 !important;
    padding-right: 15px !important;
  }
}

.c-author {
  margin-bottom: 70px;
}

.c-author.no-author .c-author__card {
  display: none;
}

.c-author.no-image {
  display: flex;
  align-items: center;
  max-width: 825px;
  margin-left: auto;
  margin-right: auto;
}

.c-author.no-image .c-author__card {
  width: 50%;
  height: auto;
  padding: 20px 16px;
  margin-bottom: 0;
}

.c-author.no-image .c-author__bio,
.c-author.no-image .c-author__image {
  display: none;
}

.c-author.no-image .c-author__sharing {
  width: 50%;
}

.c-author .c-author__card {
  height: 200px;
  width: 100%;
  max-width: 827px;
  background: #efefef;
  border-radius: 8px;
  display: flex;
  padding: 24px 0 32px;
  margin: 0 auto 54px;
  font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
}

.c-author .c-author__card .c-author__image {
  flex: 215px 0;
  padding: 0 35px;
}

.c-author .c-author__card .c-author__image img {
  width: 144px;
  height: 144px;
  border-radius: 100%;
}

@media (max-width: 767.98px) {
  .c-author .c-author__card .c-author__image {
    padding: 0;
    text-align: center;
    margin-bottom: 40px;
  }
}

.c-author .c-author__card .c-author__text {
  padding-right: 32px;
}

.c-author .c-author__card .c-author__text .c-author__name {
  font-size: 24px;
  line-height: 1.08;
  font-weight: 500;
  margin-bottom: 5px;
}

.c-author .c-author__card .c-author__text .c-author__name:after {
  width: 2em !important;
  margin-bottom: -0.3rem;
}

@media (max-width: 767.98px) {
  .c-author .c-author__card .c-author__text .c-author__name {
    text-align: center;
  }
}

.c-author .c-author__card .c-author__text .c-author__role {
  font-size: 14px;
  line-height: 1.36;
  margin-bottom: 15px;
}

@media (max-width: 767.98px) {
  .c-author .c-author__card .c-author__text .c-author__role {
    text-align: center;
  }
}

.c-author .c-author__card .c-author__text .c-author__bio {
  font-size: 16px;
  line-height: 1.31;
  font-weight: 500;
  margin-bottom: 10px;
}

.c-author .c-author__card .c-author__text .c-author__date {
  font-size: 14px;
  line-height: 1.86;
}

@media (max-width: 767.98px) {
  .c-author .c-author__card .c-author__text {
    padding-right: 0;
  }
}

@media (max-width: 767.98px) {
  .c-author .c-author__card {
    height: auto;
    display: block;
    padding: 24px 16px;
    margin-bottom: 31px;
  }
}

.c-author .c-author__sharing {
  text-align: center;
}

.c-author .c-author__sharing a {
  display: inline-block;
  margin: 0 10px;
}

.c-author .c-author__sharing a:hover {
  filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(368deg)
    brightness(104%) contrast(104%);
}

.c-article-image {
  position: relative;
  border-radius: 8px;
  border: 1px solid #979797;
  margin-bottom: 70px;
  font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
  overflow: hidden;
  max-width: 1208px;
  margin-left: auto;
  margin-right: auto;
}

.c-article-image img {
  width: 100%;
  border-radius: 8px;
}

@media (max-width: 767.98px) {
  .c-article-image img {
    border-radius: 0;
  }
}

.c-article-image .c-article-image__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #efefef;
  font-size: 21px;
  line-height: 1.57;
  padding: 15px 29px;
}

@media (max-width: 767.98px) {
  .c-article-image .c-article-image__caption {
    position: relative;
    padding: 15px 20px;
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 767.98px) {
  .c-article-image {
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 33px;
    border-radius: 0;
    border-left: #efefef;
    border-bottom: #efefef;
    border-right: #efefef;
    border-top-color: #efefef;
  }
}

p + .c-article-image {
  margin-top: 120px;
}

.c-poll {
  height: 560px;
  background: #efefef;
  border-radius: 20px;
  padding: 33px 40px;
  position: relative;
  font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
}

.c-poll .BaseButton button.c-poll__option {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  font-size: 21px;
  font-weight: 500;
  height: 80px;
  padding: 0 45px;
  margin-bottom: 14px;
  cursor: pointer;
  color: #4d4d4d;
}

.c-poll .c-poll__voting .c-poll__heading {
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
  margin-bottom: 60px;
}

@media (max-width: 767.98px) {
  .c-poll .c-poll__voting .c-poll__heading {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 40px;
  }
}

.c-poll .c-poll__voting .c-poll__options .c-poll__option {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  font-size: 21px;
  font-weight: 500;
  height: 80px;
  padding: 0 45px;
  margin-bottom: 14px;
  cursor: pointer;
  border: none;
}

.c-poll .c-poll__voting .c-poll__options .c-poll__option:hover {
  border: 3px solid #ff7900;
  box-shadow: 0 2px 13px 0 rgba(77, 77, 77, 0.2);
}

@media (max-width: 767.98px) {
  .c-poll .c-poll__voting .c-poll__options .c-poll__option:hover {
    background: #ff7900;
    color: #fff;
  }
}

.c-poll .c-poll__voting .c-poll__options .c-poll__option:active {
  background-color: #ff7900;
  background-image: url(/Static/gfx/svg/check-mark-white.svg);
  background-repeat: no-repeat;
  background-position: right 30px center;
  color: #fff;
}

@media (max-width: 767.98px) {
  .c-poll .c-poll__voting .c-poll__options .c-poll__option {
    font-size: 16px;
    line-height: 70px;
    height: 70px;
    padding: 0 20px;
  }
}

.c-poll .c-poll__results {
  display: none;
  flex-direction: column;
}

.c-poll .c-poll__results .c-poll__heading {
  font-size: 24px;
  line-height: 40px;
  font-weight: 500;
  margin-bottom: 35px;
}

.c-poll .c-poll__results .c-poll__heading br {
  display: none;
}

@media (max-width: 767.98px) {
  .c-poll .c-poll__results .c-poll__heading {
    font-size: 21px;
    line-height: 24px;
  }
}

.c-poll .c-poll__results .c-poll__options .c-poll__option {
  font-size: 21px;
  line-height: 35px;
  font-weight: 500;
  margin-bottom: 10px;
}

.c-poll .c-poll__results .c-poll__options .c-poll__option .c-poll__bar {
  height: 60px;
  background: #b1b0b0;
  border-radius: 8px;
  padding-left: 25px;
  display: flex;
  align-items: center;
  transition: 1s ease;
}

.c-poll .c-poll__results .c-poll__options .c-poll__option .c-poll__bar.orange {
  background: #fbb040;
}

@media (max-width: 767.98px) {
  .c-poll .c-poll__results .c-poll__options .c-poll__option .c-poll__bar {
    height: 40px;
    font-size: 16px;
    padding-left: 10px;
  }
}

.c-poll .c-poll__results .c-poll__options .c-poll__option.active .c-poll__bar {
  background: #fbb040;
}

@media (max-width: 767.98px) {
  .c-poll .c-poll__results .c-poll__options .c-poll__option {
    font-size: 16px;
    line-height: 35px;
  }
}

.c-poll .c-poll__results .c-poll__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 89px;
  background: #ffedd4;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.c-poll .c-poll__results .c-poll__bottom .c-poll__info {
  font-size: 16px;
  line-height: 21px;
  position: absolute;
  top: 50%;
  left: 44px;
  transform: translateY(-50%);
}

@media (max-width: 991.98px) {
  .c-poll .c-poll__results .c-poll__bottom .c-poll__info {
    font-size: 14px;
    top: 15px;
    left: 32px;
    transform: none;
  }
}

.c-poll .c-poll__results .c-poll__bottom .c-poll__back {
  font-size: 21px;
  line-height: 35px;
  font-weight: 500;
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  color: #4d4d4d;
  text-decoration: underline;
  background: none;
  border: none;
}

@media (max-width: 991.98px) {
  .c-poll .c-poll__results .c-poll__bottom .c-poll__back {
    font-size: 18px;
    top: auto;
    bottom: 12px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 991.98px) {
  .c-poll .c-poll__results .c-poll__bottom {
    height: 119px;
  }
}

@media (max-width: 767.98px) {
  .c-poll .c-poll__results {
    padding: 0 14px 119px;
  }
}

@media (max-width: 767.98px) {
  .c-poll {
    height: auto;
    padding: 33px 22px 25px;
    margin-bottom: 30px;
  }
}

.c-poll.wide {
  height: auto;
  padding: 65px;
  margin-bottom: 116px;
  max-width: 1208px;
  margin-left: auto;
  margin-right: auto;
}

.c-poll.wide .c-poll__voting {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-poll.wide .c-poll__voting .c-poll__heading {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .c-poll.wide .c-poll__voting .c-poll__heading {
    margin-bottom: 40px;
  }
}

.c-poll.wide .c-poll__voting .c-poll__options {
  width: 511px;
  max-width: 100%;
}

.c-poll.wide
  .c-poll__voting
  .c-poll__options
  .BaseButton:last-of-type
  .c-poll__option {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .c-poll.wide .c-poll__voting {
    flex-direction: column;
    align-items: baseline;
  }
}

.c-poll.wide .c-poll__results {
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.c-poll.wide .c-poll__results .c-poll__heading {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 0;
}

.c-poll.wide .c-poll__results .c-poll__heading br {
  display: block;
}

.c-poll.wide .c-poll__results .c-poll__heading .c-poll__bottom {
  position: relative;
  width: 375px;
  max-width: 100%;
  height: auto;
  bottom: auto;
  left: auto;
  border-radius: 20px;
  padding: 10px 17px;
  margin-top: 15px;
}

.c-poll.wide .c-poll__results .c-poll__heading .c-poll__bottom .c-poll__info {
  position: static;
  transform: none;
  font-size: 14px;
  line-height: 19px;
}

.c-poll.wide .c-poll__results .c-poll__heading .c-poll__bottom .c-poll__back {
  right: 17px;
  font-size: 14px;
}

@media (max-width: 991.98px) {
  .c-poll.wide .c-poll__results .c-poll__heading .c-poll__bottom {
    display: none;
  }
}

.c-poll.wide .c-poll__results .c-poll__options {
  width: 511px;
  max-width: 100%;
}

.c-poll.wide .c-poll__results .c-poll__options .c-poll__option:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .c-poll.wide .c-poll__results .c-poll__options .c-poll__option .c-poll__bar {
    height: 40px;
  }
}

@media (max-width: 991.98px) {
  .c-poll.wide .c-poll__results .c-poll__options .c-poll__option {
    font-size: 16px;
    line-height: 35px;
  }
}

.c-poll.wide .c-poll__results .mobile-only {
  display: none;
}

@media (max-width: 991.98px) {
  .c-poll.wide .c-poll__results .mobile-only {
    display: block;
  }
}

@media (max-width: 991.98px) {
  .c-poll.wide .c-poll__results {
    flex-direction: column;
    align-items: baseline;
    padding-bottom: 119px;
  }
}

@media (max-width: 991.98px) {
  .c-poll.wide {
    padding: 33px 22px 25px;
    margin-bottom: 30px;
  }
}

.c-services-mentioned {
  height: 100%;
  border: 1px solid #b1b0b0;
  border-radius: 20px;
  text-align: center;
  padding: 40px;
  font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
  display: block;
}

.c-services-mentioned,
.c-services-mentioned a {
  color: #4d4d4d;
  text-decoration: none !important;
}

.c-services-mentioned:hover {
  border-color: #ff7900;
}

.c-services-mentioned .c-services-mentioned__heading {
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 54px;
}

.c-services-mentioned .c-services-mentioned__image {
  margin-bottom: 43px;
}

.c-services-mentioned .c-services-mentioned__image img {
  max-width: 100%;
}

.c-services-mentioned .c-services-mentioned__bottom {
  font-size: 24px;
  line-height: 1.08;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .c-services-mentioned {
    min-height: 0;
  }
}

.sticky-sidebar .c-services-mentioned {
  padding: 20px 40px 40px;
}

.sticky-sidebar .c-services-mentioned .c-services-mentioned__heading {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 28px;
}

.sticky-sidebar .c-services-mentioned__image {
  margin-bottom: 9px;
}

.sticky-sidebar .c-services-mentioned__bottom {
  font-size: 21px;
  line-height: 26px;
}

.c-focus {
  display: flex;
  align-items: center;
  border: 1px solid #979797;
  border-radius: 8px;
  background: #ffedd4;
  height: 200px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
}

@media (max-width: 1399.98px) {
  .c-focus {
    max-width: 900px;
  }
}

.c-focus:nth-child(4n + 1) {
  background-color: #ffedd4;
}

.c-focus:nth-child(4n + 2) {
  background-color: #ddeacf;
}

.c-focus:nth-child(4n + 3) {
  background-color: #c7dfea;
}

.c-focus:nth-child(4n) {
  background-color: #d3bcd0;
}

.c-focus a {
  display: flex;
  align-items: center;
  height: inherit;
  text-decoration: none !important;
  position: relative;
  width: 100%;
  transition-duration: 0.2s;
  transition-property: background-color, color, opacity;
}

.c-focus a:after {
  content: "";
  background-image: url(/Static/gfx/svg/arrow-orange.svg);
  background-size: cover;
  width: 13px;
  height: 23px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  .c-focus a:after {
    right: 15px;
  }
}

@media (max-width: 767.98px) {
  .c-focus a:after {
    top: auto;
    bottom: 0;
    right: 15px;
  }
}

.c-focus a:active,
.c-focus a:focus,
.c-focus a:hover {
  text-decoration: none;
  color: #4d4d4d;
  background-color: #d6d6d6;
}

.c-focus a:active .c-focus__heading,
.c-focus a:focus .c-focus__heading,
.c-focus a:hover .c-focus__heading {
  font-weight: 600;
}

.c-focus a .c-focus__text,
.c-focus a .c-focus__text padding {
  padding-right: 1.5rem;
}

@media (max-width: 767.98px) {
  .c-focus a {
    display: block;
    height: auto;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}

.c-focus .c-focus__image {
  -webkit-clip-path: ellipse(100% 140% at left);
  clip-path: ellipse(100% 140% at left);
  background-color: #fff;
  background-size: cover;
  background-position: 50%;
  height: 100% !important;
  width: 250px;
  min-width: 250px;
}

.c-focus .c-focus__image img,
.c-focus .c-focus__image picture {
  flex: 250px 0;
  min-width: 250px;
  height: 100%;
}

@media (max-width: 767.98px) {
  .c-focus .c-focus__image {
    display: none;
    flex: none;
    -webkit-clip-path: none;
    clip-path: none;
  }
}

.c-focus .c-focus__content {
  color: #4d4d4d;
  margin-left: 1.875rem;
  margin-right: 1.875rem;
}

.c-focus .c-focus__content .c-focus__heading {
  font-size: 1.5rem;
  line-height: 2rem;
}

@media (max-width: 767.98px) {
  .c-focus .c-focus__content .c-focus__heading {
    font-size: 24px;
    line-height: 34px;
  }
}

.c-focus .c-focus__content .c-focus__text {
  margin-top: 8px;
}

.c-focus .c-focus__content .c-focus__text p {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 24px;
  display: block;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

@media (max-width: 1199.98px) {
  .c-focus .c-focus__content {
    max-width: none;
    margin: 27px 17px;
  }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  .c-focus {
    height: 165px;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .c-focus {
    height: 135px;
  }
}

@media (max-width: 767.98px) {
  .c-focus {
    display: block;
    padding-bottom: 0;
    margin-bottom: 30px;
    border: none;
    height: auto;
  }
}

.c-focus-row {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1600px) {
  .c-focus-row {
    max-width: 90%;
  }
}

@media (max-width: 767.98px) {
  .c-focus-row {
    max-width: 100%;
  }
}

@media (max-width: 1199.98px) {
  .c-focus-row__wrapper .container-lg {
    padding-left: 0;
    padding-right: 0;
  }

  .c-focus-row__wrapper .c-focus-row > div {
    padding-left: 0;
    padding-right: 0 !important;
  }
}

.c-focus-row > div {
  padding-left: 20px;
  padding-right: 20px !important;
}

.c-focus-row > div:nth-child(4n + 1) .c-focus {
  background-color: #ffedd4;
}

.c-focus-row > div:nth-child(4n + 3) .c-focus {
  background-color: #c7dfea;
}

.c-focus-row > div:nth-child(4n + 2) .c-focus {
  background-color: #ddeacf;
}

.c-focus-row > div:nth-child(4n) .c-focus {
  background-color: #d3bcd0;
}

.c-focus-row .c-focus {
  margin-bottom: 30px;
}

.c-focus-row .c-focus .c-focus__image {
  width: 225px;
  flex: 250px 0;
  min-width: 225px;
}

@media (min-width: 1600px) {
  .c-focus-row .c-focus .c-focus__image {
    min-width: 250px;
    width: 250px;
  }
}

.c-focus-row .c-focus .c-focus__image img,
.c-focus-row .c-focus .c-focus__image picture {
  width: auto;
  height: 100%;
  max-width: none;
}

@media (max-width: 1199.98px) {
  .c-focus-row .c-focus .c-focus__content {
    max-width: none;
    margin: 27px 17px;
  }
}

.c-products-mentioned {
  background: #efefef;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 100px;
  font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
  max-width: 1208px;
  margin-left: auto;
  margin-right: auto;
}

.c-products-mentioned .c-row {
  padding-top: 45px;
  padding-bottom: 10px;
}

@media (max-width: 767.98px) {
  .c-products-mentioned .c-row {
    padding-top: 30px;
    padding-bottom: 35px;
  }
}

.c-products-mentioned .c-products-mentioned__heading {
  font-size: 30px;
  line-height: 0.87;
  font-weight: 500;
  padding: 0 10px;
}

@media (max-width: 767.98px) {
  .c-products-mentioned .c-products-mentioned__heading {
    font-size: 24px;
    line-height: 26px;
    padding: 5px 0 0;
  }
}

.c-products-mentioned .c-slide-row__inner {
  margin-left: -15px;
  margin-right: -15px;
}

.c-products-mentioned .c-slide-row__track {
  padding-top: 0 !important;
}

.c-products-mentioned .c-slide-row__slide {
  padding-left: 15px;
  padding-right: 15px;
}

.c-products-mentioned .c-teaser {
  background-color: #fff;
  border: 20px solid #fff;
  box-shadow: 0 0.1rem 1rem -0.2rem rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  position: relative;
  padding-bottom: 100px;
}

.c-products-mentioned .c-teaser:after {
  content: "";
  background-image: url(/Static/gfx/svg/arrow-orange.svg);
  background-size: cover;
  width: 13px;
  height: 23px;
  position: absolute;
  bottom: 16px;
  right: 18px;
}

.c-products-mentioned .c-teaser__content {
  position: absolute;
  bottom: 0;
}

.c-products-mentioned .c-teaser__text {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}

.c-products-mentioned .c-slide-row__nav {
  bottom: 15px;
}

@media (max-width: 767.98px) {
  .c-products-mentioned {
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -40px;
    padding: 20px 20px 30px;
  }
}

.c-focus + .c-products-mentioned {
  margin-top: 60px;
}

.c-article-hero {
  position: relative;
  min-height: 32rem;
  padding: 0;
  overflow: hidden;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.c-article-hero__img-mobile,
.c-article-hero__img-mobile img {
  width: 100%;
  height: auto;
}

.c-article-hero__gradient {
  background-image: linear-gradient(
    180deg,
    #fff 10%,
    hsla(0, 0%, 83.9%, 0.69) 96%
  );
}

.c-article-hero__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 1rem;
}

.c-article-hero__inner--light {
  color: #fff;
}

.c-article-hero__text,
.c-article-hero__title {
  width: 100%;
  padding-right: 2rem;
  color: #000;
}

.c-article-hero__text {
  margin-bottom: 2rem;
}

.c-article-hero__d-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.2)
  );
  -webkit-mask-image: linear-gradient(#fff, #fff), url(gfx/brand-d.svg);
  mask-image: linear-gradient(#fff, #fff), url(gfx/brand-d.svg);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-position: -30% center;
  mask-position: -30% center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.c-article-hero__d-overlay.c-article-hero__d-overlay--light {
  background-color: hsla(0, 0%, 100%, 0.2);
  background-image: linear-gradient(
    270deg,
    hsla(0, 0%, 100%, 0.8),
    hsla(0, 0%, 100%, 0.4)
  );
}

@media (max-width: 767.98px) {
  .c-article-hero--mobile {
    border: none;
  }

  .c-article-hero--mobile .c-article-hero__body-content {
    position: absolute;
    bottom: 0;
    z-index: 1;
  }

  .c-article-hero--mobile .c-article-hero__title {
    font-size: 2.25rem !important;
    color: #fff;
    line-height: 0.92;
  }

  .c-article-hero--mobile .c-article-hero__button {
    margin: 2.5rem 0 1rem !important;
    padding: 0.4rem 2.8rem;
  }
}

.c-article-hero__img-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .c-article-hero {
    min-height: 0;
    background-image: none !important;
    background-color: #fff;
    border: 0;
  }

  .c-article-hero .c-article-hero__gradient {
    display: none;
  }

  .c-article-hero .c-article-hero__title {
    font-size: 1.5rem;
    font-weight: 400;
  }

  .c-article-hero.c-article-hero--slide .c-article-hero__inner,
  .c-article-hero.c-article-hero--video .c-article-hero__inner {
    padding: 1rem;
  }

  .c-article-hero.c-article-hero--slide .c-article-hero__inner--light,
  .c-article-hero.c-article-hero--video .c-article-hero__inner--light {
    color: inherit;
  }

  .c-article-hero.c-article-hero--slide .c-article-hero__text,
  .c-article-hero.c-article-hero--slide .c-article-hero__title,
  .c-article-hero.c-article-hero--video .c-article-hero__text,
  .c-article-hero.c-article-hero--video .c-article-hero__title {
    padding-right: 0;
  }

  .c-article-hero.c-article-hero--slide .c-article-hero__text,
  .c-article-hero.c-article-hero--video .c-article-hero__text {
    margin-bottom: 0;
    font-size: 1.1rem;
  }

  .c-article-hero.c-article-hero--slide .c-article-hero__button,
  .c-article-hero.c-article-hero--video .c-article-hero__button {
    align-self: center;
    margin-top: 1rem;
  }
}

@media (min-width: 768px) {
  .c-article-hero.c-article-hero--video {
    min-height: 27rem;
  }

  .c-article-hero.c-article-hero--video .c-cloudinary-video {
    min-height: 434px;
  }

  .c-article-hero.c-article-hero--video .c-article-hero__body-content {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }

  .c-article-hero__img-wrapper {
    position: static;
  }

  .c-article-hero__img-mobile {
    display: none !important;
  }

  .c-article-hero__gradient {
    background-image: linear-gradient(
      249deg,
      hsla(0, 0%, 100%, 0.68) 5%,
      hsla(0, 0%, 83.9%, 0) 76%
    );
  }

  .c-article-hero__inner {
    padding: 2rem;
  }

  .c-article-hero__inner.c-article-hero__inner--right {
    justify-content: flex-end;
    text-align: right;
  }

  .c-article-hero__text,
  .c-article-hero__title {
    padding: 0;
  }

  .c-article-hero__d-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    background-image: linear-gradient(
      270deg,
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.3)
    );
    -webkit-mask-position: 2% center;
    mask-position: 2% center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
  }

  .c-article-hero__d-overlay.c-article-hero__d-overlay--light {
    background-color: hsla(0, 0%, 100%, 0.2);
    background-image: linear-gradient(
      270deg,
      hsla(0, 0%, 100%, 0.1),
      hsla(0, 0%, 100%, 0.3)
    );
  }
}

@media (min-width: 992px) {
  .c-article-hero {
    min-height: 36rem;
    padding: 6rem 0;
  }

  .c-article-hero.c-article-hero--video .c-cloudinary-video {
    margin-top: -6rem;
  }

  .c-article-hero.c-article-hero--video .c-article-hero__body-content {
    margin-top: 6rem;
  }
}

@media (min-width: 1200px) {
  .c-article-hero {
    min-height: 42rem;
    padding: 6rem 0;
  }

  .c-article-hero.c-article-hero--video .c-cloudinary-video {
    min-height: 562.5px;
  }

  .c-article-hero__d-overlay,
  .c-article-hero__d-overlay.c-article-hero__d-overlay--light {
    -webkit-mask-position: 20% center;
    mask-position: 20% center;
  }
}

@media (min-width: 2000px) {
  .c-article-hero {
    min-height: 52rem;
  }
}

.c-standard-page-hero {
  max-height: 400px;
  min-height: 0;
  height: 42rem;
}

@media (max-width: 767.98px) {
  .c-standard-page-hero {
    height: auto;
  }
}

.c-mediahub {
  -moz-columns: 340px;
  columns: 340px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
}

.c-mediahub .c-mediahub__card {
  position: relative;
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.c-mediahub .c-mediahub__card a {
  display: block;
  height: 100%;
  color: #4d4d4d;
}

.c-mediahub .c-mediahub__card .c-mediahub__image {
  background-size: cover;
  background-position: 50%;
}

.c-mediahub .c-mediahub__card .c-mediahub__body {
  position: absolute;
  bottom: 27px;
  left: 20px;
  width: calc(100% - 40px);
  margin-right: 20px;
}

.c-mediahub .c-mediahub__card .c-mediahub__body time {
  font-size: 18px;
  line-height: 1.44;
  margin-bottom: 10px;
  display: block;
}

.c-mediahub .c-mediahub__card .c-mediahub__body h3 {
  position: relative;
  font-size: 24px;
  line-height: 34px;
}

.c-mediahub .c-mediahub__card .c-mediahub__body h3:after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 150px;
  height: 3px;
  background: #ff7900;
}

.c-mediahub .c-mediahub__card.small {
  height: 400px;
  border: 1px solid #b1b0b0;
}

.c-mediahub .c-mediahub__card.small .c-mediahub__image {
  height: 223px;
}

.c-mediahub .c-mediahub__card.large {
  height: 840px;
  background-color: #efefef;
}

.c-mediahub .c-mediahub__card.large .c-mediahub__image {
  height: 627px;
}

.c-mediahub .c-mediahub__card.large .c-mediahub__body {
  bottom: 45px;
}

.c-mediahub .c-mediahub__card.large .c-mediahub__body time {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}

.c-mediahub .c-mediahub__card.large .c-mediahub__body h3 {
  font-size: 32px;
  line-height: 40px;
}

.c-mediahub .c-mediahub__card.full-image {
  border: none;
}

.c-mediahub .c-mediahub__card.full-image .c-mediahub__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-mediahub .c-mediahub__card.full-image .c-mediahub__image:before {
  content: "";
  background-blend-mode: multiply;
  background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 1%, #222);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-mediahub .c-mediahub__card.full-image .c-mediahub__body {
  color: #fff;
}

.TheMediaHubArticleGrid {
  width: 95%;
  grid-gap: 2.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .TheMediaHubArticleGrid {
    max-width: 1800px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    grid-auto-rows: 400px;
    grid-auto-flow: dense;
    align-items: normal;
  }
}

.TheMediaHubArticleGrid .hub-article-item {
  position: relative;
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.TheMediaHubArticleGrid .hub-article-item a {
  display: block;
  height: 100%;
  color: #4d4d4d;
}

.TheMediaHubArticleGrid .hub-article-item .hub-article-image {
  background-size: cover;
  background-position: 50%;
}

.TheMediaHubArticleGrid .hub-article-item .hub-article-text-box {
  position: absolute;
  bottom: 27px;
  left: 20px;
  width: calc(100% - 40px);
  margin-right: 20px;
}

.TheMediaHubArticleGrid .hub-article-item .hub-article-text-box time {
  font-size: 18px;
  line-height: 1.44;
  margin-bottom: 10px;
  display: block;
}

.TheMediaHubArticleGrid .hub-article-item .hub-article-text-box h3 {
  position: relative;
  font-size: 24px;
  line-height: 34px;
}

.TheMediaHubArticleGrid .hub-article-item .hub-article-text-box:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 150px;
  height: 3px;
  background: #ff7900;
}

.TheMediaHubArticleGrid .hub-article-item.small-height {
  grid-row: span 1;
  height: 400px;
}

@media (min-width: 768px) {
  .TheMediaHubArticleGrid .hub-article-item.small-height {
    height: auto !important;
    height: auto;
  }
}

.TheMediaHubArticleGrid .hub-article-item.small-height .hub-article-image {
  height: 223px;
}

.TheMediaHubArticleGrid .hub-article-item.medium-height {
  grid-row: span 2;
  height: 600px;
}

.TheMediaHubArticleGrid .hub-article-item.medium-height .hub-article-image {
  height: 365px;
}

@media (min-width: 768px) {
  .TheMediaHubArticleGrid .hub-article-item.medium-height {
    height: auto !important;
    height: auto;
  }

  .TheMediaHubArticleGrid .hub-article-item.medium-height .hub-article-image {
    height: 550px;
  }
}

.TheMediaHubArticleGrid .hub-article-item.medium-height .hub-article-text-box {
  bottom: 45px;
}

.TheMediaHubArticleGrid
  .hub-article-item.medium-height
  .hub-article-text-box
  time {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}

.TheMediaHubArticleGrid
  .hub-article-item.medium-height
  .hub-article-text-box
  h3 {
  font-size: 32px;
  line-height: 40px;
}

.TheMediaHubArticleGrid .hub-article-item.small-width {
  grid-column: span 1;
  width: 100%;
}

@media (min-width: 992px) {
  .TheMediaHubArticleGrid .hub-article-item.small-width {
    width: auto !important;
    width: auto;
  }
}

.TheMediaHubArticleGrid .hub-article-item.medium-width {
  grid-column: span 2;
  width: 100%;
}

@media (min-width: 768px) {
  .TheMediaHubArticleGrid .hub-article-item.medium-width {
    width: auto !important;
    width: auto;
  }
}

.TheMediaHubArticleGrid .hub-article-item.medium-width h3 {
  font-size: 32px;
  line-height: 40px;
}

.TheMediaHubArticleGrid
  .hub-article-item.small-height.medium-width.standard
  .hub-article-text-box
  h3,
.TheMediaHubArticleGrid
  .hub-article-item.small-height.small-width.standard
  .hub-article-text-box
  h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.TheMediaHubArticleGrid
  .hub-article-item.medium-height.small-width.standard
  .hub-article-text-box
  h3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .TheMediaHubArticleGrid
    .hub-article-item.medium-height.small-width.standard
    .hub-article-text-box
    h3 {
    -webkit-line-clamp: 4;
  }
}

@media (min-width: 768px) {
  .TheMediaHubArticleGrid .hub-article-item.medium-height.medium-width h3 {
    font-size: 45px;
    line-height: 55px;
  }
}

.TheMediaHubArticleGrid .hub-article-item.full {
  border: none;
}

.TheMediaHubArticleGrid .hub-article-item.full .hub-article-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.TheMediaHubArticleGrid .hub-article-item.full .hub-article-image:before {
  content: "";
  background-blend-mode: multiply;
  background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 1%, #222);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.TheMediaHubArticleGrid .hub-article-item.full .hub-article-text-box {
  color: #fff;
}

.TheMediaHubArticleGrid .hub-article-item.full .background-white {
  background-color: #fff;
}

.TheMediaHubArticleGrid .hub-article-item.full .background-grey {
  background-color: grey;
}

.TheMediaHubArticleGrid .hub-article-item.background-grey {
  background-color: #efefef;
}

.TheMediaHubArticleGrid .hub-article-item.background-white {
  border: 1px solid #b1b0b0;
}
@media screen and (min-width: 769px) {
  .lastfooterb {
    height: 75px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  /* .lastfooterb {
    display: none !important;
  } */
  .col-sm-4 {
    max-width: 13%;
  }
  .c-footer__h2 {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 1200px) {
    footer nav {
        padding: 0 !important;
    }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .c-footer__column.col-12.col-lg-5.mb-4 {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}
@media screen and (max-width: 769px) {
  p.c-footer__social-media-heading.mb-0 {
    padding-left: 114px;
  }
}
a {
  text-decoration: none !important;
}
a:hover {
  text-decoration: none !important;
}
button:hover {
  transform: scale(1) !important;
}
@media screen and (min-width: 1550px) {
  .col-sm-4 {
    max-width: 11.7%;
  }
}
@media screen and (max-width: 1549px) {
  .col-sm-4 {
    max-width: 13%;
  }
.lastfooterb {
    display: none;
}
}
@media (max-width: 1380px) {
  .c-footer__legal-links li {
    margin-top: 0.6em;
    font-size: 13px !important;
    font-family: Soho Gothic W01 Regular, Verdana, Arial, sans-serif;
  }
  .c-footer__legal-links a {
    font-family: inherit;
    line-height: 0.8rem;
    font-size: 12px !important;
  }
}
@media screen and (max-width:769px){
.redp {
    text-align: center;
}
}
.container.container22 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
@media screen and (min-width: 769px) {
    .card-listing.card-listing--cards {
       
        margin-bottom: 20px;
    }
}
.container.container22 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
@media screen and (min-width: 769px) {
    .card-listing.card-listing--cards {
       
        margin-bottom: 20px;
    }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
}
.col-12.col-md-8.order-2.order-md-1.c-footer__column.py-3.py-sm-0.u-border-bottom.u-border-sm-bottom-0 {
    margin-left: -50px;
}