@charset "UTF-8";
/* Grid sizes: */
/* http://gridcalculator.dk/#/1020/12/20/10 -- 65px col */
/* Colors */
/* 
From: http://flexboxgrid.com/

Uncomment and set these variables to customize the grid.

Note - set xs size for start and then go up for changes 
 */
/* if more than gap around whole container - add it to .max-container */
.max-container {
  margin-right: auto;
  margin-left: auto;
  position: relative;
  max-width: 63.75rem; /* BW: always set this on grid - .row has negative margins to pull out and then columns add back in padding. Do this so can nest rows, this is site width + 1 gutter so padding on first row makes content width 1032-20 = 1012  */
  width: 100%;
}
.max-container.no-padding {
  padding: 0;
}

.header-max-container {
  margin-right: auto;
  margin-left: auto;
  position: relative;
  max-width: 74.375rem;
  width: 100%;
}

.row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.row .row {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.col {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  position: relative;
}

.row-no-wrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.vertical-center { /* old way*/
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

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

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

/*.flex-img { responsive images inside a col -- doesn't seem to do anything
  display: block;
  -ms-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 100%;
  height: auto;
  width: 100%;
}*/
.align-bottom {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.align-center {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

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

.col-12 { /* no bigger than 10 col - center with .center-sm on parent .row */
  width: 100%;
  max-width: 63.75rem;
}

.col-10 { /* no bigger than 10 col - center with .center-sm on parent .row */
  width: 100%;
  max-width: 53.125rem;
}

.col-8 { /* no bigger than 8 col - center with .center-sm on parent .row */
  width: 100%;
  max-width: 42.5rem;
}

.col-6 {
  width: 100%;
  max-width: 31.875rem;
}

@media only screen and (max-width : 43.75rem) {
  .sm-down-hide {
    display: none;
  }
}

@media only screen and (max-width: 62.5rem) {
  .md-down-hide {
    display: none;
  }
}

.md-up-show {
  display: none;
}
@media only screen and (max-width: 62.5rem) {
  .md-up-show {
    display: block;
  }
}

/* theme specific columns */
/* theme specific columns */
.col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12 {
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
}

.row-no-wrap-sm {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.col-sm-offset-1 {
  margin-left: 8.333%;
}

.col-sm-offset-2 {
  margin-left: 16.667%;
}

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

.col-sm-offset-4 {
  margin-left: 33.333%;
}

.col-sm-offset-5 {
  margin-left: 41.667%;
}

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

.col-sm-offset-7 {
  margin-left: 58.333%;
}

.col-sm-offset-8 {
  margin-left: 66.667%;
}

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

.col-sm-offset-10 {
  margin-left: 83.333%;
}

.col-sm-offset-11 {
  margin-left: 91.667%;
}

.start-sm {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.center-sm {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.end-sm {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

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

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

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

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

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

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

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

@media only screen and (min-width : 43.75rem) {
  .col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12 {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
  }
  .row-no-wrap-md {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .col-md {
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-7-of-10 {
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
    max-width: 70%;
  }
  .col-md-3-of-10 {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    max-width: 30%;
  }
  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-1 {
    margin-left: 8.333%;
  }
  .col-md-offset-2 {
    margin-left: 16.667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.333%;
  }
  .col-md-offset-5 {
    margin-left: 41.667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.333%;
  }
  .col-md-offset-8 {
    margin-left: 66.667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.333%;
  }
  .col-md-offset-11 {
    margin-left: 91.667%;
  }
  .start-md {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-md {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-md {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-md {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-md {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-md {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-md {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
@media only screen and (min-width : 62.5rem) {
  .col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12 {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
  }
  .col-lg {
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-1 {
    margin-left: 8.333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.667%;
  }
  .start-lg {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-lg {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-lg {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-lg {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-lg {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-lg {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
.wp-block {
  /* 400, 700 */
  font-family: "Ringside Regular A", "Ringside Regular B";
  font-style: normal;
  font-weight: 400;
}

.editor-styles-wrapper {
  color: #253e51;
}
.editor-styles-wrapper .editor-rich-text {
  /* 400, 700 */
  font-family: "Ringside Regular A", "Ringside Regular B";
  font-style: normal;
  font-weight: 400;
  color: #253e51;
}

.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > :not(.rich-text) {
  margin-top: 0;
}
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > .rich-text {
  margin-top: 0;
}
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > .wp-block-list {
  padding-left: 1.25rem;
}
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > .wp-block[data-align=left], .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block[data-align=right] {
  float: none;
}
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > .wp-block[data-align=left] > .wp-block-image {
  float: left;
}
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > .wp-block[data-align=right] > .wp-block-image {
  float: right;
}

.block-wrapper > * {
  margin-right: auto;
  margin-left: auto;
  position: relative;
  max-width: 53.125rem;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  /* note can't put display: block here because style and script tags that get written out inside blocks would display. Everything in here has to be div or a display of block already. */
}
.block-wrapper > .alignwide {
  max-width: 63.75rem;
}
.block-wrapper > .alignfull {
  max-width: none;
}
.block-wrapper > .alignfull video, .block-wrapper > .alignfull img {
  width: 100%;
}
.block-wrapper .has-white-color a {
  color: white;
}
.block-wrapper .has-white-color a:hover, .block-wrapper .has-white-color a:focus {
  color: white;
}

.col-8-block-wrapper > * {
  margin-right: auto;
  margin-left: auto;
  position: relative;
  max-width: 42.5rem;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}

.alignwide-row, .block-wrapper > .alignwide-row {
  /* allows for columns that have their own 10px padding around them */
  padding-right: 0;
  padding-left: 0;
  max-width: 63.75rem;
  margin: 0 auto;
}

.editor-styles-wrapper .block-editor-block-list__layout,
.tribe-events-single,
.entry-content, .textwidget, .entry-header, .entry-footer, .navigation, .entry-single-project, .editor-styles-wrapper, .popmake-content {
  /****** Custom Blocks with ACF ****/
  /** articles in list **/
  /** END: articles in list **/
}
.editor-styles-wrapper .block-editor-block-list__layout h1, .editor-styles-wrapper .block-editor-block-list__layout h2, .editor-styles-wrapper .block-editor-block-list__layout h3, .editor-styles-wrapper .block-editor-block-list__layout h4, .editor-styles-wrapper .block-editor-block-list__layout h5, .editor-styles-wrapper .block-editor-block-list__layout h6, .editor-styles-wrapper .block-editor-block-list__layout .editor-post-title__input,
.tribe-events-single h1,
.tribe-events-single h2,
.tribe-events-single h3,
.tribe-events-single h4,
.tribe-events-single h5,
.tribe-events-single h6,
.tribe-events-single .editor-post-title__input,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.entry-content .editor-post-title__input, .textwidget h1, .textwidget h2, .textwidget h3, .textwidget h4, .textwidget h5, .textwidget h6, .textwidget .editor-post-title__input, .entry-header h1, .entry-header h2, .entry-header h3, .entry-header h4, .entry-header h5, .entry-header h6, .entry-header .editor-post-title__input, .entry-footer h1, .entry-footer h2, .entry-footer h3, .entry-footer h4, .entry-footer h5, .entry-footer h6, .entry-footer .editor-post-title__input, .navigation h1, .navigation h2, .navigation h3, .navigation h4, .navigation h5, .navigation h6, .navigation .editor-post-title__input, .entry-single-project h1, .entry-single-project h2, .entry-single-project h3, .entry-single-project h4, .entry-single-project h5, .entry-single-project h6, .entry-single-project .editor-post-title__input, .editor-styles-wrapper h1, .editor-styles-wrapper h2, .editor-styles-wrapper h3, .editor-styles-wrapper h4, .editor-styles-wrapper h5, .editor-styles-wrapper h6, .editor-styles-wrapper .editor-post-title__input, .popmake-content h1, .popmake-content h2, .popmake-content h3, .popmake-content h4, .popmake-content h5, .popmake-content h6, .popmake-content .editor-post-title__input {
  margin-top: 0;
  margin-bottom: 0;
}
.editor-styles-wrapper .block-editor-block-list__layout h1 a, .editor-styles-wrapper .block-editor-block-list__layout h2 a, .editor-styles-wrapper .block-editor-block-list__layout h3 a, .editor-styles-wrapper .block-editor-block-list__layout h4 a, .editor-styles-wrapper .block-editor-block-list__layout h5 a, .editor-styles-wrapper .block-editor-block-list__layout h6 a, .editor-styles-wrapper .block-editor-block-list__layout .editor-post-title__input a,
.tribe-events-single h1 a,
.tribe-events-single h2 a,
.tribe-events-single h3 a,
.tribe-events-single h4 a,
.tribe-events-single h5 a,
.tribe-events-single h6 a,
.tribe-events-single .editor-post-title__input a,
.entry-content h1 a,
.entry-content h2 a,
.entry-content h3 a,
.entry-content h4 a,
.entry-content h5 a,
.entry-content h6 a,
.entry-content .editor-post-title__input a, .textwidget h1 a, .textwidget h2 a, .textwidget h3 a, .textwidget h4 a, .textwidget h5 a, .textwidget h6 a, .textwidget .editor-post-title__input a, .entry-header h1 a, .entry-header h2 a, .entry-header h3 a, .entry-header h4 a, .entry-header h5 a, .entry-header h6 a, .entry-header .editor-post-title__input a, .entry-footer h1 a, .entry-footer h2 a, .entry-footer h3 a, .entry-footer h4 a, .entry-footer h5 a, .entry-footer h6 a, .entry-footer .editor-post-title__input a, .navigation h1 a, .navigation h2 a, .navigation h3 a, .navigation h4 a, .navigation h5 a, .navigation h6 a, .navigation .editor-post-title__input a, .entry-single-project h1 a, .entry-single-project h2 a, .entry-single-project h3 a, .entry-single-project h4 a, .entry-single-project h5 a, .entry-single-project h6 a, .entry-single-project .editor-post-title__input a, .editor-styles-wrapper h1 a, .editor-styles-wrapper h2 a, .editor-styles-wrapper h3 a, .editor-styles-wrapper h4 a, .editor-styles-wrapper h5 a, .editor-styles-wrapper h6 a, .editor-styles-wrapper .editor-post-title__input a, .popmake-content h1 a, .popmake-content h2 a, .popmake-content h3 a, .popmake-content h4 a, .popmake-content h5 a, .popmake-content h6 a, .popmake-content .editor-post-title__input a {
  text-decoration: none;
  color: #253e51;
}
.editor-styles-wrapper .block-editor-block-list__layout h1, .editor-styles-wrapper .block-editor-block-list__layout .editor-post-title__input,
.tribe-events-single h1,
.tribe-events-single .editor-post-title__input,
.entry-content h1,
.entry-content .editor-post-title__input, .textwidget h1, .textwidget .editor-post-title__input, .entry-header h1, .entry-header .editor-post-title__input, .entry-footer h1, .entry-footer .editor-post-title__input, .navigation h1, .navigation .editor-post-title__input, .entry-single-project h1, .entry-single-project .editor-post-title__input, .editor-styles-wrapper h1, .editor-styles-wrapper .editor-post-title__input, .popmake-content h1, .popmake-content .editor-post-title__input {
  /* 400, 700 */
  font-family: "Ringside Compressed A", "Ringside Compressed B";
  font-style: normal;
  font-weight: 700;
  font-size: 3rem;
  line-height: 3rem;
  letter-spacing: 0.01em;
  padding-bottom: 1.5rem;
}
.editor-styles-wrapper .block-editor-block-list__layout h2,
.tribe-events-single h2,
.entry-content h2, .textwidget h2, .entry-header h2, .entry-footer h2, .navigation h2, .entry-single-project h2, .editor-styles-wrapper h2, .popmake-content h2 {
  /* 400, 700 */
  font-family: "Ringside Compressed A", "Ringside Compressed B";
  font-style: normal;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2rem;
  padding-bottom: 0.25rem; /* use margin for border-bottom on hover states */
}
.editor-styles-wrapper .block-editor-block-list__layout h2.related-header,
.tribe-events-single h2.related-header,
.entry-content h2.related-header, .textwidget h2.related-header, .entry-header h2.related-header, .entry-footer h2.related-header, .navigation h2.related-header, .entry-single-project h2.related-header, .editor-styles-wrapper h2.related-header, .popmake-content h2.related-header {
  /* put .block-wrapper-setter around so can set its own padding and margins */
  font-size: 1rem;
  line-height: 1.5rem;
  /* 700 */
  font-family: "Ringside Extra Wide A", "Ringside Extra Wide B";
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #253e51;
  padding: 0 0 0;
  margin-bottom: 0;
  text-transform: uppercase;
}
.editor-styles-wrapper .block-editor-block-list__layout h3, .editor-styles-wrapper .block-editor-block-list__layout h4, .editor-styles-wrapper .block-editor-block-list__layout h5, .editor-styles-wrapper .block-editor-block-list__layout h6,
.tribe-events-single h3,
.tribe-events-single h4,
.tribe-events-single h5,
.tribe-events-single h6,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6, .textwidget h3, .textwidget h4, .textwidget h5, .textwidget h6, .entry-header h3, .entry-header h4, .entry-header h5, .entry-header h6, .entry-footer h3, .entry-footer h4, .entry-footer h5, .entry-footer h6, .navigation h3, .navigation h4, .navigation h5, .navigation h6, .entry-single-project h3, .entry-single-project h4, .entry-single-project h5, .entry-single-project h6, .editor-styles-wrapper h3, .editor-styles-wrapper h4, .editor-styles-wrapper h5, .editor-styles-wrapper h6, .popmake-content h3, .popmake-content h4, .popmake-content h5, .popmake-content h6 {
  /* 400, 700 */
  font-family: "Ringside Regular A", "Ringside Regular B";
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5rem;
  padding-bottom: 0.375rem;
}
.editor-styles-wrapper .block-editor-block-list__layout a,
.tribe-events-single a,
.entry-content a, .textwidget a, .entry-header a, .entry-footer a, .navigation a, .entry-single-project a, .editor-styles-wrapper a, .popmake-content a {
  color: #253e51;
  font-weight: 700;
  text-decoration: underline;
}
.editor-styles-wrapper .block-editor-block-list__layout a:hover, .editor-styles-wrapper .block-editor-block-list__layout a:focus,
.tribe-events-single a:hover,
.tribe-events-single a:focus,
.entry-content a:hover,
.entry-content a:focus, .textwidget a:hover, .textwidget a:focus, .entry-header a:hover, .entry-header a:focus, .entry-footer a:hover, .entry-footer a:focus, .navigation a:hover, .navigation a:focus, .entry-single-project a:hover, .entry-single-project a:focus, .editor-styles-wrapper a:hover, .editor-styles-wrapper a:focus, .popmake-content a:hover, .popmake-content a:focus {
  text-decoration-color: #a40c34;
  color: #a40c34;
}
.editor-styles-wrapper .block-editor-block-list__layout a.button,
.tribe-events-single a.button,
.entry-content a.button, .textwidget a.button, .entry-header a.button, .entry-footer a.button, .navigation a.button, .entry-single-project a.button, .editor-styles-wrapper a.button, .popmake-content a.button {
  text-decoration: none;
}
.editor-styles-wrapper .block-editor-block-list__layout .has-white-color a,
.tribe-events-single .has-white-color a,
.entry-content .has-white-color a, .textwidget .has-white-color a, .entry-header .has-white-color a, .entry-footer .has-white-color a, .navigation .has-white-color a, .entry-single-project .has-white-color a, .editor-styles-wrapper .has-white-color a, .popmake-content .has-white-color a {
  color: white;
}
.editor-styles-wrapper .block-editor-block-list__layout p.has-drop-cap:not(:focus):first-letter,
.tribe-events-single p.has-drop-cap:not(:focus):first-letter,
.entry-content p.has-drop-cap:not(:focus):first-letter, .textwidget p.has-drop-cap:not(:focus):first-letter, .entry-header p.has-drop-cap:not(:focus):first-letter, .entry-footer p.has-drop-cap:not(:focus):first-letter, .navigation p.has-drop-cap:not(:focus):first-letter, .entry-single-project p.has-drop-cap:not(:focus):first-letter, .editor-styles-wrapper p.has-drop-cap:not(:focus):first-letter, .popmake-content p.has-drop-cap:not(:focus):first-letter {
  float: left;
  font-size: 3.125rem;
  line-height: 1.5rem;
  /* 400, 700 */
  font-family: "Ringside Compressed A", "Ringside Compressed B";
  font-style: normal;
  font-weight: 700;
  margin: 0.4375rem 0.1875rem 0.1875rem 0;
  text-transform: uppercase;
  color: #63809c;
}
.editor-styles-wrapper .block-editor-block-list__layout p, .editor-styles-wrapper .block-editor-block-list__layout ul, .editor-styles-wrapper .block-editor-block-list__layout ol, .editor-styles-wrapper .block-editor-block-list__layout pre, .editor-styles-wrapper .block-editor-block-list__layout .cat-links, .editor-styles-wrapper .block-editor-block-list__layout .nav-links,
.tribe-events-single p,
.tribe-events-single ul,
.tribe-events-single ol,
.tribe-events-single pre,
.tribe-events-single .cat-links,
.tribe-events-single .nav-links,
.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content pre,
.entry-content .cat-links,
.entry-content .nav-links, .textwidget p, .textwidget ul, .textwidget ol, .textwidget pre, .textwidget .cat-links, .textwidget .nav-links, .entry-header p, .entry-header ul, .entry-header ol, .entry-header pre, .entry-header .cat-links, .entry-header .nav-links, .entry-footer p, .entry-footer ul, .entry-footer ol, .entry-footer pre, .entry-footer .cat-links, .entry-footer .nav-links, .navigation p, .navigation ul, .navigation ol, .navigation pre, .navigation .cat-links, .navigation .nav-links, .entry-single-project p, .entry-single-project ul, .entry-single-project ol, .entry-single-project pre, .entry-single-project .cat-links, .entry-single-project .nav-links, .editor-styles-wrapper p, .editor-styles-wrapper ul, .editor-styles-wrapper ol, .editor-styles-wrapper pre, .editor-styles-wrapper .cat-links, .editor-styles-wrapper .nav-links, .popmake-content p, .popmake-content ul, .popmake-content ol, .popmake-content pre, .popmake-content .cat-links, .popmake-content .nav-links {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.25rem;
}
.editor-styles-wrapper .block-editor-block-list__layout p.has-background, .editor-styles-wrapper .block-editor-block-list__layout ul.has-background, .editor-styles-wrapper .block-editor-block-list__layout ol.has-background, .editor-styles-wrapper .block-editor-block-list__layout pre.has-background, .editor-styles-wrapper .block-editor-block-list__layout .cat-links.has-background, .editor-styles-wrapper .block-editor-block-list__layout .nav-links.has-background,
.tribe-events-single p.has-background,
.tribe-events-single ul.has-background,
.tribe-events-single ol.has-background,
.tribe-events-single pre.has-background,
.tribe-events-single .cat-links.has-background,
.tribe-events-single .nav-links.has-background,
.entry-content p.has-background,
.entry-content ul.has-background,
.entry-content ol.has-background,
.entry-content pre.has-background,
.entry-content .cat-links.has-background,
.entry-content .nav-links.has-background, .textwidget p.has-background, .textwidget ul.has-background, .textwidget ol.has-background, .textwidget pre.has-background, .textwidget .cat-links.has-background, .textwidget .nav-links.has-background, .entry-header p.has-background, .entry-header ul.has-background, .entry-header ol.has-background, .entry-header pre.has-background, .entry-header .cat-links.has-background, .entry-header .nav-links.has-background, .entry-footer p.has-background, .entry-footer ul.has-background, .entry-footer ol.has-background, .entry-footer pre.has-background, .entry-footer .cat-links.has-background, .entry-footer .nav-links.has-background, .navigation p.has-background, .navigation ul.has-background, .navigation ol.has-background, .navigation pre.has-background, .navigation .cat-links.has-background, .navigation .nav-links.has-background, .entry-single-project p.has-background, .entry-single-project ul.has-background, .entry-single-project ol.has-background, .entry-single-project pre.has-background, .entry-single-project .cat-links.has-background, .entry-single-project .nav-links.has-background, .editor-styles-wrapper p.has-background, .editor-styles-wrapper ul.has-background, .editor-styles-wrapper ol.has-background, .editor-styles-wrapper pre.has-background, .editor-styles-wrapper .cat-links.has-background, .editor-styles-wrapper .nav-links.has-background, .popmake-content p.has-background, .popmake-content ul.has-background, .popmake-content ol.has-background, .popmake-content pre.has-background, .popmake-content .cat-links.has-background, .popmake-content .nav-links.has-background {
  padding: 1.25rem 1.875rem;
}
.editor-styles-wrapper .block-editor-block-list__layout p.has-background,
.tribe-events-single p.has-background,
.entry-content p.has-background, .textwidget p.has-background, .entry-header p.has-background, .entry-footer p.has-background, .navigation p.has-background, .entry-single-project p.has-background, .editor-styles-wrapper p.has-background, .popmake-content p.has-background {
  margin-bottom: 1.25rem;
}
.editor-styles-wrapper .block-editor-block-list__layout ul, .editor-styles-wrapper .block-editor-block-list__layout ol,
.tribe-events-single ul,
.tribe-events-single ol,
.entry-content ul,
.entry-content ol, .textwidget ul, .textwidget ol, .entry-header ul, .entry-header ol, .entry-footer ul, .entry-footer ol, .navigation ul, .navigation ol, .entry-single-project ul, .entry-single-project ol, .editor-styles-wrapper ul, .editor-styles-wrapper ol, .popmake-content ul, .popmake-content ol {
  list-style-position: outside;
  padding-left: 2.25rem;
}
.editor-styles-wrapper .block-editor-block-list__layout ul li, .editor-styles-wrapper .block-editor-block-list__layout ol li,
.tribe-events-single ul li,
.tribe-events-single ol li,
.entry-content ul li,
.entry-content ol li, .textwidget ul li, .textwidget ol li, .entry-header ul li, .entry-header ol li, .entry-footer ul li, .entry-footer ol li, .navigation ul li, .navigation ol li, .entry-single-project ul li, .entry-single-project ol li, .editor-styles-wrapper ul li, .editor-styles-wrapper ol li, .popmake-content ul li, .popmake-content ol li {
  padding-bottom: 0.375rem;
  margin-left: 1.25rem; /* so ul, ol can have extra padding and margin auto to center in column */
}
.editor-styles-wrapper .block-editor-block-list__layout ul ul, .editor-styles-wrapper .block-editor-block-list__layout ul ol, .editor-styles-wrapper .block-editor-block-list__layout ol ul, .editor-styles-wrapper .block-editor-block-list__layout ol ol,
.tribe-events-single ul ul,
.tribe-events-single ul ol,
.tribe-events-single ol ul,
.tribe-events-single ol ol,
.entry-content ul ul,
.entry-content ul ol,
.entry-content ol ul,
.entry-content ol ol, .textwidget ul ul, .textwidget ul ol, .textwidget ol ul, .textwidget ol ol, .entry-header ul ul, .entry-header ul ol, .entry-header ol ul, .entry-header ol ol, .entry-footer ul ul, .entry-footer ul ol, .entry-footer ol ul, .entry-footer ol ol, .navigation ul ul, .navigation ul ol, .navigation ol ul, .navigation ol ol, .entry-single-project ul ul, .entry-single-project ul ol, .entry-single-project ol ul, .entry-single-project ol ol, .editor-styles-wrapper ul ul, .editor-styles-wrapper ul ol, .editor-styles-wrapper ol ul, .editor-styles-wrapper ol ol, .popmake-content ul ul, .popmake-content ul ol, .popmake-content ol ul, .popmake-content ol ol {
  padding-top: 0.375rem;
  padding-bottom: 0;
}
.editor-styles-wrapper .block-editor-block-list__layout ul ul li:last-child, .editor-styles-wrapper .block-editor-block-list__layout ul ol li:last-child, .editor-styles-wrapper .block-editor-block-list__layout ol ul li:last-child, .editor-styles-wrapper .block-editor-block-list__layout ol ol li:last-child,
.tribe-events-single ul ul li:last-child,
.tribe-events-single ul ol li:last-child,
.tribe-events-single ol ul li:last-child,
.tribe-events-single ol ol li:last-child,
.entry-content ul ul li:last-child,
.entry-content ul ol li:last-child,
.entry-content ol ul li:last-child,
.entry-content ol ol li:last-child, .textwidget ul ul li:last-child, .textwidget ul ol li:last-child, .textwidget ol ul li:last-child, .textwidget ol ol li:last-child, .entry-header ul ul li:last-child, .entry-header ul ol li:last-child, .entry-header ol ul li:last-child, .entry-header ol ol li:last-child, .entry-footer ul ul li:last-child, .entry-footer ul ol li:last-child, .entry-footer ol ul li:last-child, .entry-footer ol ol li:last-child, .navigation ul ul li:last-child, .navigation ul ol li:last-child, .navigation ol ul li:last-child, .navigation ol ol li:last-child, .entry-single-project ul ul li:last-child, .entry-single-project ul ol li:last-child, .entry-single-project ol ul li:last-child, .entry-single-project ol ol li:last-child, .editor-styles-wrapper ul ul li:last-child, .editor-styles-wrapper ul ol li:last-child, .editor-styles-wrapper ol ul li:last-child, .editor-styles-wrapper ol ol li:last-child, .popmake-content ul ul li:last-child, .popmake-content ul ol li:last-child, .popmake-content ol ul li:last-child, .popmake-content ol ol li:last-child {
  padding-bottom: 0;
}
.editor-styles-wrapper .block-editor-block-list__layout .wp-block-quote, .editor-styles-wrapper .block-editor-block-list__layout .wp-block-quote:not(.is-large):not(.is-style-large),
.tribe-events-single .wp-block-quote,
.tribe-events-single .wp-block-quote:not(.is-large):not(.is-style-large),
.entry-content .wp-block-quote,
.entry-content .wp-block-quote:not(.is-large):not(.is-style-large), .textwidget .wp-block-quote, .textwidget .wp-block-quote:not(.is-large):not(.is-style-large), .entry-header .wp-block-quote, .entry-header .wp-block-quote:not(.is-large):not(.is-style-large), .entry-footer .wp-block-quote, .entry-footer .wp-block-quote:not(.is-large):not(.is-style-large), .navigation .wp-block-quote, .navigation .wp-block-quote:not(.is-large):not(.is-style-large), .entry-single-project .wp-block-quote, .entry-single-project .wp-block-quote:not(.is-large):not(.is-style-large), .editor-styles-wrapper .wp-block-quote, .editor-styles-wrapper .wp-block-quote:not(.is-large):not(.is-style-large), .popmake-content .wp-block-quote, .popmake-content .wp-block-quote:not(.is-large):not(.is-style-large) {
  margin-top: 0;
  margin-bottom: 0;
  border-left: 0;
  padding-bottom: 1.875rem;
}
.editor-styles-wrapper .block-editor-block-list__layout .wp-block-quote p, .editor-styles-wrapper .block-editor-block-list__layout .wp-block-quote:not(.is-large):not(.is-style-large) p,
.tribe-events-single .wp-block-quote p,
.tribe-events-single .wp-block-quote:not(.is-large):not(.is-style-large) p,
.entry-content .wp-block-quote p,
.entry-content .wp-block-quote:not(.is-large):not(.is-style-large) p, .textwidget .wp-block-quote p, .textwidget .wp-block-quote:not(.is-large):not(.is-style-large) p, .entry-header .wp-block-quote p, .entry-header .wp-block-quote:not(.is-large):not(.is-style-large) p, .entry-footer .wp-block-quote p, .entry-footer .wp-block-quote:not(.is-large):not(.is-style-large) p, .navigation .wp-block-quote p, .navigation .wp-block-quote:not(.is-large):not(.is-style-large) p, .entry-single-project .wp-block-quote p, .entry-single-project .wp-block-quote:not(.is-large):not(.is-style-large) p, .editor-styles-wrapper .wp-block-quote p, .editor-styles-wrapper .wp-block-quote:not(.is-large):not(.is-style-large) p, .popmake-content .wp-block-quote p, .popmake-content .wp-block-quote:not(.is-large):not(.is-style-large) p {
  font-size: 1.5rem;
  line-height: 1.875rem;
  text-align: center;
  /* 600, 600i  */
  font-family: "Sentinel A", "Sentinel B";
  font-style: normal;
  font-style: normal;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 0;
}
.editor-styles-wrapper .block-editor-block-list__layout .wp-block-quote cite, .editor-styles-wrapper .block-editor-block-list__layout .wp-block-quote .wp-block-quote__citation, .editor-styles-wrapper .block-editor-block-list__layout .wp-block-quote:not(.is-large):not(.is-style-large) cite, .editor-styles-wrapper .block-editor-block-list__layout .wp-block-quote:not(.is-large):not(.is-style-large) .wp-block-quote__citation,
.tribe-events-single .wp-block-quote cite,
.tribe-events-single .wp-block-quote .wp-block-quote__citation,
.tribe-events-single .wp-block-quote:not(.is-large):not(.is-style-large) cite,
.tribe-events-single .wp-block-quote:not(.is-large):not(.is-style-large) .wp-block-quote__citation,
.entry-content .wp-block-quote cite,
.entry-content .wp-block-quote .wp-block-quote__citation,
.entry-content .wp-block-quote:not(.is-large):not(.is-style-large) cite,
.entry-content .wp-block-quote:not(.is-large):not(.is-style-large) .wp-block-quote__citation, .textwidget .wp-block-quote cite, .textwidget .wp-block-quote .wp-block-quote__citation, .textwidget .wp-block-quote:not(.is-large):not(.is-style-large) cite, .textwidget .wp-block-quote:not(.is-large):not(.is-style-large) .wp-block-quote__citation, .entry-header .wp-block-quote cite, .entry-header .wp-block-quote .wp-block-quote__citation, .entry-header .wp-block-quote:not(.is-large):not(.is-style-large) cite, .entry-header .wp-block-quote:not(.is-large):not(.is-style-large) .wp-block-quote__citation, .entry-footer .wp-block-quote cite, .entry-footer .wp-block-quote .wp-block-quote__citation, .entry-footer .wp-block-quote:not(.is-large):not(.is-style-large) cite, .entry-footer .wp-block-quote:not(.is-large):not(.is-style-large) .wp-block-quote__citation, .navigation .wp-block-quote cite, .navigation .wp-block-quote .wp-block-quote__citation, .navigation .wp-block-quote:not(.is-large):not(.is-style-large) cite, .navigation .wp-block-quote:not(.is-large):not(.is-style-large) .wp-block-quote__citation, .entry-single-project .wp-block-quote cite, .entry-single-project .wp-block-quote .wp-block-quote__citation, .entry-single-project .wp-block-quote:not(.is-large):not(.is-style-large) cite, .entry-single-project .wp-block-quote:not(.is-large):not(.is-style-large) .wp-block-quote__citation, .editor-styles-wrapper .wp-block-quote cite, .editor-styles-wrapper .wp-block-quote .wp-block-quote__citation, .editor-styles-wrapper .wp-block-quote:not(.is-large):not(.is-style-large) cite, .editor-styles-wrapper .wp-block-quote:not(.is-large):not(.is-style-large) .wp-block-quote__citation, .popmake-content .wp-block-quote cite, .popmake-content .wp-block-quote .wp-block-quote__citation, .popmake-content .wp-block-quote:not(.is-large):not(.is-style-large) cite, .popmake-content .wp-block-quote:not(.is-large):not(.is-style-large) .wp-block-quote__citation {
  /* 700 */
  font-family: "Ringside Extra Wide A", "Ringside Extra Wide B";
  font-style: normal;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.875rem;
  text-transform: uppercase;
  color: #253e51;
  text-align: center;
  display: block;
}
.editor-styles-wrapper .block-editor-block-list__layout .wp-block-button,
.tribe-events-single .wp-block-button,
.entry-content .wp-block-button, .textwidget .wp-block-button, .entry-header .wp-block-button, .entry-footer .wp-block-button, .navigation .wp-block-button, .entry-single-project .wp-block-button, .editor-styles-wrapper .wp-block-button, .popmake-content .wp-block-button {
  padding-bottom: 1.875rem;
}
.editor-styles-wrapper .block-editor-block-list__layout .wp-block-button .wp-block-button__link,
.tribe-events-single .wp-block-button .wp-block-button__link,
.entry-content .wp-block-button .wp-block-button__link, .textwidget .wp-block-button .wp-block-button__link, .entry-header .wp-block-button .wp-block-button__link, .entry-footer .wp-block-button .wp-block-button__link, .navigation .wp-block-button .wp-block-button__link, .entry-single-project .wp-block-button .wp-block-button__link, .editor-styles-wrapper .wp-block-button .wp-block-button__link, .popmake-content .wp-block-button .wp-block-button__link {
  /* 700 */
  font-family: "Ringside Extra Wide A", "Ringside Extra Wide B";
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.025em;
  background-color: #a40c34;
  border-radius: 0.1875rem;
  font-size: 1.125rem;
  line-height: 1em;
  display: inline-block;
  padding: 0.875rem 1.25rem;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: background-color 300ms ease-out;
  transition: background-color 300ms ease-out;
  position: relative;
  border: 0 none;
}
.editor-styles-wrapper .block-editor-block-list__layout .wp-block-button .wp-block-button__link:hover, .editor-styles-wrapper .block-editor-block-list__layout .wp-block-button .wp-block-button__link:focus,
.tribe-events-single .wp-block-button .wp-block-button__link:hover,
.tribe-events-single .wp-block-button .wp-block-button__link:focus,
.entry-content .wp-block-button .wp-block-button__link:hover,
.entry-content .wp-block-button .wp-block-button__link:focus, .textwidget .wp-block-button .wp-block-button__link:hover, .textwidget .wp-block-button .wp-block-button__link:focus, .entry-header .wp-block-button .wp-block-button__link:hover, .entry-header .wp-block-button .wp-block-button__link:focus, .entry-footer .wp-block-button .wp-block-button__link:hover, .entry-footer .wp-block-button .wp-block-button__link:focus, .navigation .wp-block-button .wp-block-button__link:hover, .navigation .wp-block-button .wp-block-button__link:focus, .entry-single-project .wp-block-button .wp-block-button__link:hover, .entry-single-project .wp-block-button .wp-block-button__link:focus, .editor-styles-wrapper .wp-block-button .wp-block-button__link:hover, .editor-styles-wrapper .wp-block-button .wp-block-button__link:focus, .popmake-content .wp-block-button .wp-block-button__link:hover, .popmake-content .wp-block-button .wp-block-button__link:focus {
  color: white;
  background-color: #c60c34;
  cursor: pointer;
}
.editor-styles-wrapper .block-editor-block-list__layout hr.wp-block-separator, .editor-styles-wrapper .block-editor-block-list__layout hr,
.tribe-events-single hr.wp-block-separator,
.tribe-events-single hr,
.entry-content hr.wp-block-separator,
.entry-content hr, .textwidget hr.wp-block-separator, .textwidget hr, .entry-header hr.wp-block-separator, .entry-header hr, .entry-footer hr.wp-block-separator, .entry-footer hr, .navigation hr.wp-block-separator, .navigation hr, .entry-single-project hr.wp-block-separator, .entry-single-project hr, .editor-styles-wrapper hr.wp-block-separator, .editor-styles-wrapper hr, .popmake-content hr.wp-block-separator, .popmake-content hr {
  border: 0;
  height: 0;
  border-top: 1px solid #63809c;
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}
.editor-styles-wrapper .block-editor-block-list__layout hr.wp-block-separator.is-style-wide, .editor-styles-wrapper .block-editor-block-list__layout hr.is-style-wide,
.tribe-events-single hr.wp-block-separator.is-style-wide,
.tribe-events-single hr.is-style-wide,
.entry-content hr.wp-block-separator.is-style-wide,
.entry-content hr.is-style-wide, .textwidget hr.wp-block-separator.is-style-wide, .textwidget hr.is-style-wide, .entry-header hr.wp-block-separator.is-style-wide, .entry-header hr.is-style-wide, .entry-footer hr.wp-block-separator.is-style-wide, .entry-footer hr.is-style-wide, .navigation hr.wp-block-separator.is-style-wide, .navigation hr.is-style-wide, .entry-single-project hr.wp-block-separator.is-style-wide, .entry-single-project hr.is-style-wide, .editor-styles-wrapper hr.wp-block-separator.is-style-wide, .editor-styles-wrapper hr.is-style-wide, .popmake-content hr.wp-block-separator.is-style-wide, .popmake-content hr.is-style-wide {
  width: 100%;
}
.editor-styles-wrapper .block-editor-block-list__layout hr.wp-block-separator.is-style-default, .editor-styles-wrapper .block-editor-block-list__layout hr.is-style-default,
.tribe-events-single hr.wp-block-separator.is-style-default,
.tribe-events-single hr.is-style-default,
.entry-content hr.wp-block-separator.is-style-default,
.entry-content hr.is-style-default, .textwidget hr.wp-block-separator.is-style-default, .textwidget hr.is-style-default, .entry-header hr.wp-block-separator.is-style-default, .entry-header hr.is-style-default, .entry-footer hr.wp-block-separator.is-style-default, .entry-footer hr.is-style-default, .navigation hr.wp-block-separator.is-style-default, .navigation hr.is-style-default, .entry-single-project hr.wp-block-separator.is-style-default, .entry-single-project hr.is-style-default, .editor-styles-wrapper hr.wp-block-separator.is-style-default, .editor-styles-wrapper hr.is-style-default, .popmake-content hr.wp-block-separator.is-style-default, .popmake-content hr.is-style-default {
  width: 18.75rem;
  text-align: center;
}
.editor-styles-wrapper .block-editor-block-list__layout .wp-block-video video,
.tribe-events-single .wp-block-video video,
.entry-content .wp-block-video video, .textwidget .wp-block-video video, .entry-header .wp-block-video video, .entry-footer .wp-block-video video, .navigation .wp-block-video video, .entry-single-project .wp-block-video video, .editor-styles-wrapper .wp-block-video video, .popmake-content .wp-block-video video {
  max-width: 100%;
  padding-bottom: 1.875rem;
}
.editor-styles-wrapper .block-editor-block-list__layout .acf-slideshow,
.tribe-events-single .acf-slideshow,
.entry-content .acf-slideshow, .textwidget .acf-slideshow, .entry-header .acf-slideshow, .entry-footer .acf-slideshow, .navigation .acf-slideshow, .entry-single-project .acf-slideshow, .editor-styles-wrapper .acf-slideshow, .popmake-content .acf-slideshow {
  position: relative;
}
.editor-styles-wrapper .block-editor-block-list__layout .acf-slideshow figure,
.tribe-events-single .acf-slideshow figure,
.entry-content .acf-slideshow figure, .textwidget .acf-slideshow figure, .entry-header .acf-slideshow figure, .entry-footer .acf-slideshow figure, .navigation .acf-slideshow figure, .entry-single-project .acf-slideshow figure, .editor-styles-wrapper .acf-slideshow figure, .popmake-content .acf-slideshow figure {
  position: relative;
}
.editor-styles-wrapper .block-editor-block-list__layout .acf-slideshow figcaption,
.tribe-events-single .acf-slideshow figcaption,
.entry-content .acf-slideshow figcaption, .textwidget .acf-slideshow figcaption, .entry-header .acf-slideshow figcaption, .entry-footer .acf-slideshow figcaption, .navigation .acf-slideshow figcaption, .entry-single-project .acf-slideshow figcaption, .editor-styles-wrapper .acf-slideshow figcaption, .popmake-content .acf-slideshow figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 100%;
  overflow: auto;
  padding: 40px 10px 5px;
  color: #fff;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.1875rem;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), color-stop(60%, rgba(0, 0, 0, 0.3)), to(transparent));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3) 60%, transparent);
  margin: 0;
}
.editor-styles-wrapper .block-editor-block-list__layout .intro-paragraph,
.tribe-events-single .intro-paragraph,
.entry-content .intro-paragraph, .textwidget .intro-paragraph, .entry-header .intro-paragraph, .entry-footer .intro-paragraph, .navigation .intro-paragraph, .entry-single-project .intro-paragraph, .editor-styles-wrapper .intro-paragraph, .popmake-content .intro-paragraph {
  /* 600, 600i  */
  font-family: "Sentinel A", "Sentinel B";
  font-style: normal;
  font-style: normal;
  font-weight: 600;
  padding-bottom: 1.875rem;
  padding-top: 0.3125rem;
}
.editor-styles-wrapper .block-editor-block-list__layout .intro-paragraph p,
.tribe-events-single .intro-paragraph p,
.entry-content .intro-paragraph p, .textwidget .intro-paragraph p, .entry-header .intro-paragraph p, .entry-footer .intro-paragraph p, .navigation .intro-paragraph p, .entry-single-project .intro-paragraph p, .editor-styles-wrapper .intro-paragraph p, .popmake-content .intro-paragraph p {
  font-size: 1.3125rem;
  line-height: 1.8125rem;
  padding-bottom: 0;
  color: #a40c34;
}
.editor-styles-wrapper .block-editor-block-list__layout .intro-paragraph .left-border,
.tribe-events-single .intro-paragraph .left-border,
.entry-content .intro-paragraph .left-border, .textwidget .intro-paragraph .left-border, .entry-header .intro-paragraph .left-border, .entry-footer .intro-paragraph .left-border, .navigation .intro-paragraph .left-border, .entry-single-project .intro-paragraph .left-border, .editor-styles-wrapper .intro-paragraph .left-border, .popmake-content .intro-paragraph .left-border {
  border-left: 3px solid #a40c34;
  padding-left: 0.625rem;
}
.editor-styles-wrapper .block-editor-block-list__layout .post-byline,
.tribe-events-single .post-byline,
.entry-content .post-byline, .textwidget .post-byline, .entry-header .post-byline, .entry-footer .post-byline, .navigation .post-byline, .entry-single-project .post-byline, .editor-styles-wrapper .post-byline, .popmake-content .post-byline {
  /* 600, 600i  */
  font-family: "Sentinel A", "Sentinel B";
  font-style: normal;
  font-style: normal;
  font-weight: 600;
  font-style: italic;
  padding-bottom: 1.25rem;
  color: #253e51 !important;
}
.editor-styles-wrapper .block-editor-block-list__layout .call-to-action,
.tribe-events-single .call-to-action,
.entry-content .call-to-action, .textwidget .call-to-action, .entry-header .call-to-action, .entry-footer .call-to-action, .navigation .call-to-action, .entry-single-project .call-to-action, .editor-styles-wrapper .call-to-action, .popmake-content .call-to-action {
  padding-bottom: 1.875rem;
}
.editor-styles-wrapper .block-editor-block-list__layout .call-to-action .inner-container,
.tribe-events-single .call-to-action .inner-container,
.entry-content .call-to-action .inner-container, .textwidget .call-to-action .inner-container, .entry-header .call-to-action .inner-container, .entry-footer .call-to-action .inner-container, .navigation .call-to-action .inner-container, .entry-single-project .call-to-action .inner-container, .editor-styles-wrapper .call-to-action .inner-container, .popmake-content .call-to-action .inner-container {
  border-left: 3px solid #253e51;
  padding-left: 0.625rem;
}
.editor-styles-wrapper .block-editor-block-list__layout .call-to-action h2,
.tribe-events-single .call-to-action h2,
.entry-content .call-to-action h2, .textwidget .call-to-action h2, .entry-header .call-to-action h2, .entry-footer .call-to-action h2, .navigation .call-to-action h2, .entry-single-project .call-to-action h2, .editor-styles-wrapper .call-to-action h2, .popmake-content .call-to-action h2 {
  /* 600, 600i  */
  font-family: "Sentinel A", "Sentinel B";
  font-style: normal;
  font-style: normal;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.5rem;
  padding-bottom: 0.375rem;
}
.editor-styles-wrapper .block-editor-block-list__layout .call-to-action p,
.tribe-events-single .call-to-action p,
.entry-content .call-to-action p, .textwidget .call-to-action p, .entry-header .call-to-action p, .entry-footer .call-to-action p, .navigation .call-to-action p, .entry-single-project .call-to-action p, .editor-styles-wrapper .call-to-action p, .popmake-content .call-to-action p {
  font-size: 1.0625rem;
  line-height: 1.5rem;
  font-weight: 700;
  padding-bottom: 0;
}
.editor-styles-wrapper .block-editor-block-list__layout .promos-slide-js, .editor-styles-wrapper .block-editor-block-list__layout .slideshow,
.tribe-events-single .promos-slide-js,
.tribe-events-single .slideshow,
.entry-content .promos-slide-js,
.entry-content .slideshow, .textwidget .promos-slide-js, .textwidget .slideshow, .entry-header .promos-slide-js, .entry-header .slideshow, .entry-footer .promos-slide-js, .entry-footer .slideshow, .navigation .promos-slide-js, .navigation .slideshow, .entry-single-project .promos-slide-js, .entry-single-project .slideshow, .editor-styles-wrapper .promos-slide-js, .editor-styles-wrapper .slideshow, .popmake-content .promos-slide-js, .popmake-content .slideshow {
  /* rest of .slick  css in style.scss under .slick-js class */
}
.editor-styles-wrapper .block-editor-block-list__layout .promos-slide-js .slick-arrow, .editor-styles-wrapper .block-editor-block-list__layout .slideshow .slick-arrow,
.tribe-events-single .promos-slide-js .slick-arrow,
.tribe-events-single .slideshow .slick-arrow,
.entry-content .promos-slide-js .slick-arrow,
.entry-content .slideshow .slick-arrow, .textwidget .promos-slide-js .slick-arrow, .textwidget .slideshow .slick-arrow, .entry-header .promos-slide-js .slick-arrow, .entry-header .slideshow .slick-arrow, .entry-footer .promos-slide-js .slick-arrow, .entry-footer .slideshow .slick-arrow, .navigation .promos-slide-js .slick-arrow, .navigation .slideshow .slick-arrow, .entry-single-project .promos-slide-js .slick-arrow, .entry-single-project .slideshow .slick-arrow, .editor-styles-wrapper .promos-slide-js .slick-arrow, .editor-styles-wrapper .slideshow .slick-arrow, .popmake-content .promos-slide-js .slick-arrow, .popmake-content .slideshow .slick-arrow {
  color: #929ea8;
}
.editor-styles-wrapper .block-editor-block-list__layout .promos-slide-js .slick-arrow:hover, .editor-styles-wrapper .block-editor-block-list__layout .promos-slide-js .slick-arrow:focus, .editor-styles-wrapper .block-editor-block-list__layout .slideshow .slick-arrow:hover, .editor-styles-wrapper .block-editor-block-list__layout .slideshow .slick-arrow:focus,
.tribe-events-single .promos-slide-js .slick-arrow:hover,
.tribe-events-single .promos-slide-js .slick-arrow:focus,
.tribe-events-single .slideshow .slick-arrow:hover,
.tribe-events-single .slideshow .slick-arrow:focus,
.entry-content .promos-slide-js .slick-arrow:hover,
.entry-content .promos-slide-js .slick-arrow:focus,
.entry-content .slideshow .slick-arrow:hover,
.entry-content .slideshow .slick-arrow:focus, .textwidget .promos-slide-js .slick-arrow:hover, .textwidget .promos-slide-js .slick-arrow:focus, .textwidget .slideshow .slick-arrow:hover, .textwidget .slideshow .slick-arrow:focus, .entry-header .promos-slide-js .slick-arrow:hover, .entry-header .promos-slide-js .slick-arrow:focus, .entry-header .slideshow .slick-arrow:hover, .entry-header .slideshow .slick-arrow:focus, .entry-footer .promos-slide-js .slick-arrow:hover, .entry-footer .promos-slide-js .slick-arrow:focus, .entry-footer .slideshow .slick-arrow:hover, .entry-footer .slideshow .slick-arrow:focus, .navigation .promos-slide-js .slick-arrow:hover, .navigation .promos-slide-js .slick-arrow:focus, .navigation .slideshow .slick-arrow:hover, .navigation .slideshow .slick-arrow:focus, .entry-single-project .promos-slide-js .slick-arrow:hover, .entry-single-project .promos-slide-js .slick-arrow:focus, .entry-single-project .slideshow .slick-arrow:hover, .entry-single-project .slideshow .slick-arrow:focus, .editor-styles-wrapper .promos-slide-js .slick-arrow:hover, .editor-styles-wrapper .promos-slide-js .slick-arrow:focus, .editor-styles-wrapper .slideshow .slick-arrow:hover, .editor-styles-wrapper .slideshow .slick-arrow:focus, .popmake-content .promos-slide-js .slick-arrow:hover, .popmake-content .promos-slide-js .slick-arrow:focus, .popmake-content .slideshow .slick-arrow:hover, .popmake-content .slideshow .slick-arrow:focus {
  color: #253e51;
}
.editor-styles-wrapper .block-editor-block-list__layout .promos-slide-js .slick-arrow.slick-disabled, .editor-styles-wrapper .block-editor-block-list__layout .slideshow .slick-arrow.slick-disabled,
.tribe-events-single .promos-slide-js .slick-arrow.slick-disabled,
.tribe-events-single .slideshow .slick-arrow.slick-disabled,
.entry-content .promos-slide-js .slick-arrow.slick-disabled,
.entry-content .slideshow .slick-arrow.slick-disabled, .textwidget .promos-slide-js .slick-arrow.slick-disabled, .textwidget .slideshow .slick-arrow.slick-disabled, .entry-header .promos-slide-js .slick-arrow.slick-disabled, .entry-header .slideshow .slick-arrow.slick-disabled, .entry-footer .promos-slide-js .slick-arrow.slick-disabled, .entry-footer .slideshow .slick-arrow.slick-disabled, .navigation .promos-slide-js .slick-arrow.slick-disabled, .navigation .slideshow .slick-arrow.slick-disabled, .entry-single-project .promos-slide-js .slick-arrow.slick-disabled, .entry-single-project .slideshow .slick-arrow.slick-disabled, .editor-styles-wrapper .promos-slide-js .slick-arrow.slick-disabled, .editor-styles-wrapper .slideshow .slick-arrow.slick-disabled, .popmake-content .promos-slide-js .slick-arrow.slick-disabled, .popmake-content .slideshow .slick-arrow.slick-disabled {
  color: #666;
}
.editor-styles-wrapper .block-editor-block-list__layout .promos-slide-js .slick-next, .editor-styles-wrapper .block-editor-block-list__layout .slideshow .slick-next,
.tribe-events-single .promos-slide-js .slick-next,
.tribe-events-single .slideshow .slick-next,
.entry-content .promos-slide-js .slick-next,
.entry-content .slideshow .slick-next, .textwidget .promos-slide-js .slick-next, .textwidget .slideshow .slick-next, .entry-header .promos-slide-js .slick-next, .entry-header .slideshow .slick-next, .entry-footer .promos-slide-js .slick-next, .entry-footer .slideshow .slick-next, .navigation .promos-slide-js .slick-next, .navigation .slideshow .slick-next, .entry-single-project .promos-slide-js .slick-next, .entry-single-project .slideshow .slick-next, .editor-styles-wrapper .promos-slide-js .slick-next, .editor-styles-wrapper .slideshow .slick-next, .popmake-content .promos-slide-js .slick-next, .popmake-content .slideshow .slick-next {
  right: 0.3125rem;
  margin-right: 0;
}
@media only screen and (min-width : 62.5rem) {
  .editor-styles-wrapper .block-editor-block-list__layout .promos-slide-js .slick-next, .editor-styles-wrapper .block-editor-block-list__layout .slideshow .slick-next,
.tribe-events-single .promos-slide-js .slick-next,
.tribe-events-single .slideshow .slick-next,
.entry-content .promos-slide-js .slick-next,
.entry-content .slideshow .slick-next, .textwidget .promos-slide-js .slick-next, .textwidget .slideshow .slick-next, .entry-header .promos-slide-js .slick-next, .entry-header .slideshow .slick-next, .entry-footer .promos-slide-js .slick-next, .entry-footer .slideshow .slick-next, .navigation .promos-slide-js .slick-next, .navigation .slideshow .slick-next, .entry-single-project .promos-slide-js .slick-next, .entry-single-project .slideshow .slick-next, .editor-styles-wrapper .promos-slide-js .slick-next, .editor-styles-wrapper .slideshow .slick-next, .popmake-content .promos-slide-js .slick-next, .popmake-content .slideshow .slick-next {
    right: 0;
    margin-right: -3.125rem;
  }
}
.editor-styles-wrapper .block-editor-block-list__layout .promos-slide-js .slick-prev, .editor-styles-wrapper .block-editor-block-list__layout .slideshow .slick-prev,
.tribe-events-single .promos-slide-js .slick-prev,
.tribe-events-single .slideshow .slick-prev,
.entry-content .promos-slide-js .slick-prev,
.entry-content .slideshow .slick-prev, .textwidget .promos-slide-js .slick-prev, .textwidget .slideshow .slick-prev, .entry-header .promos-slide-js .slick-prev, .entry-header .slideshow .slick-prev, .entry-footer .promos-slide-js .slick-prev, .entry-footer .slideshow .slick-prev, .navigation .promos-slide-js .slick-prev, .navigation .slideshow .slick-prev, .entry-single-project .promos-slide-js .slick-prev, .entry-single-project .slideshow .slick-prev, .editor-styles-wrapper .promos-slide-js .slick-prev, .editor-styles-wrapper .slideshow .slick-prev, .popmake-content .promos-slide-js .slick-prev, .popmake-content .slideshow .slick-prev {
  left: 0.3125rem;
  margin-left: 0;
}
@media only screen and (min-width : 62.5rem) {
  .editor-styles-wrapper .block-editor-block-list__layout .promos-slide-js .slick-prev, .editor-styles-wrapper .block-editor-block-list__layout .slideshow .slick-prev,
.tribe-events-single .promos-slide-js .slick-prev,
.tribe-events-single .slideshow .slick-prev,
.entry-content .promos-slide-js .slick-prev,
.entry-content .slideshow .slick-prev, .textwidget .promos-slide-js .slick-prev, .textwidget .slideshow .slick-prev, .entry-header .promos-slide-js .slick-prev, .entry-header .slideshow .slick-prev, .entry-footer .promos-slide-js .slick-prev, .entry-footer .slideshow .slick-prev, .navigation .promos-slide-js .slick-prev, .navigation .slideshow .slick-prev, .entry-single-project .promos-slide-js .slick-prev, .entry-single-project .slideshow .slick-prev, .editor-styles-wrapper .promos-slide-js .slick-prev, .editor-styles-wrapper .slideshow .slick-prev, .popmake-content .promos-slide-js .slick-prev, .popmake-content .slideshow .slick-prev {
    left: 0;
    margin-left: -3.125rem;
  }
}
.editor-styles-wrapper .block-editor-block-list__layout .promos-slide-js .slick-arrow,
.tribe-events-single .promos-slide-js .slick-arrow,
.entry-content .promos-slide-js .slick-arrow, .textwidget .promos-slide-js .slick-arrow, .entry-header .promos-slide-js .slick-arrow, .entry-footer .promos-slide-js .slick-arrow, .navigation .promos-slide-js .slick-arrow, .entry-single-project .promos-slide-js .slick-arrow, .editor-styles-wrapper .promos-slide-js .slick-arrow, .popmake-content .promos-slide-js .slick-arrow {
  color: #63809c;
}
.editor-styles-wrapper .block-editor-block-list__layout .entry-content .wp-block-acf-slideshow,
.tribe-events-single .entry-content .wp-block-acf-slideshow,
.entry-content .entry-content .wp-block-acf-slideshow, .textwidget .entry-content .wp-block-acf-slideshow, .entry-header .entry-content .wp-block-acf-slideshow, .entry-footer .entry-content .wp-block-acf-slideshow, .navigation .entry-content .wp-block-acf-slideshow, .entry-single-project .entry-content .wp-block-acf-slideshow, .editor-styles-wrapper .entry-content .wp-block-acf-slideshow, .popmake-content .entry-content .wp-block-acf-slideshow {
  padding-bottom: 1.875rem;
  /* rest of .slick  css in style.scss under .slick-js class */
}
.editor-styles-wrapper .block-editor-block-list__layout .entry-content .wp-block-acf-slideshow .slick-dots li.slick-active button,
.tribe-events-single .entry-content .wp-block-acf-slideshow .slick-dots li.slick-active button,
.entry-content .entry-content .wp-block-acf-slideshow .slick-dots li.slick-active button, .textwidget .entry-content .wp-block-acf-slideshow .slick-dots li.slick-active button, .entry-header .entry-content .wp-block-acf-slideshow .slick-dots li.slick-active button, .entry-footer .entry-content .wp-block-acf-slideshow .slick-dots li.slick-active button, .navigation .entry-content .wp-block-acf-slideshow .slick-dots li.slick-active button, .entry-single-project .entry-content .wp-block-acf-slideshow .slick-dots li.slick-active button, .editor-styles-wrapper .entry-content .wp-block-acf-slideshow .slick-dots li.slick-active button, .popmake-content .entry-content .wp-block-acf-slideshow .slick-dots li.slick-active button {
  background-color: #253e51;
}
.editor-styles-wrapper .block-editor-block-list__layout .entry-content .wp-block-acf-slideshow .slick-dots button,
.tribe-events-single .entry-content .wp-block-acf-slideshow .slick-dots button,
.entry-content .entry-content .wp-block-acf-slideshow .slick-dots button, .textwidget .entry-content .wp-block-acf-slideshow .slick-dots button, .entry-header .entry-content .wp-block-acf-slideshow .slick-dots button, .entry-footer .entry-content .wp-block-acf-slideshow .slick-dots button, .navigation .entry-content .wp-block-acf-slideshow .slick-dots button, .entry-single-project .entry-content .wp-block-acf-slideshow .slick-dots button, .editor-styles-wrapper .entry-content .wp-block-acf-slideshow .slick-dots button, .popmake-content .entry-content .wp-block-acf-slideshow .slick-dots button {
  background-color: #929ea8;
}
.editor-styles-wrapper .block-editor-block-list__layout .entry-content .wp-block-acf-slideshow .slick-dots button:hover, .editor-styles-wrapper .block-editor-block-list__layout .entry-content .wp-block-acf-slideshow .slick-dots button:focus,
.tribe-events-single .entry-content .wp-block-acf-slideshow .slick-dots button:hover,
.tribe-events-single .entry-content .wp-block-acf-slideshow .slick-dots button:focus,
.entry-content .entry-content .wp-block-acf-slideshow .slick-dots button:hover,
.entry-content .entry-content .wp-block-acf-slideshow .slick-dots button:focus, .textwidget .entry-content .wp-block-acf-slideshow .slick-dots button:hover, .textwidget .entry-content .wp-block-acf-slideshow .slick-dots button:focus, .entry-header .entry-content .wp-block-acf-slideshow .slick-dots button:hover, .entry-header .entry-content .wp-block-acf-slideshow .slick-dots button:focus, .entry-footer .entry-content .wp-block-acf-slideshow .slick-dots button:hover, .entry-footer .entry-content .wp-block-acf-slideshow .slick-dots button:focus, .navigation .entry-content .wp-block-acf-slideshow .slick-dots button:hover, .navigation .entry-content .wp-block-acf-slideshow .slick-dots button:focus, .entry-single-project .entry-content .wp-block-acf-slideshow .slick-dots button:hover, .entry-single-project .entry-content .wp-block-acf-slideshow .slick-dots button:focus, .editor-styles-wrapper .entry-content .wp-block-acf-slideshow .slick-dots button:hover, .editor-styles-wrapper .entry-content .wp-block-acf-slideshow .slick-dots button:focus, .popmake-content .entry-content .wp-block-acf-slideshow .slick-dots button:hover, .popmake-content .entry-content .wp-block-acf-slideshow .slick-dots button:focus {
  background-color: #a40c34;
}
.editor-styles-wrapper .block-editor-block-list__layout .tabbed-content,
.tribe-events-single .tabbed-content,
.entry-content .tabbed-content, .textwidget .tabbed-content, .entry-header .tabbed-content, .entry-footer .tabbed-content, .navigation .tabbed-content, .entry-single-project .tabbed-content, .editor-styles-wrapper .tabbed-content, .popmake-content .tabbed-content {
  padding-bottom: 1.875rem;
}
.editor-styles-wrapper .block-editor-block-list__layout .tabbed-content .r-tabs-accordion-title, .editor-styles-wrapper .block-editor-block-list__layout .tabbed-content .r-tabs-tab,
.tribe-events-single .tabbed-content .r-tabs-accordion-title,
.tribe-events-single .tabbed-content .r-tabs-tab,
.entry-content .tabbed-content .r-tabs-accordion-title,
.entry-content .tabbed-content .r-tabs-tab, .textwidget .tabbed-content .r-tabs-accordion-title, .textwidget .tabbed-content .r-tabs-tab, .entry-header .tabbed-content .r-tabs-accordion-title, .entry-header .tabbed-content .r-tabs-tab, .entry-footer .tabbed-content .r-tabs-accordion-title, .entry-footer .tabbed-content .r-tabs-tab, .navigation .tabbed-content .r-tabs-accordion-title, .navigation .tabbed-content .r-tabs-tab, .entry-single-project .tabbed-content .r-tabs-accordion-title, .entry-single-project .tabbed-content .r-tabs-tab, .editor-styles-wrapper .tabbed-content .r-tabs-accordion-title, .editor-styles-wrapper .tabbed-content .r-tabs-tab, .popmake-content .tabbed-content .r-tabs-accordion-title, .popmake-content .tabbed-content .r-tabs-tab {
  font-size: 1.375rem;
  line-height: 1.5rem;
  /* 400, 700 */
  font-family: "Ringside Compressed A", "Ringside Compressed B";
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.editor-styles-wrapper .block-editor-block-list__layout .tabbed-content .r-tabs-accordion-title a, .editor-styles-wrapper .block-editor-block-list__layout .tabbed-content .r-tabs-tab a,
.tribe-events-single .tabbed-content .r-tabs-accordion-title a,
.tribe-events-single .tabbed-content .r-tabs-tab a,
.entry-content .tabbed-content .r-tabs-accordion-title a,
.entry-content .tabbed-content .r-tabs-tab a, .textwidget .tabbed-content .r-tabs-accordion-title a, .textwidget .tabbed-content .r-tabs-tab a, .entry-header .tabbed-content .r-tabs-accordion-title a, .entry-header .tabbed-content .r-tabs-tab a, .entry-footer .tabbed-content .r-tabs-accordion-title a, .entry-footer .tabbed-content .r-tabs-tab a, .navigation .tabbed-content .r-tabs-accordion-title a, .navigation .tabbed-content .r-tabs-tab a, .entry-single-project .tabbed-content .r-tabs-accordion-title a, .entry-single-project .tabbed-content .r-tabs-tab a, .editor-styles-wrapper .tabbed-content .r-tabs-accordion-title a, .editor-styles-wrapper .tabbed-content .r-tabs-tab a, .popmake-content .tabbed-content .r-tabs-accordion-title a, .popmake-content .tabbed-content .r-tabs-tab a {
  text-decoration: none;
}
.editor-styles-wrapper .block-editor-block-list__layout .tabbed-content .r-tabs-accordion-title.r-tabs-state-active a, .editor-styles-wrapper .block-editor-block-list__layout .tabbed-content .r-tabs-tab.r-tabs-state-active a,
.tribe-events-single .tabbed-content .r-tabs-accordion-title.r-tabs-state-active a,
.tribe-events-single .tabbed-content .r-tabs-tab.r-tabs-state-active a,
.entry-content .tabbed-content .r-tabs-accordion-title.r-tabs-state-active a,
.entry-content .tabbed-content .r-tabs-tab.r-tabs-state-active a, .textwidget .tabbed-content .r-tabs-accordion-title.r-tabs-state-active a, .textwidget .tabbed-content .r-tabs-tab.r-tabs-state-active a, .entry-header .tabbed-content .r-tabs-accordion-title.r-tabs-state-active a, .entry-header .tabbed-content .r-tabs-tab.r-tabs-state-active a, .entry-footer .tabbed-content .r-tabs-accordion-title.r-tabs-state-active a, .entry-footer .tabbed-content .r-tabs-tab.r-tabs-state-active a, .navigation .tabbed-content .r-tabs-accordion-title.r-tabs-state-active a, .navigation .tabbed-content .r-tabs-tab.r-tabs-state-active a, .entry-single-project .tabbed-content .r-tabs-accordion-title.r-tabs-state-active a, .entry-single-project .tabbed-content .r-tabs-tab.r-tabs-state-active a, .editor-styles-wrapper .tabbed-content .r-tabs-accordion-title.r-tabs-state-active a, .editor-styles-wrapper .tabbed-content .r-tabs-tab.r-tabs-state-active a, .popmake-content .tabbed-content .r-tabs-accordion-title.r-tabs-state-active a, .popmake-content .tabbed-content .r-tabs-tab.r-tabs-state-active a {
  color: #a40c34;
  text-decoration: underline;
}
.editor-styles-wrapper .block-editor-block-list__layout .tabbed-content .tabs,
.tribe-events-single .tabbed-content .tabs,
.entry-content .tabbed-content .tabs, .textwidget .tabbed-content .tabs, .entry-header .tabbed-content .tabs, .entry-footer .tabbed-content .tabs, .navigation .tabbed-content .tabs, .entry-single-project .tabbed-content .tabs, .editor-styles-wrapper .tabbed-content .tabs, .popmake-content .tabbed-content .tabs {
  padding-bottom: 0.625rem !important; /* remove padding added with plugin stylesheet */
  text-align: center;
}
.editor-styles-wrapper .block-editor-block-list__layout .tabbed-content .tabs .r-tabs-tab,
.tribe-events-single .tabbed-content .tabs .r-tabs-tab,
.entry-content .tabbed-content .tabs .r-tabs-tab, .textwidget .tabbed-content .tabs .r-tabs-tab, .entry-header .tabbed-content .tabs .r-tabs-tab, .entry-footer .tabbed-content .tabs .r-tabs-tab, .navigation .tabbed-content .tabs .r-tabs-tab, .entry-single-project .tabbed-content .tabs .r-tabs-tab, .editor-styles-wrapper .tabbed-content .tabs .r-tabs-tab, .popmake-content .tabbed-content .tabs .r-tabs-tab {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.editor-styles-wrapper .block-editor-block-list__layout .tabbed-content .tabs .r-tabs-tab:after,
.tribe-events-single .tabbed-content .tabs .r-tabs-tab:after,
.entry-content .tabbed-content .tabs .r-tabs-tab:after, .textwidget .tabbed-content .tabs .r-tabs-tab:after, .entry-header .tabbed-content .tabs .r-tabs-tab:after, .entry-footer .tabbed-content .tabs .r-tabs-tab:after, .navigation .tabbed-content .tabs .r-tabs-tab:after, .entry-single-project .tabbed-content .tabs .r-tabs-tab:after, .editor-styles-wrapper .tabbed-content .tabs .r-tabs-tab:after, .popmake-content .tabbed-content .tabs .r-tabs-tab:after {
  content: "/";
}
.editor-styles-wrapper .block-editor-block-list__layout .tabbed-content .tabs .r-tabs-tab:last-child:after,
.tribe-events-single .tabbed-content .tabs .r-tabs-tab:last-child:after,
.entry-content .tabbed-content .tabs .r-tabs-tab:last-child:after, .textwidget .tabbed-content .tabs .r-tabs-tab:last-child:after, .entry-header .tabbed-content .tabs .r-tabs-tab:last-child:after, .entry-footer .tabbed-content .tabs .r-tabs-tab:last-child:after, .navigation .tabbed-content .tabs .r-tabs-tab:last-child:after, .entry-single-project .tabbed-content .tabs .r-tabs-tab:last-child:after, .editor-styles-wrapper .tabbed-content .tabs .r-tabs-tab:last-child:after, .popmake-content .tabbed-content .tabs .r-tabs-tab:last-child:after {
  content: "";
}
.editor-styles-wrapper .block-editor-block-list__layout .tabbed-content .tabs a,
.tribe-events-single .tabbed-content .tabs a,
.entry-content .tabbed-content .tabs a, .textwidget .tabbed-content .tabs a, .entry-header .tabbed-content .tabs a, .entry-footer .tabbed-content .tabs a, .navigation .tabbed-content .tabs a, .entry-single-project .tabbed-content .tabs a, .editor-styles-wrapper .tabbed-content .tabs a, .popmake-content .tabbed-content .tabs a {
  padding: 0 0.625rem 0 0.3125rem;
}
.editor-styles-wrapper .block-editor-block-list__layout .tabbed-content .r-tabs-accordion-title a,
.tribe-events-single .tabbed-content .r-tabs-accordion-title a,
.entry-content .tabbed-content .r-tabs-accordion-title a, .textwidget .tabbed-content .r-tabs-accordion-title a, .entry-header .tabbed-content .r-tabs-accordion-title a, .entry-footer .tabbed-content .r-tabs-accordion-title a, .navigation .tabbed-content .r-tabs-accordion-title a, .entry-single-project .tabbed-content .r-tabs-accordion-title a, .editor-styles-wrapper .tabbed-content .r-tabs-accordion-title a, .popmake-content .tabbed-content .r-tabs-accordion-title a {
  padding: 0.5rem 0;
  display: block;
}
@media only screen and (min-width : 43.75rem) {
  .editor-styles-wrapper .block-editor-block-list__layout .tabbed-content .tab-content.columns-2,
.tribe-events-single .tabbed-content .tab-content.columns-2,
.entry-content .tabbed-content .tab-content.columns-2, .textwidget .tabbed-content .tab-content.columns-2, .entry-header .tabbed-content .tab-content.columns-2, .entry-footer .tabbed-content .tab-content.columns-2, .navigation .tabbed-content .tab-content.columns-2, .entry-single-project .tabbed-content .tab-content.columns-2, .editor-styles-wrapper .tabbed-content .tab-content.columns-2, .popmake-content .tabbed-content .tab-content.columns-2 {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
}
.editor-styles-wrapper .block-editor-block-list__layout .tabbed-content .tab-content ul,
.tribe-events-single .tabbed-content .tab-content ul,
.entry-content .tabbed-content .tab-content ul, .textwidget .tabbed-content .tab-content ul, .entry-header .tabbed-content .tab-content ul, .entry-footer .tabbed-content .tab-content ul, .navigation .tabbed-content .tab-content ul, .entry-single-project .tabbed-content .tab-content ul, .editor-styles-wrapper .tabbed-content .tab-content ul, .popmake-content .tabbed-content .tab-content ul {
  padding: 0;
  margin: 0;
}
.editor-styles-wrapper .block-editor-block-list__layout .tabbed-content .tab-content li,
.tribe-events-single .tabbed-content .tab-content li,
.entry-content .tabbed-content .tab-content li, .textwidget .tabbed-content .tab-content li, .entry-header .tabbed-content .tab-content li, .entry-footer .tabbed-content .tab-content li, .navigation .tabbed-content .tab-content li, .entry-single-project .tabbed-content .tab-content li, .editor-styles-wrapper .tabbed-content .tab-content li, .popmake-content .tabbed-content .tab-content li {
  padding: 0 0 0.75rem 0.75rem;
  margin: 0;
  list-style: none;
  position: relative;
}
.editor-styles-wrapper .block-editor-block-list__layout .tabbed-content .tab-content li:before,
.tribe-events-single .tabbed-content .tab-content li:before,
.entry-content .tabbed-content .tab-content li:before, .textwidget .tabbed-content .tab-content li:before, .entry-header .tabbed-content .tab-content li:before, .entry-footer .tabbed-content .tab-content li:before, .navigation .tabbed-content .tab-content li:before, .entry-single-project .tabbed-content .tab-content li:before, .editor-styles-wrapper .tabbed-content .tab-content li:before, .popmake-content .tabbed-content .tab-content li:before {
  content: "\e913";
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  left: 0;
  top: 0.25rem;
}
.editor-styles-wrapper .block-editor-block-list__layout .tabbed-content .r-tabs-panel,
.tribe-events-single .tabbed-content .r-tabs-panel,
.entry-content .tabbed-content .r-tabs-panel, .textwidget .tabbed-content .r-tabs-panel, .entry-header .tabbed-content .r-tabs-panel, .entry-footer .tabbed-content .r-tabs-panel, .navigation .tabbed-content .r-tabs-panel, .entry-single-project .tabbed-content .r-tabs-panel, .editor-styles-wrapper .tabbed-content .r-tabs-panel, .popmake-content .tabbed-content .r-tabs-panel {
  padding: 0 !important; /* remove padding added with plugin stylesheet */
}
.editor-styles-wrapper .block-editor-block-list__layout .promo-slideshow,
.tribe-events-single .promo-slideshow,
.entry-content .promo-slideshow, .textwidget .promo-slideshow, .entry-header .promo-slideshow, .entry-footer .promo-slideshow, .navigation .promo-slideshow, .entry-single-project .promo-slideshow, .editor-styles-wrapper .promo-slideshow, .popmake-content .promo-slideshow {
  background-color: white;
}
.editor-styles-wrapper .block-editor-block-list__layout .promo-slideshow .promo-box,
.tribe-events-single .promo-slideshow .promo-box,
.entry-content .promo-slideshow .promo-box, .textwidget .promo-slideshow .promo-box, .entry-header .promo-slideshow .promo-box, .entry-footer .promo-slideshow .promo-box, .navigation .promo-slideshow .promo-box, .entry-single-project .promo-slideshow .promo-box, .editor-styles-wrapper .promo-slideshow .promo-box, .popmake-content .promo-slideshow .promo-box {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  text-align: center;
}
.editor-styles-wrapper .block-editor-block-list__layout .promo-slideshow .event-supported-by,
.tribe-events-single .promo-slideshow .event-supported-by,
.entry-content .promo-slideshow .event-supported-by, .textwidget .promo-slideshow .event-supported-by, .entry-header .promo-slideshow .event-supported-by, .entry-footer .promo-slideshow .event-supported-by, .navigation .promo-slideshow .event-supported-by, .entry-single-project .promo-slideshow .event-supported-by, .editor-styles-wrapper .promo-slideshow .event-supported-by, .popmake-content .promo-slideshow .event-supported-by {
  padding-bottom: 0.625rem;
}
.editor-styles-wrapper .block-editor-block-list__layout .acf-staff,
.tribe-events-single .acf-staff,
.entry-content .acf-staff, .textwidget .acf-staff, .entry-header .acf-staff, .entry-footer .acf-staff, .navigation .acf-staff, .entry-single-project .acf-staff, .editor-styles-wrapper .acf-staff, .popmake-content .acf-staff { /* because blocks inside have own padding */
  padding-right: 0;
  padding-left: 0;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
}
.editor-styles-wrapper .block-editor-block-list__layout .acf-staff img,
.tribe-events-single .acf-staff img,
.entry-content .acf-staff img, .textwidget .acf-staff img, .entry-header .acf-staff img, .entry-footer .acf-staff img, .navigation .acf-staff img, .entry-single-project .acf-staff img, .editor-styles-wrapper .acf-staff img, .popmake-content .acf-staff img {
  max-width: 14.6875rem;
  padding-bottom: 0.625rem;
}
.editor-styles-wrapper .block-editor-block-list__layout .staff-add-blocks a, .editor-styles-wrapper .block-editor-block-list__layout .staff-add-blocks strong,
.tribe-events-single .staff-add-blocks a,
.tribe-events-single .staff-add-blocks strong,
.entry-content .staff-add-blocks a,
.entry-content .staff-add-blocks strong, .textwidget .staff-add-blocks a, .textwidget .staff-add-blocks strong, .entry-header .staff-add-blocks a, .entry-header .staff-add-blocks strong, .entry-footer .staff-add-blocks a, .entry-footer .staff-add-blocks strong, .navigation .staff-add-blocks a, .navigation .staff-add-blocks strong, .entry-single-project .staff-add-blocks a, .entry-single-project .staff-add-blocks strong, .editor-styles-wrapper .staff-add-blocks a, .editor-styles-wrapper .staff-add-blocks strong, .popmake-content .staff-add-blocks a, .popmake-content .staff-add-blocks strong {
  display: block;
}
.editor-styles-wrapper .block-editor-block-list__layout .rwgps-route,
.tribe-events-single .rwgps-route,
.entry-content .rwgps-route, .textwidget .rwgps-route, .entry-header .rwgps-route, .entry-footer .rwgps-route, .navigation .rwgps-route, .entry-single-project .rwgps-route, .editor-styles-wrapper .rwgps-route, .popmake-content .rwgps-route {
  padding-bottom: 1.875rem;
}
.editor-styles-wrapper .block-editor-block-list__layout .sponsors,
.tribe-events-single .sponsors,
.entry-content .sponsors, .textwidget .sponsors, .entry-header .sponsors, .entry-footer .sponsors, .navigation .sponsors, .entry-single-project .sponsors, .editor-styles-wrapper .sponsors, .popmake-content .sponsors {
  background-color: #63809c;
  color: white;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  text-align: center;
}
.editor-styles-wrapper .block-editor-block-list__layout .sponsors h2,
.tribe-events-single .sponsors h2,
.entry-content .sponsors h2, .textwidget .sponsors h2, .entry-header .sponsors h2, .entry-footer .sponsors h2, .navigation .sponsors h2, .entry-single-project .sponsors h2, .editor-styles-wrapper .sponsors h2, .popmake-content .sponsors h2 {
  /* 600, 600i  */
  font-family: "Sentinel A", "Sentinel B";
  font-style: normal;
  font-style: normal;
  font-weight: 600;
  padding-bottom: 0.375rem;
  font-size: 1.5rem;
  line-height: 1.2;
}
.editor-styles-wrapper .block-editor-block-list__layout .sponsors ul.sponsors-list,
.tribe-events-single .sponsors ul.sponsors-list,
.entry-content .sponsors ul.sponsors-list, .textwidget .sponsors ul.sponsors-list, .entry-header .sponsors ul.sponsors-list, .entry-footer .sponsors ul.sponsors-list, .navigation .sponsors ul.sponsors-list, .entry-single-project .sponsors ul.sponsors-list, .editor-styles-wrapper .sponsors ul.sponsors-list, .popmake-content .sponsors ul.sponsors-list {
  padding: 0;
  margin-left: -0.625rem;
  margin-right: -0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.editor-styles-wrapper .block-editor-block-list__layout .sponsors ul.sponsors-list li,
.tribe-events-single .sponsors ul.sponsors-list li,
.entry-content .sponsors ul.sponsors-list li, .textwidget .sponsors ul.sponsors-list li, .entry-header .sponsors ul.sponsors-list li, .entry-footer .sponsors ul.sponsors-list li, .navigation .sponsors ul.sponsors-list li, .entry-single-project .sponsors ul.sponsors-list li, .editor-styles-wrapper .sponsors ul.sponsors-list li, .popmake-content .sponsors ul.sponsors-list li {
  max-width: 9.375rem;
  padding: 0.9375rem;
  background-color: white;
  list-style: none;
  margin: 0.625rem;
  border-radius: 0.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.editor-styles-wrapper .block-editor-block-list__layout .sponsors ul.sponsors-list li img, .editor-styles-wrapper .block-editor-block-list__layout .sponsors ul.sponsors-list li a,
.tribe-events-single .sponsors ul.sponsors-list li img,
.tribe-events-single .sponsors ul.sponsors-list li a,
.entry-content .sponsors ul.sponsors-list li img,
.entry-content .sponsors ul.sponsors-list li a, .textwidget .sponsors ul.sponsors-list li img, .textwidget .sponsors ul.sponsors-list li a, .entry-header .sponsors ul.sponsors-list li img, .entry-header .sponsors ul.sponsors-list li a, .entry-footer .sponsors ul.sponsors-list li img, .entry-footer .sponsors ul.sponsors-list li a, .navigation .sponsors ul.sponsors-list li img, .navigation .sponsors ul.sponsors-list li a, .entry-single-project .sponsors ul.sponsors-list li img, .entry-single-project .sponsors ul.sponsors-list li a, .editor-styles-wrapper .sponsors ul.sponsors-list li img, .editor-styles-wrapper .sponsors ul.sponsors-list li a, .popmake-content .sponsors ul.sponsors-list li img, .popmake-content .sponsors ul.sponsors-list li a {
  display: block;
}
.editor-styles-wrapper .block-editor-block-list__layout .sponsors a img,
.tribe-events-single .sponsors a img,
.entry-content .sponsors a img, .textwidget .sponsors a img, .entry-header .sponsors a img, .entry-footer .sponsors a img, .navigation .sponsors a img, .entry-single-project .sponsors a img, .editor-styles-wrapper .sponsors a img, .popmake-content .sponsors a img {
  -webkit-transition: -webkit-transform 300ms ease-out;
  transition: -webkit-transform 300ms ease-out;
  transition: transform 300ms ease-out;
  transition: transform 300ms ease-out, -webkit-transform 300ms ease-out;
}
.editor-styles-wrapper .block-editor-block-list__layout .sponsors a:hover img, .editor-styles-wrapper .block-editor-block-list__layout .sponsors a:focus img,
.tribe-events-single .sponsors a:hover img,
.tribe-events-single .sponsors a:focus img,
.entry-content .sponsors a:hover img,
.entry-content .sponsors a:focus img, .textwidget .sponsors a:hover img, .textwidget .sponsors a:focus img, .entry-header .sponsors a:hover img, .entry-header .sponsors a:focus img, .entry-footer .sponsors a:hover img, .entry-footer .sponsors a:focus img, .navigation .sponsors a:hover img, .navigation .sponsors a:focus img, .entry-single-project .sponsors a:hover img, .entry-single-project .sponsors a:focus img, .editor-styles-wrapper .sponsors a:hover img, .editor-styles-wrapper .sponsors a:focus img, .popmake-content .sponsors a:hover img, .popmake-content .sponsors a:focus img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.editor-styles-wrapper .block-editor-block-list__layout .homepage-slideshow,
.tribe-events-single .homepage-slideshow,
.entry-content .homepage-slideshow, .textwidget .homepage-slideshow, .entry-header .homepage-slideshow, .entry-footer .homepage-slideshow, .navigation .homepage-slideshow, .entry-single-project .homepage-slideshow, .editor-styles-wrapper .homepage-slideshow, .popmake-content .homepage-slideshow {
  padding-right: 0;
  padding-left: 0;
}
.editor-styles-wrapper .block-editor-block-list__layout .homepage-slideshow .slick-list,
.tribe-events-single .homepage-slideshow .slick-list,
.entry-content .homepage-slideshow .slick-list, .textwidget .homepage-slideshow .slick-list, .entry-header .homepage-slideshow .slick-list, .entry-footer .homepage-slideshow .slick-list, .navigation .homepage-slideshow .slick-list, .entry-single-project .homepage-slideshow .slick-list, .editor-styles-wrapper .homepage-slideshow .slick-list, .popmake-content .homepage-slideshow .slick-list {
  margin-bottom: -0.25rem; /* remove white bar below */
}
.editor-styles-wrapper .block-editor-block-list__layout .homepage-slideshow .featured-image,
.tribe-events-single .homepage-slideshow .featured-image,
.entry-content .homepage-slideshow .featured-image, .textwidget .homepage-slideshow .featured-image, .entry-header .homepage-slideshow .featured-image, .entry-footer .homepage-slideshow .featured-image, .navigation .homepage-slideshow .featured-image, .entry-single-project .homepage-slideshow .featured-image, .editor-styles-wrapper .homepage-slideshow .featured-image, .popmake-content .homepage-slideshow .featured-image { /* common .featured-full above */
  margin-bottom: 0;
}
.editor-styles-wrapper .block-editor-block-list__layout .homepage-slideshow .slick-arrow,
.tribe-events-single .homepage-slideshow .slick-arrow,
.entry-content .homepage-slideshow .slick-arrow, .textwidget .homepage-slideshow .slick-arrow, .entry-header .homepage-slideshow .slick-arrow, .entry-footer .homepage-slideshow .slick-arrow, .navigation .homepage-slideshow .slick-arrow, .entry-single-project .homepage-slideshow .slick-arrow, .editor-styles-wrapper .homepage-slideshow .slick-arrow, .popmake-content .homepage-slideshow .slick-arrow { /* common .slick-js styles below */
  color: white;
  text-shadow: 1px 1px 3px #929ea8;
}
.editor-styles-wrapper .block-editor-block-list__layout .homepage-slideshow .slick-arrow:hover, .editor-styles-wrapper .block-editor-block-list__layout .homepage-slideshow .slick-arrow:focus,
.tribe-events-single .homepage-slideshow .slick-arrow:hover,
.tribe-events-single .homepage-slideshow .slick-arrow:focus,
.entry-content .homepage-slideshow .slick-arrow:hover,
.entry-content .homepage-slideshow .slick-arrow:focus, .textwidget .homepage-slideshow .slick-arrow:hover, .textwidget .homepage-slideshow .slick-arrow:focus, .entry-header .homepage-slideshow .slick-arrow:hover, .entry-header .homepage-slideshow .slick-arrow:focus, .entry-footer .homepage-slideshow .slick-arrow:hover, .entry-footer .homepage-slideshow .slick-arrow:focus, .navigation .homepage-slideshow .slick-arrow:hover, .navigation .homepage-slideshow .slick-arrow:focus, .entry-single-project .homepage-slideshow .slick-arrow:hover, .entry-single-project .homepage-slideshow .slick-arrow:focus, .editor-styles-wrapper .homepage-slideshow .slick-arrow:hover, .editor-styles-wrapper .homepage-slideshow .slick-arrow:focus, .popmake-content .homepage-slideshow .slick-arrow:hover, .popmake-content .homepage-slideshow .slick-arrow:focus {
  color: #253e51;
}
.editor-styles-wrapper .block-editor-block-list__layout .homepage-slideshow .slick-next,
.tribe-events-single .homepage-slideshow .slick-next,
.entry-content .homepage-slideshow .slick-next, .textwidget .homepage-slideshow .slick-next, .entry-header .homepage-slideshow .slick-next, .entry-footer .homepage-slideshow .slick-next, .navigation .homepage-slideshow .slick-next, .entry-single-project .homepage-slideshow .slick-next, .editor-styles-wrapper .homepage-slideshow .slick-next, .popmake-content .homepage-slideshow .slick-next {
  right: 0;
  margin-right: 0.1875rem;
}
@media only screen and (min-width : 62.5rem) {
  .editor-styles-wrapper .block-editor-block-list__layout .homepage-slideshow .slick-next,
.tribe-events-single .homepage-slideshow .slick-next,
.entry-content .homepage-slideshow .slick-next, .textwidget .homepage-slideshow .slick-next, .entry-header .homepage-slideshow .slick-next, .entry-footer .homepage-slideshow .slick-next, .navigation .homepage-slideshow .slick-next, .entry-single-project .homepage-slideshow .slick-next, .editor-styles-wrapper .homepage-slideshow .slick-next, .popmake-content .homepage-slideshow .slick-next {
    margin-right: 1.875rem;
  }
}
.editor-styles-wrapper .block-editor-block-list__layout .homepage-slideshow .slick-prev,
.tribe-events-single .homepage-slideshow .slick-prev,
.entry-content .homepage-slideshow .slick-prev, .textwidget .homepage-slideshow .slick-prev, .entry-header .homepage-slideshow .slick-prev, .entry-footer .homepage-slideshow .slick-prev, .navigation .homepage-slideshow .slick-prev, .entry-single-project .homepage-slideshow .slick-prev, .editor-styles-wrapper .homepage-slideshow .slick-prev, .popmake-content .homepage-slideshow .slick-prev {
  left: 0;
  margin-left: 0.1875rem;
}
@media only screen and (min-width : 62.5rem) {
  .editor-styles-wrapper .block-editor-block-list__layout .homepage-slideshow .slick-prev,
.tribe-events-single .homepage-slideshow .slick-prev,
.entry-content .homepage-slideshow .slick-prev, .textwidget .homepage-slideshow .slick-prev, .entry-header .homepage-slideshow .slick-prev, .entry-footer .homepage-slideshow .slick-prev, .navigation .homepage-slideshow .slick-prev, .entry-single-project .homepage-slideshow .slick-prev, .editor-styles-wrapper .homepage-slideshow .slick-prev, .popmake-content .homepage-slideshow .slick-prev {
    margin-left: 1.875rem;
  }
}
.editor-styles-wrapper .block-editor-block-list__layout .homepage-slideshow .slick-dots,
.tribe-events-single .homepage-slideshow .slick-dots,
.entry-content .homepage-slideshow .slick-dots, .textwidget .homepage-slideshow .slick-dots, .entry-header .homepage-slideshow .slick-dots, .entry-footer .homepage-slideshow .slick-dots, .navigation .homepage-slideshow .slick-dots, .entry-single-project .homepage-slideshow .slick-dots, .editor-styles-wrapper .homepage-slideshow .slick-dots, .popmake-content .homepage-slideshow .slick-dots {
  position: absolute;
  bottom: 1.25rem;
  width: 100%;
}
.editor-styles-wrapper .block-editor-block-list__layout .homepage-slideshow .slick-dots li.slick-active button,
.tribe-events-single .homepage-slideshow .slick-dots li.slick-active button,
.entry-content .homepage-slideshow .slick-dots li.slick-active button, .textwidget .homepage-slideshow .slick-dots li.slick-active button, .entry-header .homepage-slideshow .slick-dots li.slick-active button, .entry-footer .homepage-slideshow .slick-dots li.slick-active button, .navigation .homepage-slideshow .slick-dots li.slick-active button, .entry-single-project .homepage-slideshow .slick-dots li.slick-active button, .editor-styles-wrapper .homepage-slideshow .slick-dots li.slick-active button, .popmake-content .homepage-slideshow .slick-dots li.slick-active button {
  background-color: #253e51;
}
.editor-styles-wrapper .block-editor-block-list__layout .homepage-slideshow .slick-dots button,
.tribe-events-single .homepage-slideshow .slick-dots button,
.entry-content .homepage-slideshow .slick-dots button, .textwidget .homepage-slideshow .slick-dots button, .entry-header .homepage-slideshow .slick-dots button, .entry-footer .homepage-slideshow .slick-dots button, .navigation .homepage-slideshow .slick-dots button, .entry-single-project .homepage-slideshow .slick-dots button, .editor-styles-wrapper .homepage-slideshow .slick-dots button, .popmake-content .homepage-slideshow .slick-dots button {
  background-color: white;
  -webkit-box-shadow: 1px 1px 3px #929ea8;
          box-shadow: 1px 1px 3px #929ea8;
}
.editor-styles-wrapper .block-editor-block-list__layout .upcoming-events,
.tribe-events-single .upcoming-events,
.entry-content .upcoming-events, .textwidget .upcoming-events, .entry-header .upcoming-events, .entry-footer .upcoming-events, .navigation .upcoming-events, .entry-single-project .upcoming-events, .editor-styles-wrapper .upcoming-events, .popmake-content .upcoming-events {
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.editor-styles-wrapper .block-editor-block-list__layout .upcoming-events a,
.tribe-events-single .upcoming-events a,
.entry-content .upcoming-events a, .textwidget .upcoming-events a, .entry-header .upcoming-events a, .entry-footer .upcoming-events a, .navigation .upcoming-events a, .entry-single-project .upcoming-events a, .editor-styles-wrapper .upcoming-events a, .popmake-content .upcoming-events a {
  text-decoration: none;
}
.editor-styles-wrapper .block-editor-block-list__layout .upcoming-events a:hover .homepage-event-image, .editor-styles-wrapper .block-editor-block-list__layout .upcoming-events a:focus .homepage-event-image,
.tribe-events-single .upcoming-events a:hover .homepage-event-image,
.tribe-events-single .upcoming-events a:focus .homepage-event-image,
.entry-content .upcoming-events a:hover .homepage-event-image,
.entry-content .upcoming-events a:focus .homepage-event-image, .textwidget .upcoming-events a:hover .homepage-event-image, .textwidget .upcoming-events a:focus .homepage-event-image, .entry-header .upcoming-events a:hover .homepage-event-image, .entry-header .upcoming-events a:focus .homepage-event-image, .entry-footer .upcoming-events a:hover .homepage-event-image, .entry-footer .upcoming-events a:focus .homepage-event-image, .navigation .upcoming-events a:hover .homepage-event-image, .navigation .upcoming-events a:focus .homepage-event-image, .entry-single-project .upcoming-events a:hover .homepage-event-image, .entry-single-project .upcoming-events a:focus .homepage-event-image, .editor-styles-wrapper .upcoming-events a:hover .homepage-event-image, .editor-styles-wrapper .upcoming-events a:focus .homepage-event-image, .popmake-content .upcoming-events a:hover .homepage-event-image, .popmake-content .upcoming-events a:focus .homepage-event-image {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.editor-styles-wrapper .block-editor-block-list__layout .upcoming-events img,
.tribe-events-single .upcoming-events img,
.entry-content .upcoming-events img, .textwidget .upcoming-events img, .entry-header .upcoming-events img, .entry-footer .upcoming-events img, .navigation .upcoming-events img, .entry-single-project .upcoming-events img, .editor-styles-wrapper .upcoming-events img, .popmake-content .upcoming-events img {
  border: 1px solid #929ea8;
}
.editor-styles-wrapper .block-editor-block-list__layout .upcoming-events h2.section-header-small,
.tribe-events-single .upcoming-events h2.section-header-small,
.entry-content .upcoming-events h2.section-header-small, .textwidget .upcoming-events h2.section-header-small, .entry-header .upcoming-events h2.section-header-small, .entry-footer .upcoming-events h2.section-header-small, .navigation .upcoming-events h2.section-header-small, .entry-single-project .upcoming-events h2.section-header-small, .editor-styles-wrapper .upcoming-events h2.section-header-small, .popmake-content .upcoming-events h2.section-header-small {
  /* 600, 600i  */
  font-family: "Sentinel A", "Sentinel B";
  font-style: normal;
  font-style: normal;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.2;
}
.editor-styles-wrapper .block-editor-block-list__layout .upcoming-events h3,
.tribe-events-single .upcoming-events h3,
.entry-content .upcoming-events h3, .textwidget .upcoming-events h3, .entry-header .upcoming-events h3, .entry-footer .upcoming-events h3, .navigation .upcoming-events h3, .entry-single-project .upcoming-events h3, .editor-styles-wrapper .upcoming-events h3, .popmake-content .upcoming-events h3 {
  /* 400, 700 */
  font-family: "Ringside Compressed A", "Ringside Compressed B";
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1em;
  -webkit-transition: color 300ms ease-out;
  transition: color 300ms ease-out;
}
.editor-styles-wrapper .block-editor-block-list__layout .upcoming-events .section-header,
.tribe-events-single .upcoming-events .section-header,
.entry-content .upcoming-events .section-header, .textwidget .upcoming-events .section-header, .entry-header .upcoming-events .section-header, .entry-footer .upcoming-events .section-header, .navigation .upcoming-events .section-header, .entry-single-project .upcoming-events .section-header, .editor-styles-wrapper .upcoming-events .section-header, .popmake-content .upcoming-events .section-header {
  border-top: 1px solid #929ea8;
}
.editor-styles-wrapper .block-editor-block-list__layout .upcoming-events .homepage-event,
.tribe-events-single .upcoming-events .homepage-event,
.entry-content .upcoming-events .homepage-event, .textwidget .upcoming-events .homepage-event, .entry-header .upcoming-events .homepage-event, .entry-footer .upcoming-events .homepage-event, .navigation .upcoming-events .homepage-event, .entry-single-project .upcoming-events .homepage-event, .editor-styles-wrapper .upcoming-events .homepage-event, .popmake-content .upcoming-events .homepage-event {
  max-width: 10.625rem;
  padding-top: 1.25rem;
  padding-bottom: 0.625rem;
}
.editor-styles-wrapper .block-editor-block-list__layout .upcoming-events .homepage-event-image,
.tribe-events-single .upcoming-events .homepage-event-image,
.entry-content .upcoming-events .homepage-event-image, .textwidget .upcoming-events .homepage-event-image, .entry-header .upcoming-events .homepage-event-image, .entry-footer .upcoming-events .homepage-event-image, .navigation .upcoming-events .homepage-event-image, .entry-single-project .upcoming-events .homepage-event-image, .editor-styles-wrapper .upcoming-events .homepage-event-image, .popmake-content .upcoming-events .homepage-event-image {
  position: relative;
  -webkit-transition: -webkit-transform 300ms ease-out;
  transition: -webkit-transform 300ms ease-out;
  transition: transform 300ms ease-out;
  transition: transform 300ms ease-out, -webkit-transform 300ms ease-out;
}
.editor-styles-wrapper .block-editor-block-list__layout .upcoming-events .homepage-event-image.no-image .homepage-event-start-date,
.tribe-events-single .upcoming-events .homepage-event-image.no-image .homepage-event-start-date,
.entry-content .upcoming-events .homepage-event-image.no-image .homepage-event-start-date, .textwidget .upcoming-events .homepage-event-image.no-image .homepage-event-start-date, .entry-header .upcoming-events .homepage-event-image.no-image .homepage-event-start-date, .entry-footer .upcoming-events .homepage-event-image.no-image .homepage-event-start-date, .navigation .upcoming-events .homepage-event-image.no-image .homepage-event-start-date, .entry-single-project .upcoming-events .homepage-event-image.no-image .homepage-event-start-date, .editor-styles-wrapper .upcoming-events .homepage-event-image.no-image .homepage-event-start-date, .popmake-content .upcoming-events .homepage-event-image.no-image .homepage-event-start-date {
  position: relative;
  display: inline-block;
  margin-bottom: 0.625rem;
}
.editor-styles-wrapper .block-editor-block-list__layout .upcoming-events .homepage-event-start-date,
.tribe-events-single .upcoming-events .homepage-event-start-date,
.entry-content .upcoming-events .homepage-event-start-date, .textwidget .upcoming-events .homepage-event-start-date, .entry-header .upcoming-events .homepage-event-start-date, .entry-footer .upcoming-events .homepage-event-start-date, .navigation .upcoming-events .homepage-event-start-date, .entry-single-project .upcoming-events .homepage-event-start-date, .editor-styles-wrapper .upcoming-events .homepage-event-start-date, .popmake-content .upcoming-events .homepage-event-start-date {
  background-color: #c6c63c;
  color: white;
  text-align: center;
  position: absolute;
  top: 1px; /* so border on image shows */
  left: 1px;
  padding: 0.125rem 0.3125rem;
}
.editor-styles-wrapper .block-editor-block-list__layout .upcoming-events .homepage-event-start-date .month,
.tribe-events-single .upcoming-events .homepage-event-start-date .month,
.entry-content .upcoming-events .homepage-event-start-date .month, .textwidget .upcoming-events .homepage-event-start-date .month, .entry-header .upcoming-events .homepage-event-start-date .month, .entry-footer .upcoming-events .homepage-event-start-date .month, .navigation .upcoming-events .homepage-event-start-date .month, .entry-single-project .upcoming-events .homepage-event-start-date .month, .editor-styles-wrapper .upcoming-events .homepage-event-start-date .month, .popmake-content .upcoming-events .homepage-event-start-date .month {
  /* 700 */
  font-family: "Ringside Extra Wide A", "Ringside Extra Wide B";
  font-style: normal;
  font-weight: 700;
  font-size: 0.5rem;
  line-height: 0.6875rem;
  text-transform: uppercase;
}
.editor-styles-wrapper .block-editor-block-list__layout .upcoming-events .homepage-event-start-date .day,
.tribe-events-single .upcoming-events .homepage-event-start-date .day,
.entry-content .upcoming-events .homepage-event-start-date .day, .textwidget .upcoming-events .homepage-event-start-date .day, .entry-header .upcoming-events .homepage-event-start-date .day, .entry-footer .upcoming-events .homepage-event-start-date .day, .navigation .upcoming-events .homepage-event-start-date .day, .entry-single-project .upcoming-events .homepage-event-start-date .day, .editor-styles-wrapper .upcoming-events .homepage-event-start-date .day, .popmake-content .upcoming-events .homepage-event-start-date .day {
  font-size: 1.1875rem;
  line-height: 1.3125rem;
  font-weight: 700;
}
.editor-styles-wrapper .block-editor-block-list__layout .article-block,
.tribe-events-single .article-block,
.entry-content .article-block, .textwidget .article-block, .entry-header .article-block, .entry-footer .article-block, .navigation .article-block, .entry-single-project .article-block, .editor-styles-wrapper .article-block, .popmake-content .article-block {
  padding: 1.25rem 0;
}
.editor-styles-wrapper .block-editor-block-list__layout .article-block .button,
.tribe-events-single .article-block .button,
.entry-content .article-block .button, .textwidget .article-block .button, .entry-header .article-block .button, .entry-footer .article-block .button, .navigation .article-block .button, .entry-single-project .article-block .button, .editor-styles-wrapper .article-block .button, .popmake-content .article-block .button {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-header,
.tribe-events-single .section-header,
.entry-content .section-header, .textwidget .section-header, .entry-header .section-header, .entry-footer .section-header, .navigation .section-header, .entry-single-project .section-header, .editor-styles-wrapper .section-header, .popmake-content .section-header {
  margin: 0.3125rem 0 0.625rem;
  border-top: 1px solid #253e51;
  position: relative;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-header h2,
.tribe-events-single .section-header h2,
.entry-content .section-header h2, .textwidget .section-header h2, .entry-header .section-header h2, .entry-footer .section-header h2, .navigation .section-header h2, .entry-single-project .section-header h2, .editor-styles-wrapper .section-header h2, .popmake-content .section-header h2 {
  /* 700 */
  font-family: "Ringside Extra Wide A", "Ringside Extra Wide B";
  font-style: normal;
  font-weight: 700;
  font-size: 0.6875rem;
  line-height: 1em;
  letter-spacing: 0.025em;
  background-color: #a40c34;
  color: white;
  text-transform: uppercase;
  padding: 0.375rem 1.25rem 0.4375rem;
  -webkit-clip-path: polygon(0% 15%, 50% 0%, 100% 15%, 100% 85%, 50% 100%, 0% 85%);
  clip-path: polygon(0% 15%, 50% 0%, 100% 15%, 100% 85%, 50% 100%, 0% 85%);
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); /*move up half height of arrow */
  left: 50%;
  display: inline-block;
  text-align: center;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-header h2 a,
.tribe-events-single .section-header h2 a,
.entry-content .section-header h2 a, .textwidget .section-header h2 a, .entry-header .section-header h2 a, .entry-footer .section-header h2 a, .navigation .section-header h2 a, .entry-single-project .section-header h2 a, .editor-styles-wrapper .section-header h2 a, .popmake-content .section-header h2 a {
  color: white;
  text-decoration: none;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-header h2 a:hover, .editor-styles-wrapper .block-editor-block-list__layout .section-header h2 a:focus,
.tribe-events-single .section-header h2 a:hover,
.tribe-events-single .section-header h2 a:focus,
.entry-content .section-header h2 a:hover,
.entry-content .section-header h2 a:focus, .textwidget .section-header h2 a:hover, .textwidget .section-header h2 a:focus, .entry-header .section-header h2 a:hover, .entry-header .section-header h2 a:focus, .entry-footer .section-header h2 a:hover, .entry-footer .section-header h2 a:focus, .navigation .section-header h2 a:hover, .navigation .section-header h2 a:focus, .entry-single-project .section-header h2 a:hover, .entry-single-project .section-header h2 a:focus, .editor-styles-wrapper .section-header h2 a:hover, .editor-styles-wrapper .section-header h2 a:focus, .popmake-content .section-header h2 a:hover, .popmake-content .section-header h2 a:focus {
  text-decoration: underline;
}
.editor-styles-wrapper .block-editor-block-list__layout .article-list,
.tribe-events-single .article-list,
.entry-content .article-list, .textwidget .article-list, .entry-header .article-list, .entry-footer .article-list, .navigation .article-list, .entry-single-project .article-list, .editor-styles-wrapper .article-list, .popmake-content .article-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.editor-styles-wrapper .block-editor-block-list__layout .article-list, .editor-styles-wrapper .block-editor-block-list__layout .article-slideshow,
.tribe-events-single .article-list,
.tribe-events-single .article-slideshow,
.entry-content .article-list,
.entry-content .article-slideshow, .textwidget .article-list, .textwidget .article-slideshow, .entry-header .article-list, .entry-header .article-slideshow, .entry-footer .article-list, .entry-footer .article-slideshow, .navigation .article-list, .navigation .article-slideshow, .entry-single-project .article-list, .entry-single-project .article-slideshow, .editor-styles-wrapper .article-list, .editor-styles-wrapper .article-slideshow, .popmake-content .article-list, .popmake-content .article-slideshow {
  padding-left: 0;
  padding-right: 0;
}
.editor-styles-wrapper .block-editor-block-list__layout .article-list article, .editor-styles-wrapper .block-editor-block-list__layout .article-slideshow article,
.tribe-events-single .article-list article,
.tribe-events-single .article-slideshow article,
.entry-content .article-list article,
.entry-content .article-slideshow article, .textwidget .article-list article, .textwidget .article-slideshow article, .entry-header .article-list article, .entry-header .article-slideshow article, .entry-footer .article-list article, .entry-footer .article-slideshow article, .navigation .article-list article, .navigation .article-slideshow article, .entry-single-project .article-list article, .entry-single-project .article-slideshow article, .editor-styles-wrapper .article-list article, .editor-styles-wrapper .article-slideshow article, .popmake-content .article-list article, .popmake-content .article-slideshow article {
  width: 100%;
  max-width: 21.25rem; /* 320 column + padding */
  padding: 1.25rem 0.625rem;
}
@media only screen and (min-width : 43.75rem) {
  .editor-styles-wrapper .block-editor-block-list__layout .article-list article, .editor-styles-wrapper .block-editor-block-list__layout .article-slideshow article,
.tribe-events-single .article-list article,
.tribe-events-single .article-slideshow article,
.entry-content .article-list article,
.entry-content .article-slideshow article, .textwidget .article-list article, .textwidget .article-slideshow article, .entry-header .article-list article, .entry-header .article-slideshow article, .entry-footer .article-list article, .entry-footer .article-slideshow article, .navigation .article-list article, .navigation .article-slideshow article, .entry-single-project .article-list article, .entry-single-project .article-slideshow article, .editor-styles-wrapper .article-list article, .editor-styles-wrapper .article-slideshow article, .popmake-content .article-list article, .popmake-content .article-slideshow article {
    width: 50%;
  }
}
@media only screen and (min-width : 62.5rem) {
  .editor-styles-wrapper .block-editor-block-list__layout .article-list article, .editor-styles-wrapper .block-editor-block-list__layout .article-slideshow article,
.tribe-events-single .article-list article,
.tribe-events-single .article-slideshow article,
.entry-content .article-list article,
.entry-content .article-slideshow article, .textwidget .article-list article, .textwidget .article-slideshow article, .entry-header .article-list article, .entry-header .article-slideshow article, .entry-footer .article-list article, .entry-footer .article-slideshow article, .navigation .article-list article, .navigation .article-slideshow article, .entry-single-project .article-list article, .entry-single-project .article-slideshow article, .editor-styles-wrapper .article-list article, .editor-styles-wrapper .article-slideshow article, .popmake-content .article-list article, .popmake-content .article-slideshow article {
    width: 33.3333333333%;
  }
}
.editor-styles-wrapper .block-editor-block-list__layout .article-list article h2, .editor-styles-wrapper .block-editor-block-list__layout .article-slideshow article h2,
.tribe-events-single .article-list article h2,
.tribe-events-single .article-slideshow article h2,
.entry-content .article-list article h2,
.entry-content .article-slideshow article h2, .textwidget .article-list article h2, .textwidget .article-slideshow article h2, .entry-header .article-list article h2, .entry-header .article-slideshow article h2, .entry-footer .article-list article h2, .entry-footer .article-slideshow article h2, .navigation .article-list article h2, .navigation .article-slideshow article h2, .entry-single-project .article-list article h2, .entry-single-project .article-slideshow article h2, .editor-styles-wrapper .article-list article h2, .editor-styles-wrapper .article-slideshow article h2, .popmake-content .article-list article h2, .popmake-content .article-slideshow article h2 {
  -webkit-transition: color 300ms ease-out;
  transition: color 300ms ease-out;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.editor-styles-wrapper .block-editor-block-list__layout .article-list article a, .editor-styles-wrapper .block-editor-block-list__layout .article-slideshow article a,
.tribe-events-single .article-list article a,
.tribe-events-single .article-slideshow article a,
.entry-content .article-list article a,
.entry-content .article-slideshow article a, .textwidget .article-list article a, .textwidget .article-slideshow article a, .entry-header .article-list article a, .entry-header .article-slideshow article a, .entry-footer .article-list article a, .entry-footer .article-slideshow article a, .navigation .article-list article a, .navigation .article-slideshow article a, .entry-single-project .article-list article a, .entry-single-project .article-slideshow article a, .editor-styles-wrapper .article-list article a, .editor-styles-wrapper .article-slideshow article a, .popmake-content .article-list article a, .popmake-content .article-slideshow article a {
  font-weight: 400;
  display: block;
  text-decoration: none;
}
.editor-styles-wrapper .block-editor-block-list__layout .article-list article a:hover img, .editor-styles-wrapper .block-editor-block-list__layout .article-list article a:focus img, .editor-styles-wrapper .block-editor-block-list__layout .article-slideshow article a:hover img, .editor-styles-wrapper .block-editor-block-list__layout .article-slideshow article a:focus img,
.tribe-events-single .article-list article a:hover img,
.tribe-events-single .article-list article a:focus img,
.tribe-events-single .article-slideshow article a:hover img,
.tribe-events-single .article-slideshow article a:focus img,
.entry-content .article-list article a:hover img,
.entry-content .article-list article a:focus img,
.entry-content .article-slideshow article a:hover img,
.entry-content .article-slideshow article a:focus img, .textwidget .article-list article a:hover img, .textwidget .article-list article a:focus img, .textwidget .article-slideshow article a:hover img, .textwidget .article-slideshow article a:focus img, .entry-header .article-list article a:hover img, .entry-header .article-list article a:focus img, .entry-header .article-slideshow article a:hover img, .entry-header .article-slideshow article a:focus img, .entry-footer .article-list article a:hover img, .entry-footer .article-list article a:focus img, .entry-footer .article-slideshow article a:hover img, .entry-footer .article-slideshow article a:focus img, .navigation .article-list article a:hover img, .navigation .article-list article a:focus img, .navigation .article-slideshow article a:hover img, .navigation .article-slideshow article a:focus img, .entry-single-project .article-list article a:hover img, .entry-single-project .article-list article a:focus img, .entry-single-project .article-slideshow article a:hover img, .entry-single-project .article-slideshow article a:focus img, .editor-styles-wrapper .article-list article a:hover img, .editor-styles-wrapper .article-list article a:focus img, .editor-styles-wrapper .article-slideshow article a:hover img, .editor-styles-wrapper .article-slideshow article a:focus img, .popmake-content .article-list article a:hover img, .popmake-content .article-list article a:focus img, .popmake-content .article-slideshow article a:hover img, .popmake-content .article-slideshow article a:focus img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.editor-styles-wrapper .block-editor-block-list__layout .article-list article .entry-content p:last-of-type, .editor-styles-wrapper .block-editor-block-list__layout .article-slideshow article .entry-content p:last-of-type,
.tribe-events-single .article-list article .entry-content p:last-of-type,
.tribe-events-single .article-slideshow article .entry-content p:last-of-type,
.entry-content .article-list article .entry-content p:last-of-type,
.entry-content .article-slideshow article .entry-content p:last-of-type, .textwidget .article-list article .entry-content p:last-of-type, .textwidget .article-slideshow article .entry-content p:last-of-type, .entry-header .article-list article .entry-content p:last-of-type, .entry-header .article-slideshow article .entry-content p:last-of-type, .entry-footer .article-list article .entry-content p:last-of-type, .entry-footer .article-slideshow article .entry-content p:last-of-type, .navigation .article-list article .entry-content p:last-of-type, .navigation .article-slideshow article .entry-content p:last-of-type, .entry-single-project .article-list article .entry-content p:last-of-type, .entry-single-project .article-slideshow article .entry-content p:last-of-type, .editor-styles-wrapper .article-list article .entry-content p:last-of-type, .editor-styles-wrapper .article-slideshow article .entry-content p:last-of-type, .popmake-content .article-list article .entry-content p:last-of-type, .popmake-content .article-slideshow article .entry-content p:last-of-type {
  padding-bottom: 0;
}
.editor-styles-wrapper .block-editor-block-list__layout .article-list img, .editor-styles-wrapper .block-editor-block-list__layout .article-slideshow img,
.tribe-events-single .article-list img,
.tribe-events-single .article-slideshow img,
.entry-content .article-list img,
.entry-content .article-slideshow img, .textwidget .article-list img, .textwidget .article-slideshow img, .entry-header .article-list img, .entry-header .article-slideshow img, .entry-footer .article-list img, .entry-footer .article-slideshow img, .navigation .article-list img, .navigation .article-slideshow img, .entry-single-project .article-list img, .entry-single-project .article-slideshow img, .editor-styles-wrapper .article-list img, .editor-styles-wrapper .article-slideshow img, .popmake-content .article-list img, .popmake-content .article-slideshow img {
  border: 1px solid #929ea8;
  margin-bottom: 0.4375rem;
  -webkit-transition: -webkit-transform 300ms ease-out;
  transition: -webkit-transform 300ms ease-out;
  transition: transform 300ms ease-out;
  transition: transform 300ms ease-out, -webkit-transform 300ms ease-out;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
  padding: 0 0.875rem;
}