@charset "UTF-8";
/* Grid
--------------------------------------------- */
.card-grid {
  display: grid;
  gap: 40px 16px;
}
@media (min-width: 61rem) {
  .card-grid {
    gap: 40px 20px;
  }
}
.card-grid.standard {
  grid-template-columns: 1fr;
}
@media (min-width: 61rem) {
  .card-grid.standard {
    grid-template-columns: repeat(12, 1fr);
  }
}
.card-grid.standard .work-card {
  grid-column: span 1;
}
@media (min-width: 61rem) {
  .card-grid.standard .work-card:nth-child(5n+1) {
    grid-column: span 8; /* First item in the sequence spans 8 columns */
  }
  .card-grid.standard .work-card:nth-child(5n+2), .card-grid.standard .work-card:nth-child(5n+3) {
    grid-column: span 4; /* Second and third items in the sequence span 4 columns */
  }
  .card-grid.standard .work-card:nth-child(5n+4) {
    grid-column: span 8; /* Fourth item in the sequence spans 8 columns */
  }
  .card-grid.standard .work-card:nth-child(5n+5) {
    grid-column: span 12; /* Fifth item in the sequence spans 12 columns */
  }
}
.card-grid.featured {
  grid-template-columns: 1fr;
}
@media (min-width: 61rem) {
  .card-grid.featured {
    grid-template-columns: repeat(12, 1fr);
  }
}
.card-grid.featured .work-card {
  grid-column: span 1;
}
@media (min-width: 61rem) {
  .card-grid.featured .work-card:nth-child(5n+1) {
    grid-column: span 12;
  }
  .card-grid.featured .work-card:nth-child(5n+2) {
    grid-column: span 8;
  }
  .card-grid.featured .work-card:nth-child(5n+3), .card-grid.featured .work-card:nth-child(5n+4) {
    grid-column: span 5; /* Second and third items in the sequence span 5 columns */
  }
  .card-grid.featured .work-card:nth-child(5n+5) {
    grid-column: span 8; /* Fourth item in the sequence spans 7 columns */
  }
}
.card-grid.news {
  grid-template-columns: 1fr;
}
@media (min-width: 61rem) {
  .card-grid.news {
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
  }
}
.card-grid.team {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 61rem) {
  .card-grid.team {
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
  }
}
.card-grid.related-projects {
  grid-template-columns: 1fr;
}
@media (min-width: 61rem) {
  .card-grid.related-projects {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wrapper {
  box-sizing: border-box;
  max-width: 1760px;
  margin: 0px auto;
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  position: relative;
}
@media (min-width: 73rem) {
  .wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 3rem;
  padding-left: 3rem;
}

.row {
  box-sizing: border-box;
  display: -moz-flex;
  display: flex;
  -moz-flex: 0 1 auto;
  flex: 0 1 auto;
  -moz-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -16px;
  margin-left: -16px;
}

.row.reverse {
  -moz-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -moz-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.col-xs {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  flex-basis: auto;
}

.col-xs-1 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-xs-2 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-xs-3 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-xs-5 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-xs-6 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-xs-8 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-xs-9 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-xs-11 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-xs-12 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  margin-left: 0;
}

.col-xs-offset-1 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  margin-left: 8.3333333333%;
}

.col-xs-offset-2 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  margin-left: 16.6666666667%;
}

.col-xs-offset-3 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  margin-left: 25%;
}

.col-xs-offset-4 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  margin-left: 33.3333333333%;
}

.col-xs-offset-5 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  margin-left: 41.6666666667%;
}

.col-xs-offset-6 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  margin-left: 50%;
}

.col-xs-offset-7 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  margin-left: 58.3333333333%;
}

.col-xs-offset-8 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  margin-left: 66.6666666667%;
}

.col-xs-offset-9 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  margin-left: 75%;
}

.col-xs-offset-10 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  margin-left: 83.3333333333%;
}

.col-xs-offset-11 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  margin-left: 91.6666666667%;
}

.col-xs-offset-12 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 10px;
  padding-left: 10px;
  margin-left: 100%;
}

.col-xs {
  -moz-flex-grow: 1;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

.start-xs {
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.center-xs {
  -moz-justify-content: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  text-align: right;
}

.top-xs {
  -moz-align-items: flex-start;
  align-items: flex-start;
}

.middle-xs {
  -moz-align-items: center;
  align-items: center;
}

.bottom-xs {
  -moz-align-items: flex-end;
  align-items: flex-end;
}

.around-xs {
  -moz-justify-content: space-around;
  justify-content: space-around;
}

.between-xs {
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 46em) {
  .container {
    width: 46rem;
  }
  .col-sm {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: auto;
  }
  .col-sm-1 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-0 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 0;
  }
  .col-sm-offset-1 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 8.3333333333%;
  }
  .col-sm-offset-2 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 16.6666666667%;
  }
  .col-sm-offset-3 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 33.3333333333%;
  }
  .col-sm-offset-5 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 41.6666666667%;
  }
  .col-sm-offset-6 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 58.3333333333%;
  }
  .col-sm-offset-8 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 66.6666666667%;
  }
  .col-sm-offset-9 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 83.3333333333%;
  }
  .col-sm-offset-11 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 91.6666666667%;
  }
  .col-sm-offset-12 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 100%;
  }
  .col-sm {
    -moz-flex-grow: 1;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .start-sm {
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
  .center-sm {
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
  }
  .top-sm {
    -moz-align-items: flex-start;
    align-items: flex-start;
  }
  .middle-sm {
    -moz-align-items: center;
    align-items: center;
  }
  .bottom-sm {
    -moz-align-items: flex-end;
    align-items: flex-end;
  }
  .around-sm {
    -moz-justify-content: space-around;
    justify-content: space-around;
  }
  .between-sm {
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  .first-sm {
    order: -1;
  }
  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 62em) {
  .container {
    width: 61rem;
  }
  .col-md {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: auto;
  }
  .col-md-1 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-0 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 0;
  }
  .col-md-offset-1 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 8.3333333333%;
  }
  .col-md-offset-2 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 16.6666666667%;
  }
  .col-md-offset-3 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 25%;
  }
  .col-md-offset-4 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 33.3333333333%;
  }
  .col-md-offset-5 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 41.6666666667%;
  }
  .col-md-offset-6 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 50%;
  }
  .col-md-offset-7 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 58.3333333333%;
  }
  .col-md-offset-8 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 66.6666666667%;
  }
  .col-md-offset-9 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 75%;
  }
  .col-md-offset-10 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 83.3333333333%;
  }
  .col-md-offset-11 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 91.6666666667%;
  }
  .col-md-offset-12 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 100%;
  }
  .col-md {
    -moz-flex-grow: 1;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .start-md {
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
  .center-md {
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .end-md {
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
  }
  .top-md {
    -moz-align-items: flex-start;
    align-items: flex-start;
  }
  .middle-md {
    -moz-align-items: center;
    align-items: center;
  }
  .bottom-md {
    -moz-align-items: flex-end;
    align-items: flex-end;
  }
  .around-md {
    -moz-justify-content: space-around;
    justify-content: space-around;
  }
  .between-md {
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  .first-md {
    order: -1;
  }
  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 71em) {
  .container {
    width: 71rem;
  }
  .col-lg {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: auto;
  }
  .col-lg-1 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-0 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 0;
  }
  .col-lg-offset-1 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 8.3333333333%;
  }
  .col-lg-offset-2 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 16.6666666667%;
  }
  .col-lg-offset-3 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 33.3333333333%;
  }
  .col-lg-offset-5 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 41.6666666667%;
  }
  .col-lg-offset-6 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 58.3333333333%;
  }
  .col-lg-offset-8 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 66.6666666667%;
  }
  .col-lg-offset-9 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 83.3333333333%;
  }
  .col-lg-offset-11 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 91.6666666667%;
  }
  .col-lg-offset-12 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 100%;
  }
  .col-lg {
    -moz-flex-grow: 1;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .start-lg {
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
  .center-lg {
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
  }
  .top-lg {
    -moz-align-items: flex-start;
    align-items: flex-start;
  }
  .middle-lg {
    -moz-align-items: center;
    align-items: center;
  }
  .bottom-lg {
    -moz-align-items: flex-end;
    align-items: flex-end;
  }
  .around-lg {
    -moz-justify-content: space-around;
    justify-content: space-around;
  }
  .between-lg {
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  .first-lg {
    order: -1;
  }
  .last-lg {
    order: 1;
  }
}
@media only screen and (min-width: 87.5em) {
  .container {
    width: 87.5rem;
  }
  .col-xl {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: auto;
  }
  .col-xl-1 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-xl-offset-0 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 0;
  }
  .col-xl-offset-1 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 8.3333333333%;
  }
  .col-xl-offset-2 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 16.6666666667%;
  }
  .col-xl-offset-3 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 25%;
  }
  .col-xl-offset-4 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 33.3333333333%;
  }
  .col-xl-offset-5 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 41.6666666667%;
  }
  .col-xl-offset-6 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 50%;
  }
  .col-xl-offset-7 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 58.3333333333%;
  }
  .col-xl-offset-8 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 66.6666666667%;
  }
  .col-xl-offset-9 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 75%;
  }
  .col-xl-offset-10 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 83.3333333333%;
  }
  .col-xl-offset-11 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 91.6666666667%;
  }
  .col-xl-offset-12 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 100%;
  }
  .col-xl {
    -moz-flex-grow: 1;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .start-xl {
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
  .center-xl {
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .end-xl {
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
  }
  .top-xl {
    -moz-align-items: flex-start;
    align-items: flex-start;
  }
  .middle-xl {
    -moz-align-items: center;
    align-items: center;
  }
  .bottom-xl {
    -moz-align-items: flex-end;
    align-items: flex-end;
  }
  .around-xl {
    -moz-justify-content: space-around;
    justify-content: space-around;
  }
  .between-xl {
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  .first-xl {
    order: -1;
  }
  .last-xl {
    order: 1;
  }
}
@media only screen and (min-width: 106em) {
  .container {
    width: 106rem;
  }
  .col-xxl {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: auto;
  }
  .col-xxl-1 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xxl-2 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-3 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xxl-5 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xxl-6 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xxl-8 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xxl-9 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xxl-11 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xxl-12 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-xxl-offset-0 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 0;
  }
  .col-xxl-offset-1 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 8.3333333333%;
  }
  .col-xxl-offset-2 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 16.6666666667%;
  }
  .col-xxl-offset-3 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 25%;
  }
  .col-xxl-offset-4 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 33.3333333333%;
  }
  .col-xxl-offset-5 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 41.6666666667%;
  }
  .col-xxl-offset-6 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 50%;
  }
  .col-xxl-offset-7 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 58.3333333333%;
  }
  .col-xxl-offset-8 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 66.6666666667%;
  }
  .col-xxl-offset-9 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 75%;
  }
  .col-xxl-offset-10 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 83.3333333333%;
  }
  .col-xxl-offset-11 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 91.6666666667%;
  }
  .col-xxl-offset-12 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 100%;
  }
  .col-xxl {
    -moz-flex-grow: 1;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .start-xxl {
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
  .center-xxl {
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .end-xxl {
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
  }
  .top-xxl {
    -moz-align-items: flex-start;
    align-items: flex-start;
  }
  .middle-xxl {
    -moz-align-items: center;
    align-items: center;
  }
  .bottom-xxl {
    -moz-align-items: flex-end;
    align-items: flex-end;
  }
  .around-xxl {
    -moz-justify-content: space-around;
    justify-content: space-around;
  }
  .between-xxl {
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  .first-xxl {
    order: -1;
  }
  .last-xxl {
    order: 1;
  }
}
/* Variables
--------------------------------------------- */
.bg-deep-dark-forest {
  background-color: #3D6159;
}

.text-deep-dark-forest {
  color: #3D6159;
}
.text-deep-dark-forest a.secondary-link {
  color: #3D6159;
}
.text-deep-dark-forest a.secondary-link:before {
  background-color: #3D6159;
}
.text-deep-dark-forest hr {
  border-top: 1px solid #3D6159;
}

.bg-scream-green {
  background-color: #42FF5C;
}

.text-scream-green {
  color: #42FF5C;
}
.text-scream-green a.secondary-link {
  color: #42FF5C;
}
.text-scream-green a.secondary-link:before {
  background-color: #42FF5C;
}
.text-scream-green hr {
  border-top: 1px solid #42FF5C;
}

.bg-greens-the-dream {
  background-color: #458069;
}

.text-greens-the-dream {
  color: #458069;
}
.text-greens-the-dream a.secondary-link {
  color: #458069;
}
.text-greens-the-dream a.secondary-link:before {
  background-color: #458069;
}
.text-greens-the-dream hr {
  border-top: 1px solid #458069;
}

.bg-fresh-and-minty {
  background-color: #B5FFD6;
}

.text-fresh-and-minty {
  color: #B5FFD6;
}
.text-fresh-and-minty a.secondary-link {
  color: #B5FFD6;
}
.text-fresh-and-minty a.secondary-link:before {
  background-color: #B5FFD6;
}
.text-fresh-and-minty hr {
  border-top: 1px solid #B5FFD6;
}

.bg-we-are-sage, .modal__container {
  background-color: #66A896;
}

.text-we-are-sage {
  color: #66A896;
}
.text-we-are-sage a.secondary-link {
  color: #66A896;
}
.text-we-are-sage a.secondary-link:before {
  background-color: #66A896;
}
.text-we-are-sage hr {
  border-top: 1px solid #66A896;
}

.bg-we-are-sage-15 {
  background-color: #EAF2EF;
}

.text-we-are-sage-15 {
  color: #EAF2EF;
}
.text-we-are-sage-15 a.secondary-link {
  color: #EAF2EF;
}
.text-we-are-sage-15 a.secondary-link:before {
  background-color: #EAF2EF;
}
.text-we-are-sage-15 hr {
  border-top: 1px solid #EAF2EF;
}

.bg-we-are-sage-30 {
  background-color: #D5E4E0;
}

.text-we-are-sage-30 {
  color: #D5E4E0;
}
.text-we-are-sage-30 a.secondary-link {
  color: #D5E4E0;
}
.text-we-are-sage-30 a.secondary-link:before {
  background-color: #D5E4E0;
}
.text-we-are-sage-30 hr {
  border-top: 1px solid #D5E4E0;
}

.bg-deep-dark-forest-10 {
  background-color: #ECEFEE;
}

.text-deep-dark-forest-10 {
  color: #ECEFEE;
}
.text-deep-dark-forest-10 a.secondary-link {
  color: #ECEFEE;
}
.text-deep-dark-forest-10 a.secondary-link:before {
  background-color: #ECEFEE;
}
.text-deep-dark-forest-10 hr {
  border-top: 1px solid #ECEFEE;
}

.bg-deep-dark-forest-25 {
  background-color: #CED8D6;
}

.text-deep-dark-forest-25 {
  color: #CED8D6;
}
.text-deep-dark-forest-25 a.secondary-link {
  color: #CED8D6;
}
.text-deep-dark-forest-25 a.secondary-link:before {
  background-color: #CED8D6;
}
.text-deep-dark-forest-25 hr {
  border-top: 1px solid #CED8D6;
}

.bg-deep-dark-forest-40 {
  background-color: #B1C0BD;
}

.text-deep-dark-forest-40 {
  color: #B1C0BD;
}
.text-deep-dark-forest-40 a.secondary-link {
  color: #B1C0BD;
}
.text-deep-dark-forest-40 a.secondary-link:before {
  background-color: #B1C0BD;
}
.text-deep-dark-forest-40 hr {
  border-top: 1px solid #B1C0BD;
}

.bg-deep-dark-forest-60 {
  background-color: #8BA09B;
}

.text-deep-dark-forest-60 {
  color: #8BA09B;
}
.text-deep-dark-forest-60 a.secondary-link {
  color: #8BA09B;
}
.text-deep-dark-forest-60 a.secondary-link:before {
  background-color: #8BA09B;
}
.text-deep-dark-forest-60 hr {
  border-top: 1px solid #8BA09B;
}

.bg-white {
  background-color: #ffffff;
}

.text-white, .modal__container {
  color: #ffffff;
}
.text-white a.secondary-link, .modal__container a.secondary-link {
  color: #ffffff;
}
.text-white a.secondary-link:before, .modal__container a.secondary-link:before {
  background-color: #ffffff;
}
.text-white hr, .modal__container hr {
  border-top: 1px solid #ffffff;
}

:root {
  --bg-deep-dark-forest: #3D6159;
  --bg-scream-green: #42FF5C;
  --bg-greens-the-dream: #458069;
  --bg-fresh-and-minty: #B5FFD6;
  --bg-we-are-sage: #66A896;
  --bg-we-are-sage-15: #EAF2EF;
  --bg-we-are-sage-30: #D5E4E0;
  --bg-deep-dark-forest-10: #ECEFEE;
  --bg-deep-dark-forest-25: #CED8D6;
  --bg-deep-dark-forest-40: #8BA09B;
  --bg-deep-dark-forest-60: #B1C0BD;
  --bg-white: #ffffff;
}

@font-face {
  font-family: "Apercu-Regular";
  src: url("/wp-content/themes/designworks/dist/fonts/apercu-regular.woff") format("woff"), url("/wp-content/themes/designworks/dist/fonts/apercu-regular.woff2") format("woff2");
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: "Apercu-Bold";
  src: url("/wp-content/themes/designworks/dist/fonts/apercu-bold.woff") format("woff"), url("/wp-content/themes/designworks/dist/fonts/apercu-bold.woff2") format("woff2");
  font-style: normal;
  font-display: auto;
}
/* Base
--------------------------------------------- */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  overscroll-behavior: none;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.button,
button,
input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  border: 0px;
  font-family: "Apercu-Bold", sans-serif;
  font-weight: normal;
  display: inline-flex;
  position: relative;
  flex-direction: row;
  justify-content: center;
  text-transform: uppercase;
  align-items: center;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
  overflow: hidden;
  font-size: 18px;
  padding: 0 6px;
  z-index: 2;
}
.button:before,
button:before,
input[type=button]:before,
input[type=reset]:before,
input[type=submit]:before {
  content: " ";
  width: 100%;
  height: calc(100% - 5px);
  left: -100%;
  transition: all 0.5s ease;
  position: absolute;
  background: white;
  display: block;
  top: 2px;
  z-index: 1;
}
@media (max-width: 46rem) {
  .button:before,
  button:before,
  input[type=button]:before,
  input[type=reset]:before,
  input[type=submit]:before {
    left: 0px;
  }
}
.button span,
button span,
input[type=button] span,
input[type=reset] span,
input[type=submit] span {
  position: relative;
  z-index: 2;
}
.button.deep-dark-forest span,
button.deep-dark-forest span,
input[type=button].deep-dark-forest span,
input[type=reset].deep-dark-forest span,
input[type=submit].deep-dark-forest span {
  color: #3D6159;
}
.button.deep-dark-forest:before,
button.deep-dark-forest:before,
input[type=button].deep-dark-forest:before,
input[type=reset].deep-dark-forest:before,
input[type=submit].deep-dark-forest:before {
  background: #B5FFD6;
}
.button.white span,
button.white span,
input[type=button].white span,
input[type=reset].white span,
input[type=submit].white span {
  color: white;
}
.button.white:before,
button.white:before,
input[type=button].white:before,
input[type=reset].white:before,
input[type=submit].white:before {
  background: #B5FFD6;
}
.button:hover:before,
button:hover:before,
input[type=button]:hover:before,
input[type=reset]:hover:before,
input[type=submit]:hover:before {
  left: 0px;
}

.category-tag {
  font-size: 16px;
  margin-right: 16px;
  color: #CED8D6;
  text-decoration: underline;
  text-decoration-thickness: 0.8px;
  text-underline-offset: 5px;
  font-family: "Apercu-Regular", sans-serif;
  transition: all 0.4s ease;
  white-space: nowrap;
  display: inline-block;
}
.category-tag:hover {
  color: #8BA09B;
}

.secondary-link {
  transition: all 0.4s ease;
}
.secondary-link:hover:after {
  margin-left: 8px;
}
.secondary-link:after {
  content: " > ";
  margin-left: 5px;
  transition: all 0.4s ease;
}

button.wcc-btn-revisit:before {
  display: none;
}

.back-link {
  transition: all 0.4s ease;
  margin-bottom: 20px;
  display: inline-block;
  margin-top: 1rem;
}
.back-link svg path {
  transition: all 0.4s ease;
}
.back-link:hover svg path {
  stroke: #B5FFD6;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  border-radius: 6px;
  padding: 20px 26px;
  display: block;
  width: 100%;
  margin-top: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  background-color: white;
}
label {
  font-weight: 400;
  margin-bottom: 1.5rem;
  display: block;
}

.nf-form-fields-required {
  display: none;
}

.nf-error.listimage-wrap .nf-field-element ul, .nf-error .ninja-forms-field {
  border: 2px solid red !important;
}

.nf-error-msg {
  background-color: red;
  color: white !important;
  padding: 10px 20px;
  width: 100%;
  border-radius: 8px;
}

input[type=submit].ninja-forms-field {
  background-color: white;
  float: right;
}
input[type=submit].ninja-forms-field:hover {
  color: white;
}

select {
  border: 0px solid #000;
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: right 20px center;
}

textarea {
  width: 100%;
}

input[type=submit] {
  font-weight: 600;
  color: white;
  background-color: black;
  display: inline-block;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 14px 25px;
  border: 0px solid black;
  border-radius: 39px;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
}
input[type=submit]:hover {
  background-color: grey;
}

.login-form-wrap {
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 32px;
}
@media (min-width: 73rem) {
  .login-form-wrap {
    padding: 3rem;
    border-radius: 25px;
  }
}
.login-form-wrap label {
  color: white;
}
.login-form-wrap input[type=text] {
  background-color: white;
  border: 0px;
}
.login-form-wrap input[type=password] {
  background-color: white;
  border: 0px;
}
.login-form-wrap input[type=submit] {
  font-weight: normal;
}
.login-form-wrap input[type=submit]:hover {
  color: white;
}

@keyframes dropdown {
  0% {
    top: -100%;
  }
  100% {
    top: 0px;
  }
}
@keyframes dropdown-reverse {
  0% {
    top: 0px;
  }
  100% {
    top: -100%;
  }
}
.site-header {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 99;
  padding: 1rem 0px;
  background: rgba(236, 239, 238, 0.8);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
}
.site-header.open {
  background: transparent !important;
  -webkit-backdrop-filter: none !important;
          backdrop-filter: none !important;
}
.site-header.hide {
  top: -130px;
}
@media (min-width: 61rem) {
  .site-header {
    padding: 20px 0px;
  }
}
.site-header.transparent {
  background: transparent;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}
.site-header.scrolled {
  position: fixed;
  z-index: 999998;
  top: -100%;
  transition: none;
  animation-name: dropdown;
  animation-duration: 1.2s;
  animation-direction: both;
  animation-fill-mode: both;
  background: rgba(236, 239, 238, 0.8);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
}
.site-header.scrolled.hide {
  top: -100%;
}
.site-header.scrolled.hiding {
  animation-name: dropdown-reverse;
  animation-duration: 1.2s;
  animation-direction: both;
  animation-fill-mode: both;
}
.site-header .hamburger-trigger .line {
  background: #3D6159;
}
.site-header .logo-primary {
  display: block;
}
.site-header .logo-reversed {
  display: none;
}
.site-header .main-navigation ul {
  margin-top: 0px;
}
.site-header .main-navigation ul li a {
  position: relative;
  color: #3D6159;
}
.site-header .header-inner {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
}
@media (min-width: 61rem) {
  .site-header .header-inner {
    display: block;
  }
}
.site-header .header-inner .logo {
  transition: all 0.8s ease;
}
@media (min-width: 61rem) {
  .site-header .header-inner .logo {
    position: absolute;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.site-header .header-inner .main-navigation-wrap {
  display: none;
  align-items: center;
}
@media (min-width: 61rem) {
  .site-header .header-inner .main-navigation-wrap {
    display: flex;
    height: 50px;
    width: 100%;
  }
}
.site-header.transparent .main-navigation ul li {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, white 50%);
}
.site-header.transparent .main-navigation ul li.current-menu-item {
  background-image: none;
}
.site-header.transparent .main-navigation ul li.current-menu-item a {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, white 50%);
}
.site-header.reversed {
  background: rgba(203, 203, 203, 0.1);
  background-blend-mode: multiply;
  -webkit-backdrop-filter: blur(7.5px) brightness(70%);
          backdrop-filter: blur(7.5px) brightness(70%);
  box-shadow: none;
}
.site-header.reversed .button.outlined {
  border: 1px solid white;
  color: white;
}
.site-header.reversed .hamburger-trigger {
  background-color: rgba(255, 255, 255, 0.2);
}
.site-header.reversed .hamburger-trigger .line {
  background-color: white;
}
.site-header.reversed.scrolled {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(7.5px) brightness(100%);
          backdrop-filter: blur(7.5px) brightness(100%);
}
.site-header.reversed .logo-primary {
  display: none;
}
.site-header.reversed .logo-reversed {
  display: block;
}
.site-header.reversed.scrolled .logo-primary {
  display: block;
}
.site-header.reversed.scrolled .logo-reversed {
  display: none;
}
.site-header.reversed.scrolled .main-navigation ul li a {
  color: rgb(236, 239, 238);
}
.site-header.reversed .main-navigation ul li {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #3D6159 50%);
}
.site-header.reversed .main-navigation ul li.current-menu-item {
  background-image: none;
}
.site-header.reversed .main-navigation ul li.current-menu-item a:hover {
  background-color: #B5FFD6;
}
.site-header.reversed .main-navigation ul li a {
  color: white;
}

.logged-in .site-header {
  top: 32px;
}

.footer-wrapper {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: -4;
}
.footer-wrapper.hide {
  opacity: 0;
  pointer-events: none;
}

.footer-input-wrapper {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-grow: 1;
  background: white;
  border-radius: 0px;
  padding: 8px 0;
  align-items: center;
  margin-top: 12px;
  position: relative;
}
.footer-input-wrapper > div.email-input {
  flex: 1;
}
.footer-input-wrapper input[type=email] {
  background: none;
  border: 0px;
  padding: 0px 16px;
  margin: 0;
  color: #3D6159;
}
.footer-input-wrapper input[type=email]:focus {
  outline: none;
}
.footer-input-wrapper input[type=email]::-moz-placeholder {
  color: #CED8D6;
}
.footer-input-wrapper input[type=email]::placeholder {
  color: #CED8D6;
}
.footer-input-wrapper input[type=submit] {
  flex: 0;
  background: none;
  font-size: 18px;
  padding: 0 16px;
  font-weight: normal;
  font-family: "Apercu-Bold", sans-serif;
  color: #CED8D6;
  text-transform: none;
}
.footer-input-wrapper input[type=submit]:hover {
  color: #3D6159;
}

.site-footer {
  background-position: bottom left;
  background-size: 50%;
  background-repeat: no-repeat;
  padding: 45px 0px 45px 0px;
  font-size: 18px;
  position: relative;
}
@media (max-width: 46rem) {
  .site-footer {
    padding-bottom: 0px !important;
  }
}
@media (max-width: 46rem) {
  .site-footer .pb-tiny {
    padding-bottom: 32px;
  }
}
@media (max-width: 46rem) {
  .site-footer #mc_embed_shell {
    padding: 0 0 32px;
  }
}
.site-footer #mc_embed_signup div.mce_inline_error {
  position: absolute;
  left: 0px;
  bottom: calc(-100% - 12px);
  display: block;
  border-radius: 0px;
  width: 100%;
  background: red;
}
.site-footer #mce-responses {
  position: relative;
  font-size: 16px;
}
.site-footer #mce-responses #mce-error-response {
  width: 100%;
  background: #3D6159;
  color: white;
  padding: 12px;
  border-radius: 0px;
}
.site-footer #mce-responses #mce-success-response {
  width: 100%;
  background: #458069;
  color: white;
  padding: 12px;
  border-radius: 0px;
}
.site-footer fieldset {
  border: none;
  padding: 0px;
  margin-top: 12px;
  position: relative;
}
.site-footer fieldset label {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}
@media (max-width: 46rem) {
  .site-footer fieldset label.checkbox {
    margin-bottom: 0px !important;
    gap: 8px;
    align-items: flex-start;
  }
  .site-footer fieldset label.checkbox span {
    padding-right: 2rem;
  }
}
.site-footer fieldset label span {
  font-size: 14px;
}
.site-footer fieldset label span a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-footer a {
  color: #3D6159;
}
@media (min-width: 73rem) {
  .site-footer {
    padding: 90px 0px;
    background-size: 25%;
  }
}
.site-footer.contact-footer {
  padding-bottom: 0px;
}
.site-footer.contact-footer hr {
  border-color: #3D6159;
  margin-bottom: 32px;
}
.site-footer.contact-footer .footer-input-wrapper {
  border-bottom: 1px solid #CED8D6;
  border-radius: 0px;
}
.site-footer.contact-footer .footer-input-wrapper input[type=email] {
  padding-left: 0px;
}
.site-footer.contact-footer .social-media strong, .site-footer.contact-footer .social-media a {
  display: block;
}
@media (max-width: 46rem) {
  .site-footer.contact-footer .menu-footer-container {
    padding-bottom: 40px;
  }
}
.site-footer ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.site-footer ul li {
  margin: 0px;
  padding: 0px;
}
.site-footer p {
  margin-bottom: 16px;
  line-height: 1.25;
}
@media (max-width: 46rem) {
  .site-footer p {
    margin-bottom: 24px;
  }
}
.site-footer .social-media a {
  margin-right: 16px;
}
.site-footer hr {
  background: none;
  border-top: 0.5px solid white;
  border-bottom: 0px;
  border-left: 0px;
  border-right: 0px;
}
.site-footer .footer-logo img {
  max-width: 109px;
  height: auto;
}
.site-footer .footer-logo.ct-logo img {
  max-width: 170px;
}
.site-footer #working-note p {
  margin-bottom: 0px;
}
.site-footer .footer-menu {
  margin-top: 0px;
}
@media (min-width: 61rem) {
  .site-footer .footer-menu {
    margin-bottom: 0px;
    margin-top: 0px;
  }
}
.site-footer .footer-menu ul li {
  display: block;
  flex-basis: calc(50% - 2rem);
}
@media (min-width: 61rem) {
  .site-footer .footer-menu ul li {
    flex-basis: calc(20% - 2rem);
  }
}
.site-footer .footer-menu ul li ul.sub-menu {
  display: block;
  padding-right: 20px;
}
.site-footer .social-wrap {
  margin-top: 12px;
}
.site-footer .social-wrap img {
  margin-right: 12px;
}
@media (max-width: 46rem) {
  .site-footer .lower-footer.pt-tiny {
    padding-top: 0px;
  }
}
.site-footer .lower-footer div {
  margin-bottom: 32px;
}
@media (min-width: 61rem) {
  .site-footer .lower-footer div {
    margin-bottom: 0px;
  }
}
.site-footer .lower-footer div:last-of-type {
  margin-bottom: 16px;
}

.main-navigation {
  width: 100%;
}
.main-navigation ul.menu {
  margin-left: 0px;
  padding-left: 0px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0px;
}
.main-navigation ul.menu li {
  padding-left: 0px;
  margin: 0px;
  list-style: none;
  position: relative;
  margin-right: 32px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #B5FFD6 50%);
  display: inline;
  background-repeat: repeat-x;
  background-size: 200% 44%;
  background-position: 0% 50%;
  transition: all 1s ease;
}
.main-navigation ul.menu li:nth-child(3) {
  margin-left: auto;
}
.main-navigation ul.menu li:last-child {
  margin-right: 0px;
}
.main-navigation ul.menu li:hover {
  background-position: -99.99% 50%;
  background-size: 200% 44%;
}
.main-navigation ul.menu li.current_page_item > a {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #42FF5C 50%);
  background-size: 200% 55%;
  background-repeat: repeat-x;
  background-position: -99.99% 50%;
  color: #3D6159;
}
.main-navigation ul.menu li a {
  text-decoration: none;
  font-family: "Apercu-Bold", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  transition: all 0.4s ease;
}
@media (min-width: 61rem) {
  .main-navigation ul.menu li a {
    font-size: 18px;
    padding: 0 6px;
  }
}

.mobile-navigation {
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  height: 100vh;
  width: 100vw;
  transition: opacity 0.4s ease, visibility 0.4s ease, pointer-events 0.4s ease;
  z-index: 8;
  background-color: #3D6159;
}
.mobile-navigation a {
  text-decoration: none;
}
@media (min-width: 61rem) {
  .mobile-navigation {
    display: none;
  }
}
.mobile-navigation ul {
  margin-left: 0px;
  padding-left: 0px;
  text-align: center;
}
.mobile-navigation ul li {
  padding-left: 0px;
  margin-left: 0px;
  margin-bottom: 48px;
  font-size: 22px;
  list-style: none;
  height: 32px;
  text-align: center;
}
.mobile-navigation ul li a {
  color: white;
  font-family: "Apercu-Bold", sans-serif;
  font-size: 34px;
  text-transform: uppercase;
}
.mobile-navigation .mobile-navigation__inner {
  padding: 20vh 1.5rem 32px;
  position: relative;
}
.mobile-navigation .mobile-navigation__inner .button.outlined {
  border-color: black;
  color: black;
}
.mobile-navigation.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hamburger-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  padding: 12px 24px;
}
@media (min-width: 61rem) {
  .hamburger-trigger {
    display: none;
  }
}
.hamburger-trigger__inner {
  width: 24px;
  height: 18px;
  margin: auto;
  position: relative;
}
.hamburger-trigger .line {
  width: 30px;
  height: 1px;
  position: absolute;
  transform-origin: 50% 50%;
  transition: all 0.4s ease-in-out;
  top: 0px;
}
.hamburger-trigger .line:nth-of-type(2) {
  top: 10px;
}
.hamburger-trigger .line:nth-of-type(3) {
  top: 20px;
}
.hamburger-trigger.open .line {
  transform: rotate(45deg) translateY(6.8px) translateX(6.8px);
  background: white;
}
.hamburger-trigger.open .line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-trigger.open .line:nth-of-type(3) {
  transform: rotate(-45deg) translateY(-6.8px) translateX(6.8px);
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

body,
button,
input,
select,
optgroup,
textarea {
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: "Apercu-Regular", sans-serif;
  font-weight: 100;
  font-size: 18px;
  line-height: 1.25;
}
@media (min-width: 73rem) {
  body,
  button,
  input,
  select,
  optgroup,
  textarea {
    font-size: 20px;
    line-height: 28px;
  }
}

.highlight {
  background-image: linear-gradient(to right, #B5FFD6 0%, #B5FFD6 100%);
  background-repeat: no-repeat; /* important so it doesn’t tile */
  background-size: 0% 65%;
  background-position: 0% 50%;
  display: inline;
}
.highlight.in-view {
  animation: startHighlight 2s ease-in-out forwards;
  animation-delay: 1s;
  animation-fill-mode: both;
}

@keyframes startHighlight {
  0% {
    background-size: 0% 65%; /* collapsed */
    background-position: 0% 50%; /* anchored left */
  }
  100% {
    background-size: 100% 65%; /* fully covers */
    background-position: 0% 50%;
  }
}
.bg-fresh-and-minty .highlight {
  background-image: linear-gradient(to right, #ffffff 0%, #ffffff 100%);
}

.small-text {
  font-size: 13px;
  line-height: 18px;
}
@media (min-width: 61rem) {
  .small-text {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (min-width: 87.5rem) {
  .small-text {
    font-size: 18px;
    line-height: 24px;
  }
}

.page-title {
  margin-top: 0px;
}

.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5 {
  color: #3D6159;
}
.post-content p {
  color: #8BA09B;
}
.post-content h3 {
  margin-top: 32px;
}
.post-content p {
  margin-bottom: 20px;
}
.post-content ul {
  list-style: none;
  margin-left: 0px;
  padding-left: 1rem;
}
.post-content ul li {
  color: #8BA09B;
  position: relative;
  padding-left: 0.5rem;
}
.post-content ul li::before {
  content: "— ";
  position: absolute;
  left: -1rem;
}
.post-content a {
  color: #3D6159;
  text-decoration: underline;
}

small {
  font-size: 15px;
  line-height: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  margin: 0px;
}

b, strong {
  font-family: "Apercu-Bold", sans-serif;
}

.bold {
  font-family: "Apercu-Bold", sans-serif;
  font-weight: normal;
}

.featured-post .page-title {
  font-size: 26px;
}
@media (min-width: 46rem) {
  .featured-post .page-title {
    font-size: 38px;
  }
}
@media (min-width: 87.5rem) {
  .featured-post .page-title {
    font-size: 64px;
  }
}
@media (min-width: 106rem) {
  .featured-post .page-title {
    font-size: 90px;
    line-height: 100px;
  }
}

h1 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: normal;
  font-family: "Apercu-Regular", sans-serif;
  margin-bottom: 16px;
}
@media (max-width: 46rem) {
  h1.project-title {
    font-size: 28px;
  }
}
@media (min-width: 46rem) {
  h1 {
    font-size: 38px;
  }
}
@media (min-width: 87.5rem) {
  h1 {
    font-size: 45px;
    line-height: 52px;
    margin-bottom: 32px;
  }
}

h2 {
  font-size: 28px;
  line-height: 1.2;
  font-family: "Apercu-Regular", sans-serif;
  font-weight: normal;
  margin-bottom: 16px;
}
@media (min-width: 46rem) {
  h2 {
    font-size: 30px;
  }
}
@media (min-width: 87.5rem) {
  h2 {
    font-size: 38px;
    line-height: 42px;
  }
}

h3 {
  font-size: 22px;
  line-height: 1.2;
  font-family: "Apercu-Regular", sans-serif;
  font-weight: normal;
  margin-bottom: 16px;
}
@media (min-width: 61rem) {
  h3 {
    font-size: 24px;
  }
}
.filter .filter-title button, .filter .filter-title, .filter button, .filter .comma {
  font-size: 20px;
  line-height: 1.2;
  font-family: "Apercu-Regular", sans-serif;
  font-weight: normal;
}
@media (min-width: 61rem) {
  .filter .filter-title button, .filter .filter-title, .filter button, .filter .comma {
    font-size: 24px;
  }
}
@media (min-width: 87.5rem) {
  .filter .filter-title button, .filter .filter-title, .filter button, .filter .comma {
    font-size: 28px;
    line-height: 34px;
  }
}

h4 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: normal;
  font-family: "Apercu-Regular", sans-serif;
}
@media (min-width: 87.5rem) {
  h4 {
    font-size: 24px;
    line-height: 30px;
  }
}

p {
  margin: 0px;
}

b {
  font-family: "Apercu-Bold", sans-serif;
  font-weight: normal;
}

strong {
  font-family: "Apercu-Bold", sans-serif;
  font-weight: normal;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
  color: #8BA09B;
  font-size: 22px;
  line-height: 1.2;
}
@media (min-width: 73rem) {
  blockquote {
    font-size: 32px;
    line-height: 38px;
  }
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #fff;
  line-height: 1;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

abbr,
acronym {
  border-bottom: 1px dotted #000;
  cursor: help;
}

del {
  text-decoration: none;
}

mark,
ins {
  text-decoration: none;
}

big {
  font-size: 125%;
}

.two-columns table {
  width: 100%;
  margin-top: 32px;
  border-radius: 10px;
}
.two-columns table thead th {
  width: 33%;
  text-align: left;
  color: white;
  padding: 5px 10px;
}
.two-columns table thead th:first-of-type {
  border-top-left-radius: 6px;
}
.two-columns table thead th:last-of-type {
  border-top-right-radius: 6px;
}
.two-columns table tbody tr {
  background-color: white !important;
}
.two-columns table tbody tr td {
  background-color: white !important;
  width: 33%;
  padding: 5px 10px;
}
.two-columns table tbody tr td.column-1 {
  font-weight: 300;
}
.two-columns table tbody tr:last-of-type td:first-of-type {
  border-bottom-left-radius: 6px;
}
.two-columns table tbody tr:last-of-type td:last-of-type {
  border-bottom-right-radius: 6px;
}
.two-columns table caption {
  display: none;
}

.wp-pagenavi {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 45px !important;
  font-family: "Apercu-Bold", sans-serif;
}
@media (min-width: 61rem) {
  .wp-pagenavi {
    margin-top: 90px !important;
  }
}
.wp-pagenavi span {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  line-height: 1;
  border: 0px solid white;
  transition: all 0.5s ease;
  font-size: 18px;
  width: 30px;
  color: #3D6159;
}
.wp-pagenavi span.current {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #42FF5C 50%);
  background-size: 200% 55%;
  background-repeat: repeat-x;
  background-position: -99.99% 50%;
}
.wp-pagenavi a {
  color: #3D6159 !important;
  font-size: 18px !important;
}
.wp-pagenavi .nextpostslink, .wp-pagenavi .previouspostslink {
  text-transform: uppercase;
}

.news-card img {
  transition: all 0.4s ease;
}
.news-card img:hover {
  opacity: 0.9;
}
.news-card__content {
  margin-top: 16px;
}
@media (min-width: 61rem) {
  .news-card__content {
    padding-right: 2rem;
  }
}
@media (min-width: 73rem) {
  .news-card__content {
    padding-right: 4rem;
  }
}
.news-card__content-post h3 {
  margin: 8px 0px;
}

.team-card__inner {
  position: relative;
}
.team-card__modal-plus {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.5);
  display: none;
  padding: 4px;
  transition: all 0.4s ease;
}
@media (max-width: 46rem) {
  .team-card__modal-plus {
    display: flex;
  }
}
.team-card__modal-plus a {
  display: flex;
}
.team-card__modal-plus:hover {
  background: rgb(255, 255, 255);
}
.team-card__modal-plus:hover svg path {
  stroke: #3D6159;
}
.team-card__image {
  display: flex;
  height: 100%;
  width: 100%;
}
.team-card__image a {
  width: 100%;
}
.team-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-card__content {
  position: absolute;
  background-color: #458069;
  color: white;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  padding: 32px 24px;
  opacity: 0;
  transition: opacity 0.5s ease;
  overflow-y: scroll;
}
@media (max-width: 46rem) {
  .team-card__content {
    display: none;
  }
}
.team-card__title {
  margin-top: 16px;
}
.team-card:hover .team-card__content {
  opacity: 1;
}
.team-card__mobile-bio {
  display: block;
  margin-top: 8px;
}
@media (min-width: 46rem) {
  .team-card__mobile-bio {
    display: none;
  }
}

.side-card {
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid #ECEFEE;
}
.side-card:last-of-type {
  border-bottom: 0px;
}
.side-card h3 {
  margin-bottom: 0px;
}

.featured-news-card {
  padding: 16px;
  background-color: #EAF2EF;
  height: auto;
}
@media (min-width: 61rem) {
  .featured-news-card {
    padding: 20px;
  }
}
.featured-news-card:hover {
  background-color: #D5E4E0;
}
.featured-news-card img {
  transition: all 0.4s ease;
  width: 100%;
}
.featured-news-card img:hover {
  opacity: 0.9;
}
.featured-news-card__content {
  margin-top: 16px;
}
.featured-news-card__content-post h3 {
  margin: 8px 0px;
}
.featured-news-card__content-post h1 {
  font-family: "Apercu-Bold", sans-serif;
}
.featured-news-card__content-post p {
  color: #8BA09B;
}

.work-card__image .work-card__image-inner {
  position: relative;
  display: flex;
}
.work-card__image .work-card__image-inner:after {
  content: " ";
  width: 100%;
  height: 100%;
  background: rgba(61, 97, 89, 0.2);
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.work-card__image .work-card__image-inner.inline-video {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.work-card__image .work-card__image-inner.inline-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.work-card__content {
  margin-top: 16px;
}
.work-card__content .card-title {
  margin: 8px 0px;
}
.work-card__content-meta {
  margin-top: 8px;
}
@media (max-width: 46rem) {
  .work-card__content-meta a {
    margin-bottom: 6px;
  }
}
.work-card a:hover .work-card__image-inner:after {
  opacity: 1;
}

.work-card__image:hover ~ .work-card__content a.card-title {
  text-decoration-color: #B5FFD6;
}

a.card-title {
  color: #3D6159;
  transition: -webkit-text-decoration 0.4s ease;
  transition: text-decoration 0.4s ease;
  transition: text-decoration 0.4s ease, -webkit-text-decoration 0.4s ease;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
a.card-title:hover {
  text-decoration-color: #B5FFD6;
}

/* components
--------------------------------------------- */
@media (min-width: 61rem) {
  .home .hero.media, .home .hero.video, .home .hero.image {
    min-height: 100svh;
  }
}
@media (max-width: 61rem) {
  .home .hero .hero__media {
    min-height: 75svh;
  }
  .home .hero .hero__media video {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    width: 100%;
    height: 75svh;
  }
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero.image, .hero.video, .hero.media {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: auto;
  z-index: -2;
  transition: opacity 0.5s ease;
}
@media (min-width: 46rem) {
  .hero.image, .hero.video, .hero.media {
    height: 100vh;
  }
}
.hero.image.hide, .hero.video.hide, .hero.media.hide {
  opacity: 0;
  pointer-events: none !important;
  z-index: -4;
}
.hero.image img, .hero.image video, .hero.video img, .hero.video video, .hero.media img, .hero.media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 46rem) {
  .hero .hero__media {
    height: 100%;
  }
}
.hero .hero-carousel {
  width: 100%;
  height: 100vh;
}
.hero .hero-carousel .swiper-slide {
  position: relative;
}
.hero .hero-carousel .swiper-slide img, .hero .hero-carousel .swiper-slide video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .hero-carousel .swiper-slide .slide-info {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: calc(100% - 4rem);
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  z-index: 9;
  text-align: center;
  color: white;
  opacity: 0;
  transition: opacity 0.5s ease;
}
@media (max-width: 46rem) {
  .hero .hero-carousel .swiper-slide .slide-info {
    bottom: calc(2rem + 42px);
  }
}
.hero .hero-carousel .swiper-slide .slide-info.loaded {
  opacity: 1;
}
.hero .hero-carousel .swiper-slide .slide-info .caption {
  flex-basis: 80%;
  display: none;
}
@media (min-width: 46rem) {
  .hero .hero-carousel .swiper-slide .slide-info .caption {
    display: flex;
    justify-content: center;
  }
}
.hero .hero-carousel .hero-carousel-nav {
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 8;
}
.hero .hero-carousel .slide-link {
  width: 40%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 30%;
  z-index: 9;
}
.hero .hero-carousel .swiper-button-next {
  width: 30%;
  height: 100%;
  top: 0px;
  right: 0px;
  justify-content: flex-end;
  padding-right: 2rem;
}
@media (max-width: 46rem) {
  .hero .hero-carousel .swiper-button-next {
    padding-right: 1rem;
  }
}
.hero .hero-carousel .swiper-button-next:after {
  content: "";
  background-image: url('data:image/svg+xml,<svg width="19" height="42" viewBox="0 0 19 42" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 41L17 21L0.999997 1" stroke="white" stroke-width="2"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 42px;
  height: 42px;
  color: white;
  opacity: 0;
  transition: all 0.4s ease;
}
@media (max-width: 46rem) {
  .hero .hero-carousel .swiper-button-next:after {
    width: 24px;
    height: 24px;
    opacity: 1;
    background-image: url('data:image/svg+xml,<svg width="13" height="28" viewBox="0 0 13 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 27L12 14L0.999998 1" stroke="white"/></svg>');
  }
}
.hero .hero-carousel .swiper-button-next:hover:after {
  opacity: 1;
}
.hero .hero-carousel .swiper-button-prev {
  width: 30%;
  height: 100%;
  top: 0px;
  left: 0px;
  justify-content: flex-start;
  padding-left: 2rem;
}
@media (max-width: 46rem) {
  .hero .hero-carousel .swiper-button-prev {
    padding-left: 1rem;
  }
}
.hero .hero-carousel .swiper-button-prev:after {
  content: "";
  background-image: url('data:image/svg+xml,<svg width="19" height="42" viewBox="0 0 19 42" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 41L2 21L18 1" stroke="white" stroke-width="2"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 42px;
  height: 42px;
  color: white;
  opacity: 0;
  transition: all 0.4s ease;
}
@media (max-width: 46rem) {
  .hero .hero-carousel .swiper-button-prev:after {
    width: 24px;
    height: 24px;
    opacity: 1;
    background-image: url('data:image/svg+xml,<svg width="13" height="28" viewBox="0 0 13 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 1L1 14L12 27" stroke="white"/></svg>');
  }
}
.hero .hero-carousel .swiper-button-prev:hover:after {
  opacity: 1;
}

.hero__media video {
  max-width: 100%;
  height: auto;
}

.section {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
}
.section .inline-video {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.section .inline-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.two-columns img {
  width: 100%;
}
.two-columns .button {
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 87.5rem) {
  .two-columns .button {
    margin-bottom: 0px;
  }
}
.two-columns .icon {
  margin-top: -3px;
}
@media (max-width: 46rem) {
  .two-columns .col-xs-12:last-of-type {
    margin-top: 1rem;
  }
}
.two-columns .col-xs-12.remove-column-space-on-mobile {
  margin-bottom: 0rem;
}
.two-columns .col-xs-12.remove-column-space-on-mobile .text-block:last-of-type {
  margin-bottom: 0px;
}
@media (min-width: 61rem) {
  .two-columns .col-xs-12 {
    margin-bottom: 0rem;
  }
}
.two-columns .col-xs-12:last-of-type {
  margin-bottom: 0px;
}

.image-block {
  display: flex;
  overflow: hidden;
  justify-content: center;
}
.single-column .button {
  margin-bottom: 2rem;
}
@media (min-width: 61rem) {
  .single-column .button {
    margin-bottom: 0px;
  }
}

.video-wrap {
  overflow: hidden;
  position: relative;
  display: flex;
}
.video-wrap .play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.video-wrap .play-button svg circle {
  transition: all 0.4s ease;
}
.video-wrap .play-button svg path {
  transition: all 0.4s ease;
}
.video-wrap .play-button:hover svg path {
  fill: white;
}

.text-block {
  display: flex;
  margin: 24px auto;
}
@media (min-width: 61rem) {
  .text-block {
    margin: 32px 0;
  }
}
@media (min-width: 61rem) {
  .text-block:first-of-type {
    margin-top: 0px;
  }
}
.text-block ul {
  list-style: none;
  margin-left: 0px;
  padding-left: 0px;
}
.text-block ul li {
  list-style: none;
  padding: 16px 0px 16px 0px;
  margin-left: 0px;
  border-top: 1px solid #CED5E9;
}
.text-block ul li:last-of-type {
  border-bottom: 1px solid #CED5E9;
}
.text-block p {
  margin-bottom: 16px;
}
@media (min-width: 61rem) {
  .text-block p {
    margin-bottom: 32px;
  }
}
.text-block p:last-of-type {
  margin-bottom: 0px;
}

.filter .filter-message {
  color: #CED8D6;
}
.filter .filter-row {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  /* Applies only if .clear-all contains a .close.show */
}
@media (min-width: 73rem) {
  .filter .filter-row {
    gap: 2.5rem;
  }
}
.filter .filter-row .clear-all {
  margin-left: auto;
}
@media (max-width: 46rem) {
  .filter .filter-row {
    /* Remove the default margin if needed */
  }
  .filter .filter-row .clear-all:has(.close.show) {
    margin-left: auto;
  }
  .filter .filter-row .clear-all {
    margin-left: 0; /* or whatever default */
  }
}
@media (min-width: 73rem) {
  .filter .filter-row {
    flex-wrap: nowrap;
  }
}
.filter .comma {
  margin-right: 10px;
  color: #8BA09B;
}
.filter .search-filter-style--id-1.search-filter-style--control-reset {
  outline: 0;
  border: 0;
  --search-filter-input-border-focus-color: white;
}
.filter button {
  overflow: hidden;
  background: transparent;
  color: #8BA09B;
  border: 0px solid #3D6159;
  font-family: "Apercu-Regular", sans-serif;
  padding: 0px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  overflow: visible;
  margin-right: 0px;
}
.filter button:hover {
  color: #3D6159;
  border: 0px solid white !important;
}
.filter button:before {
  display: none;
}
@media (max-width: 46rem) {
  .filter .current-selection {
    margin-top: 0px;
  }
}
.filter .current-selection h3 {
  margin-top: 0px;
  margin-bottom: 0px;
}
@media (min-width: 73rem) {
  .filter .current-selection h3 {
    margin-top: 72px;
    margin-bottom: 0px;
  }
}
.filter .current-selection .search-filter-base button {
  margin-top: 0px;
  margin-bottom: 0px;
}
@media (min-width: 73rem) {
  .filter .current-selection .search-filter-base button {
    margin-top: 72px;
    margin-bottom: 0px;
  }
}
.filter #search-filter-input-button-group-0 {
  align-items: flex-end;
}
.filter .clear-all {
  display: none;
}
.filter .clear-all.active {
  display: block;
}
.filter .search-filter-icon__svg {
  display: none;
}
.filter .search-filter-input-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
}
@media (min-width: 46rem) {
  .filter .search-filter-input-group {
    gap: 16px;
  }
}
@media (min-width: 73rem) {
  .filter .search-filter-input-group {
    gap: 20px;
  }
}
.filter .search-filter-input-checkbox {
  margin-right: 0.5rem;
}
@media (min-width: 46rem) {
  .filter .search-filter-input-checkbox {
    margin-right: 0px;
  }
}
.filter .search-filter-input-checkbox .search-filter-input-checkbox__control {
  display: none;
}
.filter .search-filter-input-checkbox .search-filter-input-checkbox__label {
  padding-left: 0px;
  color: #B1C0BD;
  font-size: 18px;
  font-family: "Apercu-Regular", sans-serif;
  text-decoration: underline;
  text-decoration-thickness: 0.8px;
  text-underline-offset: 5px;
  transition: all 0.4s ease;
  display: inline-block;
}
.filter .search-filter-input-checkbox .search-filter-input-checkbox__label:after {
  content: " +";
}
.filter .search-filter-input-checkbox .search-filter-input-checkbox__label:hover {
  color: #3D6159;
}
.filter .search-filter-input-checkbox.search-filter-input-checkbox--is-active .search-filter-input-checkbox__label {
  color: #3D6159;
  text-decoration-color: #42FF5C;
}
.filter .search-filter-input-checkbox.search-filter-input-checkbox--is-active .search-filter-input-checkbox__label:after {
  content: " ×";
}
.filter .filter-title {
  color: #B1C0BD;
  font-family: "Apercu-Bold", sans-serif;
  cursor: pointer;
}
.filter .filter-title.active {
  color: #3D6159;
}
.filter .filter-title.active button {
  color: #3D6159;
}
.filter .filter-title button {
  font-family: "Apercu-Bold", sans-serif;
  color: #B1C0BD;
}
.filter .filter-checkboxes {
  transition: all 0.4s ease;
  margin-top: 0px;
  position: relative;
  overflow: hidden;
}
.filter .filter-checkboxes.active {
  border-top: 1px solid #ECEFEE;
  margin-top: 16px;
  padding-top: 32px;
  --filter-height: 200px;
}
@media (min-width: 73rem) {
  .filter .filter-checkboxes.active {
    margin-top: 32px;
    padding-top: 64px;
  }
}
@media (max-width: 46rem) {
  .filter .filter-checkboxes.active {
    margin-bottom: 42px;
  }
}
.filter .filter-checkboxes.active .industry-filter,
.filter .filter-checkboxes.active .service-filter {
  padding-top: 16px;
}
@media (min-width: 73rem) {
  .filter .filter-checkboxes.active .industry-filter,
  .filter .filter-checkboxes.active .service-filter {
    padding-top: 32px;
  }
}
.filter .filter-checkboxes .industry-filter,
.filter .filter-checkboxes .service-filter {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.search-filter-field--id-7 button {
  font-size: 0;
  background-image: url('data:image/svg+xml,<svg width="23" height="22" viewBox="0 0 23 22" fill="none" xmlns="http://www.w3.org/2000/svg"><line x1="1.35355" y1="0.646447" x2="22.3536" y2="21.6464" stroke="%233D6159"/><line x1="0.646447" y1="21.6464" x2="21.6464" y2="0.646447" stroke="%233D6159"/></svg>');
  width: 21px !important;
  height: 21px !important;
  background-size: 21px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: 0px solid transparent;
  padding: 0px;
  margin: 0px;
}
.search-filter-query {
  margin-top: 16px;
}
@media (min-width: 73rem) {
  .search-filter-query {
    margin-top: 32px;
  }
}

.clear-all > .reset,
.clear-all > .close {
  display: none;
}

.clear-all > .reset.show,
.clear-all > .close.show {
  display: inline-flex; /* or whatever matches your layout */
}

.news-feed__inner {
  border-top: 2px solid #ECEFEE;
}

.news-feed {
  padding-top: 10vh;
}
@media (max-width: 46rem) {
  .news-feed {
    padding-top: 9vh;
  }
}

@media (max-width: 46rem) {
  .in-other-news {
    margin-top: 40px;
  }
}

.related-carousel {
  overflow: hidden;
}

.single-project .text-block:has(iframe) {
  display: block;
  margin: 0px;
}
.single-project .text-block:has(iframe) p:has(iframe) {
  display: block;
  margin: 0;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.single-project .text-block:has(iframe) p:has(iframe) iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 46rem) {
  .single-project .hero {
    max-width: 100vw;
  }
  .single-project .hero video, .single-project .hero img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .single-project .hero .hero__media {
    height: 100%;
  }
}
.single-project .hero video, .single-project .hero img {
  max-width: 100%;
}
.single-project .site-header {
  position: fixed;
  z-index: -1;
}
.single-project .site-header.open {
  z-index: 99;
  top: 0px;
}
.single-project .site-header.scrolled {
  z-index: 99;
}
.single-project .site-header.hiding {
  z-index: -1;
}
@media (max-width: 46rem) {
  .single-project .site-header {
    z-index: -5;
  }
  .single-project .site-header.hiding {
    z-index: -5;
  }
}

@media (max-width: 46rem) {
  .project_introduction .pb-small {
    padding-bottom: 64px;
  }
}
.project_introduction .project-tags {
  margin-bottom: 20px;
}
@media (min-width: 73rem) {
  .project_introduction .project-tags {
    margin-bottom: 32px;
  }
}
@media (max-width: 46rem) {
  .project_introduction .project-tags:last-of-type {
    margin-bottom: 0px;
  }
}
.project_introduction .project-tags h2, .project_introduction .project-tags h3, .project_introduction .project-tags h4, .project_introduction .project-tags h5 {
  margin-top: 16px;
}
@media (max-width: 46rem) {
  .project_introduction .project-title {
    margin-bottom: 20px;
  }
}
.project_introduction .row .col-xs-12:first-of-type {
  margin-bottom: 32px;
}
@media (max-width: 46rem) {
  .project_introduction .row .col-xs-12:first-of-type {
    margin-bottom: 64px;
  }
}

.project-text, .project-description__wrap .project-description__intro h2, .project-description__wrap .project-description__intro h3, .project-description__wrap .project-description__intro h4, .project-description__wrap .project-description__intro h5, .project-description__wrap .project-description__intro h6, .project-description__wrap .project-description__intro p, .project-description__wrap .project-description__more p {
  font-size: 20px;
  line-height: 1.2;
}
@media (min-width: 73rem) {
  .project-text, .project-description__wrap .project-description__intro h2, .project-description__wrap .project-description__intro h3, .project-description__wrap .project-description__intro h4, .project-description__wrap .project-description__intro h5, .project-description__wrap .project-description__intro h6, .project-description__wrap .project-description__intro p, .project-description__wrap .project-description__more p {
    font-size: 24px;
  }
}
@media (min-width: 87.5rem) {
  .project-text, .project-description__wrap .project-description__intro h2, .project-description__wrap .project-description__intro h3, .project-description__wrap .project-description__intro h4, .project-description__wrap .project-description__intro h5, .project-description__wrap .project-description__intro h6, .project-description__wrap .project-description__intro p, .project-description__wrap .project-description__more p {
    font-size: 28px;
  }
}

.project-description__wrap {
  margin-bottom: 16px;
}
@media (min-width: 73rem) {
  .project-description__wrap {
    margin-bottom: 20px;
  }
}
.project-description__wrap .project-description__more {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-description__wrap .project-description__more p {
  margin-bottom: 16px;
}
.project-description__wrap .project-description__intro {
  margin-bottom: 16px;
}
@media (min-width: 73rem) {
  .project-description__wrap .project-description__intro {
    margin-bottom: 20px;
  }
}
.project-description__wrap .project-description__intro h2, .project-description__wrap .project-description__intro h3, .project-description__wrap .project-description__intro h4, .project-description__wrap .project-description__intro h5, .project-description__wrap .project-description__intro h6, .project-description__wrap .project-description__intro p {
  margin-bottom: 16px;
}
.project-description__wrap .project-description__intro a {
  color: #66A896;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: all 0.4s ease;
}
.project-description__wrap .project-description__intro a:hover {
  color: #3D6159;
}
.project-description__wrap.expanded .project-description__more {
  max-height: 1000px;
}
.project-description .project-description-toggle {
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 738px) {
  .scaling-image {
    height: 200vh;
    background: white;
  }
  .scaling-image__inner {
    position: sticky;
    top: 0px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .scaling-image__inner img.scaling-image-image {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    will-change: transform;
    transform: scale(0.7);
    transition: transform 0.1s cubic-bezier(0.33, 1, 0.68, 1);
    transform-origin: center center;
  }
}
.sticky-section {
  height: 100vh; /* Each section should still take up the full height */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 1;
}
.sticky-section .text-container {
  padding: 0 2rem;
  position: fixed;
  top: 0vh;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  max-width: 1440px;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
@media (max-width: 46rem) {
  .sticky-section .text-container {
    padding-top: 80px;
  }
}
.sticky-section .sticky-section__title {
  display: block;
  align-self: flex-start;
  overflow: hidden;
  margin-bottom: 16px;
}
@media (min-width: 87.5rem) {
  .sticky-section .sticky-section__title {
    margin-bottom: 64px;
  }
}
.sticky-section .sticky-section__title h1 {
  opacity: 0;
  font-family: "Apercu-Bold", sans-serif;
  font-size: 100px;
  line-height: 1;
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 46rem) {
  .sticky-section .sticky-section__title h1 {
    font-size: 50px;
  }
}
.sticky-section .sticky-section__title.visible h1 {
  opacity: 1;
  transform: translateY(0%);
}
.sticky-section .sticky-section__title.out-of-view h1 {
  opacity: 1;
  transform: translateY(-200%);
}
.sticky-section .sticky-section__body {
  display: block;
  gap: 3rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media (min-width: 46rem) {
  .sticky-section .sticky-section__body {
    display: grid;
    grid-template-columns: 40% 1fr;
  }
}
@media (min-width: 87.5rem) {
  .sticky-section .sticky-section__body {
    grid-template-columns: 40% 50%;
    gap: 4rem;
  }
}
.sticky-section .sticky-section__body img {
  max-width: 50%;
  margin-bottom: 1.5rem;
}
@media (min-width: 46rem) {
  .sticky-section .sticky-section__body img {
    max-width: 100%;
  }
}
.sticky-section .sticky-section__body.visible {
  opacity: 1;
}
.sticky-section .sticky-section__body h2 {
  margin-bottom: 2rem;
}
@media (max-width: 46rem) {
  .sticky-section .sticky-section__body h2 {
    font-size: 18px;
  }
}
@media (max-width: 46rem) {
  .sticky-section .sticky-section__body h3 {
    font-size: 16px;
  }
}

.sticky-section__wrapper {
  position: relative;
}

.sticky-swiper {
  max-height: 100vh;
  position: relative;
  overflow: hidden;
}
@media (max-width: 46rem) {
  .sticky-swiper {
    max-height: unset;
  }
}
.sticky-swiper .swiper-slide {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 46rem) {
  .sticky-swiper .swiper-slide {
    height: 100vh;
    padding-bottom: 3rem;
  }
}
.sticky-swiper .swiper-slide video {
  max-width: 100%;
  mix-blend-mode: multiply;
}
@media (max-width: 46rem) {
  .sticky-swiper .swiper-slide video {
    max-width: 80%;
    margin: 0 auto;
    display: block;
  }
}
.sticky-swiper .swiper-slide h1 {
  text-transform: uppercase;
  padding: 0px 12px;
  margin-left: -8px;
  display: inline-block;
  line-height: 0.75;
}
@media (max-width: 46rem) {
  .sticky-swiper .swiper-slide h1 {
    font-size: 28px;
  }
}
@media (max-width: 46rem) {
  .sticky-swiper .swiper-slide h2 {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 46rem) {
  .sticky-swiper .swiper-slide h3 {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 46rem) {
  .sticky-swiper .swiper-slide p {
    font-size: 16px;
    line-height: 22px;
  }
}
.sticky-swiper .sticky-pagination-wrap {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 46rem) {
  .sticky-swiper .sticky-pagination-wrap {
    top: unset;
    bottom: 2rem;
    right: 1rem;
    left: 1rem;
    width: 100%;
    height: 10px;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
    justify-content: center;
    transform: translateY(0%);
    width: calc(100% - 2rem);
    height: 10px;
  }
}
.sticky-swiper .sticky-pagination-wrap[data-pagination-theme=light] .sticky-pagination-top,
.sticky-swiper .sticky-pagination-wrap[data-pagination-theme=light] .sticky-pagination-bottom {
  color: #B5FFD6;
}
.sticky-swiper .sticky-pagination-wrap[data-pagination-theme=light] .sticky-pagination .swiper-pagination-bullet {
  background: #9DE5C3;
}
.sticky-swiper .sticky-pagination-wrap[data-pagination-theme=light] .sticky-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #B5FFD6;
}
.sticky-swiper .sticky-pagination-wrap[data-pagination-theme=dark] .sticky-pagination-top,
.sticky-swiper .sticky-pagination-wrap[data-pagination-theme=dark] .sticky-pagination-bottom {
  color: #66A896;
}
.sticky-swiper .sticky-pagination-wrap[data-pagination-theme=dark] .sticky-pagination .swiper-pagination-bullet {
  background: #7EC2A9;
}
.sticky-swiper .sticky-pagination-wrap[data-pagination-theme=dark] .sticky-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #66A896;
}
.sticky-swiper .sticky-pagination {
  position: relative !important;
  right: unset !important;
  top: unset !important;
  bottom: unset !important;
  width: 2px !important;
  transform: none !important;
  height: calc(100% - 4rem) !important;
  left: unset !important;
}
@media (max-width: 46rem) {
  .sticky-swiper .sticky-pagination {
    height: 2px !important;
    left: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    width: calc(100% - 4rem) !important;
  }
}
.sticky-swiper .sticky-pagination .swiper-pagination-bullet {
  background: white;
  border-radius: 0px !important;
  margin: 0px !important;
}
.sticky-swiper .swiper-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3D6159;
  z-index: 0;
  transition: background-color 0.3s ease;
}

.featured-introduction {
  margin-top: 2rem;
}
.featured-introduction h3, .featured-introduction h4 {
  margin-bottom: 2rem;
}

.featured-post-projects {
  border-bottom: 2px solid #ECEFEE;
}
@media (max-width: 46rem) {
  .featured-post-projects {
    padding-bottom: 40px;
  }
}
@media (max-width: 46rem) {
  .featured-post-projects:first-of-type {
    padding-top: 0px !important;
  }
}
@media (max-width: 46rem) {
  .featured-post-projects {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .featured-post-projects .col-xs-12 {
    padding-left: 0;
    padding-right: 0;
  }
}
.featured-post-projects h2 {
  margin-bottom: 0px;
}
@media (max-width: 46rem) {
  .featured-post-projects h3 {
    margin-bottom: 0px;
  }
}
.featured-post-projects .title p {
  padding-right: 20px;
}
.featured-post-projects:last-of-type {
  border-bottom: 0px;
}

@media (max-width: 46rem) {
  .featured-project-description {
    margin: 2rem 0;
  }
}

@media (max-width: 46rem) {
  .featured-hero .row {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .featured-hero .row .col-xs-12 {
    padding-left: 0;
    padding-right: 0;
  }
}

@keyframes moveUp {
  0% {
    top: calc(50% - 100px);
  }
  15% {
    top: 0px;
    animation-timing-function: step-end;
  }
  75% {
    top: 0px;
  }
  90% {
    top: calc(50% - 100px);
    animation-timing-function: step-end;
  }
  100% {
    top: calc(50% - 100px); /* stays here for last 25% = 2s */
  }
}
@keyframes moveDown {
  0% {
    bottom: calc(50% - 100px);
  }
  15% {
    bottom: 0px;
    animation-timing-function: step-end;
  }
  75% {
    bottom: 0px;
  }
  90% {
    bottom: calc(50% - 100px);
    animation-timing-function: step-end;
  }
  100% {
    bottom: calc(50% - 100px); /* holds for pause */
  }
}
@keyframes moveUpMobile {
  0% {
    top: calc(50% - 50px);
  }
  40% {
    top: 0px;
    animation-timing-function: step-end;
  }
  60% {
    top: 0px;
  }
  75% {
    top: calc(50% - 50px);
    animation-timing-function: step-end;
  }
  100% {
    top: calc(50% - 50px); /* holds for pause */
  }
}
@keyframes moveDownMobile {
  0% {
    bottom: calc(50% - 50px);
  }
  40% {
    bottom: 0px;
    animation-timing-function: step-end;
  }
  60% {
    bottom: 0px;
  }
  75% {
    bottom: calc(50% - 50px);
    animation-timing-function: step-end;
  }
  100% {
    bottom: calc(50% - 50px); /* holds for pause */
  }
}
.logo-animation {
  position: relative;
  padding: 50px 0;
}
@media (min-width: 46rem) {
  .logo-animation {
    padding: 100px 0px;
  }
}
.logo-animation .logo-top, .logo-animation .logo-bottom {
  background: white;
  height: 50px;
  width: 100%;
  display: flex;
  margin: 0px auto;
  justify-content: center;
  position: absolute;
  left: 0px;
  z-index: 2;
  text-align: center;
  text-transform: uppercase;
  font-size: 36px;
  line-height: 0.8;
  letter-spacing: -1px;
}
@media (min-width: 46rem) {
  .logo-animation .logo-top, .logo-animation .logo-bottom {
    height: 100px;
  }
}
.logo-animation .logo-top svg, .logo-animation .logo-bottom svg {
  width: 100%;
  height: auto;
}
@media (min-width: 46rem) {
  .logo-animation .logo-top, .logo-animation .logo-bottom {
    font-size: 38px;
  }
}
@media (min-width: 73rem) {
  .logo-animation .logo-top, .logo-animation .logo-bottom {
    font-size: 56px;
  }
}
.logo-animation .logo-top b, .logo-animation .logo-bottom b {
  font-family: "Apercu-Bold", sans-serif;
}
.logo-animation .word-set {
  position: relative;
  z-index: 1;
}
.logo-animation .word-set:not(:first-child) {
  display: none;
}
.logo-animation span.word {
  text-transform: uppercase;
  font-size: 36px;
  display: block;
  line-height: 1;
}
@media (min-width: 46rem) {
  .logo-animation span.word {
    font-size: 38px;
  }
}
@media (min-width: 73rem) {
  .logo-animation span.word {
    font-size: 56px;
  }
}
.logo-animation .logo-top {
  animation: moveUpMobile 6s forwards;
  padding-top: 0px;
  width: 100%;
  align-items: flex-end;
}
@media (min-width: 46rem) {
  .logo-animation .logo-top {
    animation: moveUp 6s forwards;
  }
}
.logo-animation .logo-bottom {
  animation: moveDownMobile 6s forwards;
  padding-bottom: 0px;
  width: 100%;
  align-items: flex-start;
}
@media (min-width: 46rem) {
  .logo-animation .logo-bottom {
    animation: moveDown 6s forwards;
  }
}

.work-feed {
  padding-top: 10vh;
}
@media (max-width: 46rem) {
  .work-feed {
    padding-top: 12vh;
  }
}
.work-feed .card-grid.loading {
  position: relative;
}
.work-feed .card-grid.loading:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  z-index: 999;
}

.home .work-feed {
  padding-top: 0px;
}
@media (max-width: 46rem) {
  .home .work-feed {
    padding-top: 0vh;
  }
}

/* Utilities
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #000;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.animated {
  opacity: 0;
  visibility: hidden;
}
.animated.splitting .word {
  will-change: transform, opacity;
}
.animated.in-view {
  opacity: 1;
  visibility: visible;
}
.animated.in-view .word {
  animation: slideInWord 0.8s ease-out calc(200ms * var(--line-index)) both;
}

[data-splitting] {
  opacity: 0;
  visibility: hidden;
}

@keyframes slideInWord {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
[data-visible] {
  opacity: 0;
  transition: all 0.6s ease;
  transform: translateY(20px);
}

.fade {
  opacity: 1;
  transform: translateY(0px);
}

.pt-news {
  padding-top: 110px;
}
@media (min-width: 46rem) {
  .pt-news {
    padding-top: 110px;
  }
}
@media (min-width: 61rem) {
  .pt-news {
    padding-top: 202px;
  }
}

.pt-none {
  padding-top: 0px;
}

.pt-tiny {
  padding-top: 16px;
}
@media (min-width: 61rem) {
  .pt-tiny {
    padding-top: 20px;
  }
}

.pt-small {
  padding-top: 38px;
}
@media (min-width: 73rem) {
  .pt-small {
    padding-top: 77px;
  }
}

.pt-medium {
  padding-top: clamp(72px, 4.5rem + (1vw - 4.8px) * 7.5, 144px);
}

.pt-large {
  padding-top: clamp(144px, 9rem + (1vw - 4.8px) * 10, 288px);
}

.pt-xlarge {
  padding-top: clamp(288px, 18rem + (1vw - 4.8px) * 10, 432px);
}

.pt-xxlarge {
  padding-top: clamp(432px, 27rem + (1vw - 4.8px) * 10, 576px);
}

.pb-none {
  padding-bottom: 0px;
}

.pb-tiny {
  padding-bottom: 16px;
}
@media (min-width: 61rem) {
  .pb-tiny {
    padding-bottom: 20px;
  }
}

.pb-small {
  padding-bottom: 38px;
}
@media (min-width: 73rem) {
  .pb-small {
    padding-bottom: 77px;
  }
}

.pb-medium {
  padding-bottom: clamp(72px, 4.5rem + (1vw - 4.8px) * 7.5, 144px);
}

.pb-large {
  padding-bottom: clamp(144px, 9rem + (1vw - 4.8px) * 10, 288px);
}

.pb-xlarge {
  padding-bottom: clamp(288px, 18rem + (1vw - 4.8px) * 10, 432px);
}

.pb-xxlarge {
  padding-bottom: clamp(432px, 27rem + (1vw - 4.8px) * 10, 576px);
}

.preloader {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100svh;
  z-index: 999;
  pointer-events: none;
}
.preloader img {
  max-width: 300px;
}
@media (max-width: 46rem) {
  .preloader img {
    max-width: 200px;
  }
}
.preloader .preloader-images {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
}
.preloader .preloader-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0px;
  left: 0px;
  max-width: unset;
  opacity: 0;
}
.preloader .top {
  width: 100vw;
  height: 50svh;
  position: absolute;
  top: 0px;
  left: 0px;
  transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.5s;
  opacity: 1;
}
.preloader .top.animated {
  top: -50vh;
}
@media (max-width: 46rem) {
  .preloader .top.animated {
    top: -80vh;
  }
}
.preloader .top.animated .design {
  transform: scale(4);
}
.preloader .top .design {
  position: absolute;
  left: calc(50% - 150px);
  bottom: 5px;
  transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom center;
  transition-delay: 0.5s;
}
@media (max-width: 46rem) {
  .preloader .top .design {
    left: calc(50% - 100px);
  }
}
.preloader .bottom {
  width: 100vw;
  height: 50svh;
  position: absolute;
  bottom: 0px;
  left: 0px;
  opacity: 1;
  transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.5s;
}
.preloader .bottom.animated {
  bottom: -50vh;
}
@media (max-width: 46rem) {
  .preloader .bottom.animated {
    bottom: -80vh;
  }
}
.preloader .bottom.animated .works {
  transform: scale(4);
}
.preloader .bottom .works {
  position: absolute;
  left: calc(50% - 150px);
  top: 5px;
  transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top center;
  transition-delay: 0.5s;
}
@media (max-width: 46rem) {
  .preloader .bottom .works {
    left: calc(50% - 100px);
  }
}

.swiper {
  overflow: hidden;
}
.swiper .swiper-slide {
  display: flex;
}

.swiper-logos {
  max-width: 100vw;
  position: relative;
  overflow: hidden;
}
.swiper-logos:before {
  content: " ";
  width: 20vw;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 9;
}
.swiper-logos:after {
  content: " ";
  width: 20vw;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  background: linear-gradient(-90deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 9;
}
.swiper-logos .swiper-wrapper {
  transition-timing-function: linear !important;
  align-items: center;
}
.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 1rem !important;
}

/* button style */
.swiper-pagination-bullet {
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}

.progress-bullet {
  width: 50px !important;
  height: 2px !important;
  opacity: 1 !important;
  background: rgba(255, 255, 255, 0.5) !important;
  border-radius: 5px !important;
}
.progress-bullet.swiper-pagination-bullet-active .progress-bullet__inner {
  animation: progress 5s;
  background: white !important;
}
.progress-bullet__inner {
  height: 2px;
}
.progress-bullet button {
  display: none;
}

@keyframes progress {
  0% {
    width: 0px;
  }
  100% {
    width: 100%;
  }
}
.swiper-products {
  position: relative;
  max-height: 100vh;
}
@media (min-width: 87.5rem) {
  .swiper-products {
    max-height: 70vh;
  }
}
.swiper-products.swiper-products-content .swiper-slide {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.8);
}
.swiper-products.products .swiper-slide {
  background-color: transparent;
}
.swiper-products .swiper-slide {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  padding: 0.5rem 0rem 0.5rem 0rem;
  height: auto;
}
@media (min-width: 61rem) {
  .swiper-products .swiper-slide {
    padding: 1rem 1rem 1rem 0rem;
  }
}
.swiper-products .swiper-nav {
  position: relative;
  width: 120px;
  margin-top: 0rem;
  margin-bottom: 4rem;
}
@media (min-width: 61rem) {
  .swiper-products .swiper-nav {
    position: absolute;
    top: -50px;
    right: 0px;
    width: 120px;
    margin: 0;
  }
}
.swiper-products .swiper-nav .swiper-button-prev {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  padding: 15px;
  transition: all 0.4s ease;
}
.swiper-products .swiper-nav .swiper-button-prev:after {
  display: none;
}
.swiper-products .swiper-nav .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  padding: 15px;
  transition: all 0.4s ease;
  right: 0px;
}
.swiper-products .swiper-nav .swiper-button-next:after {
  display: none;
}

.swiper-content .swiper-slide img {
  margin: 0px auto;
  display: block;
}
.swiper-content .swiper-slide .product_content {
  padding: 1rem 1rem 2rem 1rem;
}
@media (min-width: 61rem) {
  .swiper-content .swiper-slide .product_content {
    padding: 2rem 2rem 3rem 2rem;
  }
}
.swiper-content .swiper-nav .swiper-button-next {
  background: white;
}
.swiper-content .swiper-nav .swiper-button-next:hover {
  background: #F6F5F5;
}
.swiper-content .swiper-nav .swiper-button-prev {
  background: white;
}
.swiper-content .swiper-nav .swiper-button-prev:hover {
  background: #F6F5F5;
}
.swiper-content .swiper-nav svg path {
  fill: none;
}

.related-carousel {
  position: relative;
  overflow: hidden;
}
@media (max-width: 46rem) {
  .related-carousel {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding-right: 2.25rem;
  }
  .related-carousel .swiper-slide:first-of-type {
    margin-left: 1rem;
  }
}

/**
 * Swiper 11.1.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 9, 2024
 */
/**************************\
  Basic Modal Styles
\**************************/
.modal .modal__nav {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.modal .modal__nav .modal__nav-link {
  top: 1.25rem;
  background: rgba(255, 255, 255, 0.2);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.modal__container {
  max-height: 100vh;
  max-width: 100vw;
  height: 100%;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
  position: absolute;
  top: 16px;
  right: 16px;
}
.modal__close:before {
  display: none;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  font-weight: normal;
  padding: 1.25rem 0px 72px;
}
.modal__content img {
  width: 100%;
}
@media (min-width: 61rem) {
  .modal__content {
    padding: 2rem 0;
  }
}
@media (min-width: 87.5rem) {
  .modal__content {
    padding: 4rem 0;
  }
}
@media (min-width: 106rem) {
  .modal__content {
    padding: 6rem 0;
  }
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.wcc-consent-bar, .wcc-preference-center {
  background-color: #ECEFEE !important;
  border-radius: 20px !important;
  box-shadow: 0 113px 32px 0 rgba(0, 0, 0, 0), 0 73px 29px 0 rgba(0, 0, 0, 0.01), 0 41px 25px 0 rgba(0, 0, 0, 0.05), 0 18px 18px 0 rgba(0, 0, 0, 0.09), 0 5px 10px 0 rgba(0, 0, 0, 0.1) !important;
}
.wcc-consent-bar button, .wcc-preference-center button {
  border-radius: 8px !important;
  transition: all 0.3s ease;
  border-color: #3D6159 !important;
  color: #3D6159 !important;
  border-width: 1px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 10px 12px 8px 12px !important;
  line-height: 1 !important;
}
.wcc-consent-bar button.wcc-btn-accept, .wcc-preference-center button.wcc-btn-accept {
  background-color: #3D6159 !important;
  color: white !important;
  font-family: "Apercu-Bold", sans-serif !important;
}
.wcc-consent-bar button:before, .wcc-preference-center button:before {
  display: none;
}
.wcc-consent-bar .wcc-preference-title, .wcc-preference-center .wcc-preference-title {
  color: #3D6159 !important;
}
.wcc-consent-bar h1, .wcc-consent-bar h2, .wcc-consent-bar h3, .wcc-consent-bar h4, .wcc-consent-bar h5, .wcc-consent-bar h6, .wcc-consent-bar p, .wcc-preference-center h1, .wcc-preference-center h2, .wcc-preference-center h3, .wcc-preference-center h4, .wcc-preference-center h5, .wcc-preference-center h6, .wcc-preference-center p {
  color: #3D6159 !important;
}
.wcc-consent-bar p.wcc-title, .wcc-preference-center p.wcc-title {
  font-family: "Apercu-Bold", sans-serif !important;
}
.wcc-consent-bar p, .wcc-preference-center p {
  font-size: 16px;
  line-height: 20px;
}

.inline-video video {
  max-width: 100%;
  height: auto;
}

.rounded {
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
@media (min-width: 73rem) {
  .rounded {
    border-bottom-left-radius: 65px;
    border-bottom-right-radius: 65px;
  }
}

.inner {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.h-05 {
  height: 50%;
}

.sticky {
  position: sticky;
  top: 64px;
}
@media (min-width: 73rem) {
  .sticky {
    top: 128px;
  }
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.hidden {
  display: none !important;
}

.block {
  display: block !important;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.hide-on-mobile {
  display: none;
}
@media (min-width: 61rem) {
  .hide-on-mobile {
    display: block;
  }
}

.hide-on-mobile-grid {
  display: none;
}
@media (min-width: 61rem) {
  .hide-on-mobile-grid {
    display: grid;
  }
}

.hide-on-mobile-flex {
  display: none;
}
@media (min-width: 61rem) {
  .hide-on-mobile-flex {
    display: flex;
  }
}

.hide-on-desktop {
  display: block;
}
@media (min-width: 61rem) {
  .hide-on-desktop {
    display: none;
  }
}

.hide-on-desktop-flex {
  display: flex;
}
@media (min-width: 61rem) {
  .hide-on-desktop-flex {
    display: none;
  }
}

.hide-on-tablet {
  display: none;
}
@media (min-width: 73rem) {
  .hide-on-tablet {
    display: block;
  }
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.align-center {
  align-content: center;
  justify-content: center;
}

.overflow-hidden {
  overflow: hidden;
}

.reverse {
  flex-direction: column-reverse;
}
@media (min-width: 73rem) {
  .reverse {
    flex-direction: row-reverse;
  }
}

.auto-margin {
  margin: 0px auto;
}

.w-full {
  width: 100%;
}