@charset "UTF-8";
/*--------------------------------------------------------------
# CSS Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# SASS Variables and Mixins. Do not output any css in here. if you need these make sure to @use "variables"
--------------------------------------------------------------*/
/*------- Media Query Sizes. Add your own --------*/
/*------- Panel Becomes Absolute Query  --------*/
/*------- Add your own breakpoints to the grid --------*/
/*--------------------------------------------------------------
Mixins
--------------------------------------------------------------*/
/*------- Retina --------*/
/*------- Deep Shadow Mixin --------*/
/*------- Lighten and shade colors --------*/
/*------- Fluid Font Lock --------*/
/*------- Sort Map by values --------*/
/*------- Grid --------*/
/* Mixins for media queries */
/*--------------------------------------------------------------
# CSS Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# CSS Variables. Change these to match your theme
--------------------------------------------------------------*/
:root {
  --font: "Open Sans", Roboto, "Helvetica Neue", sans-serif;
  --font-alt: "Montserrat", Roboto, "Helvetica Neue", sans-serif;
  --line-height: 1.5;
  --font-pre: "Source Code Pro", monospace;
  --line-height-pre: 22px;
  --article-font-size: 1.7rem;
  --black: #6D6D6D;
  --dark-grey: #4c545d;
  --grey: #6D6D6D;
  --light-grey: #98989A;
  --blue: #007eac;
  --red: #E21936;
  --light-blue: rgba(0, 185, 235, 0.73);
  --dark-blue: #007fb0;
  --body-bg: white;
  --main-text-color: var(--black);
  --subtle-text-color: var(--grey);
  --site-top: var(--dark-blue);
  --footer-bg: var(--dark-grey);
  --header-bg: var(--dark-grey);
  --highlight: var(--red);
  --highlight-alpha: var(--light-blue);
  --highlight-darkened: var(--dark-blue);
}

/*--------------------------------------------------------------
# Layout CSS Variables. Probably don't need to touch.
--------------------------------------------------------------*/
:root {
  /*------- Menu Variables --------*/
  --nav-move: 900px;
  --media-sidebar: 1200px;
  --desktop-menu-alignment: center;
  /*------- Layout --------*/
  --container: 1320px;
  --container-content: 1320px;
  --container-padding: 30px;
  --gutters: 15px;
  --gap: 30px;
  --grid-gap: 30px;
  --flex-gap: calc(var(--grid-gap) / 2);
  /*------- Panels --------*/
  --panel-left-width: 300px;
  --panel-right-width: 350px;
  /*------- Z-index --------*/
  --z-index-top: 99;
  --z-index-overlay: 95;
  --z-index-menu-button: 90;
  --z-index-menu: 80;
  --z-index-header: 75;
  --z-index-behind: -1;
}

/*--------------------------------------------------------------
# CSS Grids and Containers
--------------------------------------------------------------*/
/*
  - Containers can be used anywhere for holding main content.
  - They have padding on both sides so on mobile the content wont hit the edges.
  - They have a max-width and are centered. They also have a width of 100% to work nicely inside flex items and grids.
  - It's best to keep containers surrounding content on their own div. Dont combine with grids and layouts in one div.
 */
/*------- Containers --------*/
.container {
  width: 100%;
  max-width: 1320px;
  max-width: var(--container);
  margin: auto;
  padding: 0 30px;
  padding: 0 var(--container-padding);
}

.container-left, .container-right {
  width: 100%;
  max-width: calc(1320px + (100% - 1320px) / 2);
  max-width: calc(var(--container) + (100% - var(--container)) / 2);
  margin: 0 auto 0 0;
  padding: 0 30px 0 0;
  padding: 0 var(--container-padding) 0 0;
}

.container-right {
  margin: 0 0 0 auto;
  padding: 0 0 0 30px;
  padding: 0 0 0 var(--container-padding);
}

.container-fluid {
  width: 100%;
  margin: auto;
  padding: 0 30px;
  padding: 0 var(--container-padding);
}

@media (min-width: 1320px) {
  .large-gap {
    grid-gap: 60px;
  }
}
/*------- Special Container Content For articles --------*/
/*
- Container-Content is meant to hold an article's content after the header.
- It's for actual words and makes sure the line is not too long
- It cleverly allows for items inside to go full width and "break out" with alignwide and alignfull
- The container itself has no max-width, instead its items within.
- Any items inside with full-width or .alignfull will NOT have a max-width and will fill page
- Dont surround container-content with a container or full items wont be full width!
*/
.container-content {
  padding: 0 30px;
  padding: 0 var(--container-padding);
  width: 100%;
}
.container-content > *:not(.alignwide):not(.alignfull):not(.full-width) {
  max-width: 1320px !important;
  max-width: var(--container-content) !important;
  margin-right: auto;
  margin-left: auto;
}
.container-content > .full-width, .container-content > .alignfull {
  width: auto;
  margin-left: calc(-1 * 30px);
  margin-left: calc(-1 * var(--container-padding));
  margin-right: calc(-1 * 30px);
  margin-right: calc(-1 * var(--container-padding));
}
.container-content > .alignwide {
  max-width: calc(1320px - 30px * 2);
  max-width: calc(var(--container) - var(--container-padding) * 2);
}

/*------- Special exceptions for container contents padding  --------*/
.container .container-content, .container-fluid .container-content, .container-left .container-content, .container-right .container-content {
  padding-left: 0;
  padding-right: 0;
}
.container .container-content > .alignwide, .container-fluid .container-content > .alignwide, .container-left .container-content > .alignwide, .container-right .container-content > .alignwide {
  max-width: calc(100% - 30px * 2);
  max-width: calc(100% - var(--container-padding) * 2);
}

.container-right .container-content > .full-width, .container-right .container-content > .alignfull {
  margin-right: 0;
}

.container-left .container-content > .full-width, .container-left .container-content > .alignfull {
  margin-left: 0;
}

/*--------------------------------------------------------------
# WP Align Wide Matches the size of a .container
--------------------------------------------------------------*/
.alignwide {
  width: 100%;
  max-width: 1320px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# CARD GRIDS
--------------------------------------------------------------*/
/*------- Grid Layouts --------*/
/*
- Simple Responsive grid of equal sized items
- Create your own responsive grid!
- Add @include grid($min-size-of-items);
- The default min size is 350
- Items grow if there is room to grow, or fall to next row fi there isnt.
 */
.card-grid {
  display: grid;
  --card-min: 250px;
  --card-max: 1fr;
  --card-type: auto-fit;
  grid-template-columns: repeat(var(--card-type), minmax(min(var(--card-min), 100%), var(--card-max)));
  grid-gap: 30px;
  grid-gap: var(--grid-gap);
  justify-content: center;
}
@media all and (-ms-high-contrast: none) {
  .card-grid {
    display: flex;
    flex-wrap: wrap;
  }
  .card-grid > * {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    min-width: calc(320px);
    margin: 15px;
    margin-top: 0;
    margin-bottom: 30px;
  }
  .card-grid.no-gutters {
    margin-left: 0;
    margin-right: 0;
  }
  .card-grid.no-gutters > * {
    margin: 0;
  }
  .conainer .card-grid, .container-fluid .card-grid, .container-content .card-grid {
    margin-left: calc(-1 * 30px);
    margin-left: calc(-1 * var(--gap));
    margin-right: calc(-1 * 30px);
    margin-right: calc(-1 * var(--gap));
  }
  .conainer .card-grid.no-gutters, .container-fluid .card-grid.no-gutters, .container-content .card-grid.no-gutters {
    margin-left: 0;
    margin-right: 0;
  }
}
.card-grid .card {
  border: 2px solid #6D6D6D;
  border: 2px solid var(--grey);
  background: white;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .card-grid .card {
    align-items: stretch;
  }
}
.card-grid .card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
@media (max-width: 576px) {
  .card-grid .card:hover {
    transform: translateX(-5px);
  }
}
.card-grid .card .card-date {
  padding: 20px;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  color: #6D6D6D;
  color: var(--grey);
}
@media (max-width: 576px) {
  .card-grid .card .card-date {
    padding: 15px;
    font-size: 16px;
    border-bottom: none;
    display: flex;
    align-items: center;
    min-width: 100px;
  }
}
.card-grid .card .card-content {
  padding: 10px 20px;
  flex: 1;
}
@media (max-width: 576px) {
  .card-grid .card .card-content {
    padding: 15px;
  }
}
.card-grid .card .card-content .card-title {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 35px;
  color: #6D6D6D;
  color: var(--black);
}
@media (max-width: 768px) {
  .card-grid .card .card-content .card-title {
    font-size: 18px;
    margin: 0 0 12px;
  }
}
@media (max-width: 576px) {
  .card-grid .card .card-content .card-title {
    font-size: 16px;
    margin: 0 0 10px;
  }
}
.card-grid .card .card-content .card-excerpt {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  color: #6D6D6D;
  color: var(--grey);
}
@media (max-width: 768px) {
  .card-grid .card .card-content .card-excerpt {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .card-grid .card .card-content .card-excerpt {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.card-grid .card .card-footer {
  padding: 10px 20px 20px;
  margin-top: auto;
}
@media (max-width: 576px) {
  .card-grid .card .card-footer {
    padding: 15px;
    border-top: none;
    border-left: 1px solid #E6E6E6;
    display: flex;
    align-items: center;
  }
}
.card-grid .card .card-footer .read-more {
  display: inline-flex;
  align-items: center;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8; /* 187.5% */
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .card-grid .card .card-footer .read-more {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .card-grid .card .card-footer .read-more {
    font-size: 14px;
  }
}
.card-grid .card .card-footer .read-more:after {
  content: ">";
  margin-left: 8px;
  transition: transform 0.3s ease;
  color: #E21936;
  color: var(--red);
}
.card-grid .card .card-footer .read-more:hover {
  color: #E21936;
  color: var(--red);
}
.card-grid .card .card-footer .read-more:hover:after {
  transform: translateX(5px);
}

.card-grid-fill {
  display: grid;
  --card-min: 250px;
  --card-max: 1fr;
  --card-type: auto-fill;
  grid-template-columns: repeat(var(--card-type), minmax(min(var(--card-min), 100%), var(--card-max)));
  grid-gap: 30px;
  grid-gap: var(--grid-gap);
  justify-content: center;
}
@media all and (-ms-high-contrast: none) {
  .card-grid-fill {
    display: flex;
    flex-wrap: wrap;
  }
  .card-grid-fill > * {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    min-width: calc(320px);
    margin: 15px;
    margin-top: 0;
    margin-bottom: 30px;
  }
  .card-grid-fill.no-gutters {
    margin-left: 0;
    margin-right: 0;
  }
  .card-grid-fill.no-gutters > * {
    margin: 0;
  }
  .conainer .card-grid-fill, .container-fluid .card-grid-fill, .container-content .card-grid-fill {
    margin-left: calc(-1 * 30px);
    margin-left: calc(-1 * var(--gap));
    margin-right: calc(-1 * 30px);
    margin-right: calc(-1 * var(--gap));
  }
  .conainer .card-grid-fill.no-gutters, .container-fluid .card-grid-fill.no-gutters, .container-content .card-grid-fill.no-gutters {
    margin-left: 0;
    margin-right: 0;
  }
}
.card-grid-fill .card {
  border: 2px solid #6D6D6D;
  border: 2px solid var(--grey);
  background: white;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .card-grid-fill .card {
    align-items: stretch;
  }
}
.card-grid-fill .card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
@media (max-width: 576px) {
  .card-grid-fill .card:hover {
    transform: translateX(-5px);
  }
}
.card-grid-fill .card .card-date {
  padding: 20px;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  color: #6D6D6D;
  color: var(--grey);
}
@media (max-width: 576px) {
  .card-grid-fill .card .card-date {
    padding: 15px;
    font-size: 16px;
    border-bottom: none;
    display: flex;
    align-items: center;
    min-width: 100px;
  }
}
.card-grid-fill .card .card-content {
  padding: 10px 20px;
  flex: 1;
}
@media (max-width: 576px) {
  .card-grid-fill .card .card-content {
    padding: 15px;
  }
}
.card-grid-fill .card .card-content .card-title {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 35px;
  color: #6D6D6D;
  color: var(--black);
}
@media (max-width: 768px) {
  .card-grid-fill .card .card-content .card-title {
    font-size: 18px;
    margin: 0 0 12px;
  }
}
@media (max-width: 576px) {
  .card-grid-fill .card .card-content .card-title {
    font-size: 16px;
    margin: 0 0 10px;
  }
}
.card-grid-fill .card .card-content .card-excerpt {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  color: #6D6D6D;
  color: var(--grey);
}
@media (max-width: 768px) {
  .card-grid-fill .card .card-content .card-excerpt {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .card-grid-fill .card .card-content .card-excerpt {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.card-grid-fill .card .card-footer {
  padding: 10px 20px 20px;
  margin-top: auto;
}
@media (max-width: 576px) {
  .card-grid-fill .card .card-footer {
    padding: 15px;
    border-top: none;
    border-left: 1px solid #E6E6E6;
    display: flex;
    align-items: center;
  }
}
.card-grid-fill .card .card-footer .read-more {
  display: inline-flex;
  align-items: center;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8; /* 187.5% */
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .card-grid-fill .card .card-footer .read-more {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .card-grid-fill .card .card-footer .read-more {
    font-size: 14px;
  }
}
.card-grid-fill .card .card-footer .read-more:after {
  content: ">";
  margin-left: 8px;
  transition: transform 0.3s ease;
  color: #E21936;
  color: var(--red);
}
.card-grid-fill .card .card-footer .read-more:hover {
  color: #E21936;
  color: var(--red);
}
.card-grid-fill .card .card-footer .read-more:hover:after {
  transform: translateX(5px);
}

.flex-card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: -15px;
  margin-right: -15px;
}
.flex-card-grid > * {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: calc(320px);
  margin: 0 15px 30px 15px;
}
.flex-card-grid.no-gutters {
  margin-left: 0;
  margin-right: 0;
}
.flex-card-grid.no-gutters > * {
  margin: 0;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .flex-card-grid > * {
    flex-basis: auto;
    min-width: calc(320px);
  }
}

/*--------------------------------------------------------------
# 12 Column CSS Grids
--------------------------------------------------------------*/
.no-gutters {
  grid-gap: 0;
}

.grid, #page .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(1px, 1fr));
  grid-gap: min(30px, 8.3333333333%);
  grid-gap: min(var(--grid-gap), 8.3333333333%);
}
div .grid .span-1, div #page .wp-block-gallery .span-1, #page div .wp-block-gallery .span-1, .grid.span-all-1 > *, #page .span-all-1.wp-block-gallery > * {
  grid-column: span 1;
}
div .grid .span-2, div #page .wp-block-gallery .span-2, #page div .wp-block-gallery .span-2, .grid.span-all-2 > *, #page .span-all-2.wp-block-gallery > * {
  grid-column: span 2;
}
div .grid .span-3, div #page .wp-block-gallery .span-3, #page div .wp-block-gallery .span-3, .grid.span-all-3 > *, #page .span-all-3.wp-block-gallery > *, #page .wp-block-gallery.columns-4 > * {
  grid-column: span 3;
}
div .grid .span-4, div #page .wp-block-gallery .span-4, #page div .wp-block-gallery .span-4, .grid.span-all-4 > *, #page .span-all-4.wp-block-gallery > *, #page .wp-block-gallery.columns-3 > * {
  grid-column: span 4;
}
div .grid .span-5, div #page .wp-block-gallery .span-5, #page div .wp-block-gallery .span-5, .grid.span-all-5 > *, #page .span-all-5.wp-block-gallery > * {
  grid-column: span 5;
}
div .grid .span-6, div #page .wp-block-gallery .span-6, #page div .wp-block-gallery .span-6, .grid.span-all-6 > *, #page .span-all-6.wp-block-gallery > *, #page .wp-block-gallery.columns-2 > * {
  grid-column: span 6;
}
div .grid .span-7, div #page .wp-block-gallery .span-7, #page div .wp-block-gallery .span-7, .grid.span-all-7 > *, #page .span-all-7.wp-block-gallery > * {
  grid-column: span 7;
}
div .grid .span-8, div #page .wp-block-gallery .span-8, #page div .wp-block-gallery .span-8, .grid.span-all-8 > *, #page .span-all-8.wp-block-gallery > * {
  grid-column: span 8;
}
div .grid .span-9, div #page .wp-block-gallery .span-9, #page div .wp-block-gallery .span-9, .grid.span-all-9 > *, #page .span-all-9.wp-block-gallery > * {
  grid-column: span 9;
}
div .grid .span-10, div #page .wp-block-gallery .span-10, #page div .wp-block-gallery .span-10, .grid.span-all-10 > *, #page .span-all-10.wp-block-gallery > * {
  grid-column: span 10;
}
div .grid .span-11, div #page .wp-block-gallery .span-11, #page div .wp-block-gallery .span-11, .grid.span-all-11 > *, #page .span-all-11.wp-block-gallery > * {
  grid-column: span 11;
}
div .grid .span-12, div #page .wp-block-gallery .span-12, #page div .wp-block-gallery .span-12, .grid.span-all-12 > *, #page .span-all-12.wp-block-gallery > *, #page .wp-block-gallery.columns-1 > * {
  grid-column: span 12;
}

.span-full {
  grid-column: 1/-1;
  flex-basis: 100%;
}

/*------- Overriding spans at media sizes --------*/
@media (max-width: 1320px) {
  div .grid > .container-span-1, div #page .wp-block-gallery > .container-span-1, #page div .wp-block-gallery > .container-span-1, .grid.container-span-all-1 > *, #page .container-span-all-1.wp-block-gallery > * {
    grid-column: span 1;
  }
  div .grid > .container-span-2, div #page .wp-block-gallery > .container-span-2, #page div .wp-block-gallery > .container-span-2, .grid.container-span-all-2 > *, #page .container-span-all-2.wp-block-gallery > * {
    grid-column: span 2;
  }
  div .grid > .container-span-3, div #page .wp-block-gallery > .container-span-3, #page div .wp-block-gallery > .container-span-3, .grid.container-span-all-3 > *, #page .container-span-all-3.wp-block-gallery > * {
    grid-column: span 3;
  }
  div .grid > .container-span-4, div #page .wp-block-gallery > .container-span-4, #page div .wp-block-gallery > .container-span-4, .grid.container-span-all-4 > *, #page .container-span-all-4.wp-block-gallery > * {
    grid-column: span 4;
  }
  div .grid > .container-span-5, div #page .wp-block-gallery > .container-span-5, #page div .wp-block-gallery > .container-span-5, .grid.container-span-all-5 > *, #page .container-span-all-5.wp-block-gallery > * {
    grid-column: span 5;
  }
  div .grid > .container-span-6, div #page .wp-block-gallery > .container-span-6, #page div .wp-block-gallery > .container-span-6, .grid.container-span-all-6 > *, #page .container-span-all-6.wp-block-gallery > * {
    grid-column: span 6;
  }
  div .grid > .container-span-7, div #page .wp-block-gallery > .container-span-7, #page div .wp-block-gallery > .container-span-7, .grid.container-span-all-7 > *, #page .container-span-all-7.wp-block-gallery > * {
    grid-column: span 7;
  }
  div .grid > .container-span-8, div #page .wp-block-gallery > .container-span-8, #page div .wp-block-gallery > .container-span-8, .grid.container-span-all-8 > *, #page .container-span-all-8.wp-block-gallery > * {
    grid-column: span 8;
  }
  div .grid > .container-span-9, div #page .wp-block-gallery > .container-span-9, #page div .wp-block-gallery > .container-span-9, .grid.container-span-all-9 > *, #page .container-span-all-9.wp-block-gallery > * {
    grid-column: span 9;
  }
  div .grid > .container-span-10, div #page .wp-block-gallery > .container-span-10, #page div .wp-block-gallery > .container-span-10, .grid.container-span-all-10 > *, #page .container-span-all-10.wp-block-gallery > * {
    grid-column: span 10;
  }
  div .grid > .container-span-11, div #page .wp-block-gallery > .container-span-11, #page div .wp-block-gallery > .container-span-11, .grid.container-span-all-11 > *, #page .container-span-all-11.wp-block-gallery > * {
    grid-column: span 11;
  }
  div .grid > .container-span-12, div #page .wp-block-gallery > .container-span-12, #page div .wp-block-gallery > .container-span-12, .grid.container-span-all-12 > *, #page .container-span-all-12.wp-block-gallery > * {
    grid-column: span 12;
  }
}
@media (max-width: 1030px) {
  div .grid > .large-span-1, div #page .wp-block-gallery > .large-span-1, #page div .wp-block-gallery > .large-span-1, .grid.large-span-all-1 > *, #page .large-span-all-1.wp-block-gallery > * {
    grid-column: span 1;
  }
  div .grid > .large-span-2, div #page .wp-block-gallery > .large-span-2, #page div .wp-block-gallery > .large-span-2, .grid.large-span-all-2 > *, #page .large-span-all-2.wp-block-gallery > * {
    grid-column: span 2;
  }
  div .grid > .large-span-3, div #page .wp-block-gallery > .large-span-3, #page div .wp-block-gallery > .large-span-3, .grid.large-span-all-3 > *, #page .large-span-all-3.wp-block-gallery > * {
    grid-column: span 3;
  }
  div .grid > .large-span-4, div #page .wp-block-gallery > .large-span-4, #page div .wp-block-gallery > .large-span-4, .grid.large-span-all-4 > *, #page .large-span-all-4.wp-block-gallery > * {
    grid-column: span 4;
  }
  div .grid > .large-span-5, div #page .wp-block-gallery > .large-span-5, #page div .wp-block-gallery > .large-span-5, .grid.large-span-all-5 > *, #page .large-span-all-5.wp-block-gallery > * {
    grid-column: span 5;
  }
  div .grid > .large-span-6, div #page .wp-block-gallery > .large-span-6, #page div .wp-block-gallery > .large-span-6, .grid.large-span-all-6 > *, #page .large-span-all-6.wp-block-gallery > * {
    grid-column: span 6;
  }
  div .grid > .large-span-7, div #page .wp-block-gallery > .large-span-7, #page div .wp-block-gallery > .large-span-7, .grid.large-span-all-7 > *, #page .large-span-all-7.wp-block-gallery > * {
    grid-column: span 7;
  }
  div .grid > .large-span-8, div #page .wp-block-gallery > .large-span-8, #page div .wp-block-gallery > .large-span-8, .grid.large-span-all-8 > *, #page .large-span-all-8.wp-block-gallery > * {
    grid-column: span 8;
  }
  div .grid > .large-span-9, div #page .wp-block-gallery > .large-span-9, #page div .wp-block-gallery > .large-span-9, .grid.large-span-all-9 > *, #page .large-span-all-9.wp-block-gallery > * {
    grid-column: span 9;
  }
  div .grid > .large-span-10, div #page .wp-block-gallery > .large-span-10, #page div .wp-block-gallery > .large-span-10, .grid.large-span-all-10 > *, #page .large-span-all-10.wp-block-gallery > * {
    grid-column: span 10;
  }
  div .grid > .large-span-11, div #page .wp-block-gallery > .large-span-11, #page div .wp-block-gallery > .large-span-11, .grid.large-span-all-11 > *, #page .large-span-all-11.wp-block-gallery > * {
    grid-column: span 11;
  }
  div .grid > .large-span-12, div #page .wp-block-gallery > .large-span-12, #page div .wp-block-gallery > .large-span-12, .grid.large-span-all-12 > *, #page .large-span-all-12.wp-block-gallery > * {
    grid-column: span 12;
  }
}
@media (max-width: 768px) {
  div .grid > .medium-span-1, div #page .wp-block-gallery > .medium-span-1, #page div .wp-block-gallery > .medium-span-1, .grid.medium-span-all-1 > *, #page .medium-span-all-1.wp-block-gallery > * {
    grid-column: span 1;
  }
  div .grid > .medium-span-2, div #page .wp-block-gallery > .medium-span-2, #page div .wp-block-gallery > .medium-span-2, .grid.medium-span-all-2 > *, #page .medium-span-all-2.wp-block-gallery > * {
    grid-column: span 2;
  }
  div .grid > .medium-span-3, div #page .wp-block-gallery > .medium-span-3, #page div .wp-block-gallery > .medium-span-3, .grid.medium-span-all-3 > *, #page .medium-span-all-3.wp-block-gallery > * {
    grid-column: span 3;
  }
  div .grid > .medium-span-4, div #page .wp-block-gallery > .medium-span-4, #page div .wp-block-gallery > .medium-span-4, .grid.medium-span-all-4 > *, #page .medium-span-all-4.wp-block-gallery > * {
    grid-column: span 4;
  }
  div .grid > .medium-span-5, div #page .wp-block-gallery > .medium-span-5, #page div .wp-block-gallery > .medium-span-5, .grid.medium-span-all-5 > *, #page .medium-span-all-5.wp-block-gallery > * {
    grid-column: span 5;
  }
  div .grid > .medium-span-6, div #page .wp-block-gallery > .medium-span-6, #page div .wp-block-gallery > .medium-span-6, .grid.medium-span-all-6 > *, #page .medium-span-all-6.wp-block-gallery > * {
    grid-column: span 6;
  }
  div .grid > .medium-span-7, div #page .wp-block-gallery > .medium-span-7, #page div .wp-block-gallery > .medium-span-7, .grid.medium-span-all-7 > *, #page .medium-span-all-7.wp-block-gallery > * {
    grid-column: span 7;
  }
  div .grid > .medium-span-8, div #page .wp-block-gallery > .medium-span-8, #page div .wp-block-gallery > .medium-span-8, .grid.medium-span-all-8 > *, #page .medium-span-all-8.wp-block-gallery > * {
    grid-column: span 8;
  }
  div .grid > .medium-span-9, div #page .wp-block-gallery > .medium-span-9, #page div .wp-block-gallery > .medium-span-9, .grid.medium-span-all-9 > *, #page .medium-span-all-9.wp-block-gallery > * {
    grid-column: span 9;
  }
  div .grid > .medium-span-10, div #page .wp-block-gallery > .medium-span-10, #page div .wp-block-gallery > .medium-span-10, .grid.medium-span-all-10 > *, #page .medium-span-all-10.wp-block-gallery > * {
    grid-column: span 10;
  }
  div .grid > .medium-span-11, div #page .wp-block-gallery > .medium-span-11, #page div .wp-block-gallery > .medium-span-11, .grid.medium-span-all-11 > *, #page .medium-span-all-11.wp-block-gallery > * {
    grid-column: span 11;
  }
  div .grid > .medium-span-12, div #page .wp-block-gallery > .medium-span-12, #page div .wp-block-gallery > .medium-span-12, .grid.medium-span-all-12 > *, #page .medium-span-all-12.wp-block-gallery > * {
    grid-column: span 12;
  }
}
@media (max-width: 576px) {
  div.site .grid > *, div.site #page .wp-block-gallery > *, #page div.site .wp-block-gallery > * {
    grid-column: 1/-1;
  }
  div .grid > .small-span-1, div #page .wp-block-gallery > .small-span-1, #page div .wp-block-gallery > .small-span-1, div .grid.small-span-all-1 > *, div #page .small-span-all-1.wp-block-gallery > *, #page div .small-span-all-1.wp-block-gallery > * {
    grid-column: span 1;
  }
  div .grid > .small-span-2, div #page .wp-block-gallery > .small-span-2, #page div .wp-block-gallery > .small-span-2, div .grid.small-span-all-2 > *, div #page .small-span-all-2.wp-block-gallery > *, #page div .small-span-all-2.wp-block-gallery > * {
    grid-column: span 2;
  }
  div .grid > .small-span-3, div #page .wp-block-gallery > .small-span-3, #page div .wp-block-gallery > .small-span-3, div .grid.small-span-all-3 > *, div #page .small-span-all-3.wp-block-gallery > *, #page div .small-span-all-3.wp-block-gallery > * {
    grid-column: span 3;
  }
  div .grid > .small-span-4, div #page .wp-block-gallery > .small-span-4, #page div .wp-block-gallery > .small-span-4, div .grid.small-span-all-4 > *, div #page .small-span-all-4.wp-block-gallery > *, #page div .small-span-all-4.wp-block-gallery > * {
    grid-column: span 4;
  }
  div .grid > .small-span-5, div #page .wp-block-gallery > .small-span-5, #page div .wp-block-gallery > .small-span-5, div .grid.small-span-all-5 > *, div #page .small-span-all-5.wp-block-gallery > *, #page div .small-span-all-5.wp-block-gallery > * {
    grid-column: span 5;
  }
  div .grid > .small-span-6, div #page .wp-block-gallery > .small-span-6, #page div .wp-block-gallery > .small-span-6, div .grid.small-span-all-6 > *, div #page .small-span-all-6.wp-block-gallery > *, #page div .small-span-all-6.wp-block-gallery > * {
    grid-column: span 6;
  }
  div .grid > .small-span-7, div #page .wp-block-gallery > .small-span-7, #page div .wp-block-gallery > .small-span-7, div .grid.small-span-all-7 > *, div #page .small-span-all-7.wp-block-gallery > *, #page div .small-span-all-7.wp-block-gallery > * {
    grid-column: span 7;
  }
  div .grid > .small-span-8, div #page .wp-block-gallery > .small-span-8, #page div .wp-block-gallery > .small-span-8, div .grid.small-span-all-8 > *, div #page .small-span-all-8.wp-block-gallery > *, #page div .small-span-all-8.wp-block-gallery > * {
    grid-column: span 8;
  }
  div .grid > .small-span-9, div #page .wp-block-gallery > .small-span-9, #page div .wp-block-gallery > .small-span-9, div .grid.small-span-all-9 > *, div #page .small-span-all-9.wp-block-gallery > *, #page div .small-span-all-9.wp-block-gallery > * {
    grid-column: span 9;
  }
  div .grid > .small-span-10, div #page .wp-block-gallery > .small-span-10, #page div .wp-block-gallery > .small-span-10, div .grid.small-span-all-10 > *, div #page .small-span-all-10.wp-block-gallery > *, #page div .small-span-all-10.wp-block-gallery > * {
    grid-column: span 10;
  }
  div .grid > .small-span-11, div #page .wp-block-gallery > .small-span-11, #page div .wp-block-gallery > .small-span-11, div .grid.small-span-all-11 > *, div #page .small-span-all-11.wp-block-gallery > *, #page div .small-span-all-11.wp-block-gallery > * {
    grid-column: span 11;
  }
  div .grid > .small-span-12, div #page .wp-block-gallery > .small-span-12, #page div .wp-block-gallery > .small-span-12, div .grid.small-span-all-12 > *, div #page .small-span-all-12.wp-block-gallery > *, #page div .small-span-all-12.wp-block-gallery > * {
    grid-column: span 12;
  }
}

/*--------------------------------------------------------------
# Flexbox grids. 99% same as css grid
--------------------------------------------------------------*/
.container.flex:not(.no-gutters), .container.wp-block-file:not(.no-gutters), .container-fluid.flex:not(.no-gutters), .container-fluid.wp-block-file:not(.no-gutters), .container-content.flex:not(.no-gutters), .container-content.wp-block-file:not(.no-gutters) {
  padding: 0 calc(30px / 2);
  padding: 0 calc(var(--container-padding) / 2);
  margin: auto;
}
.container.flex.no-gutters, .container.no-gutters.wp-block-file, .container-fluid.flex.no-gutters, .container-fluid.no-gutters.wp-block-file, .container-content.flex.no-gutters, .container-content.no-gutters.wp-block-file {
  margin: auto;
}

.container-left.flex:not(.no-gutters), .container-left.wp-block-file:not(.no-gutters) {
  padding-right: calc(30px / 2);
  padding-right: calc(var(--container-padding) / 2);
  margin: 0 auto 0 0;
}
.container-left.flex.no-gutters, .container-left.no-gutters.wp-block-file {
  margin: 0 auto 0 0;
}

.container-right.flex:not(.no-gutters), .container-right.wp-block-file:not(.no-gutters) {
  padding-left: calc(30px / 2);
  padding-left: calc(var(--container-padding) / 2);
  margin: 0 0 0 auto;
}
.container-right.flex.no-gutters, .container-right.no-gutters.wp-block-file {
  margin: 0 0 0 auto;
}

/*--------------------------------------------------------------
# Flex grid
--------------------------------------------------------------*/
.flex, .wp-block-file, .flex-grid {
  display: flex;
  margin-left: calc(-1 * calc(30px / 2));
  margin-left: calc(-1 * var(--flex-gap));
  margin-right: calc(-1 * calc(30px / 2));
  margin-right: calc(-1 * var(--flex-gap));
}
.flex > *, .wp-block-file > *, .flex-grid > * {
  margin-right: calc(30px / 2);
  margin-right: var(--flex-gap);
  margin-left: calc(30px / 2);
  margin-left: var(--flex-gap);
  flex: 1;
}
.flex > .no-gutters, .wp-block-file > .no-gutters, .flex-grid > .no-gutters {
  margin-left: 0;
  margin-right: 0;
}
div .flex .span-1, div .wp-block-file .span-1, .flex.span-all-1 > *, .span-all-1.wp-block-file > *, div .flex-grid .span-1, .flex-grid.span-all-1 > * {
  flex-basis: calc(8.3333333333% - 30px);
  flex-basis: calc(8.3333333333% - var(--grid-gap));
}
div .flex > .span-1, div .wp-block-file > .span-1, div .flex-grid > .span-1 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .flex .span-2, div .wp-block-file .span-2, .flex.span-all-2 > *, .span-all-2.wp-block-file > *, div .flex-grid .span-2, .flex-grid.span-all-2 > * {
  flex-basis: calc(16.6666666667% - 30px);
  flex-basis: calc(16.6666666667% - var(--grid-gap));
}
div .flex > .span-2, div .wp-block-file > .span-2, div .flex-grid > .span-2 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .flex .span-3, div .wp-block-file .span-3, .flex.span-all-3 > *, .span-all-3.wp-block-file > *, #page .flex.wp-block-gallery.columns-4 > *, #page .wp-block-file.wp-block-gallery.columns-4 > *, div .flex-grid .span-3, .flex-grid.span-all-3 > *, #page .flex-grid.wp-block-gallery.columns-4 > * {
  flex-basis: calc(25% - 30px);
  flex-basis: calc(25% - var(--grid-gap));
}
div .flex > .span-3, div .wp-block-file > .span-3, div .flex-grid > .span-3 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .flex .span-4, div .wp-block-file .span-4, .flex.span-all-4 > *, .span-all-4.wp-block-file > *, #page .flex.wp-block-gallery.columns-3 > *, #page .wp-block-file.wp-block-gallery.columns-3 > *, div .flex-grid .span-4, .flex-grid.span-all-4 > *, #page .flex-grid.wp-block-gallery.columns-3 > * {
  flex-basis: calc(33.3333333333% - 30px);
  flex-basis: calc(33.3333333333% - var(--grid-gap));
}
div .flex > .span-4, div .wp-block-file > .span-4, div .flex-grid > .span-4 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .flex .span-5, div .wp-block-file .span-5, .flex.span-all-5 > *, .span-all-5.wp-block-file > *, div .flex-grid .span-5, .flex-grid.span-all-5 > * {
  flex-basis: calc(41.6666666667% - 30px);
  flex-basis: calc(41.6666666667% - var(--grid-gap));
}
div .flex > .span-5, div .wp-block-file > .span-5, div .flex-grid > .span-5 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .flex .span-6, div .wp-block-file .span-6, .flex.span-all-6 > *, .span-all-6.wp-block-file > *, #page .flex.wp-block-gallery.columns-2 > *, #page .wp-block-file.wp-block-gallery.columns-2 > *, div .flex-grid .span-6, .flex-grid.span-all-6 > *, #page .flex-grid.wp-block-gallery.columns-2 > * {
  flex-basis: calc(50% - 30px);
  flex-basis: calc(50% - var(--grid-gap));
}
div .flex > .span-6, div .wp-block-file > .span-6, div .flex-grid > .span-6 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .flex .span-7, div .wp-block-file .span-7, .flex.span-all-7 > *, .span-all-7.wp-block-file > *, div .flex-grid .span-7, .flex-grid.span-all-7 > * {
  flex-basis: calc(58.3333333333% - 30px);
  flex-basis: calc(58.3333333333% - var(--grid-gap));
}
div .flex > .span-7, div .wp-block-file > .span-7, div .flex-grid > .span-7 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .flex .span-8, div .wp-block-file .span-8, .flex.span-all-8 > *, .span-all-8.wp-block-file > *, div .flex-grid .span-8, .flex-grid.span-all-8 > * {
  flex-basis: calc(66.6666666667% - 30px);
  flex-basis: calc(66.6666666667% - var(--grid-gap));
}
div .flex > .span-8, div .wp-block-file > .span-8, div .flex-grid > .span-8 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .flex .span-9, div .wp-block-file .span-9, .flex.span-all-9 > *, .span-all-9.wp-block-file > *, div .flex-grid .span-9, .flex-grid.span-all-9 > * {
  flex-basis: calc(75% - 30px);
  flex-basis: calc(75% - var(--grid-gap));
}
div .flex > .span-9, div .wp-block-file > .span-9, div .flex-grid > .span-9 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .flex .span-10, div .wp-block-file .span-10, .flex.span-all-10 > *, .span-all-10.wp-block-file > *, div .flex-grid .span-10, .flex-grid.span-all-10 > * {
  flex-basis: calc(83.3333333333% - 30px);
  flex-basis: calc(83.3333333333% - var(--grid-gap));
}
div .flex > .span-10, div .wp-block-file > .span-10, div .flex-grid > .span-10 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .flex .span-11, div .wp-block-file .span-11, .flex.span-all-11 > *, .span-all-11.wp-block-file > *, div .flex-grid .span-11, .flex-grid.span-all-11 > * {
  flex-basis: calc(91.6666666667% - 30px);
  flex-basis: calc(91.6666666667% - var(--grid-gap));
}
div .flex > .span-11, div .wp-block-file > .span-11, div .flex-grid > .span-11 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .flex .span-12, div .wp-block-file .span-12, .flex.span-all-12 > *, .span-all-12.wp-block-file > *, #page .flex.wp-block-gallery.columns-1 > *, #page .wp-block-file.wp-block-gallery.columns-1 > *, div .flex-grid .span-12, .flex-grid.span-all-12 > *, #page .flex-grid.wp-block-gallery.columns-1 > * {
  flex-basis: calc(100% - 30px);
  flex-basis: calc(100% - var(--grid-gap));
}
div .flex > .span-12, div .wp-block-file > .span-12, div .flex-grid > .span-12 {
  flex-grow: 0;
  flex-shrink: 0;
}
.flex.no-gutters, .no-gutters.wp-block-file, .flex-grid.no-gutters {
  margin-left: 0;
  margin-right: 0;
}
.flex.no-gutters > *, .no-gutters.wp-block-file > *, .flex-grid.no-gutters > * {
  margin: 0;
  --grid-gap: 0px;
}

.flex-grid {
  flex-wrap: wrap;
}
.flex-grid > * {
  margin-bottom: 30px;
  margin-bottom: var(--grid-gap);
}

#page .no-wrap {
  flex-wrap: nowrap;
}

/*------- Span sizes for flexbox grids --------*/
@media (max-width: 1320px) {
  div .flex-grid > .container-span-1, .flex-grid.container-span-all-1 > *, div .flex > .container-span-1, div .wp-block-file > .container-span-1, .flex.container-span-all-1 > *, .container-span-all-1.wp-block-file > * {
    flex-basis: calc(8.3333333333% - 30px);
    flex-basis: calc(8.3333333333% - var(--grid-gap));
  }
  div .flex-grid > .container-span-1, div .flex > .container-span-1, div .wp-block-file > .container-span-1 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .container-span-2, .flex-grid.container-span-all-2 > *, div .flex > .container-span-2, div .wp-block-file > .container-span-2, .flex.container-span-all-2 > *, .container-span-all-2.wp-block-file > * {
    flex-basis: calc(16.6666666667% - 30px);
    flex-basis: calc(16.6666666667% - var(--grid-gap));
  }
  div .flex-grid > .container-span-2, div .flex > .container-span-2, div .wp-block-file > .container-span-2 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .container-span-3, .flex-grid.container-span-all-3 > *, div .flex > .container-span-3, div .wp-block-file > .container-span-3, .flex.container-span-all-3 > *, .container-span-all-3.wp-block-file > * {
    flex-basis: calc(25% - 30px);
    flex-basis: calc(25% - var(--grid-gap));
  }
  div .flex-grid > .container-span-3, div .flex > .container-span-3, div .wp-block-file > .container-span-3 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .container-span-4, .flex-grid.container-span-all-4 > *, div .flex > .container-span-4, div .wp-block-file > .container-span-4, .flex.container-span-all-4 > *, .container-span-all-4.wp-block-file > * {
    flex-basis: calc(33.3333333333% - 30px);
    flex-basis: calc(33.3333333333% - var(--grid-gap));
  }
  div .flex-grid > .container-span-4, div .flex > .container-span-4, div .wp-block-file > .container-span-4 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .container-span-5, .flex-grid.container-span-all-5 > *, div .flex > .container-span-5, div .wp-block-file > .container-span-5, .flex.container-span-all-5 > *, .container-span-all-5.wp-block-file > * {
    flex-basis: calc(41.6666666667% - 30px);
    flex-basis: calc(41.6666666667% - var(--grid-gap));
  }
  div .flex-grid > .container-span-5, div .flex > .container-span-5, div .wp-block-file > .container-span-5 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .container-span-6, .flex-grid.container-span-all-6 > *, div .flex > .container-span-6, div .wp-block-file > .container-span-6, .flex.container-span-all-6 > *, .container-span-all-6.wp-block-file > * {
    flex-basis: calc(50% - 30px);
    flex-basis: calc(50% - var(--grid-gap));
  }
  div .flex-grid > .container-span-6, div .flex > .container-span-6, div .wp-block-file > .container-span-6 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .container-span-7, .flex-grid.container-span-all-7 > *, div .flex > .container-span-7, div .wp-block-file > .container-span-7, .flex.container-span-all-7 > *, .container-span-all-7.wp-block-file > * {
    flex-basis: calc(58.3333333333% - 30px);
    flex-basis: calc(58.3333333333% - var(--grid-gap));
  }
  div .flex-grid > .container-span-7, div .flex > .container-span-7, div .wp-block-file > .container-span-7 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .container-span-8, .flex-grid.container-span-all-8 > *, div .flex > .container-span-8, div .wp-block-file > .container-span-8, .flex.container-span-all-8 > *, .container-span-all-8.wp-block-file > * {
    flex-basis: calc(66.6666666667% - 30px);
    flex-basis: calc(66.6666666667% - var(--grid-gap));
  }
  div .flex-grid > .container-span-8, div .flex > .container-span-8, div .wp-block-file > .container-span-8 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .container-span-9, .flex-grid.container-span-all-9 > *, div .flex > .container-span-9, div .wp-block-file > .container-span-9, .flex.container-span-all-9 > *, .container-span-all-9.wp-block-file > * {
    flex-basis: calc(75% - 30px);
    flex-basis: calc(75% - var(--grid-gap));
  }
  div .flex-grid > .container-span-9, div .flex > .container-span-9, div .wp-block-file > .container-span-9 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .container-span-10, .flex-grid.container-span-all-10 > *, div .flex > .container-span-10, div .wp-block-file > .container-span-10, .flex.container-span-all-10 > *, .container-span-all-10.wp-block-file > * {
    flex-basis: calc(83.3333333333% - 30px);
    flex-basis: calc(83.3333333333% - var(--grid-gap));
  }
  div .flex-grid > .container-span-10, div .flex > .container-span-10, div .wp-block-file > .container-span-10 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .container-span-11, .flex-grid.container-span-all-11 > *, div .flex > .container-span-11, div .wp-block-file > .container-span-11, .flex.container-span-all-11 > *, .container-span-all-11.wp-block-file > * {
    flex-basis: calc(91.6666666667% - 30px);
    flex-basis: calc(91.6666666667% - var(--grid-gap));
  }
  div .flex-grid > .container-span-11, div .flex > .container-span-11, div .wp-block-file > .container-span-11 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .container-span-12, .flex-grid.container-span-all-12 > *, div .flex > .container-span-12, div .wp-block-file > .container-span-12, .flex.container-span-all-12 > *, .container-span-all-12.wp-block-file > * {
    flex-basis: calc(100% - 30px);
    flex-basis: calc(100% - var(--grid-gap));
  }
  div .flex-grid > .container-span-12, div .flex > .container-span-12, div .wp-block-file > .container-span-12 {
    flex-grow: 0;
    flex-shrink: 0;
  }
}
@media (max-width: 1030px) {
  div .flex-grid > .large-span-1, .flex-grid.large-span-all-1 > *, div .flex > .large-span-1, div .wp-block-file > .large-span-1, .flex.large-span-all-1 > *, .large-span-all-1.wp-block-file > * {
    flex-basis: calc(8.3333333333% - 30px);
    flex-basis: calc(8.3333333333% - var(--grid-gap));
  }
  div .flex-grid > .large-span-1, div .flex > .large-span-1, div .wp-block-file > .large-span-1 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .large-span-2, .flex-grid.large-span-all-2 > *, div .flex > .large-span-2, div .wp-block-file > .large-span-2, .flex.large-span-all-2 > *, .large-span-all-2.wp-block-file > * {
    flex-basis: calc(16.6666666667% - 30px);
    flex-basis: calc(16.6666666667% - var(--grid-gap));
  }
  div .flex-grid > .large-span-2, div .flex > .large-span-2, div .wp-block-file > .large-span-2 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .large-span-3, .flex-grid.large-span-all-3 > *, div .flex > .large-span-3, div .wp-block-file > .large-span-3, .flex.large-span-all-3 > *, .large-span-all-3.wp-block-file > * {
    flex-basis: calc(25% - 30px);
    flex-basis: calc(25% - var(--grid-gap));
  }
  div .flex-grid > .large-span-3, div .flex > .large-span-3, div .wp-block-file > .large-span-3 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .large-span-4, .flex-grid.large-span-all-4 > *, div .flex > .large-span-4, div .wp-block-file > .large-span-4, .flex.large-span-all-4 > *, .large-span-all-4.wp-block-file > * {
    flex-basis: calc(33.3333333333% - 30px);
    flex-basis: calc(33.3333333333% - var(--grid-gap));
  }
  div .flex-grid > .large-span-4, div .flex > .large-span-4, div .wp-block-file > .large-span-4 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .large-span-5, .flex-grid.large-span-all-5 > *, div .flex > .large-span-5, div .wp-block-file > .large-span-5, .flex.large-span-all-5 > *, .large-span-all-5.wp-block-file > * {
    flex-basis: calc(41.6666666667% - 30px);
    flex-basis: calc(41.6666666667% - var(--grid-gap));
  }
  div .flex-grid > .large-span-5, div .flex > .large-span-5, div .wp-block-file > .large-span-5 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .large-span-6, .flex-grid.large-span-all-6 > *, div .flex > .large-span-6, div .wp-block-file > .large-span-6, .flex.large-span-all-6 > *, .large-span-all-6.wp-block-file > * {
    flex-basis: calc(50% - 30px);
    flex-basis: calc(50% - var(--grid-gap));
  }
  div .flex-grid > .large-span-6, div .flex > .large-span-6, div .wp-block-file > .large-span-6 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .large-span-7, .flex-grid.large-span-all-7 > *, div .flex > .large-span-7, div .wp-block-file > .large-span-7, .flex.large-span-all-7 > *, .large-span-all-7.wp-block-file > * {
    flex-basis: calc(58.3333333333% - 30px);
    flex-basis: calc(58.3333333333% - var(--grid-gap));
  }
  div .flex-grid > .large-span-7, div .flex > .large-span-7, div .wp-block-file > .large-span-7 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .large-span-8, .flex-grid.large-span-all-8 > *, div .flex > .large-span-8, div .wp-block-file > .large-span-8, .flex.large-span-all-8 > *, .large-span-all-8.wp-block-file > * {
    flex-basis: calc(66.6666666667% - 30px);
    flex-basis: calc(66.6666666667% - var(--grid-gap));
  }
  div .flex-grid > .large-span-8, div .flex > .large-span-8, div .wp-block-file > .large-span-8 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .large-span-9, .flex-grid.large-span-all-9 > *, div .flex > .large-span-9, div .wp-block-file > .large-span-9, .flex.large-span-all-9 > *, .large-span-all-9.wp-block-file > * {
    flex-basis: calc(75% - 30px);
    flex-basis: calc(75% - var(--grid-gap));
  }
  div .flex-grid > .large-span-9, div .flex > .large-span-9, div .wp-block-file > .large-span-9 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .large-span-10, .flex-grid.large-span-all-10 > *, div .flex > .large-span-10, div .wp-block-file > .large-span-10, .flex.large-span-all-10 > *, .large-span-all-10.wp-block-file > * {
    flex-basis: calc(83.3333333333% - 30px);
    flex-basis: calc(83.3333333333% - var(--grid-gap));
  }
  div .flex-grid > .large-span-10, div .flex > .large-span-10, div .wp-block-file > .large-span-10 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .large-span-11, .flex-grid.large-span-all-11 > *, div .flex > .large-span-11, div .wp-block-file > .large-span-11, .flex.large-span-all-11 > *, .large-span-all-11.wp-block-file > * {
    flex-basis: calc(91.6666666667% - 30px);
    flex-basis: calc(91.6666666667% - var(--grid-gap));
  }
  div .flex-grid > .large-span-11, div .flex > .large-span-11, div .wp-block-file > .large-span-11 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .large-span-12, .flex-grid.large-span-all-12 > *, div .flex > .large-span-12, div .wp-block-file > .large-span-12, .flex.large-span-all-12 > *, .large-span-all-12.wp-block-file > * {
    flex-basis: calc(100% - 30px);
    flex-basis: calc(100% - var(--grid-gap));
  }
  div .flex-grid > .large-span-12, div .flex > .large-span-12, div .wp-block-file > .large-span-12 {
    flex-grow: 0;
    flex-shrink: 0;
  }
}
@media (max-width: 768px) {
  div .flex-grid > .medium-span-1, .flex-grid.medium-span-all-1 > *, div .flex > .medium-span-1, div .wp-block-file > .medium-span-1, .flex.medium-span-all-1 > *, .medium-span-all-1.wp-block-file > * {
    flex-basis: calc(8.3333333333% - 30px);
    flex-basis: calc(8.3333333333% - var(--grid-gap));
  }
  div .flex-grid > .medium-span-1, div .flex > .medium-span-1, div .wp-block-file > .medium-span-1 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .medium-span-2, .flex-grid.medium-span-all-2 > *, div .flex > .medium-span-2, div .wp-block-file > .medium-span-2, .flex.medium-span-all-2 > *, .medium-span-all-2.wp-block-file > * {
    flex-basis: calc(16.6666666667% - 30px);
    flex-basis: calc(16.6666666667% - var(--grid-gap));
  }
  div .flex-grid > .medium-span-2, div .flex > .medium-span-2, div .wp-block-file > .medium-span-2 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .medium-span-3, .flex-grid.medium-span-all-3 > *, div .flex > .medium-span-3, div .wp-block-file > .medium-span-3, .flex.medium-span-all-3 > *, .medium-span-all-3.wp-block-file > * {
    flex-basis: calc(25% - 30px);
    flex-basis: calc(25% - var(--grid-gap));
  }
  div .flex-grid > .medium-span-3, div .flex > .medium-span-3, div .wp-block-file > .medium-span-3 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .medium-span-4, .flex-grid.medium-span-all-4 > *, div .flex > .medium-span-4, div .wp-block-file > .medium-span-4, .flex.medium-span-all-4 > *, .medium-span-all-4.wp-block-file > * {
    flex-basis: calc(33.3333333333% - 30px);
    flex-basis: calc(33.3333333333% - var(--grid-gap));
  }
  div .flex-grid > .medium-span-4, div .flex > .medium-span-4, div .wp-block-file > .medium-span-4 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .medium-span-5, .flex-grid.medium-span-all-5 > *, div .flex > .medium-span-5, div .wp-block-file > .medium-span-5, .flex.medium-span-all-5 > *, .medium-span-all-5.wp-block-file > * {
    flex-basis: calc(41.6666666667% - 30px);
    flex-basis: calc(41.6666666667% - var(--grid-gap));
  }
  div .flex-grid > .medium-span-5, div .flex > .medium-span-5, div .wp-block-file > .medium-span-5 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .medium-span-6, .flex-grid.medium-span-all-6 > *, div .flex > .medium-span-6, div .wp-block-file > .medium-span-6, .flex.medium-span-all-6 > *, .medium-span-all-6.wp-block-file > * {
    flex-basis: calc(50% - 30px);
    flex-basis: calc(50% - var(--grid-gap));
  }
  div .flex-grid > .medium-span-6, div .flex > .medium-span-6, div .wp-block-file > .medium-span-6 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .medium-span-7, .flex-grid.medium-span-all-7 > *, div .flex > .medium-span-7, div .wp-block-file > .medium-span-7, .flex.medium-span-all-7 > *, .medium-span-all-7.wp-block-file > * {
    flex-basis: calc(58.3333333333% - 30px);
    flex-basis: calc(58.3333333333% - var(--grid-gap));
  }
  div .flex-grid > .medium-span-7, div .flex > .medium-span-7, div .wp-block-file > .medium-span-7 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .medium-span-8, .flex-grid.medium-span-all-8 > *, div .flex > .medium-span-8, div .wp-block-file > .medium-span-8, .flex.medium-span-all-8 > *, .medium-span-all-8.wp-block-file > * {
    flex-basis: calc(66.6666666667% - 30px);
    flex-basis: calc(66.6666666667% - var(--grid-gap));
  }
  div .flex-grid > .medium-span-8, div .flex > .medium-span-8, div .wp-block-file > .medium-span-8 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .medium-span-9, .flex-grid.medium-span-all-9 > *, div .flex > .medium-span-9, div .wp-block-file > .medium-span-9, .flex.medium-span-all-9 > *, .medium-span-all-9.wp-block-file > * {
    flex-basis: calc(75% - 30px);
    flex-basis: calc(75% - var(--grid-gap));
  }
  div .flex-grid > .medium-span-9, div .flex > .medium-span-9, div .wp-block-file > .medium-span-9 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .medium-span-10, .flex-grid.medium-span-all-10 > *, div .flex > .medium-span-10, div .wp-block-file > .medium-span-10, .flex.medium-span-all-10 > *, .medium-span-all-10.wp-block-file > * {
    flex-basis: calc(83.3333333333% - 30px);
    flex-basis: calc(83.3333333333% - var(--grid-gap));
  }
  div .flex-grid > .medium-span-10, div .flex > .medium-span-10, div .wp-block-file > .medium-span-10 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .medium-span-11, .flex-grid.medium-span-all-11 > *, div .flex > .medium-span-11, div .wp-block-file > .medium-span-11, .flex.medium-span-all-11 > *, .medium-span-all-11.wp-block-file > * {
    flex-basis: calc(91.6666666667% - 30px);
    flex-basis: calc(91.6666666667% - var(--grid-gap));
  }
  div .flex-grid > .medium-span-11, div .flex > .medium-span-11, div .wp-block-file > .medium-span-11 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .medium-span-12, .flex-grid.medium-span-all-12 > *, div .flex > .medium-span-12, div .wp-block-file > .medium-span-12, .flex.medium-span-all-12 > *, .medium-span-all-12.wp-block-file > * {
    flex-basis: calc(100% - 30px);
    flex-basis: calc(100% - var(--grid-gap));
  }
  div .flex-grid > .medium-span-12, div .flex > .medium-span-12, div .wp-block-file > .medium-span-12 {
    flex-grow: 0;
    flex-shrink: 0;
  }
}
@media (max-width: 576px) {
  .flex-grid, .flex, .wp-block-file {
    flex-wrap: wrap;
  }
  div.site .flex-grid > *, div.site .flex > *, div.site .wp-block-file > * {
    flex-basis: calc(100% - 30px);
    flex-basis: calc(100% - var(--grid-gap));
  }
  div .flex-grid > .small-span-1, div .flex-grid.small-span-all-1 > *, div .flex > .small-span-1, div .wp-block-file > .small-span-1, div .flex.small-span-all-1 > *, div .small-span-all-1.wp-block-file > * {
    flex-basis: calc(8.3333333333% - 30px);
    flex-basis: calc(8.3333333333% - var(--grid-gap));
  }
  div .flex-grid > .small-span-1, div .flex > .small-span-1, div .wp-block-file > .small-span-1 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .small-span-2, div .flex-grid.small-span-all-2 > *, div .flex > .small-span-2, div .wp-block-file > .small-span-2, div .flex.small-span-all-2 > *, div .small-span-all-2.wp-block-file > * {
    flex-basis: calc(16.6666666667% - 30px);
    flex-basis: calc(16.6666666667% - var(--grid-gap));
  }
  div .flex-grid > .small-span-2, div .flex > .small-span-2, div .wp-block-file > .small-span-2 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .small-span-3, div .flex-grid.small-span-all-3 > *, div .flex > .small-span-3, div .wp-block-file > .small-span-3, div .flex.small-span-all-3 > *, div .small-span-all-3.wp-block-file > * {
    flex-basis: calc(25% - 30px);
    flex-basis: calc(25% - var(--grid-gap));
  }
  div .flex-grid > .small-span-3, div .flex > .small-span-3, div .wp-block-file > .small-span-3 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .small-span-4, div .flex-grid.small-span-all-4 > *, div .flex > .small-span-4, div .wp-block-file > .small-span-4, div .flex.small-span-all-4 > *, div .small-span-all-4.wp-block-file > * {
    flex-basis: calc(33.3333333333% - 30px);
    flex-basis: calc(33.3333333333% - var(--grid-gap));
  }
  div .flex-grid > .small-span-4, div .flex > .small-span-4, div .wp-block-file > .small-span-4 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .small-span-5, div .flex-grid.small-span-all-5 > *, div .flex > .small-span-5, div .wp-block-file > .small-span-5, div .flex.small-span-all-5 > *, div .small-span-all-5.wp-block-file > * {
    flex-basis: calc(41.6666666667% - 30px);
    flex-basis: calc(41.6666666667% - var(--grid-gap));
  }
  div .flex-grid > .small-span-5, div .flex > .small-span-5, div .wp-block-file > .small-span-5 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .small-span-6, div .flex-grid.small-span-all-6 > *, div .flex > .small-span-6, div .wp-block-file > .small-span-6, div .flex.small-span-all-6 > *, div .small-span-all-6.wp-block-file > * {
    flex-basis: calc(50% - 30px);
    flex-basis: calc(50% - var(--grid-gap));
  }
  div .flex-grid > .small-span-6, div .flex > .small-span-6, div .wp-block-file > .small-span-6 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .small-span-7, div .flex-grid.small-span-all-7 > *, div .flex > .small-span-7, div .wp-block-file > .small-span-7, div .flex.small-span-all-7 > *, div .small-span-all-7.wp-block-file > * {
    flex-basis: calc(58.3333333333% - 30px);
    flex-basis: calc(58.3333333333% - var(--grid-gap));
  }
  div .flex-grid > .small-span-7, div .flex > .small-span-7, div .wp-block-file > .small-span-7 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .small-span-8, div .flex-grid.small-span-all-8 > *, div .flex > .small-span-8, div .wp-block-file > .small-span-8, div .flex.small-span-all-8 > *, div .small-span-all-8.wp-block-file > * {
    flex-basis: calc(66.6666666667% - 30px);
    flex-basis: calc(66.6666666667% - var(--grid-gap));
  }
  div .flex-grid > .small-span-8, div .flex > .small-span-8, div .wp-block-file > .small-span-8 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .small-span-9, div .flex-grid.small-span-all-9 > *, div .flex > .small-span-9, div .wp-block-file > .small-span-9, div .flex.small-span-all-9 > *, div .small-span-all-9.wp-block-file > * {
    flex-basis: calc(75% - 30px);
    flex-basis: calc(75% - var(--grid-gap));
  }
  div .flex-grid > .small-span-9, div .flex > .small-span-9, div .wp-block-file > .small-span-9 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .small-span-10, div .flex-grid.small-span-all-10 > *, div .flex > .small-span-10, div .wp-block-file > .small-span-10, div .flex.small-span-all-10 > *, div .small-span-all-10.wp-block-file > * {
    flex-basis: calc(83.3333333333% - 30px);
    flex-basis: calc(83.3333333333% - var(--grid-gap));
  }
  div .flex-grid > .small-span-10, div .flex > .small-span-10, div .wp-block-file > .small-span-10 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .small-span-11, div .flex-grid.small-span-all-11 > *, div .flex > .small-span-11, div .wp-block-file > .small-span-11, div .flex.small-span-all-11 > *, div .small-span-all-11.wp-block-file > * {
    flex-basis: calc(91.6666666667% - 30px);
    flex-basis: calc(91.6666666667% - var(--grid-gap));
  }
  div .flex-grid > .small-span-11, div .flex > .small-span-11, div .wp-block-file > .small-span-11 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .flex-grid > .small-span-12, div .flex-grid.small-span-all-12 > *, div .flex > .small-span-12, div .wp-block-file > .small-span-12, div .flex.small-span-all-12 > *, div .small-span-all-12.wp-block-file > * {
    flex-basis: calc(100% - 30px);
    flex-basis: calc(100% - var(--grid-gap));
  }
  div .flex-grid > .small-span-12, div .flex > .small-span-12, div .wp-block-file > .small-span-12 {
    flex-grow: 0;
    flex-shrink: 0;
  }
}

.site .flex.stay-flexed > *, .site .stay-flexed.wp-block-file > * {
  flex-basis: auto;
}

/*------- hide at break points --------*/
@media (max-width: 1320px) {
  .hide-on-container {
    display: none;
  }
}
@media (max-width: 1030px) {
  .hide-on-large {
    display: none;
  }
}
@media (max-width: 768px) {
  .hide-on-medium {
    display: none;
  }
}
@media (max-width: 576px) {
  .hide-on-small {
    display: none;
  }
}
/*--------------------------------------------------------------
# Grid Helpers
--------------------------------------------------------------*/
.align-center {
  align-items: center;
}

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

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

.flex-column {
  flex-direction: column;
}

.flex-grow {
  flex-grow: 1;
}

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

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*------- Layout that centers vertically and horizontally --------*/
.layout-center-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*------- Grid of cards. requires grid class --------*/
.layout-cards-7 > * {
  grid-column: span 4;
}
.layout-cards-7 > * .hide-on-small-card {
  display: none;
}
.layout-cards-7 > *:nth-child(7n-3), .layout-cards-7 > *:nth-child(7n-6) {
  grid-column: span 8;
}
.layout-cards-7 > *:nth-child(7n-3) .hide-on-small-card, .layout-cards-7 > *:nth-child(7n-6) .hide-on-small-card {
  display: block;
}

@media all and (-ms-high-contrast: none) {
  .layout-cards-7 > * {
    width: calc(33.333% - 30px);
    width: calc(33.333% - var(--gap));
  }
  .layout-cards-7 > * .hide-on-small-card {
    display: none;
  }
  .layout-cards-7 > *:nth-child(7n-3), .layout-cards-7 > *:nth-child(7n-6) {
    width: calc(66.66666% - 30px);
    width: calc(66.66666% - var(--gap));
  }
  .layout-cards-7 > *:nth-child(7n-3) .hide-on-small-card, .layout-cards-7 > *:nth-child(7n-6) .hide-on-small-card {
    display: block;
  }
}
/*--------------------------------------------------------------
# Gutenburg file
--------------------------------------------------------------*/
.wp-block-file {
  align-content: center;
}
.wp-block-file a {
  flex: 0 0 auto;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
#page .wp-block-gallery {
  padding: 0;
}
#page .wp-block-gallery li {
  padding: 0;
}
#page .wp-block-gallery .blocks-gallery-item {
  width: 100%;
  margin: 0;
  height: 300px;
}

.wp-block-quote.is-large:before {
  font-size: 4rem;
}
.wp-block-quote.is-large p {
  font-size: 4rem;
}

q {
  quotes: "“" "”" "‘" "’";
}

/*--------------------------------------------------------------
# Gutenberg Changes to Layout
--------------------------------------------------------------*/
div .block-editor-block-list__layout {
  padding: 0 30px;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 10;
}
div .block-editor-block-list__layout > *:not([data-align=full]):not([data-align=wide]):not(.is-reusable) {
  max-width: 1320px !important;
  max-width: var(--container-content) !important;
  margin-right: auto;
  margin-left: auto;
}

.block-editor-block-list__layout .block-editor-block-list__block[data-align=full] {
  margin-left: calc(-1 * 30px);
  margin-left: calc(-1 * var(--container-padding));
  margin-right: calc(-1 * 30px);
  margin-right: calc(-1 * var(--container-padding));
}

.wp-block[data-align=wide] {
  max-width: calc(1320px - 30px * 2);
  max-width: calc(var(--container) - var(--container-padding) * 2);
}

div .editor-styles-wrapper p {
  margin-top: 0;
  margin-bottom: 1em;
}

/*--------------------------------------------------------------
# ACF Changes
--------------------------------------------------------------*/
div .acf-block-component textarea {
  font-size: 16px;
}

/*------- WP Sidebar changes --------*/
#wpwrap .edit-post-sidebar {
  width: 100%;
}

@media (min-width: 1560px) {
  .edit-post-layout.is-sidebar-opened .block-editor-editor-skeleton__sidebar {
    width: 32%;
  }
}
@media (max-width: 1560px) {
  .edit-post-layout.is-sidebar-opened .block-editor-editor-skeleton__sidebar {
    transition: width 0.5s;
    width: 32%;
  }
  .edit-post-layout.is-sidebar-opened .block-editor-editor-skeleton__sidebar:hover {
    width: 50%;
    opacity: 1;
  }
}
.wp-core-ui .acf-block-preview .button, .block-editor-rich-text .button {
  line-height: 1.5;
  height: auto;
  font-size: inherit;
}

/*--------------------------------------------------------------
# Fixing inputs on back end
--------------------------------------------------------------*/
input[type=radio], input[type=checkbox] {
  width: 1.6rem;
  height: 1.6rem;
}

input[type=checkbox]:checked::before {
  width: 2.1rem;
  height: 2.1rem;
  margin: -0.2885rem 0 0 -0.4rem;
}

input[type=radio]:checked::before {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0.3rem;
}

.components-base-control .components-base-control__label {
  display: block;
}

#editor .has-inner-blocks {
  display: block;
}

html {
  font-size: 62.5%;
}

div .editor-styles-wrapper {
  background: white;
  background: var(--body-bg);
  font-size: 1.6rem;
  line-height: 1.5;
  line-height: var(--line-height);
  font-family: "Open Sans", Roboto, "Helvetica Neue", sans-serif;
  font-family: var(--font);
  color: #6D6D6D;
  color: var(--main-text-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  /*--------------------------------------------------------------
  # SASS Variables and Mixins. Do not output any css in here. if you need these make sure to @use "variables"
  --------------------------------------------------------------*/
  /*------- Media Query Sizes. Add your own --------*/
  /*------- Panel Becomes Absolute Query  --------*/
  /*------- Add your own breakpoints to the grid --------*/
  /*--------------------------------------------------------------
  Mixins
  --------------------------------------------------------------*/
  /*------- Retina --------*/
  /*------- Deep Shadow Mixin --------*/
  /*------- Lighten and shade colors --------*/
  /*------- Fluid Font Lock --------*/
  /*------- Sort Map by values --------*/
  /*------- Grid --------*/
  /* Mixins for media queries */
  /*--------------------------------------------------------------
  # Typography
  --------------------------------------------------------------*/
  /*------- Quick text alignment classes --------*/
  /*--------------------------------------------------------------
  # Default Headings in articles. Front page and other special pages should override the more common setting
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Basic Links
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Selection Highlighting
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # quotes
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Post Meta defaults
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # WP Edit Post Link
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Code
  --------------------------------------------------------------*/
}
div .editor-styles-wrapper html {
  font-size: 62.5%;
}
div .editor-styles-wrapper body {
  font-size: 1.6rem;
  line-height: 1.5;
  line-height: var(--line-height);
  font-family: "Open Sans", Roboto, "Helvetica Neue", sans-serif;
  font-family: var(--font);
  color: #6D6D6D;
  color: var(--main-text-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
@media (min-width: 1500px) {
  div .editor-styles-wrapper .grow-font .grow-font {
    font-size: 1.7rem;
    font-size: var(--article-font-size);
  }
}
div .editor-styles-wrapper h1,
div .editor-styles-wrapper h2,
div .editor-styles-wrapper h3,
div .editor-styles-wrapper h4,
div .editor-styles-wrapper h5,
div .editor-styles-wrapper h6 {
  clear: both;
  font-family: "Montserrat", Roboto, "Helvetica Neue", sans-serif;
  font-family: var(--font-alt);
}
div .editor-styles-wrapper .font-alt {
  font-family: "Montserrat", Roboto, "Helvetica Neue", sans-serif;
  font-family: var(--font-alt);
}
div .editor-styles-wrapper p {
  margin: 0 0 1em 0;
}
div .editor-styles-wrapper .entry-content > p:last-child, div .editor-styles-wrapper section p:last-child {
  margin-bottom: 0;
}
div .editor-styles-wrapper .text-center {
  text-align: center;
}
div .editor-styles-wrapper .text-right {
  text-align: right;
}
div .editor-styles-wrapper .text-left {
  text-align: left;
}
div .editor-styles-wrapper .text-justify {
  text-align: justify;
}
div .editor-styles-wrapper h1, div .editor-styles-wrapper .h1 {
  font-size: 5rem;
  line-height: 1.3;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
div .editor-styles-wrapper h2, div .editor-styles-wrapper .h2 {
  font-size: 3.8rem;
  margin-top: 42px;
  line-height: 1.3;
}
div .editor-styles-wrapper h2:first-child, div .editor-styles-wrapper .h2:first-child {
  margin-top: 0;
  margin-bottom: 42px;
}
div .editor-styles-wrapper h3, div .editor-styles-wrapper .h3 {
  font-size: 2.6rem;
  margin-top: 40px;
  line-height: 1.4;
}
div .editor-styles-wrapper h4, div .editor-styles-wrapper .h4 {
  font-size: 1.9rem;
  margin-top: 30px;
  line-height: 1.5;
}
div .editor-styles-wrapper a {
  color: #E21936;
  color: var(--highlight);
  text-decoration: none;
  cursor: pointer;
}
div .editor-styles-wrapper h1 a, div .editor-styles-wrapper h2 a {
  color: inherit;
}
div .editor-styles-wrapper ::-moz-selection {
  background: #E21936;
  background: var(--highlight);
  color: white;
}
div .editor-styles-wrapper ::selection {
  background: #E21936;
  background: var(--highlight);
  color: white;
}
div .editor-styles-wrapper dfn,
div .editor-styles-wrapper cite,
div .editor-styles-wrapper em,
div .editor-styles-wrapper blockquote {
  font-style: italic;
}
div .editor-styles-wrapper blockquote {
  quotes: "“" "”";
  overflow: hidden;
  position: relative;
  margin: 0 0 2em 0;
  font-family: "Open Sans", Roboto, "Helvetica Neue", sans-serif;
  font-family: var(--font);
  background: transparent;
}
div .editor-styles-wrapper blockquote p {
  padding-left: 40px;
}
div .editor-styles-wrapper blockquote p:last-of-type {
  margin: 0;
}
div .editor-styles-wrapper blockquote:before {
  content: open-quote;
  font-size: 4rem;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
}
div .editor-styles-wrapper cite, div .editor-styles-wrapper .wp-block-quote cite {
  font-family: "Open Sans", Roboto, "Helvetica Neue", sans-serif;
  font-family: var(--font);
  float: right;
  margin-top: 0;
  font-size: 14px;
}
div .editor-styles-wrapper cite:before, div .editor-styles-wrapper .wp-block-quote cite:before {
  content: "—";
  margin-right: 1em;
}
div .editor-styles-wrapper time, div .editor-styles-wrapper time a, div .editor-styles-wrapper .card-meta {
  font-size: 1.3rem;
}
div .editor-styles-wrapper .edit-link {
  font-size: 1.4rem;
}
div .editor-styles-wrapper pre {
  background: #f7f9fa;
  border: 1px solid #e6e8eb;
  font-family: "Source Code Pro", monospace;
  font-family: var(--font-pre);
  font-size: 14px;
  line-height: 22px;
  line-height: var(--line-height-pre);
  margin-top: 20px;
  margin-bottom: 20px;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
}
div .editor-styles-wrapper code,
div .editor-styles-wrapper kbd,
div .editor-styles-wrapper tt,
div .editor-styles-wrapper var {
  font-family: "Source Code Pro", monospace;
  font-family: var(--font-pre);
  font-size: 15px;
}
div .editor-styles-wrapper .acf-block-preview {
  /*--------------------------------------------------------------
  # Adding the core styles necessary to run UHM
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Basic Global Base Layout Stuff
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Panel Setup
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Sticky footer work.
  --------------------------------------------------------------*/
  /*
     - Sticky footer makes sure that the footer of the site is at the bottom no matter how small the content is.
  */
  /*
  	- By making sure there main content flexes as long as possible the footer below it will be at least or more than the height of the browser
   */
  /*--------------------------------------------------------------
  # Accessibility
  --------------------------------------------------------------*/
  /*------- responsive images --------*/
  /*--------------------------------------------------------------
  # Utility Classes
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # SASS Variables and Mixins. Do not output any css in here. if you need these make sure to @use "variables"
  --------------------------------------------------------------*/
  /*------- Media Query Sizes. Add your own --------*/
  /*------- Panel Becomes Absolute Query  --------*/
  /*------- Add your own breakpoints to the grid --------*/
  /*--------------------------------------------------------------
  Mixins
  --------------------------------------------------------------*/
  /*------- Retina --------*/
  /*------- Deep Shadow Mixin --------*/
  /*------- Lighten and shade colors --------*/
  /*------- Fluid Font Lock --------*/
  /*------- Sort Map by values --------*/
  /*------- Grid --------*/
  /* Mixins for media queries */
  /*--------------------------------------------------------------
  # CSS Grids and Containers
  --------------------------------------------------------------*/
  /*
    - Containers can be used anywhere for holding main content.
    - They have padding on both sides so on mobile the content wont hit the edges.
    - They have a max-width and are centered. They also have a width of 100% to work nicely inside flex items and grids.
    - It's best to keep containers surrounding content on their own div. Dont combine with grids and layouts in one div.
   */
  /*------- Containers --------*/
  /*------- Special Container Content For articles --------*/
  /*
  - Container-Content is meant to hold an article's content after the header.
  - It's for actual words and makes sure the line is not too long
  - It cleverly allows for items inside to go full width and "break out" with alignwide and alignfull
  - The container itself has no max-width, instead its items within.
  - Any items inside with full-width or .alignfull will NOT have a max-width and will fill page
  - Dont surround container-content with a container or full items wont be full width!
  */
  /*------- Special exceptions for container contents padding  --------*/
  /*--------------------------------------------------------------
  # WP Align Wide Matches the size of a .container
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # CARD GRIDS
  --------------------------------------------------------------*/
  /*------- Grid Layouts --------*/
  /*
  - Simple Responsive grid of equal sized items
  - Create your own responsive grid!
  - Add @include grid($min-size-of-items);
  - The default min size is 350
  - Items grow if there is room to grow, or fall to next row fi there isnt.
   */
  /*--------------------------------------------------------------
  # 12 Column CSS Grids
  --------------------------------------------------------------*/
  /*------- Overriding spans at media sizes --------*/
  /*--------------------------------------------------------------
  # Flexbox grids. 99% same as css grid
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Flex grid
  --------------------------------------------------------------*/
  /*------- Span sizes for flexbox grids --------*/
  /*------- hide at break points --------*/
  /*--------------------------------------------------------------
  # Grid Helpers
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Layouts
  --------------------------------------------------------------*/
  /*------- Layout that centers vertically and horizontally --------*/
  /*------- Grid of cards. requires grid class --------*/
  /*--------------------------------------------------------------
  # All Menus
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Vertical Menus
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Horizontal Menus
  --------------------------------------------------------------*/
  /*------- Apply the menus --------*/
  /*--------------------------------------------------------------
  # Site-top Layout
  --------------------------------------------------------------*/
  /*------- Site-top --------*/
  /*------- Navigation --------*/
  /*--------------------------------------------------------------
  # Site Logo Layout
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Main menu in panel left
  --------------------------------------------------------------*/
  /*------- Cool App like menu for mobile --------*/
  /*--------------------------------------------------------------
  # Adding the core styles necessary to run UHM
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Panel Left
  --------------------------------------------------------------*/
  /*------- Panel Left Button --------*/
  /*--------------------------------------------------------------
  # Menu icons
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Panel right Layout. Touch only if you know what your doing!
  --------------------------------------------------------------*/
  /*------- sidebar icon --------*/
  /*--------------------------------------------------------------
  # Panel Breakpoint to become absolute. no longer a flexed item
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Adding the core styles necessary to run UHM
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Sidebar Layout
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Inline Sidebar #secondary
  --------------------------------------------------------------*/
  /*------- Sidebar on left/right ordering --------*/
  /*--------------------------------------------------------------
  # Pulling out the header with .header-above
  --------------------------------------------------------------*/
  /*------- Sidebar in panel right layout --------*/
  /*--------------------------------------------------------------
  # Layout Fixes for ie11
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # SASS Variables and Mixins. Do not output any css in here. if you need these make sure to @use "variables"
  --------------------------------------------------------------*/
  /*------- Media Query Sizes. Add your own --------*/
  /*------- Panel Becomes Absolute Query  --------*/
  /*------- Add your own breakpoints to the grid --------*/
  /*--------------------------------------------------------------
  Mixins
  --------------------------------------------------------------*/
  /*------- Retina --------*/
  /*------- Deep Shadow Mixin --------*/
  /*------- Lighten and shade colors --------*/
  /*------- Fluid Font Lock --------*/
  /*------- Sort Map by values --------*/
  /*------- Grid --------*/
  /* Mixins for media queries */
  /*--------------------------------------------------------------
  # Body Background
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Logo
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Site Top - holds logo and main menu at top
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Default Headers
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Under header first thing should probably have padding-top. Usually its a section
  # expect it to be a paragraph or a heading or a section
  # Sometimes header is outside entry-content so we select the very first thing inside there
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # 404 Page
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Special Images
  --------------------------------------------------------------*/
  /*
      - Use a background-image div for holding a foreground image behind an item or header
      - use cover-image for an image in the foreground of a header.
  */
  /*------- Add overlay to a div so image is shaded --------*/
  /*--------------------------------------------------------------
  # Article images
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Image Alignments / WordPress Alignments
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Videos
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # SASS Variables and Mixins. Do not output any css in here. if you need these make sure to @use "variables"
  --------------------------------------------------------------*/
  /*------- Media Query Sizes. Add your own --------*/
  /*------- Panel Becomes Absolute Query  --------*/
  /*------- Add your own breakpoints to the grid --------*/
  /*--------------------------------------------------------------
  Mixins
  --------------------------------------------------------------*/
  /*------- Retina --------*/
  /*------- Deep Shadow Mixin --------*/
  /*------- Lighten and shade colors --------*/
  /*------- Fluid Font Lock --------*/
  /*------- Sort Map by values --------*/
  /*------- Grid --------*/
  /* Mixins for media queries */
  /*
    Menu items .menu-item>.menu-item-link>a+button
    Menu items have an li and a li > menu-item-link that can be styled.
    Sometimes if you style the li, this will include the sub menu inside.
    menu-item-link only styles the current link, not the submenus
   */
  /*--------------------------------------------------------------
  # Menu Styling: Vertical Menus Anywhere (sidebars etc...)
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Desktop Menu Styling overrides and default menus that are horizontal
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Sub-Menu Dropdown Buttons styling
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # SASS Variables and Mixins. Do not output any css in here. if you need these make sure to @use "variables"
  --------------------------------------------------------------*/
  /*------- Media Query Sizes. Add your own --------*/
  /*------- Panel Becomes Absolute Query  --------*/
  /*------- Add your own breakpoints to the grid --------*/
  /*--------------------------------------------------------------
  Mixins
  --------------------------------------------------------------*/
  /*------- Retina --------*/
  /*------- Deep Shadow Mixin --------*/
  /*------- Lighten and shade colors --------*/
  /*------- Fluid Font Lock --------*/
  /*------- Sort Map by values --------*/
  /*------- Grid --------*/
  /* Mixins for media queries */
  /*--------------------------------------------------------------
  # Global Forms
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Buttons
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Input Placeholders
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Search form
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Input Icons
  --------------------------------------------------------------*/
  /*------- input appends and prepends for icons --------*/
  /*
   * when adding a button near an input you can make it a prepend or append
   * all prepends and appends go AFTER the input. Never before or :focus wont affect the prepend.
   */
  /*--------------------------------------------------------------
  # Settings for some basic html elements
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Animation Setup
  --------------------------------------------------------------*/
  /*------- For animations --------*/
  /*------- infinite animations --------*/
  /*--------------------------------------------------------------
  # Scroll Animation with data-scrollanimation
  --------------------------------------------------------------*/
  /*------- when using data-scrollanimation with scrubbing, turn off transitions --------*/
  /*------- Special class for fixing at top. Used with scrollanimation --------*/
  /*------- Animate in a sequence --------*/
  /*--------------------------------------------------------------
  # Animations
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Icons
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Icon Tweaks
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  Lists
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  Tables
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # SASS Variables and Mixins. Do not output any css in here. if you need these make sure to @use "variables"
  --------------------------------------------------------------*/
  /*------- Media Query Sizes. Add your own --------*/
  /*------- Panel Becomes Absolute Query  --------*/
  /*------- Add your own breakpoints to the grid --------*/
  /*--------------------------------------------------------------
  Mixins
  --------------------------------------------------------------*/
  /*------- Retina --------*/
  /*------- Deep Shadow Mixin --------*/
  /*------- Lighten and shade colors --------*/
  /*------- Fluid Font Lock --------*/
  /*------- Sort Map by values --------*/
  /*------- Grid --------*/
  /* Mixins for media queries */
  /*--------------------------------------------------------------
  # Sections and Blocks and Parts
  --------------------------------------------------------------*/
  /*
    Most block and section styling can go here or in the block folder with the template-parts folder for that block. The choice is up to you.
   */
  /*------- Section defaults --------*/
  /*------- Padding classes useful for sections --------*/
  /*------- Your block, parts,  and section styling --------*/
}
div .editor-styles-wrapper .acf-block-preview html {
  box-sizing: border-box;
}
div .editor-styles-wrapper .acf-block-preview *,
div .editor-styles-wrapper .acf-block-preview *:before,
div .editor-styles-wrapper .acf-block-preview *:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}
div .editor-styles-wrapper .acf-block-preview html * {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
div .editor-styles-wrapper .acf-block-preview .touchscroll {
  overflow-y: scroll; /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;
}
div .editor-styles-wrapper .acf-block-preview .hide-scroll::-webkit-scrollbar {
  width: 0 !important;
}
div .editor-styles-wrapper .acf-block-preview .hide-scroll, div .editor-styles-wrapper .acf-block-preview #panel-right .sidebar-holder, div .editor-styles-wrapper .acf-block-preview #panel-left {
  -ms-overflow-style: none;
}
div .editor-styles-wrapper .acf-block-preview *:focus {
  outline: none;
}
div .editor-styles-wrapper .acf-block-preview .site-container {
  display: flex;
  position: relative;
  overflow: hidden;
  background: inherit;
}
div .editor-styles-wrapper .acf-block-preview .site-container > div {
  z-index: 90;
  overflow: hidden;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  transition: all 0.5s;
}
div .editor-styles-wrapper .acf-block-preview .site-container > div:empty {
  display: none;
}
div .editor-styles-wrapper .acf-block-preview #panel-right {
  order: 3;
}
div .editor-styles-wrapper .acf-block-preview #page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  flex-basis: 100%;
  z-index: 80;
  transition: none;
}
div .editor-styles-wrapper .acf-block-preview .site-content {
  flex: 1 0 auto;
  overflow: hidden;
}
div .editor-styles-wrapper .acf-block-preview .screen-reader-skip {
  height: 0;
  overflow: hidden;
  width: 0;
  clip: rect(1px, 1px, 1px, 1px);
}
div .editor-styles-wrapper .acf-block-preview .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  color: white;
  background-color: black;
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
div .editor-styles-wrapper .acf-block-preview .screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}
div .editor-styles-wrapper .acf-block-preview img {
  max-width: 100%;
  height: auto;
}
div .editor-styles-wrapper .acf-block-preview .hidden, div .editor-styles-wrapper .acf-block-preview .hide {
  display: none;
}
div .editor-styles-wrapper .acf-block-preview .clear:before,
div .editor-styles-wrapper .acf-block-preview .clear:after {
  content: "";
  display: table;
  table-layout: fixed;
}
div .editor-styles-wrapper .acf-block-preview .clear:after {
  clear: both;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  div .editor-styles-wrapper .acf-block-preview [data-toggle] svg {
    pointer-events: none;
  }
}
div .editor-styles-wrapper .acf-block-preview [data-toggle] {
  cursor: pointer;
}
div .editor-styles-wrapper .acf-block-preview [data-slide] {
  overflow: hidden;
}
div .editor-styles-wrapper .acf-block-preview .container {
  width: 100%;
  max-width: 1320px;
  max-width: var(--container);
  margin: auto;
  padding: 0 30px;
  padding: 0 var(--container-padding);
}
div .editor-styles-wrapper .acf-block-preview .container-left, div .editor-styles-wrapper .acf-block-preview .container-right {
  width: 100%;
  max-width: calc(1320px + (100% - 1320px) / 2);
  max-width: calc(var(--container) + (100% - var(--container)) / 2);
  margin: 0 auto 0 0;
  padding: 0 30px 0 0;
  padding: 0 var(--container-padding) 0 0;
}
div .editor-styles-wrapper .acf-block-preview .container-right {
  margin: 0 0 0 auto;
  padding: 0 0 0 30px;
  padding: 0 0 0 var(--container-padding);
}
div .editor-styles-wrapper .acf-block-preview .container-fluid {
  width: 100%;
  margin: auto;
  padding: 0 30px;
  padding: 0 var(--container-padding);
}
@media (min-width: 1320px) {
  div .editor-styles-wrapper .acf-block-preview .large-gap {
    grid-gap: 60px;
  }
}
div .editor-styles-wrapper .acf-block-preview .container-content {
  padding: 0 30px;
  padding: 0 var(--container-padding);
  width: 100%;
}
div .editor-styles-wrapper .acf-block-preview .container-content > *:not(.alignwide):not(.alignfull):not(.full-width) {
  max-width: 1320px !important;
  max-width: var(--container-content) !important;
  margin-right: auto;
  margin-left: auto;
}
div .editor-styles-wrapper .acf-block-preview .container-content > .full-width, div .editor-styles-wrapper .acf-block-preview .container-content > .alignfull {
  width: auto;
  margin-left: calc(-1 * 30px);
  margin-left: calc(-1 * var(--container-padding));
  margin-right: calc(-1 * 30px);
  margin-right: calc(-1 * var(--container-padding));
}
div .editor-styles-wrapper .acf-block-preview .container-content > .alignwide {
  max-width: calc(1320px - 30px * 2);
  max-width: calc(var(--container) - var(--container-padding) * 2);
}
div .editor-styles-wrapper .acf-block-preview .container .container-content, div .editor-styles-wrapper .acf-block-preview .container-fluid .container-content, div .editor-styles-wrapper .acf-block-preview .container-left .container-content, div .editor-styles-wrapper .acf-block-preview .container-right .container-content {
  padding-left: 0;
  padding-right: 0;
}
div .editor-styles-wrapper .acf-block-preview .container .container-content > .alignwide, div .editor-styles-wrapper .acf-block-preview .container-fluid .container-content > .alignwide, div .editor-styles-wrapper .acf-block-preview .container-left .container-content > .alignwide, div .editor-styles-wrapper .acf-block-preview .container-right .container-content > .alignwide {
  max-width: calc(100% - 30px * 2);
  max-width: calc(100% - var(--container-padding) * 2);
}
div .editor-styles-wrapper .acf-block-preview .container-right .container-content > .full-width, div .editor-styles-wrapper .acf-block-preview .container-right .container-content > .alignfull {
  margin-right: 0;
}
div .editor-styles-wrapper .acf-block-preview .container-left .container-content > .full-width, div .editor-styles-wrapper .acf-block-preview .container-left .container-content > .alignfull {
  margin-left: 0;
}
div .editor-styles-wrapper .acf-block-preview .alignwide {
  width: 100%;
  max-width: 1320px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
div .editor-styles-wrapper .acf-block-preview .card-grid {
  display: grid;
  --card-min: 250px;
  --card-max: 1fr;
  --card-type: auto-fit;
  grid-template-columns: repeat(var(--card-type), minmax(min(var(--card-min), 100%), var(--card-max)));
  grid-gap: 30px;
  grid-gap: var(--grid-gap);
  justify-content: center;
}
@media all and (-ms-high-contrast: none) {
  div .editor-styles-wrapper .acf-block-preview .card-grid {
    display: flex;
    flex-wrap: wrap;
  }
  div .editor-styles-wrapper .acf-block-preview .card-grid > * {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    min-width: calc(320px);
    margin: 15px;
    margin-top: 0;
    margin-bottom: 30px;
  }
  div .editor-styles-wrapper .acf-block-preview .card-grid.no-gutters {
    margin-left: 0;
    margin-right: 0;
  }
  div .editor-styles-wrapper .acf-block-preview .card-grid.no-gutters > * {
    margin: 0;
  }
  div .editor-styles-wrapper .acf-block-preview .conainer .card-grid, div .editor-styles-wrapper .acf-block-preview .container-fluid .card-grid, div .editor-styles-wrapper .acf-block-preview .container-content .card-grid {
    margin-left: calc(-1 * 30px);
    margin-left: calc(-1 * var(--gap));
    margin-right: calc(-1 * 30px);
    margin-right: calc(-1 * var(--gap));
  }
  div .editor-styles-wrapper .acf-block-preview .conainer .card-grid.no-gutters, div .editor-styles-wrapper .acf-block-preview .container-fluid .card-grid.no-gutters, div .editor-styles-wrapper .acf-block-preview .container-content .card-grid.no-gutters {
    margin-left: 0;
    margin-right: 0;
  }
}
div .editor-styles-wrapper .acf-block-preview .card-grid .card {
  border: 2px solid #6D6D6D;
  border: 2px solid var(--grey);
  background: white;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .card-grid .card {
    align-items: stretch;
  }
}
div .editor-styles-wrapper .acf-block-preview .card-grid .card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .card-grid .card:hover {
    transform: translateX(-5px);
  }
}
div .editor-styles-wrapper .acf-block-preview .card-grid .card .card-date {
  padding: 20px;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  color: #6D6D6D;
  color: var(--grey);
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .card-grid .card .card-date {
    padding: 15px;
    font-size: 16px;
    border-bottom: none;
    display: flex;
    align-items: center;
    min-width: 100px;
  }
}
div .editor-styles-wrapper .acf-block-preview .card-grid .card .card-content {
  padding: 10px 20px;
  flex: 1;
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .card-grid .card .card-content {
    padding: 15px;
  }
}
div .editor-styles-wrapper .acf-block-preview .card-grid .card .card-content .card-title {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 35px;
  color: #6D6D6D;
  color: var(--black);
}
@media (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview .card-grid .card .card-content .card-title {
    font-size: 18px;
    margin: 0 0 12px;
  }
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .card-grid .card .card-content .card-title {
    font-size: 16px;
    margin: 0 0 10px;
  }
}
div .editor-styles-wrapper .acf-block-preview .card-grid .card .card-content .card-excerpt {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  color: #6D6D6D;
  color: var(--grey);
}
@media (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview .card-grid .card .card-content .card-excerpt {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .card-grid .card .card-content .card-excerpt {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
div .editor-styles-wrapper .acf-block-preview .card-grid .card .card-footer {
  padding: 10px 20px 20px;
  margin-top: auto;
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .card-grid .card .card-footer {
    padding: 15px;
    border-top: none;
    border-left: 1px solid #E6E6E6;
    display: flex;
    align-items: center;
  }
}
div .editor-styles-wrapper .acf-block-preview .card-grid .card .card-footer .read-more {
  display: inline-flex;
  align-items: center;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8; /* 187.5% */
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview .card-grid .card .card-footer .read-more {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .card-grid .card .card-footer .read-more {
    font-size: 14px;
  }
}
div .editor-styles-wrapper .acf-block-preview .card-grid .card .card-footer .read-more:after {
  content: ">";
  margin-left: 8px;
  transition: transform 0.3s ease;
  color: #E21936;
  color: var(--red);
}
div .editor-styles-wrapper .acf-block-preview .card-grid .card .card-footer .read-more:hover {
  color: #E21936;
  color: var(--red);
}
div .editor-styles-wrapper .acf-block-preview .card-grid .card .card-footer .read-more:hover:after {
  transform: translateX(5px);
}
div .editor-styles-wrapper .acf-block-preview .card-grid-fill {
  display: grid;
  --card-min: 250px;
  --card-max: 1fr;
  --card-type: auto-fill;
  grid-template-columns: repeat(var(--card-type), minmax(min(var(--card-min), 100%), var(--card-max)));
  grid-gap: 30px;
  grid-gap: var(--grid-gap);
  justify-content: center;
}
@media all and (-ms-high-contrast: none) {
  div .editor-styles-wrapper .acf-block-preview .card-grid-fill {
    display: flex;
    flex-wrap: wrap;
  }
  div .editor-styles-wrapper .acf-block-preview .card-grid-fill > * {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    min-width: calc(320px);
    margin: 15px;
    margin-top: 0;
    margin-bottom: 30px;
  }
  div .editor-styles-wrapper .acf-block-preview .card-grid-fill.no-gutters {
    margin-left: 0;
    margin-right: 0;
  }
  div .editor-styles-wrapper .acf-block-preview .card-grid-fill.no-gutters > * {
    margin: 0;
  }
  div .editor-styles-wrapper .acf-block-preview .conainer .card-grid-fill, div .editor-styles-wrapper .acf-block-preview .container-fluid .card-grid-fill, div .editor-styles-wrapper .acf-block-preview .container-content .card-grid-fill {
    margin-left: calc(-1 * 30px);
    margin-left: calc(-1 * var(--gap));
    margin-right: calc(-1 * 30px);
    margin-right: calc(-1 * var(--gap));
  }
  div .editor-styles-wrapper .acf-block-preview .conainer .card-grid-fill.no-gutters, div .editor-styles-wrapper .acf-block-preview .container-fluid .card-grid-fill.no-gutters, div .editor-styles-wrapper .acf-block-preview .container-content .card-grid-fill.no-gutters {
    margin-left: 0;
    margin-right: 0;
  }
}
div .editor-styles-wrapper .acf-block-preview .card-grid-fill .card {
  border: 2px solid #6D6D6D;
  border: 2px solid var(--grey);
  background: white;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .card-grid-fill .card {
    align-items: stretch;
  }
}
div .editor-styles-wrapper .acf-block-preview .card-grid-fill .card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .card-grid-fill .card:hover {
    transform: translateX(-5px);
  }
}
div .editor-styles-wrapper .acf-block-preview .card-grid-fill .card .card-date {
  padding: 20px;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  color: #6D6D6D;
  color: var(--grey);
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .card-grid-fill .card .card-date {
    padding: 15px;
    font-size: 16px;
    border-bottom: none;
    display: flex;
    align-items: center;
    min-width: 100px;
  }
}
div .editor-styles-wrapper .acf-block-preview .card-grid-fill .card .card-content {
  padding: 10px 20px;
  flex: 1;
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .card-grid-fill .card .card-content {
    padding: 15px;
  }
}
div .editor-styles-wrapper .acf-block-preview .card-grid-fill .card .card-content .card-title {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 35px;
  color: #6D6D6D;
  color: var(--black);
}
@media (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview .card-grid-fill .card .card-content .card-title {
    font-size: 18px;
    margin: 0 0 12px;
  }
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .card-grid-fill .card .card-content .card-title {
    font-size: 16px;
    margin: 0 0 10px;
  }
}
div .editor-styles-wrapper .acf-block-preview .card-grid-fill .card .card-content .card-excerpt {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  color: #6D6D6D;
  color: var(--grey);
}
@media (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview .card-grid-fill .card .card-content .card-excerpt {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .card-grid-fill .card .card-content .card-excerpt {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
div .editor-styles-wrapper .acf-block-preview .card-grid-fill .card .card-footer {
  padding: 10px 20px 20px;
  margin-top: auto;
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .card-grid-fill .card .card-footer {
    padding: 15px;
    border-top: none;
    border-left: 1px solid #E6E6E6;
    display: flex;
    align-items: center;
  }
}
div .editor-styles-wrapper .acf-block-preview .card-grid-fill .card .card-footer .read-more {
  display: inline-flex;
  align-items: center;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8; /* 187.5% */
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview .card-grid-fill .card .card-footer .read-more {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .card-grid-fill .card .card-footer .read-more {
    font-size: 14px;
  }
}
div .editor-styles-wrapper .acf-block-preview .card-grid-fill .card .card-footer .read-more:after {
  content: ">";
  margin-left: 8px;
  transition: transform 0.3s ease;
  color: #E21936;
  color: var(--red);
}
div .editor-styles-wrapper .acf-block-preview .card-grid-fill .card .card-footer .read-more:hover {
  color: #E21936;
  color: var(--red);
}
div .editor-styles-wrapper .acf-block-preview .card-grid-fill .card .card-footer .read-more:hover:after {
  transform: translateX(5px);
}
div .editor-styles-wrapper .acf-block-preview .flex-card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: -15px;
  margin-right: -15px;
}
div .editor-styles-wrapper .acf-block-preview .flex-card-grid > * {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: calc(320px);
  margin: 0 15px 30px 15px;
}
div .editor-styles-wrapper .acf-block-preview .flex-card-grid.no-gutters {
  margin-left: 0;
  margin-right: 0;
}
div .editor-styles-wrapper .acf-block-preview .flex-card-grid.no-gutters > * {
  margin: 0;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  div .editor-styles-wrapper .acf-block-preview .flex-card-grid > * {
    flex-basis: auto;
    min-width: calc(320px);
  }
}
div .editor-styles-wrapper .acf-block-preview .no-gutters {
  grid-gap: 0;
}
div .editor-styles-wrapper .acf-block-preview .grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(1px, 1fr));
  grid-gap: min(30px, 8.3333333333%);
  grid-gap: min(var(--grid-gap), 8.3333333333%);
}
div .editor-styles-wrapper .acf-block-preview div .grid .span-1, div .editor-styles-wrapper .acf-block-preview .grid.span-all-1 > * {
  grid-column: span 1;
}
div .editor-styles-wrapper .acf-block-preview div .grid .span-2, div .editor-styles-wrapper .acf-block-preview .grid.span-all-2 > * {
  grid-column: span 2;
}
div .editor-styles-wrapper .acf-block-preview div .grid .span-3, div .editor-styles-wrapper .acf-block-preview .grid.span-all-3 > * {
  grid-column: span 3;
}
div .editor-styles-wrapper .acf-block-preview div .grid .span-4, div .editor-styles-wrapper .acf-block-preview .grid.span-all-4 > * {
  grid-column: span 4;
}
div .editor-styles-wrapper .acf-block-preview div .grid .span-5, div .editor-styles-wrapper .acf-block-preview .grid.span-all-5 > * {
  grid-column: span 5;
}
div .editor-styles-wrapper .acf-block-preview div .grid .span-6, div .editor-styles-wrapper .acf-block-preview .grid.span-all-6 > * {
  grid-column: span 6;
}
div .editor-styles-wrapper .acf-block-preview div .grid .span-7, div .editor-styles-wrapper .acf-block-preview .grid.span-all-7 > * {
  grid-column: span 7;
}
div .editor-styles-wrapper .acf-block-preview div .grid .span-8, div .editor-styles-wrapper .acf-block-preview .grid.span-all-8 > * {
  grid-column: span 8;
}
div .editor-styles-wrapper .acf-block-preview div .grid .span-9, div .editor-styles-wrapper .acf-block-preview .grid.span-all-9 > * {
  grid-column: span 9;
}
div .editor-styles-wrapper .acf-block-preview div .grid .span-10, div .editor-styles-wrapper .acf-block-preview .grid.span-all-10 > * {
  grid-column: span 10;
}
div .editor-styles-wrapper .acf-block-preview div .grid .span-11, div .editor-styles-wrapper .acf-block-preview .grid.span-all-11 > * {
  grid-column: span 11;
}
div .editor-styles-wrapper .acf-block-preview div .grid .span-12, div .editor-styles-wrapper .acf-block-preview .grid.span-all-12 > * {
  grid-column: span 12;
}
div .editor-styles-wrapper .acf-block-preview .span-full {
  grid-column: 1/-1;
  flex-basis: 100%;
}
@media (max-width: 1320px) {
  div .editor-styles-wrapper .acf-block-preview div .grid > .container-span-1, div .editor-styles-wrapper .acf-block-preview .grid.container-span-all-1 > * {
    grid-column: span 1;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .container-span-2, div .editor-styles-wrapper .acf-block-preview .grid.container-span-all-2 > * {
    grid-column: span 2;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .container-span-3, div .editor-styles-wrapper .acf-block-preview .grid.container-span-all-3 > * {
    grid-column: span 3;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .container-span-4, div .editor-styles-wrapper .acf-block-preview .grid.container-span-all-4 > * {
    grid-column: span 4;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .container-span-5, div .editor-styles-wrapper .acf-block-preview .grid.container-span-all-5 > * {
    grid-column: span 5;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .container-span-6, div .editor-styles-wrapper .acf-block-preview .grid.container-span-all-6 > * {
    grid-column: span 6;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .container-span-7, div .editor-styles-wrapper .acf-block-preview .grid.container-span-all-7 > * {
    grid-column: span 7;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .container-span-8, div .editor-styles-wrapper .acf-block-preview .grid.container-span-all-8 > * {
    grid-column: span 8;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .container-span-9, div .editor-styles-wrapper .acf-block-preview .grid.container-span-all-9 > * {
    grid-column: span 9;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .container-span-10, div .editor-styles-wrapper .acf-block-preview .grid.container-span-all-10 > * {
    grid-column: span 10;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .container-span-11, div .editor-styles-wrapper .acf-block-preview .grid.container-span-all-11 > * {
    grid-column: span 11;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .container-span-12, div .editor-styles-wrapper .acf-block-preview .grid.container-span-all-12 > * {
    grid-column: span 12;
  }
}
@media (max-width: 1030px) {
  div .editor-styles-wrapper .acf-block-preview div .grid > .large-span-1, div .editor-styles-wrapper .acf-block-preview .grid.large-span-all-1 > * {
    grid-column: span 1;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .large-span-2, div .editor-styles-wrapper .acf-block-preview .grid.large-span-all-2 > * {
    grid-column: span 2;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .large-span-3, div .editor-styles-wrapper .acf-block-preview .grid.large-span-all-3 > * {
    grid-column: span 3;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .large-span-4, div .editor-styles-wrapper .acf-block-preview .grid.large-span-all-4 > * {
    grid-column: span 4;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .large-span-5, div .editor-styles-wrapper .acf-block-preview .grid.large-span-all-5 > * {
    grid-column: span 5;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .large-span-6, div .editor-styles-wrapper .acf-block-preview .grid.large-span-all-6 > * {
    grid-column: span 6;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .large-span-7, div .editor-styles-wrapper .acf-block-preview .grid.large-span-all-7 > * {
    grid-column: span 7;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .large-span-8, div .editor-styles-wrapper .acf-block-preview .grid.large-span-all-8 > * {
    grid-column: span 8;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .large-span-9, div .editor-styles-wrapper .acf-block-preview .grid.large-span-all-9 > * {
    grid-column: span 9;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .large-span-10, div .editor-styles-wrapper .acf-block-preview .grid.large-span-all-10 > * {
    grid-column: span 10;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .large-span-11, div .editor-styles-wrapper .acf-block-preview .grid.large-span-all-11 > * {
    grid-column: span 11;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .large-span-12, div .editor-styles-wrapper .acf-block-preview .grid.large-span-all-12 > * {
    grid-column: span 12;
  }
}
@media (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview div .grid > .medium-span-1, div .editor-styles-wrapper .acf-block-preview .grid.medium-span-all-1 > * {
    grid-column: span 1;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .medium-span-2, div .editor-styles-wrapper .acf-block-preview .grid.medium-span-all-2 > * {
    grid-column: span 2;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .medium-span-3, div .editor-styles-wrapper .acf-block-preview .grid.medium-span-all-3 > * {
    grid-column: span 3;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .medium-span-4, div .editor-styles-wrapper .acf-block-preview .grid.medium-span-all-4 > * {
    grid-column: span 4;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .medium-span-5, div .editor-styles-wrapper .acf-block-preview .grid.medium-span-all-5 > * {
    grid-column: span 5;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .medium-span-6, div .editor-styles-wrapper .acf-block-preview .grid.medium-span-all-6 > * {
    grid-column: span 6;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .medium-span-7, div .editor-styles-wrapper .acf-block-preview .grid.medium-span-all-7 > * {
    grid-column: span 7;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .medium-span-8, div .editor-styles-wrapper .acf-block-preview .grid.medium-span-all-8 > * {
    grid-column: span 8;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .medium-span-9, div .editor-styles-wrapper .acf-block-preview .grid.medium-span-all-9 > * {
    grid-column: span 9;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .medium-span-10, div .editor-styles-wrapper .acf-block-preview .grid.medium-span-all-10 > * {
    grid-column: span 10;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .medium-span-11, div .editor-styles-wrapper .acf-block-preview .grid.medium-span-all-11 > * {
    grid-column: span 11;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .medium-span-12, div .editor-styles-wrapper .acf-block-preview .grid.medium-span-all-12 > * {
    grid-column: span 12;
  }
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview div.site .grid > * {
    grid-column: 1/-1;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .small-span-1, div .editor-styles-wrapper .acf-block-preview div .grid.small-span-all-1 > * {
    grid-column: span 1;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .small-span-2, div .editor-styles-wrapper .acf-block-preview div .grid.small-span-all-2 > * {
    grid-column: span 2;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .small-span-3, div .editor-styles-wrapper .acf-block-preview div .grid.small-span-all-3 > * {
    grid-column: span 3;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .small-span-4, div .editor-styles-wrapper .acf-block-preview div .grid.small-span-all-4 > * {
    grid-column: span 4;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .small-span-5, div .editor-styles-wrapper .acf-block-preview div .grid.small-span-all-5 > * {
    grid-column: span 5;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .small-span-6, div .editor-styles-wrapper .acf-block-preview div .grid.small-span-all-6 > * {
    grid-column: span 6;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .small-span-7, div .editor-styles-wrapper .acf-block-preview div .grid.small-span-all-7 > * {
    grid-column: span 7;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .small-span-8, div .editor-styles-wrapper .acf-block-preview div .grid.small-span-all-8 > * {
    grid-column: span 8;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .small-span-9, div .editor-styles-wrapper .acf-block-preview div .grid.small-span-all-9 > * {
    grid-column: span 9;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .small-span-10, div .editor-styles-wrapper .acf-block-preview div .grid.small-span-all-10 > * {
    grid-column: span 10;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .small-span-11, div .editor-styles-wrapper .acf-block-preview div .grid.small-span-all-11 > * {
    grid-column: span 11;
  }
  div .editor-styles-wrapper .acf-block-preview div .grid > .small-span-12, div .editor-styles-wrapper .acf-block-preview div .grid.small-span-all-12 > * {
    grid-column: span 12;
  }
}
div .editor-styles-wrapper .acf-block-preview .container.flex:not(.no-gutters), div .editor-styles-wrapper .acf-block-preview .container-fluid.flex:not(.no-gutters), div .editor-styles-wrapper .acf-block-preview .container-content.flex:not(.no-gutters) {
  padding: 0 calc(30px / 2);
  padding: 0 calc(var(--container-padding) / 2);
  margin: auto;
}
div .editor-styles-wrapper .acf-block-preview .container.flex.no-gutters, div .editor-styles-wrapper .acf-block-preview .container-fluid.flex.no-gutters, div .editor-styles-wrapper .acf-block-preview .container-content.flex.no-gutters {
  margin: auto;
}
div .editor-styles-wrapper .acf-block-preview .container-left.flex:not(.no-gutters) {
  padding-right: calc(30px / 2);
  padding-right: calc(var(--container-padding) / 2);
  margin: 0 auto 0 0;
}
div .editor-styles-wrapper .acf-block-preview .container-left.flex.no-gutters {
  margin: 0 auto 0 0;
}
div .editor-styles-wrapper .acf-block-preview .container-right.flex:not(.no-gutters) {
  padding-left: calc(30px / 2);
  padding-left: calc(var(--container-padding) / 2);
  margin: 0 0 0 auto;
}
div .editor-styles-wrapper .acf-block-preview .container-right.flex.no-gutters {
  margin: 0 0 0 auto;
}
div .editor-styles-wrapper .acf-block-preview .flex, div .editor-styles-wrapper .acf-block-preview .flex-grid {
  display: flex;
  margin-left: calc(-1 * calc(30px / 2));
  margin-left: calc(-1 * var(--flex-gap));
  margin-right: calc(-1 * calc(30px / 2));
  margin-right: calc(-1 * var(--flex-gap));
}
div .editor-styles-wrapper .acf-block-preview .flex > *, div .editor-styles-wrapper .acf-block-preview .flex-grid > * {
  margin-right: calc(30px / 2);
  margin-right: var(--flex-gap);
  margin-left: calc(30px / 2);
  margin-left: var(--flex-gap);
  flex: 1;
}
div .editor-styles-wrapper .acf-block-preview .flex > .no-gutters, div .editor-styles-wrapper .acf-block-preview .flex-grid > .no-gutters {
  margin-left: 0;
  margin-right: 0;
}
div .editor-styles-wrapper .acf-block-preview div .flex .span-1, div .editor-styles-wrapper .acf-block-preview .flex.span-all-1 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-1, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-1 > * {
  flex-basis: calc(8.3333333333% - 30px);
  flex-basis: calc(8.3333333333% - var(--grid-gap));
}
div .editor-styles-wrapper .acf-block-preview div .flex > .span-1, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-1 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .editor-styles-wrapper .acf-block-preview div .flex .span-2, div .editor-styles-wrapper .acf-block-preview .flex.span-all-2 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-2, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-2 > * {
  flex-basis: calc(16.6666666667% - 30px);
  flex-basis: calc(16.6666666667% - var(--grid-gap));
}
div .editor-styles-wrapper .acf-block-preview div .flex > .span-2, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-2 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .editor-styles-wrapper .acf-block-preview div .flex .span-3, div .editor-styles-wrapper .acf-block-preview .flex.span-all-3 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-3, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-3 > * {
  flex-basis: calc(25% - 30px);
  flex-basis: calc(25% - var(--grid-gap));
}
div .editor-styles-wrapper .acf-block-preview div .flex > .span-3, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-3 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .editor-styles-wrapper .acf-block-preview div .flex .span-4, div .editor-styles-wrapper .acf-block-preview .flex.span-all-4 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-4, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-4 > * {
  flex-basis: calc(33.3333333333% - 30px);
  flex-basis: calc(33.3333333333% - var(--grid-gap));
}
div .editor-styles-wrapper .acf-block-preview div .flex > .span-4, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-4 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .editor-styles-wrapper .acf-block-preview div .flex .span-5, div .editor-styles-wrapper .acf-block-preview .flex.span-all-5 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-5, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-5 > * {
  flex-basis: calc(41.6666666667% - 30px);
  flex-basis: calc(41.6666666667% - var(--grid-gap));
}
div .editor-styles-wrapper .acf-block-preview div .flex > .span-5, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-5 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .editor-styles-wrapper .acf-block-preview div .flex .span-6, div .editor-styles-wrapper .acf-block-preview .flex.span-all-6 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-6, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-6 > * {
  flex-basis: calc(50% - 30px);
  flex-basis: calc(50% - var(--grid-gap));
}
div .editor-styles-wrapper .acf-block-preview div .flex > .span-6, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-6 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .editor-styles-wrapper .acf-block-preview div .flex .span-7, div .editor-styles-wrapper .acf-block-preview .flex.span-all-7 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-7, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-7 > * {
  flex-basis: calc(58.3333333333% - 30px);
  flex-basis: calc(58.3333333333% - var(--grid-gap));
}
div .editor-styles-wrapper .acf-block-preview div .flex > .span-7, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-7 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .editor-styles-wrapper .acf-block-preview div .flex .span-8, div .editor-styles-wrapper .acf-block-preview .flex.span-all-8 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-8, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-8 > * {
  flex-basis: calc(66.6666666667% - 30px);
  flex-basis: calc(66.6666666667% - var(--grid-gap));
}
div .editor-styles-wrapper .acf-block-preview div .flex > .span-8, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-8 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .editor-styles-wrapper .acf-block-preview div .flex .span-9, div .editor-styles-wrapper .acf-block-preview .flex.span-all-9 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-9, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-9 > * {
  flex-basis: calc(75% - 30px);
  flex-basis: calc(75% - var(--grid-gap));
}
div .editor-styles-wrapper .acf-block-preview div .flex > .span-9, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-9 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .editor-styles-wrapper .acf-block-preview div .flex .span-10, div .editor-styles-wrapper .acf-block-preview .flex.span-all-10 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-10, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-10 > * {
  flex-basis: calc(83.3333333333% - 30px);
  flex-basis: calc(83.3333333333% - var(--grid-gap));
}
div .editor-styles-wrapper .acf-block-preview div .flex > .span-10, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-10 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .editor-styles-wrapper .acf-block-preview div .flex .span-11, div .editor-styles-wrapper .acf-block-preview .flex.span-all-11 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-11, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-11 > * {
  flex-basis: calc(91.6666666667% - 30px);
  flex-basis: calc(91.6666666667% - var(--grid-gap));
}
div .editor-styles-wrapper .acf-block-preview div .flex > .span-11, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-11 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .editor-styles-wrapper .acf-block-preview div .flex .span-12, div .editor-styles-wrapper .acf-block-preview .flex.span-all-12 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-12, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-12 > * {
  flex-basis: calc(100% - 30px);
  flex-basis: calc(100% - var(--grid-gap));
}
div .editor-styles-wrapper .acf-block-preview div .flex > .span-12, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-12 {
  flex-grow: 0;
  flex-shrink: 0;
}
div .editor-styles-wrapper .acf-block-preview .flex.no-gutters, div .editor-styles-wrapper .acf-block-preview .flex-grid.no-gutters {
  margin-left: 0;
  margin-right: 0;
}
div .editor-styles-wrapper .acf-block-preview .flex.no-gutters > *, div .editor-styles-wrapper .acf-block-preview .flex-grid.no-gutters > * {
  margin: 0;
  --grid-gap: 0px;
}
div .editor-styles-wrapper .acf-block-preview .flex-grid {
  flex-wrap: wrap;
}
div .editor-styles-wrapper .acf-block-preview .flex-grid > * {
  margin-bottom: 30px;
  margin-bottom: var(--grid-gap);
}
div .editor-styles-wrapper .acf-block-preview #page .no-wrap {
  flex-wrap: nowrap;
}
@media (max-width: 1320px) {
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-1, div .editor-styles-wrapper .acf-block-preview .flex-grid.container-span-all-1 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-1, div .editor-styles-wrapper .acf-block-preview .flex.container-span-all-1 > * {
    flex-basis: calc(8.3333333333% - 30px);
    flex-basis: calc(8.3333333333% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-1, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-1 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-2, div .editor-styles-wrapper .acf-block-preview .flex-grid.container-span-all-2 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-2, div .editor-styles-wrapper .acf-block-preview .flex.container-span-all-2 > * {
    flex-basis: calc(16.6666666667% - 30px);
    flex-basis: calc(16.6666666667% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-2, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-2 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-3, div .editor-styles-wrapper .acf-block-preview .flex-grid.container-span-all-3 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-3, div .editor-styles-wrapper .acf-block-preview .flex.container-span-all-3 > * {
    flex-basis: calc(25% - 30px);
    flex-basis: calc(25% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-3, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-3 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-4, div .editor-styles-wrapper .acf-block-preview .flex-grid.container-span-all-4 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-4, div .editor-styles-wrapper .acf-block-preview .flex.container-span-all-4 > * {
    flex-basis: calc(33.3333333333% - 30px);
    flex-basis: calc(33.3333333333% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-4, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-4 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-5, div .editor-styles-wrapper .acf-block-preview .flex-grid.container-span-all-5 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-5, div .editor-styles-wrapper .acf-block-preview .flex.container-span-all-5 > * {
    flex-basis: calc(41.6666666667% - 30px);
    flex-basis: calc(41.6666666667% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-5, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-5 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-6, div .editor-styles-wrapper .acf-block-preview .flex-grid.container-span-all-6 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-6, div .editor-styles-wrapper .acf-block-preview .flex.container-span-all-6 > * {
    flex-basis: calc(50% - 30px);
    flex-basis: calc(50% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-6, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-6 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-7, div .editor-styles-wrapper .acf-block-preview .flex-grid.container-span-all-7 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-7, div .editor-styles-wrapper .acf-block-preview .flex.container-span-all-7 > * {
    flex-basis: calc(58.3333333333% - 30px);
    flex-basis: calc(58.3333333333% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-7, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-7 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-8, div .editor-styles-wrapper .acf-block-preview .flex-grid.container-span-all-8 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-8, div .editor-styles-wrapper .acf-block-preview .flex.container-span-all-8 > * {
    flex-basis: calc(66.6666666667% - 30px);
    flex-basis: calc(66.6666666667% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-8, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-8 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-9, div .editor-styles-wrapper .acf-block-preview .flex-grid.container-span-all-9 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-9, div .editor-styles-wrapper .acf-block-preview .flex.container-span-all-9 > * {
    flex-basis: calc(75% - 30px);
    flex-basis: calc(75% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-9, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-9 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-10, div .editor-styles-wrapper .acf-block-preview .flex-grid.container-span-all-10 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-10, div .editor-styles-wrapper .acf-block-preview .flex.container-span-all-10 > * {
    flex-basis: calc(83.3333333333% - 30px);
    flex-basis: calc(83.3333333333% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-10, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-10 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-11, div .editor-styles-wrapper .acf-block-preview .flex-grid.container-span-all-11 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-11, div .editor-styles-wrapper .acf-block-preview .flex.container-span-all-11 > * {
    flex-basis: calc(91.6666666667% - 30px);
    flex-basis: calc(91.6666666667% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-11, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-11 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-12, div .editor-styles-wrapper .acf-block-preview .flex-grid.container-span-all-12 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-12, div .editor-styles-wrapper .acf-block-preview .flex.container-span-all-12 > * {
    flex-basis: calc(100% - 30px);
    flex-basis: calc(100% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .container-span-12, div .editor-styles-wrapper .acf-block-preview div .flex > .container-span-12 {
    flex-grow: 0;
    flex-shrink: 0;
  }
}
@media (max-width: 1030px) {
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-1, div .editor-styles-wrapper .acf-block-preview .flex-grid.large-span-all-1 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-1, div .editor-styles-wrapper .acf-block-preview .flex.large-span-all-1 > * {
    flex-basis: calc(8.3333333333% - 30px);
    flex-basis: calc(8.3333333333% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-1, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-1 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-2, div .editor-styles-wrapper .acf-block-preview .flex-grid.large-span-all-2 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-2, div .editor-styles-wrapper .acf-block-preview .flex.large-span-all-2 > * {
    flex-basis: calc(16.6666666667% - 30px);
    flex-basis: calc(16.6666666667% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-2, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-2 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-3, div .editor-styles-wrapper .acf-block-preview .flex-grid.large-span-all-3 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-3, div .editor-styles-wrapper .acf-block-preview .flex.large-span-all-3 > * {
    flex-basis: calc(25% - 30px);
    flex-basis: calc(25% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-3, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-3 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-4, div .editor-styles-wrapper .acf-block-preview .flex-grid.large-span-all-4 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-4, div .editor-styles-wrapper .acf-block-preview .flex.large-span-all-4 > * {
    flex-basis: calc(33.3333333333% - 30px);
    flex-basis: calc(33.3333333333% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-4, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-4 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-5, div .editor-styles-wrapper .acf-block-preview .flex-grid.large-span-all-5 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-5, div .editor-styles-wrapper .acf-block-preview .flex.large-span-all-5 > * {
    flex-basis: calc(41.6666666667% - 30px);
    flex-basis: calc(41.6666666667% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-5, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-5 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-6, div .editor-styles-wrapper .acf-block-preview .flex-grid.large-span-all-6 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-6, div .editor-styles-wrapper .acf-block-preview .flex.large-span-all-6 > * {
    flex-basis: calc(50% - 30px);
    flex-basis: calc(50% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-6, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-6 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-7, div .editor-styles-wrapper .acf-block-preview .flex-grid.large-span-all-7 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-7, div .editor-styles-wrapper .acf-block-preview .flex.large-span-all-7 > * {
    flex-basis: calc(58.3333333333% - 30px);
    flex-basis: calc(58.3333333333% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-7, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-7 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-8, div .editor-styles-wrapper .acf-block-preview .flex-grid.large-span-all-8 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-8, div .editor-styles-wrapper .acf-block-preview .flex.large-span-all-8 > * {
    flex-basis: calc(66.6666666667% - 30px);
    flex-basis: calc(66.6666666667% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-8, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-8 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-9, div .editor-styles-wrapper .acf-block-preview .flex-grid.large-span-all-9 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-9, div .editor-styles-wrapper .acf-block-preview .flex.large-span-all-9 > * {
    flex-basis: calc(75% - 30px);
    flex-basis: calc(75% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-9, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-9 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-10, div .editor-styles-wrapper .acf-block-preview .flex-grid.large-span-all-10 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-10, div .editor-styles-wrapper .acf-block-preview .flex.large-span-all-10 > * {
    flex-basis: calc(83.3333333333% - 30px);
    flex-basis: calc(83.3333333333% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-10, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-10 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-11, div .editor-styles-wrapper .acf-block-preview .flex-grid.large-span-all-11 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-11, div .editor-styles-wrapper .acf-block-preview .flex.large-span-all-11 > * {
    flex-basis: calc(91.6666666667% - 30px);
    flex-basis: calc(91.6666666667% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-11, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-11 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-12, div .editor-styles-wrapper .acf-block-preview .flex-grid.large-span-all-12 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-12, div .editor-styles-wrapper .acf-block-preview .flex.large-span-all-12 > * {
    flex-basis: calc(100% - 30px);
    flex-basis: calc(100% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .large-span-12, div .editor-styles-wrapper .acf-block-preview div .flex > .large-span-12 {
    flex-grow: 0;
    flex-shrink: 0;
  }
}
@media (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-1, div .editor-styles-wrapper .acf-block-preview .flex-grid.medium-span-all-1 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-1, div .editor-styles-wrapper .acf-block-preview .flex.medium-span-all-1 > * {
    flex-basis: calc(8.3333333333% - 30px);
    flex-basis: calc(8.3333333333% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-1, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-1 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-2, div .editor-styles-wrapper .acf-block-preview .flex-grid.medium-span-all-2 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-2, div .editor-styles-wrapper .acf-block-preview .flex.medium-span-all-2 > * {
    flex-basis: calc(16.6666666667% - 30px);
    flex-basis: calc(16.6666666667% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-2, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-2 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-3, div .editor-styles-wrapper .acf-block-preview .flex-grid.medium-span-all-3 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-3, div .editor-styles-wrapper .acf-block-preview .flex.medium-span-all-3 > * {
    flex-basis: calc(25% - 30px);
    flex-basis: calc(25% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-3, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-3 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-4, div .editor-styles-wrapper .acf-block-preview .flex-grid.medium-span-all-4 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-4, div .editor-styles-wrapper .acf-block-preview .flex.medium-span-all-4 > * {
    flex-basis: calc(33.3333333333% - 30px);
    flex-basis: calc(33.3333333333% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-4, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-4 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-5, div .editor-styles-wrapper .acf-block-preview .flex-grid.medium-span-all-5 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-5, div .editor-styles-wrapper .acf-block-preview .flex.medium-span-all-5 > * {
    flex-basis: calc(41.6666666667% - 30px);
    flex-basis: calc(41.6666666667% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-5, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-5 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-6, div .editor-styles-wrapper .acf-block-preview .flex-grid.medium-span-all-6 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-6, div .editor-styles-wrapper .acf-block-preview .flex.medium-span-all-6 > * {
    flex-basis: calc(50% - 30px);
    flex-basis: calc(50% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-6, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-6 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-7, div .editor-styles-wrapper .acf-block-preview .flex-grid.medium-span-all-7 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-7, div .editor-styles-wrapper .acf-block-preview .flex.medium-span-all-7 > * {
    flex-basis: calc(58.3333333333% - 30px);
    flex-basis: calc(58.3333333333% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-7, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-7 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-8, div .editor-styles-wrapper .acf-block-preview .flex-grid.medium-span-all-8 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-8, div .editor-styles-wrapper .acf-block-preview .flex.medium-span-all-8 > * {
    flex-basis: calc(66.6666666667% - 30px);
    flex-basis: calc(66.6666666667% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-8, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-8 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-9, div .editor-styles-wrapper .acf-block-preview .flex-grid.medium-span-all-9 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-9, div .editor-styles-wrapper .acf-block-preview .flex.medium-span-all-9 > * {
    flex-basis: calc(75% - 30px);
    flex-basis: calc(75% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-9, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-9 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-10, div .editor-styles-wrapper .acf-block-preview .flex-grid.medium-span-all-10 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-10, div .editor-styles-wrapper .acf-block-preview .flex.medium-span-all-10 > * {
    flex-basis: calc(83.3333333333% - 30px);
    flex-basis: calc(83.3333333333% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-10, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-10 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-11, div .editor-styles-wrapper .acf-block-preview .flex-grid.medium-span-all-11 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-11, div .editor-styles-wrapper .acf-block-preview .flex.medium-span-all-11 > * {
    flex-basis: calc(91.6666666667% - 30px);
    flex-basis: calc(91.6666666667% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-11, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-11 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-12, div .editor-styles-wrapper .acf-block-preview .flex-grid.medium-span-all-12 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-12, div .editor-styles-wrapper .acf-block-preview .flex.medium-span-all-12 > * {
    flex-basis: calc(100% - 30px);
    flex-basis: calc(100% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .medium-span-12, div .editor-styles-wrapper .acf-block-preview div .flex > .medium-span-12 {
    flex-grow: 0;
    flex-shrink: 0;
  }
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .flex-grid, div .editor-styles-wrapper .acf-block-preview .flex {
    flex-wrap: wrap;
  }
  div .editor-styles-wrapper .acf-block-preview div.site .flex-grid > *, div .editor-styles-wrapper .acf-block-preview div.site .flex > * {
    flex-basis: calc(100% - 30px);
    flex-basis: calc(100% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-1, div .editor-styles-wrapper .acf-block-preview div .flex-grid.small-span-all-1 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-1, div .editor-styles-wrapper .acf-block-preview div .flex.small-span-all-1 > * {
    flex-basis: calc(8.3333333333% - 30px);
    flex-basis: calc(8.3333333333% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-1, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-1 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-2, div .editor-styles-wrapper .acf-block-preview div .flex-grid.small-span-all-2 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-2, div .editor-styles-wrapper .acf-block-preview div .flex.small-span-all-2 > * {
    flex-basis: calc(16.6666666667% - 30px);
    flex-basis: calc(16.6666666667% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-2, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-2 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-3, div .editor-styles-wrapper .acf-block-preview div .flex-grid.small-span-all-3 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-3, div .editor-styles-wrapper .acf-block-preview div .flex.small-span-all-3 > * {
    flex-basis: calc(25% - 30px);
    flex-basis: calc(25% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-3, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-3 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-4, div .editor-styles-wrapper .acf-block-preview div .flex-grid.small-span-all-4 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-4, div .editor-styles-wrapper .acf-block-preview div .flex.small-span-all-4 > * {
    flex-basis: calc(33.3333333333% - 30px);
    flex-basis: calc(33.3333333333% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-4, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-4 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-5, div .editor-styles-wrapper .acf-block-preview div .flex-grid.small-span-all-5 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-5, div .editor-styles-wrapper .acf-block-preview div .flex.small-span-all-5 > * {
    flex-basis: calc(41.6666666667% - 30px);
    flex-basis: calc(41.6666666667% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-5, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-5 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-6, div .editor-styles-wrapper .acf-block-preview div .flex-grid.small-span-all-6 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-6, div .editor-styles-wrapper .acf-block-preview div .flex.small-span-all-6 > * {
    flex-basis: calc(50% - 30px);
    flex-basis: calc(50% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-6, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-6 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-7, div .editor-styles-wrapper .acf-block-preview div .flex-grid.small-span-all-7 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-7, div .editor-styles-wrapper .acf-block-preview div .flex.small-span-all-7 > * {
    flex-basis: calc(58.3333333333% - 30px);
    flex-basis: calc(58.3333333333% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-7, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-7 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-8, div .editor-styles-wrapper .acf-block-preview div .flex-grid.small-span-all-8 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-8, div .editor-styles-wrapper .acf-block-preview div .flex.small-span-all-8 > * {
    flex-basis: calc(66.6666666667% - 30px);
    flex-basis: calc(66.6666666667% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-8, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-8 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-9, div .editor-styles-wrapper .acf-block-preview div .flex-grid.small-span-all-9 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-9, div .editor-styles-wrapper .acf-block-preview div .flex.small-span-all-9 > * {
    flex-basis: calc(75% - 30px);
    flex-basis: calc(75% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-9, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-9 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-10, div .editor-styles-wrapper .acf-block-preview div .flex-grid.small-span-all-10 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-10, div .editor-styles-wrapper .acf-block-preview div .flex.small-span-all-10 > * {
    flex-basis: calc(83.3333333333% - 30px);
    flex-basis: calc(83.3333333333% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-10, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-10 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-11, div .editor-styles-wrapper .acf-block-preview div .flex-grid.small-span-all-11 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-11, div .editor-styles-wrapper .acf-block-preview div .flex.small-span-all-11 > * {
    flex-basis: calc(91.6666666667% - 30px);
    flex-basis: calc(91.6666666667% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-11, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-11 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-12, div .editor-styles-wrapper .acf-block-preview div .flex-grid.small-span-all-12 > *, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-12, div .editor-styles-wrapper .acf-block-preview div .flex.small-span-all-12 > * {
    flex-basis: calc(100% - 30px);
    flex-basis: calc(100% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div .flex-grid > .small-span-12, div .editor-styles-wrapper .acf-block-preview div .flex > .small-span-12 {
    flex-grow: 0;
    flex-shrink: 0;
  }
}
div .editor-styles-wrapper .acf-block-preview .site .flex.stay-flexed > * {
  flex-basis: auto;
}
@media (max-width: 1320px) {
  div .editor-styles-wrapper .acf-block-preview .hide-on-container {
    display: none;
  }
}
@media (max-width: 1030px) {
  div .editor-styles-wrapper .acf-block-preview .hide-on-large {
    display: none;
  }
}
@media (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview .hide-on-medium {
    display: none;
  }
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .hide-on-small {
    display: none;
  }
}
div .editor-styles-wrapper .acf-block-preview .align-center {
  align-items: center;
}
div .editor-styles-wrapper .acf-block-preview .justify-center {
  justify-content: center;
}
div .editor-styles-wrapper .acf-block-preview .flex-wrap {
  flex-wrap: wrap;
}
div .editor-styles-wrapper .acf-block-preview .flex-column {
  flex-direction: column;
}
div .editor-styles-wrapper .acf-block-preview .flex-grow {
  flex-grow: 1;
}
div .editor-styles-wrapper .acf-block-preview .space-between {
  justify-content: space-between;
}
div .editor-styles-wrapper .acf-block-preview .layout-center-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
div .editor-styles-wrapper .acf-block-preview .layout-cards-7 > * {
  grid-column: span 4;
}
div .editor-styles-wrapper .acf-block-preview .layout-cards-7 > * .hide-on-small-card {
  display: none;
}
div .editor-styles-wrapper .acf-block-preview .layout-cards-7 > *:nth-child(7n-3), div .editor-styles-wrapper .acf-block-preview .layout-cards-7 > *:nth-child(7n-6) {
  grid-column: span 8;
}
div .editor-styles-wrapper .acf-block-preview .layout-cards-7 > *:nth-child(7n-3) .hide-on-small-card, div .editor-styles-wrapper .acf-block-preview .layout-cards-7 > *:nth-child(7n-6) .hide-on-small-card {
  display: block;
}
@media all and (-ms-high-contrast: none) {
  div .editor-styles-wrapper .acf-block-preview .layout-cards-7 > * {
    width: calc(33.333% - 30px);
    width: calc(33.333% - var(--gap));
  }
  div .editor-styles-wrapper .acf-block-preview .layout-cards-7 > * .hide-on-small-card {
    display: none;
  }
  div .editor-styles-wrapper .acf-block-preview .layout-cards-7 > *:nth-child(7n-3), div .editor-styles-wrapper .acf-block-preview .layout-cards-7 > *:nth-child(7n-6) {
    width: calc(66.66666% - 30px);
    width: calc(66.66666% - var(--gap));
  }
  div .editor-styles-wrapper .acf-block-preview .layout-cards-7 > *:nth-child(7n-3) .hide-on-small-card, div .editor-styles-wrapper .acf-block-preview .layout-cards-7 > *:nth-child(7n-6) .hide-on-small-card {
    display: block;
  }
}
div .editor-styles-wrapper .acf-block-preview .menu,
div .editor-styles-wrapper .acf-block-preview .menu > ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
div .editor-styles-wrapper .acf-block-preview .no-js .menu-item[focus-within] > .sub-menu {
  display: block !important;
}
div .editor-styles-wrapper .acf-block-preview .no-js .menu-item:focus-within > .sub-menu {
  display: block !important;
}
div .editor-styles-wrapper .acf-block-preview .menu,
div .editor-styles-wrapper .acf-block-preview .menu > ul {
  display: flex;
  flex-direction: column;
}
div .editor-styles-wrapper .acf-block-preview .menu li,
div .editor-styles-wrapper .acf-block-preview .menu > ul li {
  position: relative;
  margin: 0;
}
div .editor-styles-wrapper .acf-block-preview .menu li .menu-item-link,
div .editor-styles-wrapper .acf-block-preview .menu > ul li .menu-item-link {
  padding: 15px 10px;
  display: flex;
  align-items: flex-start;
  transition: all 0.5s;
}
div .editor-styles-wrapper .acf-block-preview .menu li .menu-item-link a,
div .editor-styles-wrapper .acf-block-preview .menu > ul li .menu-item-link a {
  padding: 0;
}
div .editor-styles-wrapper .acf-block-preview .menu li a,
div .editor-styles-wrapper .acf-block-preview .menu > ul li a {
  text-decoration: none;
  outline: none;
  color: inherit;
  cursor: pointer;
  display: block;
  flex-grow: 1;
  flex-shrink: 0;
  font-size: inherit;
}
div .editor-styles-wrapper .acf-block-preview .menu li .submenu-dropdown-toggle,
div .editor-styles-wrapper .acf-block-preview .menu > ul li .submenu-dropdown-toggle {
  padding-left: 10px;
  padding-right: 0;
  display: inline-block;
  color: inherit;
  text-align: right;
}
div .editor-styles-wrapper .acf-block-preview .menu .sub-menu, div .editor-styles-wrapper .acf-block-preview .menu .children,
div .editor-styles-wrapper .acf-block-preview .menu > ul .sub-menu,
div .editor-styles-wrapper .acf-block-preview .menu > ul .children {
  list-style: none;
  margin: 0;
  display: none;
  overflow: hidden;
  width: auto;
  white-space: nowrap;
  padding: 0;
}
div .editor-styles-wrapper .acf-block-preview .menu .sub-menu .menu-item-link, div .editor-styles-wrapper .acf-block-preview .menu .children .menu-item-link,
div .editor-styles-wrapper .acf-block-preview .menu > ul .sub-menu .menu-item-link,
div .editor-styles-wrapper .acf-block-preview .menu > ul .children .menu-item-link {
  padding-left: 30px;
}
div .editor-styles-wrapper .acf-block-preview .menu .current-menu-item > .sub-menu,
div .editor-styles-wrapper .acf-block-preview .menu > ul .current-menu-item > .sub-menu {
  display: block;
}
@media (min-width: 900px) {
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu,
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu > ul {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: row;
    height: 100%;
  }
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item .menu-item-link,
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu > ul .top-level-item .menu-item-link {
    display: flex;
    height: 100%;
    align-items: center;
    align-items: var(--desktop-menu-alignment);
  }
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item > .sub-menu, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item > .children,
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu > ul .top-level-item > .sub-menu,
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu > ul .top-level-item > .children {
    position: absolute;
    z-index: 10;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
  }
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item > .sub-menu a, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item > .children a,
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu > ul .top-level-item > .sub-menu a,
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu > ul .top-level-item > .children a {
    flex-shrink: 1;
  }
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .sub-menu .menu-item-link,
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu > ul .sub-menu .menu-item-link {
    padding: 3px 15px;
  }
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .sub-menu .sub-menu,
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu > ul .sub-menu .sub-menu {
    display: none;
    position: relative;
    padding: 0;
    transition: none;
  }
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .sub-menu .sub-menu a,
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu > ul .sub-menu .sub-menu a {
    padding-left: 10px;
  }
}
@media (max-width: 900px) {
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu,
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu > ul {
    display: flex;
    flex-direction: column;
  }
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu li,
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu > ul li {
    position: relative;
    margin: 0;
  }
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu li .menu-item-link,
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu > ul li .menu-item-link {
    padding: 15px 10px;
    display: flex;
    align-items: flex-start;
    transition: all 0.5s;
  }
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu li .menu-item-link a,
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu > ul li .menu-item-link a {
    padding: 0;
  }
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu li a,
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu > ul li a {
    text-decoration: none;
    outline: none;
    color: inherit;
    cursor: pointer;
    display: block;
    flex-grow: 1;
    flex-shrink: 0;
    font-size: inherit;
  }
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu li .submenu-dropdown-toggle,
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu > ul li .submenu-dropdown-toggle {
    padding-left: 10px;
    padding-right: 0;
    display: inline-block;
    color: inherit;
    text-align: right;
  }
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .sub-menu, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .children,
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu > ul .sub-menu,
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu > ul .children {
    list-style: none;
    margin: 0;
    display: none;
    overflow: hidden;
    width: auto;
    white-space: nowrap;
    padding: 0;
  }
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .sub-menu .menu-item-link, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .children .menu-item-link,
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu > ul .sub-menu .menu-item-link,
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu > ul .children .menu-item-link {
    padding-left: 30px;
  }
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .current-menu-item > .sub-menu,
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu > ul .current-menu-item > .sub-menu {
    display: block;
  }
}
div .editor-styles-wrapper .acf-block-preview .site-top {
  z-index: 80;
  z-index: var(--z-index-menu);
  width: 100%;
  position: relative;
  left: 0;
  top: 0;
  transition: background-color 0.3s ease;
}
div .editor-styles-wrapper .acf-block-preview .site-top .site-top-container {
  height: 100%;
}
div .editor-styles-wrapper .acf-block-preview .site-top.transparent-header {
  background-color: transparent;
  position: absolute;
  width: 100%;
  z-index: 80;
  z-index: var(--z-index-menu);
  padding-top: 10px;
}
div .editor-styles-wrapper .acf-block-preview .site-top.transparent-header .site-logo {
  filter: brightness(0) invert(1);
}
div .editor-styles-wrapper .acf-block-preview .site-top.transparent-header .top-bar-navigation .menu-item-link {
  padding: 10px 34px;
}
div .editor-styles-wrapper .acf-block-preview .site-top.transparent-header .top-bar-navigation ul.menu > li:nth-child(1) {
  background: white;
  color: black;
}
div .editor-styles-wrapper .acf-block-preview .site-top.transparent-header .top-bar-navigation ul.menu > li:nth-child(2) {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}
div .editor-styles-wrapper .acf-block-preview .site-top.transparent-header .top-bar-navigation ul.menu > li:nth-child(3) {
  background: transparent;
  color: white;
}
div .editor-styles-wrapper .acf-block-preview .site-top.solid-header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
div .editor-styles-wrapper .acf-block-preview .site-top.solid-header .menu li {
  color: #6D6D6D;
  color: var(--black);
}
div .editor-styles-wrapper .acf-block-preview .site-top.solid-header .menu li:hover, div .editor-styles-wrapper .acf-block-preview .site-top.solid-header .menu li.toggled-on, div .editor-styles-wrapper .acf-block-preview .site-top.solid-header .menu li:active {
  color: black;
}
div .editor-styles-wrapper .acf-block-preview .site-top.solid-header .top-bar-navigation .menu-item-link {
  padding: 10px 34px;
}
div .editor-styles-wrapper .acf-block-preview .site-top.solid-header .top-bar-navigation ul.menu > li:nth-child(1) {
  background: #6D6D6D;
  background: var(--black);
  color: white;
}
div .editor-styles-wrapper .acf-block-preview .site-top.solid-header .top-bar-navigation ul.menu > li:nth-child(2) {
  background: #C9CACB;
  color: black;
}
div .editor-styles-wrapper .acf-block-preview .site-top.solid-header .top-bar-navigation ul.menu > li:nth-child(3) {
  background: transparent;
  color: black;
}
div .editor-styles-wrapper .acf-block-preview .site-navigation {
  flex-wrap: wrap;
  position: relative;
  justify-content: center;
  height: 100%;
}
div .editor-styles-wrapper .acf-block-preview .site-navigation .site-navigation__nav-holder {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
  grid-gap: 10px;
  gap: 10px;
}
div .editor-styles-wrapper .acf-block-preview .site-navigation .site-logo a + a {
  display: none;
}
div .editor-styles-wrapper .acf-block-preview .site-navigation .site-logo a {
  transition: all 0.5s;
}
div .editor-styles-wrapper .acf-block-preview .site-navigation .site-logo h1, div .editor-styles-wrapper .acf-block-preview .site-navigation .site-logo p {
  font-size: inherit;
}
@media (max-width: 900px) {
  div .editor-styles-wrapper .acf-block-preview .site-navigation .site-navigation__nav-holder {
    display: none;
  }
}
div .editor-styles-wrapper .acf-block-preview .site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
}
div .editor-styles-wrapper .acf-block-preview .site-logo a {
  color: inherit;
}
div .editor-styles-wrapper .acf-block-preview .site-logo svg {
  max-width: 100%;
  height: auto;
}
div .editor-styles-wrapper .acf-block-preview .site-logo h1,
div .editor-styles-wrapper .acf-block-preview .site-logo p {
  margin: 0;
}
div .editor-styles-wrapper .acf-block-preview .site-logo__link, div .editor-styles-wrapper .acf-block-preview .site-title a, div .editor-styles-wrapper .acf-block-preview .custom-logo-link {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
}
div .editor-styles-wrapper .acf-block-preview .site-logo__link img, div .editor-styles-wrapper .acf-block-preview .site-title a img, div .editor-styles-wrapper .acf-block-preview .custom-logo-link img {
  display: block;
}
@media (min-width: 900px) {
  div .editor-styles-wrapper .acf-block-preview .logo-left .site-logo {
    justify-content: left;
  }
  div .editor-styles-wrapper .acf-block-preview .logo-right .site-logo, div .editor-styles-wrapper .acf-block-preview .logo-center-under .site-logo {
    order: 2;
  }
  div .editor-styles-wrapper .acf-block-preview .logo-center .site-navigation, div .editor-styles-wrapper .acf-block-preview .logo-center-under .site-navigation {
    flex-direction: column;
    align-items: center;
  }
  div .editor-styles-wrapper .acf-block-preview .no-logo .site-logo {
    display: none;
  }
  div .editor-styles-wrapper .acf-block-preview .logo-in-middle > .site-logo, div .editor-styles-wrapper .acf-block-preview .logo-in-middle > .container .logo-in-middle {
    display: none;
  }
  div .editor-styles-wrapper .acf-block-preview .logo-in-middle .site-navigation__nav-holder {
    justify-content: center;
  }
  div .editor-styles-wrapper .acf-block-preview .logo-in-middle .site-navigation > .site-logo {
    display: none;
  }
  div .editor-styles-wrapper .acf-block-preview .logo-right .site-navigation__nav-holder {
    justify-content: flex-start;
  }
}
div .editor-styles-wrapper .acf-block-preview #panel-left .site-navigation__nav-holder .site-logo {
  display: none;
}
div .editor-styles-wrapper .acf-block-preview #panel-left .site-navigation__nav-holder {
  min-width: 300px;
  min-width: var(--panel-left-width);
  overflow: auto;
  max-height: 90vh;
  padding-bottom: 30px;
  padding-bottom: var(--gap);
}
@media (max-width: 500px) {
  div .editor-styles-wrapper .acf-block-preview .app-menu #panel-left {
    transition: none;
    transform: translate(0, 0);
    width: 100%;
    z-index: calc(80 - 1);
    z-index: calc(var(--z-index-menu) - 1);
  }
  div .editor-styles-wrapper .acf-block-preview .app-menu #panel-left .menu-item-link a {
    max-width: 40vw;
  }
  div .editor-styles-wrapper .acf-block-preview .app-menu #panel-left .site-navigation__nav-holder {
    margin-top: 20vh;
  }
  div .editor-styles-wrapper .acf-block-preview .app-menu #page {
    background: inherit;
    transition: transform 0.5s;
  }
  div .editor-styles-wrapper .acf-block-preview .app-menu.menu-open #page {
    border-radius: 5px;
    transform: translate(50vw, -2vh) scale(0.75);
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    height: 100vh;
  }
  div .editor-styles-wrapper .acf-block-preview .app-menu.menu-open #panel-left {
    height: 100vh;
    overflow: auto;
  }
  div .editor-styles-wrapper .acf-block-preview .app-menu.menu-open.admin-bar #panel-left {
    height: calc(100vh - 46px);
  }
}
div .editor-styles-wrapper .acf-block-preview .body-lock {
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}
div .editor-styles-wrapper .acf-block-preview .body-lock .site-container {
  height: 100%;
}
@supports (-webkit-overflow-scrolling: touch) {
  div .editor-styles-wrapper .acf-block-preview {
    /* CSS specific to iOS devices */
  }
  div .editor-styles-wrapper .acf-block-preview .body-lock {
    position: fixed;
  }
}
div .editor-styles-wrapper .acf-block-preview #panel-left:empty ~ .panel-left-toggle, div .editor-styles-wrapper .acf-block-preview #panel-left:empty ~ #page .panel-left-toggle {
  display: none;
}
@media (max-width: 1350px) {
  div .editor-styles-wrapper .acf-block-preview #panel-left:not(:empty) ~ .site .site-top .container {
    padding-left: 52px;
  }
}
div .editor-styles-wrapper .acf-block-preview #panel-left:not(:empty) ~ .site .site-top .container-fluid {
  padding-left: 52px;
}
@media (max-width: 900px) {
  div .editor-styles-wrapper .acf-block-preview .site-top .container, div .editor-styles-wrapper .acf-block-preview .site-top .container-fluid {
    padding: 0 52px;
  }
}
div .editor-styles-wrapper .acf-block-preview #panel-left {
  overflow: auto;
}
div .editor-styles-wrapper .acf-block-preview #panel-left .panel-logo {
  padding: 20px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: center;
  max-width: 200px;
}
div .editor-styles-wrapper .acf-block-preview #panel-left .panel-logo img {
  max-width: 100%;
  height: auto;
}
div .editor-styles-wrapper .acf-block-preview #panel-left .panel-logo a {
  display: flex;
  justify-content: center;
}
div .editor-styles-wrapper .acf-block-preview .menu-open #panel-left, div .editor-styles-wrapper .acf-block-preview #panel-left.open {
  flex-basis: 300px;
  flex-basis: var(--panel-left-width);
  flex-shrink: 0;
  transform: translate(0, 0);
}
@media (min-width: 900px) {
  div .editor-styles-wrapper .acf-block-preview #panel-left.stay-open {
    flex-basis: 300px;
    flex-basis: var(--panel-left-width);
    flex-shrink: 0;
    transform: translate(0, 0);
  }
  div .editor-styles-wrapper .acf-block-preview #panel-left.stay-open ~ .panel-left-toggle, div .editor-styles-wrapper .acf-block-preview #panel-left.stay-open ~ .site .panel-left-toggle {
    display: none;
  }
}
@media (max-width: 500px) {
  div .editor-styles-wrapper .acf-block-preview #panel-left {
    position: absolute;
    height: 100%;
    left: 0;
    transform: translate(-100%, 0);
  }
}
div .editor-styles-wrapper .acf-block-preview .panel-left-toggle {
  position: absolute;
  border: none;
  box-shadow: none;
  z-index: 99;
  cursor: pointer;
  will-change: transform;
  line-height: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  padding: 0 15px;
  outline: none;
  transition: all 0.5s;
  background: transparent;
}
div .editor-styles-wrapper .acf-block-preview .panel-left-toggle:focus {
  outline: none;
}
div .editor-styles-wrapper .acf-block-preview .site-top .panel-left-toggle {
  height: 100%;
}
div .editor-styles-wrapper .acf-block-preview .navigation-menu-icon {
  font-size: 3rem;
}
div .editor-styles-wrapper .acf-block-preview .navigation-menu-icon .icon-regular {
  position: relative;
  display: block;
  border-radius: 0.5px;
  width: 25px;
  height: 25px;
}
div .editor-styles-wrapper .acf-block-preview .navigation-menu-icon .icon-regular:before, div .editor-styles-wrapper .acf-block-preview .navigation-menu-icon .icon-regular:after {
  content: "";
  position: absolute;
  left: 0;
  top: 30%;
  height: 3px;
  width: 100%;
  background: white;
  transition: all 0.5s;
  outline: none;
  border-radius: inherit;
}
div .editor-styles-wrapper .acf-block-preview .navigation-menu-icon .icon-regular:after {
  bottom: 30%;
  top: auto;
}
div .editor-styles-wrapper .acf-block-preview .panel-left-toggle.toggled-on .navigation-menu-icon .icon-regular {
  height: 25px;
  width: 25px;
}
div .editor-styles-wrapper .acf-block-preview .panel-left-toggle.toggled-on .navigation-menu-icon .icon-regular:before {
  transform: rotate(45deg);
  top: 45%;
}
div .editor-styles-wrapper .acf-block-preview .panel-left-toggle.toggled-on .navigation-menu-icon .icon-regular:after {
  transform: rotate(-45deg);
  bottom: 42%;
}
div .editor-styles-wrapper .acf-block-preview .panel-right-toggle {
  z-index: 99;
  z-index: var(--z-index-top);
  position: absolute;
  right: 0;
  top: 0;
  line-height: 0;
  border: none;
  padding: 0 15px;
  cursor: pointer;
  outline: none;
  font-size: 22px;
}
div .editor-styles-wrapper .acf-block-preview .panel-right-toggle:focus {
  outline: none;
}
div .editor-styles-wrapper .acf-block-preview .panel-right-toggle {
  color: white;
  background: transparent;
}
div .editor-styles-wrapper .acf-block-preview .sidebar-icon {
  border: 2px solid white;
  border-radius: 2px;
  position: relative;
  height: 1em;
  width: 1em;
  display: block;
}
div .editor-styles-wrapper .acf-block-preview .sidebar-icon:after {
  content: "";
  width: 30%;
  background: white;
  height: 100%;
  position: absolute;
  right: 0;
}
div .editor-styles-wrapper .acf-block-preview #panel-right:empty ~ .panel-right-toggle {
  display: none;
}
@media (max-width: 1350px) {
  div .editor-styles-wrapper .acf-block-preview #panel-right:not(:empty) ~ .site .site-top .container {
    padding-right: 52px;
  }
}
div .editor-styles-wrapper .acf-block-preview #panel-right:not(:empty) ~ .site .site-top .container-fluid {
  padding-right: 52px;
}
div .editor-styles-wrapper .acf-block-preview #panel-right.open:not(:empty) {
  flex-basis: 350px;
  flex-basis: var(--panel-right-width);
  flex-shrink: 0;
}
@media (min-width: 1030px) {
  div .editor-styles-wrapper .acf-block-preview #panel-right.stay-open {
    flex-basis: 350px;
    flex-basis: var(--panel-right-width);
    flex-shrink: 0;
    transform: translate(0, 0);
  }
  div .editor-styles-wrapper .acf-block-preview #panel-right.stay-open ~ .panel-right-toggle {
    display: none;
  }
}
@media (max-width: 1030px) {
  div .editor-styles-wrapper .acf-block-preview #panel-right {
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    padding-top: 50px;
    z-index: 90;
    width: 0;
  }
  div .editor-styles-wrapper .acf-block-preview #panel-right.open {
    width: 350px;
    width: var(--panel-right-width);
  }
}
@media (min-width: 1320px) {
  div .editor-styles-wrapper .acf-block-preview .sidebar-template.container .container-content > .alignfull {
    margin-right: 0;
    margin-left: 0;
  }
  div .editor-styles-wrapper .acf-block-preview .sidebar-template.align-content-left .container-content > *:not(.alignfull):not(.full-width), div .editor-styles-wrapper .acf-block-preview .sidebar-template.align-content-left.container-content > *:not(.alignfull):not(.full-width) {
    margin-left: 0;
  }
}
div .editor-styles-wrapper .acf-block-preview .has-sidebar-template .site-content {
  display: flex;
  flex-direction: column;
}
div .editor-styles-wrapper .acf-block-preview .sidebar-template {
  display: flex;
  flex-grow: 1;
}
@media (max-width: 1200px) {
  div .editor-styles-wrapper .acf-block-preview .sidebar-template {
    display: block;
  }
}
div .editor-styles-wrapper .acf-block-preview #secondary:empty, div .editor-styles-wrapper .acf-block-preview .sidebar-holder:empty, div .editor-styles-wrapper .acf-block-preview .secondary:empty {
  display: none;
}
div .editor-styles-wrapper .acf-block-preview #secondary:empty:after, div .editor-styles-wrapper .acf-block-preview .sidebar-holder:empty:after, div .editor-styles-wrapper .acf-block-preview .secondary:empty:after {
  content: "";
}
div .editor-styles-wrapper .acf-block-preview .sidebar-left #secondary {
  order: 0;
}
div .editor-styles-wrapper .acf-block-preview .sidebar-left #primary {
  order: 1;
}
div .editor-styles-wrapper .acf-block-preview .sidebar-left .sidebar-bg:after {
  left: auto;
  right: 0;
}
div .editor-styles-wrapper .acf-block-preview .sidebar-left .sidebar-holder {
  float: right;
}
div .editor-styles-wrapper .acf-block-preview .sidebar-holder {
  position: relative;
}
div .editor-styles-wrapper .acf-block-preview #secondary .sidebar-holder {
  height: 100%;
  display: block;
}
div .editor-styles-wrapper .acf-block-preview .js .sidebar-template.header-above:not(.active) #secondary {
  display: none;
}
div .editor-styles-wrapper .acf-block-preview .js .sidebar-template.header-above:not(.active) .container, div .editor-styles-wrapper .acf-block-preview .js .sidebar-template.header-above:not(.active) .container-fluid {
  max-width: 100%;
  padding: 0;
}
div .editor-styles-wrapper .acf-block-preview #panel-right .sidebar-holder {
  height: 100%;
  overflow: auto;
  overflow-x: hidden;
  min-width: 350px;
  min-width: var(--panel-right-width);
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  div .editor-styles-wrapper .acf-block-preview {
    /*--------------------------------------------------------------
     # Flexbox grids. 99% same as css grid
     --------------------------------------------------------------*/
  }
  div .editor-styles-wrapper .acf-block-preview :root {
    --flex-gap: calc(var(--grid-gap) / 2);
  }
  div .editor-styles-wrapper .acf-block-preview .site-footer {
    min-height: 1px;
  }
  div .editor-styles-wrapper .acf-block-preview .cover-image, div .editor-styles-wrapper .acf-block-preview .background-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  div .editor-styles-wrapper .acf-block-preview .no-objectfit .cover-image {
    min-height: 300px;
    background-repeat: none;
  }
  div .editor-styles-wrapper .acf-block-preview .no-objectfit .background-image img,
  div .editor-styles-wrapper .acf-block-preview .no-objectfit .cover-image img {
    display: none;
  }
  div .editor-styles-wrapper .acf-block-preview .flex, div .editor-styles-wrapper .acf-block-preview .flex-grid, div .editor-styles-wrapper .acf-block-preview .grid {
    display: flex;
    margin-left: calc(-1 * calc(30px / 2));
    margin-left: calc(-1 * var(--flex-gap));
    margin-right: calc(-1 * calc(30px / 2));
    margin-right: calc(-1 * var(--flex-gap));
  }
  div .editor-styles-wrapper .acf-block-preview .flex > *, div .editor-styles-wrapper .acf-block-preview .flex-grid > *, div .editor-styles-wrapper .acf-block-preview .grid > * {
    margin-right: calc(30px / 2);
    margin-right: var(--flex-gap);
    margin-left: calc(30px / 2);
    margin-left: var(--flex-gap);
    flex-grow: 1;
    flex-shrink: 1;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex .span-1, div .editor-styles-wrapper .acf-block-preview .flex.span-all-1 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-1, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-1 > *, div .editor-styles-wrapper .acf-block-preview div .grid .span-1, div .editor-styles-wrapper .acf-block-preview .grid.span-all-1 > * {
    width: calc(8.3333333333% - 30px);
    width: calc(8.3333333333% - var(--grid-gap));
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex > .span-1, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-1, div .editor-styles-wrapper .acf-block-preview div .grid > .span-1 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex .span-2, div .editor-styles-wrapper .acf-block-preview .flex.span-all-2 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-2, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-2 > *, div .editor-styles-wrapper .acf-block-preview div .grid .span-2, div .editor-styles-wrapper .acf-block-preview .grid.span-all-2 > * {
    width: calc(16.6666666667% - 30px);
    width: calc(16.6666666667% - var(--grid-gap));
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex > .span-2, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-2, div .editor-styles-wrapper .acf-block-preview div .grid > .span-2 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex .span-3, div .editor-styles-wrapper .acf-block-preview .flex.span-all-3 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-3, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-3 > *, div .editor-styles-wrapper .acf-block-preview div .grid .span-3, div .editor-styles-wrapper .acf-block-preview .grid.span-all-3 > * {
    width: calc(25% - 30px);
    width: calc(25% - var(--grid-gap));
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex > .span-3, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-3, div .editor-styles-wrapper .acf-block-preview div .grid > .span-3 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex .span-4, div .editor-styles-wrapper .acf-block-preview .flex.span-all-4 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-4, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-4 > *, div .editor-styles-wrapper .acf-block-preview div .grid .span-4, div .editor-styles-wrapper .acf-block-preview .grid.span-all-4 > * {
    width: calc(33.3333333333% - 30px);
    width: calc(33.3333333333% - var(--grid-gap));
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex > .span-4, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-4, div .editor-styles-wrapper .acf-block-preview div .grid > .span-4 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex .span-5, div .editor-styles-wrapper .acf-block-preview .flex.span-all-5 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-5, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-5 > *, div .editor-styles-wrapper .acf-block-preview div .grid .span-5, div .editor-styles-wrapper .acf-block-preview .grid.span-all-5 > * {
    width: calc(41.6666666667% - 30px);
    width: calc(41.6666666667% - var(--grid-gap));
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex > .span-5, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-5, div .editor-styles-wrapper .acf-block-preview div .grid > .span-5 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex .span-6, div .editor-styles-wrapper .acf-block-preview .flex.span-all-6 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-6, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-6 > *, div .editor-styles-wrapper .acf-block-preview div .grid .span-6, div .editor-styles-wrapper .acf-block-preview .grid.span-all-6 > * {
    width: calc(50% - 30px);
    width: calc(50% - var(--grid-gap));
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex > .span-6, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-6, div .editor-styles-wrapper .acf-block-preview div .grid > .span-6 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex .span-7, div .editor-styles-wrapper .acf-block-preview .flex.span-all-7 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-7, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-7 > *, div .editor-styles-wrapper .acf-block-preview div .grid .span-7, div .editor-styles-wrapper .acf-block-preview .grid.span-all-7 > * {
    width: calc(58.3333333333% - 30px);
    width: calc(58.3333333333% - var(--grid-gap));
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex > .span-7, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-7, div .editor-styles-wrapper .acf-block-preview div .grid > .span-7 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex .span-8, div .editor-styles-wrapper .acf-block-preview .flex.span-all-8 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-8, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-8 > *, div .editor-styles-wrapper .acf-block-preview div .grid .span-8, div .editor-styles-wrapper .acf-block-preview .grid.span-all-8 > * {
    width: calc(66.6666666667% - 30px);
    width: calc(66.6666666667% - var(--grid-gap));
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex > .span-8, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-8, div .editor-styles-wrapper .acf-block-preview div .grid > .span-8 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex .span-9, div .editor-styles-wrapper .acf-block-preview .flex.span-all-9 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-9, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-9 > *, div .editor-styles-wrapper .acf-block-preview div .grid .span-9, div .editor-styles-wrapper .acf-block-preview .grid.span-all-9 > * {
    width: calc(75% - 30px);
    width: calc(75% - var(--grid-gap));
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex > .span-9, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-9, div .editor-styles-wrapper .acf-block-preview div .grid > .span-9 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex .span-10, div .editor-styles-wrapper .acf-block-preview .flex.span-all-10 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-10, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-10 > *, div .editor-styles-wrapper .acf-block-preview div .grid .span-10, div .editor-styles-wrapper .acf-block-preview .grid.span-all-10 > * {
    width: calc(83.3333333333% - 30px);
    width: calc(83.3333333333% - var(--grid-gap));
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex > .span-10, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-10, div .editor-styles-wrapper .acf-block-preview div .grid > .span-10 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex .span-11, div .editor-styles-wrapper .acf-block-preview .flex.span-all-11 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-11, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-11 > *, div .editor-styles-wrapper .acf-block-preview div .grid .span-11, div .editor-styles-wrapper .acf-block-preview .grid.span-all-11 > * {
    width: calc(91.6666666667% - 30px);
    width: calc(91.6666666667% - var(--grid-gap));
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex > .span-11, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-11, div .editor-styles-wrapper .acf-block-preview div .grid > .span-11 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex .span-12, div .editor-styles-wrapper .acf-block-preview .flex.span-all-12 > *, div .editor-styles-wrapper .acf-block-preview div .flex-grid .span-12, div .editor-styles-wrapper .acf-block-preview .flex-grid.span-all-12 > *, div .editor-styles-wrapper .acf-block-preview div .grid .span-12, div .editor-styles-wrapper .acf-block-preview .grid.span-all-12 > * {
    width: calc(100% - 30px);
    width: calc(100% - var(--grid-gap));
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }
  div .editor-styles-wrapper .acf-block-preview div .flex > .span-12, div .editor-styles-wrapper .acf-block-preview div .flex-grid > .span-12, div .editor-styles-wrapper .acf-block-preview div .grid > .span-12 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview .grid {
    flex-wrap: wrap;
  }
  div .editor-styles-wrapper .acf-block-preview .grid > * {
    margin-bottom: 30px;
    margin-bottom: var(--grid-gap);
  }
}
@media screen and (-ms-high-contrast: active) and (max-width: 1320px), (-ms-high-contrast: none) and (max-width: 1320px) {
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .container-span-1, div .editor-styles-wrapper .acf-block-preview div .flex-grid.container-span-all-1 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .container-span-1, div .editor-styles-wrapper .acf-block-preview div .flex.container-span-all-1 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .container-span-1, div .editor-styles-wrapper .acf-block-preview div .grid.container-span-all-1 > * {
    width: calc(8.3333333333% - 30px);
    width: calc(8.3333333333% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .container-span-2, div .editor-styles-wrapper .acf-block-preview div .flex-grid.container-span-all-2 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .container-span-2, div .editor-styles-wrapper .acf-block-preview div .flex.container-span-all-2 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .container-span-2, div .editor-styles-wrapper .acf-block-preview div .grid.container-span-all-2 > * {
    width: calc(16.6666666667% - 30px);
    width: calc(16.6666666667% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .container-span-3, div .editor-styles-wrapper .acf-block-preview div .flex-grid.container-span-all-3 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .container-span-3, div .editor-styles-wrapper .acf-block-preview div .flex.container-span-all-3 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .container-span-3, div .editor-styles-wrapper .acf-block-preview div .grid.container-span-all-3 > * {
    width: calc(25% - 30px);
    width: calc(25% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .container-span-4, div .editor-styles-wrapper .acf-block-preview div .flex-grid.container-span-all-4 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .container-span-4, div .editor-styles-wrapper .acf-block-preview div .flex.container-span-all-4 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .container-span-4, div .editor-styles-wrapper .acf-block-preview div .grid.container-span-all-4 > * {
    width: calc(33.3333333333% - 30px);
    width: calc(33.3333333333% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .container-span-5, div .editor-styles-wrapper .acf-block-preview div .flex-grid.container-span-all-5 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .container-span-5, div .editor-styles-wrapper .acf-block-preview div .flex.container-span-all-5 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .container-span-5, div .editor-styles-wrapper .acf-block-preview div .grid.container-span-all-5 > * {
    width: calc(41.6666666667% - 30px);
    width: calc(41.6666666667% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .container-span-6, div .editor-styles-wrapper .acf-block-preview div .flex-grid.container-span-all-6 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .container-span-6, div .editor-styles-wrapper .acf-block-preview div .flex.container-span-all-6 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .container-span-6, div .editor-styles-wrapper .acf-block-preview div .grid.container-span-all-6 > * {
    width: calc(50% - 30px);
    width: calc(50% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .container-span-7, div .editor-styles-wrapper .acf-block-preview div .flex-grid.container-span-all-7 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .container-span-7, div .editor-styles-wrapper .acf-block-preview div .flex.container-span-all-7 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .container-span-7, div .editor-styles-wrapper .acf-block-preview div .grid.container-span-all-7 > * {
    width: calc(58.3333333333% - 30px);
    width: calc(58.3333333333% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .container-span-8, div .editor-styles-wrapper .acf-block-preview div .flex-grid.container-span-all-8 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .container-span-8, div .editor-styles-wrapper .acf-block-preview div .flex.container-span-all-8 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .container-span-8, div .editor-styles-wrapper .acf-block-preview div .grid.container-span-all-8 > * {
    width: calc(66.6666666667% - 30px);
    width: calc(66.6666666667% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .container-span-9, div .editor-styles-wrapper .acf-block-preview div .flex-grid.container-span-all-9 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .container-span-9, div .editor-styles-wrapper .acf-block-preview div .flex.container-span-all-9 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .container-span-9, div .editor-styles-wrapper .acf-block-preview div .grid.container-span-all-9 > * {
    width: calc(75% - 30px);
    width: calc(75% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .container-span-10, div .editor-styles-wrapper .acf-block-preview div .flex-grid.container-span-all-10 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .container-span-10, div .editor-styles-wrapper .acf-block-preview div .flex.container-span-all-10 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .container-span-10, div .editor-styles-wrapper .acf-block-preview div .grid.container-span-all-10 > * {
    width: calc(83.3333333333% - 30px);
    width: calc(83.3333333333% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .container-span-11, div .editor-styles-wrapper .acf-block-preview div .flex-grid.container-span-all-11 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .container-span-11, div .editor-styles-wrapper .acf-block-preview div .flex.container-span-all-11 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .container-span-11, div .editor-styles-wrapper .acf-block-preview div .grid.container-span-all-11 > * {
    width: calc(91.6666666667% - 30px);
    width: calc(91.6666666667% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .container-span-12, div .editor-styles-wrapper .acf-block-preview div .flex-grid.container-span-all-12 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .container-span-12, div .editor-styles-wrapper .acf-block-preview div .flex.container-span-all-12 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .container-span-12, div .editor-styles-wrapper .acf-block-preview div .grid.container-span-all-12 > * {
    width: calc(100% - 30px);
    width: calc(100% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
}
@media screen and (-ms-high-contrast: active) and (max-width: 1030px), (-ms-high-contrast: none) and (max-width: 1030px) {
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .large-span-1, div .editor-styles-wrapper .acf-block-preview div .flex-grid.large-span-all-1 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .large-span-1, div .editor-styles-wrapper .acf-block-preview div .flex.large-span-all-1 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .large-span-1, div .editor-styles-wrapper .acf-block-preview div .grid.large-span-all-1 > * {
    width: calc(8.3333333333% - 30px);
    width: calc(8.3333333333% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .large-span-2, div .editor-styles-wrapper .acf-block-preview div .flex-grid.large-span-all-2 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .large-span-2, div .editor-styles-wrapper .acf-block-preview div .flex.large-span-all-2 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .large-span-2, div .editor-styles-wrapper .acf-block-preview div .grid.large-span-all-2 > * {
    width: calc(16.6666666667% - 30px);
    width: calc(16.6666666667% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .large-span-3, div .editor-styles-wrapper .acf-block-preview div .flex-grid.large-span-all-3 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .large-span-3, div .editor-styles-wrapper .acf-block-preview div .flex.large-span-all-3 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .large-span-3, div .editor-styles-wrapper .acf-block-preview div .grid.large-span-all-3 > * {
    width: calc(25% - 30px);
    width: calc(25% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .large-span-4, div .editor-styles-wrapper .acf-block-preview div .flex-grid.large-span-all-4 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .large-span-4, div .editor-styles-wrapper .acf-block-preview div .flex.large-span-all-4 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .large-span-4, div .editor-styles-wrapper .acf-block-preview div .grid.large-span-all-4 > * {
    width: calc(33.3333333333% - 30px);
    width: calc(33.3333333333% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .large-span-5, div .editor-styles-wrapper .acf-block-preview div .flex-grid.large-span-all-5 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .large-span-5, div .editor-styles-wrapper .acf-block-preview div .flex.large-span-all-5 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .large-span-5, div .editor-styles-wrapper .acf-block-preview div .grid.large-span-all-5 > * {
    width: calc(41.6666666667% - 30px);
    width: calc(41.6666666667% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .large-span-6, div .editor-styles-wrapper .acf-block-preview div .flex-grid.large-span-all-6 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .large-span-6, div .editor-styles-wrapper .acf-block-preview div .flex.large-span-all-6 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .large-span-6, div .editor-styles-wrapper .acf-block-preview div .grid.large-span-all-6 > * {
    width: calc(50% - 30px);
    width: calc(50% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .large-span-7, div .editor-styles-wrapper .acf-block-preview div .flex-grid.large-span-all-7 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .large-span-7, div .editor-styles-wrapper .acf-block-preview div .flex.large-span-all-7 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .large-span-7, div .editor-styles-wrapper .acf-block-preview div .grid.large-span-all-7 > * {
    width: calc(58.3333333333% - 30px);
    width: calc(58.3333333333% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .large-span-8, div .editor-styles-wrapper .acf-block-preview div .flex-grid.large-span-all-8 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .large-span-8, div .editor-styles-wrapper .acf-block-preview div .flex.large-span-all-8 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .large-span-8, div .editor-styles-wrapper .acf-block-preview div .grid.large-span-all-8 > * {
    width: calc(66.6666666667% - 30px);
    width: calc(66.6666666667% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .large-span-9, div .editor-styles-wrapper .acf-block-preview div .flex-grid.large-span-all-9 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .large-span-9, div .editor-styles-wrapper .acf-block-preview div .flex.large-span-all-9 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .large-span-9, div .editor-styles-wrapper .acf-block-preview div .grid.large-span-all-9 > * {
    width: calc(75% - 30px);
    width: calc(75% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .large-span-10, div .editor-styles-wrapper .acf-block-preview div .flex-grid.large-span-all-10 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .large-span-10, div .editor-styles-wrapper .acf-block-preview div .flex.large-span-all-10 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .large-span-10, div .editor-styles-wrapper .acf-block-preview div .grid.large-span-all-10 > * {
    width: calc(83.3333333333% - 30px);
    width: calc(83.3333333333% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .large-span-11, div .editor-styles-wrapper .acf-block-preview div .flex-grid.large-span-all-11 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .large-span-11, div .editor-styles-wrapper .acf-block-preview div .flex.large-span-all-11 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .large-span-11, div .editor-styles-wrapper .acf-block-preview div .grid.large-span-all-11 > * {
    width: calc(91.6666666667% - 30px);
    width: calc(91.6666666667% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .large-span-12, div .editor-styles-wrapper .acf-block-preview div .flex-grid.large-span-all-12 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .large-span-12, div .editor-styles-wrapper .acf-block-preview div .flex.large-span-all-12 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .large-span-12, div .editor-styles-wrapper .acf-block-preview div .grid.large-span-all-12 > * {
    width: calc(100% - 30px);
    width: calc(100% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
}
@media screen and (-ms-high-contrast: active) and (max-width: 768px), (-ms-high-contrast: none) and (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .medium-span-1, div .editor-styles-wrapper .acf-block-preview div .flex-grid.medium-span-all-1 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .medium-span-1, div .editor-styles-wrapper .acf-block-preview div .flex.medium-span-all-1 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .medium-span-1, div .editor-styles-wrapper .acf-block-preview div .grid.medium-span-all-1 > * {
    width: calc(8.3333333333% - 30px);
    width: calc(8.3333333333% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .medium-span-2, div .editor-styles-wrapper .acf-block-preview div .flex-grid.medium-span-all-2 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .medium-span-2, div .editor-styles-wrapper .acf-block-preview div .flex.medium-span-all-2 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .medium-span-2, div .editor-styles-wrapper .acf-block-preview div .grid.medium-span-all-2 > * {
    width: calc(16.6666666667% - 30px);
    width: calc(16.6666666667% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .medium-span-3, div .editor-styles-wrapper .acf-block-preview div .flex-grid.medium-span-all-3 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .medium-span-3, div .editor-styles-wrapper .acf-block-preview div .flex.medium-span-all-3 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .medium-span-3, div .editor-styles-wrapper .acf-block-preview div .grid.medium-span-all-3 > * {
    width: calc(25% - 30px);
    width: calc(25% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .medium-span-4, div .editor-styles-wrapper .acf-block-preview div .flex-grid.medium-span-all-4 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .medium-span-4, div .editor-styles-wrapper .acf-block-preview div .flex.medium-span-all-4 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .medium-span-4, div .editor-styles-wrapper .acf-block-preview div .grid.medium-span-all-4 > * {
    width: calc(33.3333333333% - 30px);
    width: calc(33.3333333333% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .medium-span-5, div .editor-styles-wrapper .acf-block-preview div .flex-grid.medium-span-all-5 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .medium-span-5, div .editor-styles-wrapper .acf-block-preview div .flex.medium-span-all-5 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .medium-span-5, div .editor-styles-wrapper .acf-block-preview div .grid.medium-span-all-5 > * {
    width: calc(41.6666666667% - 30px);
    width: calc(41.6666666667% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .medium-span-6, div .editor-styles-wrapper .acf-block-preview div .flex-grid.medium-span-all-6 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .medium-span-6, div .editor-styles-wrapper .acf-block-preview div .flex.medium-span-all-6 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .medium-span-6, div .editor-styles-wrapper .acf-block-preview div .grid.medium-span-all-6 > * {
    width: calc(50% - 30px);
    width: calc(50% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .medium-span-7, div .editor-styles-wrapper .acf-block-preview div .flex-grid.medium-span-all-7 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .medium-span-7, div .editor-styles-wrapper .acf-block-preview div .flex.medium-span-all-7 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .medium-span-7, div .editor-styles-wrapper .acf-block-preview div .grid.medium-span-all-7 > * {
    width: calc(58.3333333333% - 30px);
    width: calc(58.3333333333% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .medium-span-8, div .editor-styles-wrapper .acf-block-preview div .flex-grid.medium-span-all-8 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .medium-span-8, div .editor-styles-wrapper .acf-block-preview div .flex.medium-span-all-8 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .medium-span-8, div .editor-styles-wrapper .acf-block-preview div .grid.medium-span-all-8 > * {
    width: calc(66.6666666667% - 30px);
    width: calc(66.6666666667% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .medium-span-9, div .editor-styles-wrapper .acf-block-preview div .flex-grid.medium-span-all-9 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .medium-span-9, div .editor-styles-wrapper .acf-block-preview div .flex.medium-span-all-9 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .medium-span-9, div .editor-styles-wrapper .acf-block-preview div .grid.medium-span-all-9 > * {
    width: calc(75% - 30px);
    width: calc(75% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .medium-span-10, div .editor-styles-wrapper .acf-block-preview div .flex-grid.medium-span-all-10 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .medium-span-10, div .editor-styles-wrapper .acf-block-preview div .flex.medium-span-all-10 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .medium-span-10, div .editor-styles-wrapper .acf-block-preview div .grid.medium-span-all-10 > * {
    width: calc(83.3333333333% - 30px);
    width: calc(83.3333333333% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .medium-span-11, div .editor-styles-wrapper .acf-block-preview div .flex-grid.medium-span-all-11 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .medium-span-11, div .editor-styles-wrapper .acf-block-preview div .flex.medium-span-all-11 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .medium-span-11, div .editor-styles-wrapper .acf-block-preview div .grid.medium-span-all-11 > * {
    width: calc(91.6666666667% - 30px);
    width: calc(91.6666666667% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .medium-span-12, div .editor-styles-wrapper .acf-block-preview div .flex-grid.medium-span-all-12 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .medium-span-12, div .editor-styles-wrapper .acf-block-preview div .flex.medium-span-all-12 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .medium-span-12, div .editor-styles-wrapper .acf-block-preview div .grid.medium-span-all-12 > * {
    width: calc(100% - 30px);
    width: calc(100% - var(--grid-gap));
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
}
@media screen and (-ms-high-contrast: active) and (max-width: 576px), (-ms-high-contrast: none) and (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview div .flex-grid, div .editor-styles-wrapper .acf-block-preview div .flex, div .editor-styles-wrapper .acf-block-preview div .grid {
    flex-wrap: wrap;
  }
  div .editor-styles-wrapper .acf-block-preview div.site div .flex-grid > *, div .editor-styles-wrapper .acf-block-preview div.site div .flex > *, div .editor-styles-wrapper .acf-block-preview div.site div .grid > * {
    width: calc(100% - 30px);
    width: calc(100% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-1, div .editor-styles-wrapper .acf-block-preview div div .flex-grid.small-span-all-1 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-1, div .editor-styles-wrapper .acf-block-preview div div .flex.small-span-all-1 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-1, div .editor-styles-wrapper .acf-block-preview div div .grid.small-span-all-1 > * {
    width: calc(8.3333333333% - 30px);
    width: calc(8.3333333333% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-1, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-1, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-1 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-2, div .editor-styles-wrapper .acf-block-preview div div .flex-grid.small-span-all-2 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-2, div .editor-styles-wrapper .acf-block-preview div div .flex.small-span-all-2 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-2, div .editor-styles-wrapper .acf-block-preview div div .grid.small-span-all-2 > * {
    width: calc(16.6666666667% - 30px);
    width: calc(16.6666666667% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-2, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-2, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-2 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-3, div .editor-styles-wrapper .acf-block-preview div div .flex-grid.small-span-all-3 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-3, div .editor-styles-wrapper .acf-block-preview div div .flex.small-span-all-3 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-3, div .editor-styles-wrapper .acf-block-preview div div .grid.small-span-all-3 > * {
    width: calc(25% - 30px);
    width: calc(25% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-3, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-3, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-3 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-4, div .editor-styles-wrapper .acf-block-preview div div .flex-grid.small-span-all-4 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-4, div .editor-styles-wrapper .acf-block-preview div div .flex.small-span-all-4 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-4, div .editor-styles-wrapper .acf-block-preview div div .grid.small-span-all-4 > * {
    width: calc(33.3333333333% - 30px);
    width: calc(33.3333333333% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-4, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-4, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-4 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-5, div .editor-styles-wrapper .acf-block-preview div div .flex-grid.small-span-all-5 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-5, div .editor-styles-wrapper .acf-block-preview div div .flex.small-span-all-5 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-5, div .editor-styles-wrapper .acf-block-preview div div .grid.small-span-all-5 > * {
    width: calc(41.6666666667% - 30px);
    width: calc(41.6666666667% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-5, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-5, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-5 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-6, div .editor-styles-wrapper .acf-block-preview div div .flex-grid.small-span-all-6 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-6, div .editor-styles-wrapper .acf-block-preview div div .flex.small-span-all-6 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-6, div .editor-styles-wrapper .acf-block-preview div div .grid.small-span-all-6 > * {
    width: calc(50% - 30px);
    width: calc(50% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-6, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-6, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-6 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-7, div .editor-styles-wrapper .acf-block-preview div div .flex-grid.small-span-all-7 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-7, div .editor-styles-wrapper .acf-block-preview div div .flex.small-span-all-7 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-7, div .editor-styles-wrapper .acf-block-preview div div .grid.small-span-all-7 > * {
    width: calc(58.3333333333% - 30px);
    width: calc(58.3333333333% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-7, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-7, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-7 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-8, div .editor-styles-wrapper .acf-block-preview div div .flex-grid.small-span-all-8 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-8, div .editor-styles-wrapper .acf-block-preview div div .flex.small-span-all-8 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-8, div .editor-styles-wrapper .acf-block-preview div div .grid.small-span-all-8 > * {
    width: calc(66.6666666667% - 30px);
    width: calc(66.6666666667% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-8, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-8, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-8 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-9, div .editor-styles-wrapper .acf-block-preview div div .flex-grid.small-span-all-9 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-9, div .editor-styles-wrapper .acf-block-preview div div .flex.small-span-all-9 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-9, div .editor-styles-wrapper .acf-block-preview div div .grid.small-span-all-9 > * {
    width: calc(75% - 30px);
    width: calc(75% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-9, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-9, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-9 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-10, div .editor-styles-wrapper .acf-block-preview div div .flex-grid.small-span-all-10 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-10, div .editor-styles-wrapper .acf-block-preview div div .flex.small-span-all-10 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-10, div .editor-styles-wrapper .acf-block-preview div div .grid.small-span-all-10 > * {
    width: calc(83.3333333333% - 30px);
    width: calc(83.3333333333% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-10, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-10, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-10 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-11, div .editor-styles-wrapper .acf-block-preview div div .flex-grid.small-span-all-11 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-11, div .editor-styles-wrapper .acf-block-preview div div .flex.small-span-all-11 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-11, div .editor-styles-wrapper .acf-block-preview div div .grid.small-span-all-11 > * {
    width: calc(91.6666666667% - 30px);
    width: calc(91.6666666667% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-11, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-11, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-11 {
    flex-grow: 0;
    flex-shrink: 0;
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-12, div .editor-styles-wrapper .acf-block-preview div div .flex-grid.small-span-all-12 > *, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-12, div .editor-styles-wrapper .acf-block-preview div div .flex.small-span-all-12 > *, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-12, div .editor-styles-wrapper .acf-block-preview div div .grid.small-span-all-12 > * {
    width: calc(100% - 30px);
    width: calc(100% - var(--grid-gap));
  }
  div .editor-styles-wrapper .acf-block-preview div div .flex-grid > .small-span-12, div .editor-styles-wrapper .acf-block-preview div div .flex > .small-span-12, div .editor-styles-wrapper .acf-block-preview div div .grid > .small-span-12 {
    flex-grow: 0;
    flex-shrink: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  div .editor-styles-wrapper .acf-block-preview .layout-center-content > * {
    margin: 0;
  }
}
div .editor-styles-wrapper .acf-block-preview .site-footer {
  padding: 100px 0;
  background: white;
  border-top: 1px solid #E5E5E5;
}
@media (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview .site-footer {
    padding: 50px 0;
  }
}
div .editor-styles-wrapper .acf-block-preview .site-footer .container {
  max-width: 1320px;
  max-width: var(--container, 1320px);
  margin: 0 auto;
  padding: 0 30px;
  padding: 0 var(--container-padding, 30px);
}
div .editor-styles-wrapper .acf-block-preview .site-footer .container .footer-header {
  margin-bottom: 60px;
  position: relative;
  background: white;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .container .footer-header:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #6D6D6D;
  background-color: var(--grey, #6D6D6D);
  z-index: 1;
}
@media (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview .site-footer .container .footer-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .site-footer .container .footer-header {
    margin-bottom: 30px;
  }
}
div .editor-styles-wrapper .acf-block-preview .site-footer .container .footer-header .widget_block {
  position: relative;
  z-index: 2;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .container .footer-header .widget_block .wp-block-group {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 100px;
  gap: 100px;
  position: relative;
  background: white;
  padding: 0 30px;
  width: 600px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .site-footer .container .footer-header .widget_block .wp-block-group {
    flex-direction: column;
    padding: 20px 0;
    grid-gap: 20px;
    gap: 20px;
    width: 100%;
  }
}
div .editor-styles-wrapper .acf-block-preview .site-footer .container .footer-header .widget_block .wp-block-group .wp-block-image {
  position: relative;
  margin: 0;
  height: 40px;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .container .footer-header .widget_block .wp-block-group .wp-block-image:after {
  content: "";
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  height: 80px;
  width: 1px;
  background-color: #98989A;
  background-color: var(--light-grey);
}
div .editor-styles-wrapper .acf-block-preview .site-footer .container .footer-header .widget_block .wp-block-group .wp-block-image img {
  height: 100%;
  width: auto;
  display: block;
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .site-footer .container .footer-header .widget_block .wp-block-group {
    flex-direction: column;
    padding: 20px 0;
  }
  div .editor-styles-wrapper .acf-block-preview .site-footer .container .footer-header .widget_block .wp-block-group .wp-block-image:after {
    display: none;
  }
}
div .editor-styles-wrapper .acf-block-preview .site-footer .container .footer-header .widget_block .wp-block-group .footer-tagline {
  display: flex;
  align-items: center;
  grid-gap: 8px;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  color: #4c545d;
  color: var(--dark-grey, #333333);
}
@media (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview .site-footer .container .footer-header .widget_block .wp-block-group .footer-tagline {
    font-size: 20px;
  }
}
div .editor-styles-wrapper .acf-block-preview .site-footer .container .footer-header .widget_block .wp-block-group .footer-tagline .light {
  font-weight: 400;
  color: #6D6D6D;
  color: var(--grey, #666666);
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  gap: 30px;
  position: relative;
}
@media (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    gap: 20px;
  }
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    gap: 20px;
  }
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-left h2,
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-middle h2,
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-right h2 {
  color: #6D6D6D;
  color: var(--grey, #666666);
  margin-bottom: 25px;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 136%;
}
@media (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-left h2,
  div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-middle h2,
  div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-right h2 {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-left h2,
  div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-middle h2,
  div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-right h2 {
    font-size: 16px;
  }
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-left .footer-menu,
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-middle .footer-menu,
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-right .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-left .footer-menu li,
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-middle .footer-menu li,
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-right .footer-menu li {
  margin-bottom: 15px;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-left .footer-menu li .menu-item-link,
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-middle .footer-menu li .menu-item-link,
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-right .footer-menu li .menu-item-link {
  padding: 0 0 10px;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-left .footer-menu li .menu-item-link:after,
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-middle .footer-menu li .menu-item-link:after,
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-right .footer-menu li .menu-item-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 4px;
  background-color: #E21936;
  background-color: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-left .footer-menu li .menu-item-link:hover:after,
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-middle .footer-menu li .menu-item-link:hover:after,
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-right .footer-menu li .menu-item-link:hover:after {
  transform: scaleX(1);
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-left .footer-menu li a,
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-middle .footer-menu li a,
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-right .footer-menu li a {
  color: #6D6D6D;
  color: var(--grey);
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-left .footer-menu li a,
  div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-middle .footer-menu li a,
  div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-right .footer-menu li a {
    font-size: 16px;
  }
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-left .footer-menu li a:hover,
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-middle .footer-menu li a:hover,
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-right .footer-menu li a:hover {
  color: #4c545d;
  color: var(--dark-grey, #333333);
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #6D6D6D;
  border-top: 1px solid var(--grey, #6D6D6D);
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .social-icons {
  display: flex;
  grid-gap: 20px;
  gap: 20px;
  margin-bottom: 40px;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .social-icons section {
  padding: 0;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .social-icons section .wp-block-social-links .wp-social-link svg {
  height: 40px;
  width: 40px;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .social-icons section .wp-social-link-facebook,
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .social-icons section .wp-social-link-youtube {
  background-color: #6D6D6D;
  background-color: var(--grey, #6D6D6D);
  border-radius: 10px;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter {
  margin-bottom: 45px;
  width: 100%;
  max-width: 600px;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_description {
  font-size: 26px;
  color: #6D6D6D;
  color: var(--grey, #666666);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_description {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_description {
    font-size: 18px;
  }
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_validation_errors {
  display: none;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_wrapper {
  width: 100%;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_wrapper .gform_fields {
  display: flex !important;
  width: 100%;
  background: white;
  border: 1px solid #E5E5E5;
  position: relative;
  grid-gap: 0;
  gap: 0;
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_wrapper .gform_fields {
    flex-direction: column;
  }
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_wrapper .gfield {
  margin: 0 !important;
  padding: 0 !important;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_wrapper .gfield--type-email {
  flex: 2 !important;
  width: auto !important;
  position: relative;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_wrapper .gfield--type-email.gfield_error {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_wrapper .gfield--type-email.gfield_error .ginput_container_email input {
  border-color: #E21936 !important;
  border-color: var(--red) !important;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_wrapper .gfield--type-email.gfield_error .validation_message {
  position: absolute;
  bottom: -25px;
  left: 0;
  color: #E21936;
  color: var(--red);
  font-size: 14px;
  padding: 5px 0 0 !important;
  background: none !important;
  border: none !important;
  margin: 0 !important;
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_wrapper .gfield--type-email.gfield_error .validation_message {
    font-size: 16px;
    text-align: left;
    bottom: unset;
    top: -34px;
  }
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_wrapper .gfield#field_submit {
  flex: 1 !important;
  width: auto !important;
  border-left: 1px solid #E5E5E5;
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_wrapper .gfield#field_submit {
    border-left: none;
    border-top: 1px solid #E5E5E5;
  }
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_wrapper .gfield .gfield_label {
  display: none !important;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_wrapper .ginput_container_email input {
  width: 100% !important;
  height: 100% !important;
  min-height: 50px !important;
  padding: 15px 20px !important;
  border-width: 2px 0 2px 2px !important;
  border-style: solid;
  border-color: rgba(109, 109, 109, 0.2) !important;
  font-size: 18px !important;
  background: transparent;
  outline: none;
  text-align: left;
  border-radius: unset;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_wrapper .ginput_container_email input::-moz-placeholder {
  color: #999999;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_wrapper .ginput_container_email input::placeholder {
  color: #999999;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_wrapper .ginput_container_email input:focus {
  outline: none;
  box-shadow: none;
}
@media (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_wrapper .ginput_container_email input {
    border-width: 2px !important;
  }
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_wrapper .gform-button {
  width: 100% !important;
  height: 100% !important;
  min-height: 50px !important;
  padding: 12px 30px !important;
  border-radius: unset !important;
  background: transparent !important;
  color: black !important;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
  gap: 10px;
  transition: all 0.3s ease;
  margin: 0 !important;
  white-space: nowrap;
  font-size: 18px !important;
  font-style: normal;
  font-weight: 700 !important;
  line-height: normal;
  border: 2px solid #6D6D6D !important;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_wrapper .gform-button:after {
  content: ">";
  font-size: 18px;
  color: #E21936;
  color: var(--red);
  font-weight: 700;
  margin-left: 5px;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_wrapper .gform-button:hover {
  background: rgba(0, 0, 0, 0.05) !important;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_wrapper .gform_footer {
  display: none;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_confirmation_message {
  text-align: center;
  padding: 20px;
  background: rgba(0, 128, 0, 0.05);
  border: 2px solid rgba(0, 128, 0, 0.2);
  border-radius: 4px;
  color: #6D6D6D;
  color: var(--grey, #666666);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin: 20px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
  gap: 10px;
  animation: fadeInUp 0.5s ease-out forwards;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_confirmation_message:before {
  content: "✓";
  color: #008000;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .newsletter .gform_confirmation_message {
    font-size: 16px;
    padding: 15px;
  }
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .copyright {
  color: #98989A;
  color: var(--light-grey, #98989A);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 187.5%;
}
@media (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .copyright {
    font-size: 14px;
  }
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .credits {
  color: #98989A;
  color: var(--light-grey, #666666);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .credits {
    font-size: 16px;
  }
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .credits a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
div .editor-styles-wrapper .acf-block-preview .site-footer .footer-grid .footer-center .credits a:hover {
  color: #4c545d;
  color: var(--dark-grey, #333333);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
div .editor-styles-wrapper .acf-block-preview body {
  background: white;
  background: var(--body-bg);
}
div .editor-styles-wrapper .acf-block-preview .site-logo {
  font-size: 3.3rem;
  text-transform: uppercase;
  max-width: 200px;
}
@media (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview .site-logo {
    margin: 5px 0;
  }
}
div .editor-styles-wrapper .acf-block-preview .site-navigation .site-logo {
  padding: 3px 0;
}
div .editor-styles-wrapper .acf-block-preview .site-top {
  position: relative;
  background: #007fb0;
  background: var(--site-top);
}
div .editor-styles-wrapper .acf-block-preview .entry-header, div .editor-styles-wrapper .acf-block-preview .page-header {
  position: relative;
  min-height: calc(400px + 20vw);
  padding: 30px 0;
  color: white;
  background-color: #4c545d;
  background-color: var(--dark-grey);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
div .editor-styles-wrapper .acf-block-preview .entry-header h1, div .editor-styles-wrapper .acf-block-preview .page-header h1 {
  margin: 0 0 1rem;
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: 112.5%;
  text-transform: uppercase;
  z-index: 2;
  text-align: left;
}
@media (max-width: 768px) {
  div .editor-styles-wrapper .acf-block-preview .entry-header h1, div .editor-styles-wrapper .acf-block-preview .page-header h1 {
    font-size: 60px;
  }
}
@media (max-width: 576px) {
  div .editor-styles-wrapper .acf-block-preview .entry-header h1, div .editor-styles-wrapper .acf-block-preview .page-header h1 {
    font-size: 32px;
    line-height: 1.2;
  }
}
div .editor-styles-wrapper .acf-block-preview .entry-header .container, div .editor-styles-wrapper .acf-block-preview .page-header .container {
  position: relative;
  z-index: 2;
}
div .editor-styles-wrapper .acf-block-preview .entry-header::after, div .editor-styles-wrapper .acf-block-preview .page-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  z-index: 1;
}
div .editor-styles-wrapper .acf-block-preview .entry-header .cta-button, div .editor-styles-wrapper .acf-block-preview .page-header .cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: white;
  color: #000;
  text-decoration: none;
  border-radius: 0;
  margin-top: 1.5rem;
  transition: transform 0.2s ease;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
div .editor-styles-wrapper .acf-block-preview .entry-header .cta-button:hover, div .editor-styles-wrapper .acf-block-preview .page-header .cta-button:hover {
  transform: translateY(-2px);
  background: #E21936;
  background: var(--red);
  color: white;
}
div .editor-styles-wrapper .acf-block-preview .entry-header .cta-button:hover::after, div .editor-styles-wrapper .acf-block-preview .page-header .cta-button:hover::after {
  color: black;
}
div .editor-styles-wrapper .acf-block-preview .entry-header .cta-button::after, div .editor-styles-wrapper .acf-block-preview .page-header .cta-button::after {
  content: ">";
  margin-left: 0.5rem;
  font-weight: 700;
  color: #E21936;
  color: var(--red);
}
div .editor-styles-wrapper .acf-block-preview .entry-header .cover-image, div .editor-styles-wrapper .acf-block-preview .page-header .cover-image {
  height: 500px;
}
div .editor-styles-wrapper .acf-block-preview .entry-header + p, div .editor-styles-wrapper .acf-block-preview .entry-content > p:first-child {
  padding-top: 30px;
  padding-top: var(--gap);
}
div .editor-styles-wrapper .acf-block-preview .error-404, div .editor-styles-wrapper .acf-block-preview .error404 {
  background: white;
  color: #E21936;
  color: var(--highlight);
}
div .editor-styles-wrapper .acf-block-preview .error-404 .container-content, div .editor-styles-wrapper .acf-block-preview .error-404 .site-content, div .editor-styles-wrapper .acf-block-preview .error404 .container-content, div .editor-styles-wrapper .acf-block-preview .error404 .site-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 0;
  padding: var(--gap) 0;
}
div .editor-styles-wrapper .acf-block-preview .error-404 .title-404, div .editor-styles-wrapper .acf-block-preview .error404 .title-404 {
  font-size: 27vmin;
  font-weight: bold;
  line-height: 1;
  color: #E21936;
  color: var(--highlight);
  text-shadow: 1px 1px white;
  margin-bottom: 30px;
  margin-bottom: var(--gap);
}
div .editor-styles-wrapper .acf-block-preview .error-404 p, div .editor-styles-wrapper .acf-block-preview .error404 p {
  margin-bottom: 30px;
  margin-bottom: var(--gap);
  font-size: 2rem;
  line-height: 1.4;
  color: black;
}
div .editor-styles-wrapper .acf-block-preview .error-404 .button, div .editor-styles-wrapper .acf-block-preview .error404 .button {
  margin-bottom: 30px;
  margin-bottom: var(--gap);
  padding: 10px 34px;
  background: black;
  color: white;
  border-radius: 0;
  font-size: 1.5rem;
  text-transform: uppercase;
}
div .editor-styles-wrapper .acf-block-preview .error-404 .button:hover, div .editor-styles-wrapper .acf-block-preview .error404 .button:hover {
  background: #E21936;
  background: var(--highlight);
}
div .editor-styles-wrapper .acf-block-preview .background-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
}
div .editor-styles-wrapper .acf-block-preview .background-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  position: relative;
}
div .editor-styles-wrapper .acf-block-preview .background-image ~ * {
  z-index: 10;
}
div .editor-styles-wrapper .acf-block-preview .cover-image {
  width: 100%;
  display: block;
}
div .editor-styles-wrapper .acf-block-preview .cover-image img {
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
}
div .editor-styles-wrapper .acf-block-preview .overlay {
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.65);
  color: white;
}
div .editor-styles-wrapper .acf-block-preview article img, div .editor-styles-wrapper .acf-block-preview .wp-block-image img {
  display: block;
}
div .editor-styles-wrapper .acf-block-preview figure {
  margin-bottom: 1em;
  max-width: 100%;
  font-size: 1.3rem;
}
div .editor-styles-wrapper .acf-block-preview .card-grid figure, div .editor-styles-wrapper .acf-block-preview .card-grid-full figure {
  text-align: center;
  margin: 0;
}
div .editor-styles-wrapper .acf-block-preview img.alignright {
  float: right;
  margin-left: 30px;
  margin-left: var(--gap);
  margin-bottom: 1em;
}
div .editor-styles-wrapper .acf-block-preview img.alignleft {
  float: left;
  margin-right: 30px;
  margin-right: var(--gap);
  margin-bottom: 1em;
}
div .editor-styles-wrapper .acf-block-preview .wp-block-image .alignright {
  margin-top: 0.6em;
  float: right;
  margin-left: 30px;
  margin-left: var(--gap);
}
div .editor-styles-wrapper .acf-block-preview .wp-block-image .alignleft {
  margin-top: 0.6em;
  float: left;
  margin-right: 30px;
  margin-right: var(--gap);
}
div .editor-styles-wrapper .acf-block-preview .aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
div .editor-styles-wrapper .acf-block-preview .container-content .alignfull {
  max-width: none;
}
div .editor-styles-wrapper .acf-block-preview .alignfull img {
  -o-object-fit: cover;
     object-fit: cover;
}
div .editor-styles-wrapper .acf-block-preview .videowrapper {
  float: none;
  clear: both;
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
}
div .editor-styles-wrapper .acf-block-preview .videowrapper iframe, div .editor-styles-wrapper .acf-block-preview .videowrapper video, div .editor-styles-wrapper .acf-block-preview .videowrapper object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
div .editor-styles-wrapper .acf-block-preview .menu li {
  color: white;
}
div .editor-styles-wrapper .acf-block-preview #panel-left .menu .current-menu-item, div .editor-styles-wrapper .acf-block-preview #panel-left .menu li.toggled-on {
  color: white;
}
div .editor-styles-wrapper .acf-block-preview #panel-left .menu .current-menu-item > .menu-item-link, div .editor-styles-wrapper .acf-block-preview #panel-left .menu li.toggled-on > .menu-item-link {
  background: transparent;
}
@media (min-width: 900px) {
  div .editor-styles-wrapper .acf-block-preview .site-top .menu#top-menu, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu#top-menu {
    grid-gap: 20px;
    gap: 20px;
  }
}
@media (min-width: 900px) and (max-width: 1030px) {
  div .editor-styles-wrapper .acf-block-preview .site-top .menu#top-menu, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu#top-menu {
    grid-gap: 10px;
    gap: 10px;
  }
}
@media (min-width: 900px) {
  div .editor-styles-wrapper .acf-block-preview .site-top .menu#top-menu li, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu#top-menu li {
    font-weight: 600;
  }
  div .editor-styles-wrapper .acf-block-preview .site-top .menu li, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu li {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
}
@media (min-width: 900px) and (max-width: 1030px) {
  div .editor-styles-wrapper .acf-block-preview .site-top .menu li, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu li {
    font-size: 14px;
  }
}
@media (min-width: 900px) {
  div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item:after, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #E21936;
    background-color: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item.toggled-on, div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item:hover, div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item[focus-within], div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item.toggled-on, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item:hover, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item[focus-within] {
    background: transparent;
  }
  div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item.toggled-on, div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item:hover, div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item:focus-within, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item.toggled-on, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item:hover, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item:focus-within {
    background: transparent;
  }
  div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item.toggled-on:after, div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item:hover:after, div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item[focus-within]:after, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item.toggled-on:after, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item:hover:after, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item[focus-within]:after {
    transform: scaleX(1);
  }
  div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item.toggled-on:after, div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item:hover:after, div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item:focus-within:after, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item.toggled-on:after, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item:hover:after, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item:focus-within:after {
    transform: scaleX(1);
  }
  div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item.current-menu-item:after, div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item.current-page-item:after, div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item.current-menu-parent:after, div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item.current-page-ancestor:after, div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item.current-menu-ancestor:after, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item.current-menu-item:after, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item.current-page-item:after, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item.current-menu-parent:after, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item.current-page-ancestor:after, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item.current-menu-ancestor:after {
    transform: scaleX(1);
  }
  div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item.current-menu-item > .menu-item-link, div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item.current-page-item > .menu-item-link, div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item.current-menu-parent > .menu-item-link, div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item.current-page-ancestor > .menu-item-link, div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item.current-menu-ancestor > .menu-item-link, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item.current-menu-item > .menu-item-link, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item.current-page-item > .menu-item-link, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item.current-menu-parent > .menu-item-link, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item.current-page-ancestor > .menu-item-link, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item.current-menu-ancestor > .menu-item-link {
    color: #E21936;
    color: var(--red);
  }
  div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item > .sub-menu, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item > .sub-menu {
    display: none;
    background: white;
    border-radius: 0 0 3px 3px;
  }
  div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item > .sub-menu .menu-item-link, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item > .sub-menu .menu-item-link {
    transition: all 0.5s;
    color: #E21936;
    color: var(--highlight);
  }
  div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item > .sub-menu li:hover > .menu-item-link, div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item > .sub-menu li[focus-within] > .menu-item-link, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item > .sub-menu li:hover > .menu-item-link, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item > .sub-menu li[focus-within] > .menu-item-link {
    background: #E21936;
    background: var(--highlight);
    color: white;
  }
  div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item > .sub-menu li:hover > .menu-item-link, div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item > .sub-menu li:focus-within > .menu-item-link, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item > .sub-menu li:hover > .menu-item-link, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item > .sub-menu li:focus-within > .menu-item-link {
    background: #E21936;
    background: var(--highlight);
    color: white;
  }
  div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item > .sub-menu li.current-menu-item > .menu-item-link,
  div .editor-styles-wrapper .acf-block-preview .site-top .menu .top-level-item > .sub-menu li.current-page-item > .menu-item-link, div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item > .sub-menu li.current-menu-item > .menu-item-link,
  div .editor-styles-wrapper .acf-block-preview .horizontal-menu .menu .top-level-item > .sub-menu li.current-page-item > .menu-item-link {
    background: #E21936;
    background: var(--highlight);
    color: white;
    font-weight: 700;
  }
}
div .editor-styles-wrapper .acf-block-preview .submenu-dropdown-toggle .icon {
  transition: transform 0.4s;
}
div .editor-styles-wrapper .acf-block-preview .submenu-dropdown-toggle,
div .editor-styles-wrapper .acf-block-preview .submenu-dropdown-toggle:focus {
  background: none;
  border: none;
  margin: 0;
  display: inline;
  outline: none;
  cursor: pointer;
  min-width: 1.5em;
  text-align: left;
  font-size: inherit;
  color: inherit;
}
div .editor-styles-wrapper .acf-block-preview .menu-item.toggled-on > .menu-item-link .icon {
  transform: rotate(90deg);
}
@media (max-width: 900px) {
  div .editor-styles-wrapper .acf-block-preview #panel-left {
    padding-top: 30px;
  }
  div .editor-styles-wrapper .acf-block-preview #panel-left .panel-logo {
    margin-bottom: 40px;
  }
  div .editor-styles-wrapper .acf-block-preview #panel-left .weekly-btn .menu-item-link, div .editor-styles-wrapper .acf-block-preview #panel-left .join-us-btn .menu-item-link {
    background-color: white;
    margin: 10px auto;
    max-width: 200px;
  }
  div .editor-styles-wrapper .acf-block-preview #panel-left .weekly-btn .menu-item-link a, div .editor-styles-wrapper .acf-block-preview #panel-left .join-us-btn .menu-item-link a {
    color: #6D6D6D;
    color: var(--grey);
  }
}
div .editor-styles-wrapper .acf-block-preview label {
  display: block;
  font-weight: 800;
}
div .editor-styles-wrapper .acf-block-preview fieldset {
  margin-bottom: 30px;
  margin-bottom: var(--gap);
}
div .editor-styles-wrapper .acf-block-preview input[type=text],
div .editor-styles-wrapper .acf-block-preview input[type=email],
div .editor-styles-wrapper .acf-block-preview input[type=url],
div .editor-styles-wrapper .acf-block-preview input[type=password],
div .editor-styles-wrapper .acf-block-preview input[type=search],
div .editor-styles-wrapper .acf-block-preview input[type=number],
div .editor-styles-wrapper .acf-block-preview input[type=tel],
div .editor-styles-wrapper .acf-block-preview input[type=range],
div .editor-styles-wrapper .acf-block-preview input[type=date],
div .editor-styles-wrapper .acf-block-preview input[type=month],
div .editor-styles-wrapper .acf-block-preview input[type=week],
div .editor-styles-wrapper .acf-block-preview input[type=time],
div .editor-styles-wrapper .acf-block-preview input[type=datetime],
div .editor-styles-wrapper .acf-block-preview input[type=datetime-local],
div .editor-styles-wrapper .acf-block-preview input[type=color],
div .editor-styles-wrapper .acf-block-preview input[type=file],
div .editor-styles-wrapper .acf-block-preview textarea {
  border: 1px solid grey;
  background: transparent;
  color: #6D6D6D;
  color: var(--main-text-color);
  width: 100%;
  min-width: 0;
  font-size: inherit;
  transition: all 0.5s;
  padding: 3px 5px;
  display: block;
}
div .editor-styles-wrapper .acf-block-preview input[type=text]:focus,
div .editor-styles-wrapper .acf-block-preview input[type=email]:focus,
div .editor-styles-wrapper .acf-block-preview input[type=url]:focus,
div .editor-styles-wrapper .acf-block-preview input[type=password]:focus,
div .editor-styles-wrapper .acf-block-preview input[type=search]:focus,
div .editor-styles-wrapper .acf-block-preview input[type=number]:focus,
div .editor-styles-wrapper .acf-block-preview input[type=tel]:focus,
div .editor-styles-wrapper .acf-block-preview input[type=range]:focus,
div .editor-styles-wrapper .acf-block-preview input[type=date]:focus,
div .editor-styles-wrapper .acf-block-preview input[type=month]:focus,
div .editor-styles-wrapper .acf-block-preview input[type=week]:focus,
div .editor-styles-wrapper .acf-block-preview input[type=time]:focus,
div .editor-styles-wrapper .acf-block-preview input[type=datetime]:focus,
div .editor-styles-wrapper .acf-block-preview input[type=datetime-local]:focus,
div .editor-styles-wrapper .acf-block-preview input[type=color]:focus,
div .editor-styles-wrapper .acf-block-preview input[type=file]:focus,
div .editor-styles-wrapper .acf-block-preview textarea:focus {
  border: 1px solid #E21936;
  border: 1px solid var(--highlight);
}
div .editor-styles-wrapper .acf-block-preview .site-container select {
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20aria-hidden%3D%27true%27%20focusable%3D%27false%27%20width%3D%271em%27%20height%3D%271em%27%20style%3D%27-ms-transform%3A%20rotate%28360deg%29%3B%20-webkit-transform%3A%20rotate%28360deg%29%3B%20transform%3A%20rotate%28360deg%29%3B%27%20preserveAspectRatio%3D%27xMidYMid%20meet%27%20viewBox%3D%270%200%2032%2032%27%3E%3Cpath%20d%3D%27M16%2022L6%2012l1.4-1.4l8.6%208.6l8.6-8.6L26%2012z%27%20fill%3D%27%23000%27%2F%3E%3Crect%20x%3D%270%27%20y%3D%270%27%20width%3D%2732%27%20height%3D%2732%27%20fill%3D%27rgba%280%2C%200%2C%200%2C%200%29%27%20%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat, repeat;
  background-position: right 0.8rem top 50%, 0 0;
  background-size: 1.2em auto, 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 5px 10px;
  font-weight: bold;
  color: black;
  background-color: transparent;
  font-size: inherit;
}
div .editor-styles-wrapper .acf-block-preview .site-container select option {
  font-weight: normal;
}
div .editor-styles-wrapper .acf-block-preview input[type=radio],
div .editor-styles-wrapper .acf-block-preview input[type=checkbox] {
  margin-right: 0.5em;
}
div .editor-styles-wrapper .acf-block-preview .btn, div .editor-styles-wrapper .acf-block-preview .button, div .editor-styles-wrapper .acf-block-preview input[type=submit] {
  border: 1px solid transparent;
  display: inline-block;
  text-transform: capitalize;
  background: #E21936;
  background: var(--highlight);
  padding: 5px 10px;
  color: white;
  border-radius: 3px;
  transition: all 0.5s;
  cursor: pointer;
  box-shadow: none;
  font-size: inherit;
}
div .editor-styles-wrapper .acf-block-preview .btn:active, div .editor-styles-wrapper .acf-block-preview .btn:focus, div .editor-styles-wrapper .acf-block-preview .button:active, div .editor-styles-wrapper .acf-block-preview .button:focus, div .editor-styles-wrapper .acf-block-preview input[type=submit]:active, div .editor-styles-wrapper .acf-block-preview input[type=submit]:focus {
  color: white;
  background: #007fb0;
  background: var(--highlight-darkened);
  box-shadow: 0 0 0 2px rgba(0, 185, 235, 0.73);
  box-shadow: 0 0 0 2px var(--highlight-alpha);
}
div .editor-styles-wrapper .acf-block-preview .btn:hover, div .editor-styles-wrapper .acf-block-preview .button:hover, div .editor-styles-wrapper .acf-block-preview input[type=submit]:hover {
  color: white;
  background: #007fb0;
  background: var(--highlight-darkened);
}
div .editor-styles-wrapper .acf-block-preview .btn--o, div .editor-styles-wrapper .acf-block-preview .button--o {
  border: 1px solid #E21936;
  border: 1px solid var(--highlight);
  color: #E21936;
  color: var(--highlight);
  background: transparent;
}
div .editor-styles-wrapper .acf-block-preview .btn--o:hover, div .editor-styles-wrapper .acf-block-preview .btn--o:focus, div .editor-styles-wrapper .acf-block-preview .button--o:hover, div .editor-styles-wrapper .acf-block-preview .button--o:focus {
  background: #E21936;
  background: var(--highlight);
  color: white;
}
div .editor-styles-wrapper .acf-block-preview ::-moz-placeholder {
  color: #6D6D6D;
  color: var(--grey);
  opacity: 0.7;
  font-family: "Open Sans", Roboto, "Helvetica Neue", sans-serif;
  font-family: var(--font);
}
div .editor-styles-wrapper .acf-block-preview ::placeholder {
  color: #6D6D6D;
  color: var(--grey);
  opacity: 0.7;
  font-family: "Open Sans", Roboto, "Helvetica Neue", sans-serif;
  font-family: var(--font);
}
div .editor-styles-wrapper .acf-block-preview .search-form {
  display: flex;
}
div .editor-styles-wrapper .acf-block-preview .search-form .search-field {
  flex: 1 1 auto;
  padding: 3px 10px 3px 10px;
  border: 1px solid #E21936;
  border: 1px solid var(--highlight);
  border-radius: 3px;
  background: white;
}
div .editor-styles-wrapper .acf-block-preview .input-prepend, div .editor-styles-wrapper .acf-block-preview .input-append {
  transition: all 0.5s;
  background: white;
  z-index: 2;
  color: #6D6D6D;
  color: var(--subtle-text-color);
  box-shadow: none;
}
div .editor-styles-wrapper .acf-block-preview .input-append {
  border-radius: 0 3px 3px 0;
  margin-left: -2px;
  order: 1;
  border: 1px solid #E21936;
  border: 1px solid var(--highlight);
  border-left: 0;
}
div .editor-styles-wrapper .acf-block-preview .input-prepend {
  border-radius: 3px 0 0 3px;
  margin-right: -2px;
  border: 1px solid #E21936;
  border: 1px solid var(--highlight);
  order: -1;
  border-right: 0;
}
div .editor-styles-wrapper .acf-block-preview input:focus + .input-prepend {
  border-color: #E21936;
  border-color: var(--highlight);
}
div .editor-styles-wrapper .acf-block-preview input:focus + .input-append {
  border-color: #E21936;
  border-color: var(--highlight);
}
div .editor-styles-wrapper .acf-block-preview .animate {
  animation-fill-mode: both;
  animation-duration: 1s;
  transform: translate(0);
}
div .editor-styles-wrapper .acf-block-preview .infinite {
  animation-iteration-count: infinite;
}
div .editor-styles-wrapper .acf-block-preview #page [data-scrollscrub] {
  transition: none;
}
div .editor-styles-wrapper .acf-block-preview .fixed-at-top {
  position: fixed;
  top: 0;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(1) {
  transition-delay: 0s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(2) {
  transition-delay: 0.25s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(3) {
  transition-delay: 0.5s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(4) {
  transition-delay: 0.75s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(5) {
  transition-delay: 1s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(6) {
  transition-delay: 1.25s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(7) {
  transition-delay: 1.5s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(8) {
  transition-delay: 1.75s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(9) {
  transition-delay: 2s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(10) {
  transition-delay: 2.25s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(11) {
  transition-delay: 2.5s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(12) {
  transition-delay: 2.75s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(13) {
  transition-delay: 3s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(14) {
  transition-delay: 3.25s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(15) {
  transition-delay: 3.5s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(16) {
  transition-delay: 3.75s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(17) {
  transition-delay: 4s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(18) {
  transition-delay: 4.25s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(19) {
  transition-delay: 4.5s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(20) {
  transition-delay: 4.75s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(21) {
  transition-delay: 5s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(22) {
  transition-delay: 5.25s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(23) {
  transition-delay: 5.5s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(24) {
  transition-delay: 5.75s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(25) {
  transition-delay: 6s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(26) {
  transition-delay: 6.25s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(27) {
  transition-delay: 6.5s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(28) {
  transition-delay: 6.75s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(29) {
  transition-delay: 7s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(30) {
  transition-delay: 7.25s;
}
div .editor-styles-wrapper .acf-block-preview .active.sequence:nth-of-type(31) {
  transition-delay: 7.5s;
}
div .editor-styles-wrapper .acf-block-preview .js [data-scrollanimation*=fadeInUp] {
  opacity: 0;
  transition: all 0.5s;
  transform: translate3d(0, 100%, 0);
}
div .editor-styles-wrapper .acf-block-preview .js [data-scrollanimation*=fadeInUp].fadeInUp {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
div .editor-styles-wrapper .acf-block-preview .js [data-scrollanimation*=zoomIn] {
  transition: all 0.5s;
  opacity: 0;
  transform: scale3d(0.3, 0.3, 0.3);
}
div .editor-styles-wrapper .acf-block-preview .js [data-scrollanimation*=zoomIn].zoomIn {
  transform: scale(1);
  opacity: 1;
}
div .editor-styles-wrapper .acf-block-preview .icon, div .editor-styles-wrapper .acf-block-preview #wpadminbar .icon {
  display: inline-block;
  stroke-width: 0;
  stroke: currentColor;
  height: 1em;
  vertical-align: middle;
  width: 1em;
  position: relative;
  fill: currentColor;
}
div .editor-styles-wrapper .acf-block-preview .icon svg, div .editor-styles-wrapper .acf-block-preview .icon path, div .editor-styles-wrapper .acf-block-preview .icon g, div .editor-styles-wrapper .acf-block-preview #wpadminbar .icon svg, div .editor-styles-wrapper .acf-block-preview #wpadminbar .icon path, div .editor-styles-wrapper .acf-block-preview #wpadminbar .icon g {
  fill: currentColor;
}
div .editor-styles-wrapper .acf-block-preview .icon-arrow-right {
  top: -2px;
}
div .editor-styles-wrapper .acf-block-preview ul,
div .editor-styles-wrapper .acf-block-preview ol {
  margin: 0 0 1.5em 30px;
  margin: 0 0 1.5em var(--gap);
  padding: 0;
}
div .editor-styles-wrapper .acf-block-preview ul {
  list-style: disc;
}
div .editor-styles-wrapper .acf-block-preview ol {
  list-style: decimal;
}
div .editor-styles-wrapper .acf-block-preview li > ul,
div .editor-styles-wrapper .acf-block-preview li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}
div .editor-styles-wrapper .acf-block-preview dt {
  font-weight: 700;
}
div .editor-styles-wrapper .acf-block-preview dd {
  margin: 0 1.5em 1.5em;
}
div .editor-styles-wrapper .acf-block-preview table {
  border-collapse: collapse;
  margin: 0 0 1.5em;
  width: 100%;
}
div .editor-styles-wrapper .acf-block-preview thead th {
  border-bottom: 2px solid #bbb;
  padding-bottom: 0.5em;
}
div .editor-styles-wrapper .acf-block-preview th {
  padding: 0.4em;
  text-align: left;
}
div .editor-styles-wrapper .acf-block-preview tr {
  border-bottom: 1px solid #eee;
}
div .editor-styles-wrapper .acf-block-preview td {
  padding: 0.4em;
}
div .editor-styles-wrapper .acf-block-preview th:first-child,
div .editor-styles-wrapper .acf-block-preview td:first-child {
  padding-left: 0;
}
div .editor-styles-wrapper .acf-block-preview th:last-child,
div .editor-styles-wrapper .acf-block-preview td:last-child {
  padding-right: 0;
}
div .editor-styles-wrapper .acf-block-preview section, div .editor-styles-wrapper .acf-block-preview .section {
  padding-top: 30px;
  padding-top: var(--gap);
  padding-bottom: 30px;
  padding-bottom: var(--gap);
}
div .editor-styles-wrapper .acf-block-preview section section, div .editor-styles-wrapper .acf-block-preview .section section {
  padding-top: 0;
  padding-bottom: 0;
}
div .editor-styles-wrapper .acf-block-preview section p:last-child, div .editor-styles-wrapper .acf-block-preview .section p:last-child {
  margin-bottom: 0;
}
div .editor-styles-wrapper .acf-block-preview section.no-bg + section.no-bg, div .editor-styles-wrapper .acf-block-preview section.no-bg + .section.no-bg, div .editor-styles-wrapper .acf-block-preview .section.no-bg + section.no-bg, div .editor-styles-wrapper .acf-block-preview .section.no-bg + .section.no-bg {
  padding-top: 0;
}
div .editor-styles-wrapper .acf-block-preview section.heading-center h1, div .editor-styles-wrapper .acf-block-preview section.heading-center h2 {
  text-align: center;
}
div .editor-styles-wrapper .acf-block-preview .site-content .padding {
  padding: 30px;
  padding: var(--gap);
}
div .editor-styles-wrapper .acf-block-preview .site-content .no-padding {
  padding: 0;
}
div .editor-styles-wrapper .acf-block-preview .site-content .no-padding-top {
  padding-top: 0;
}
div .editor-styles-wrapper .acf-block-preview .site-content .no-padding-bottom {
  padding-bottom: 0;
}
div .editor-styles-wrapper .acf-block-preview .site-content .margin-bottom {
  margin-bottom: 30px;
  margin-bottom: var(--gap);
}

/*--------------------------------------------------------------
# Blocks Styles
--------------------------------------------------------------*/
/**
 * This file holds all the styles for our custom Gutenberg blocks.
 */
.slider-section {
  width: 100%;
  height: 90vh;
  position: relative;
  overflow: hidden;
  padding: 0;
}
@media (max-width: 768px) {
  .slider-section {
    height: auto;
  }
}
.slider-section .animate-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.slider-section .animate-content h1 {
  transition-delay: 0.2s;
}
.slider-section .animate-content p {
  transition-delay: 0.4s;
}
.slider-section .animate-button {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
  transition-delay: 0.6s;
}
.slider-section .slider-item.active .animate-content,
.slider-section .slider-item.active .animate-button {
  opacity: 1;
  transform: translate(0) scale(1);
}
.slider-section .slider-container {
  height: 100%;
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.slider-section .slider-container .slider-item {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: opacity 0.8s ease;
  position: relative;
}
.slider-section .slider-container .slider-item:not(.active) {
  opacity: 0.8;
}
.slider-section .slider-container .slider-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  z-index: 1;
}
.slider-section .slider-container .slider-item .entry-header {
  position: relative;
  z-index: 2;
  height: 100%;
  background-color: transparent;
  background-size: cover;
  width: 100%;
  background-position: top;
  padding: 100px 30px;
}
.slider-section .slider-container .slider-item .slider-content {
  display: flex;
  width: 100%;
  max-width: 1320px;
  max-width: var(--container);
  height: 100%;
  align-items: center;
  justify-content: flex-start;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 2;
  padding: 0 30px;
  padding: 0 var(--gap);
  margin: 0 auto;
}
@media (max-width: 1030px) {
  .slider-section .slider-container .slider-item .slider-content {
    max-width: var(--container-lg);
  }
}
@media (max-width: 768px) {
  .slider-section .slider-container .slider-item .slider-content {
    max-width: var(--container-md);
    padding: 0 var(--gap-md);
  }
}
@media (max-width: 576px) {
  .slider-section .slider-container .slider-item .slider-content {
    max-width: var(--container-sm);
    padding: 0 var(--gap-sm);
  }
}
.slider-section .slider-container .slider-item .slider-content .slider-center {
  text-align: left;
  color: #ffffff;
  width: 100%;
  max-width: 80%;
}
.slider-section .slider-container .slider-item .slider-content .slider-center h1, .slider-section .slider-container .slider-item .slider-content .slider-center h2 {
  margin: 0 0 1rem;
  font-size: 75px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  z-index: 2;
  text-align: left;
}
@media (max-width: 768px) {
  .slider-section .slider-container .slider-item .slider-content .slider-center h1, .slider-section .slider-container .slider-item .slider-content .slider-center h2 {
    font-size: 60px;
  }
}
@media (max-width: 576px) {
  .slider-section .slider-container .slider-item .slider-content .slider-center h1, .slider-section .slider-container .slider-item .slider-content .slider-center h2 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .slider-section .slider-container .slider-item .slider-content .slider-center h1, .slider-section .slider-container .slider-item .slider-content .slider-center h2 {
    max-width: 100%;
  }
}
.slider-section .slider-container .slider-item .slider-content .slider-center p {
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px; /* 166.667% */
  margin-bottom: 50px;
  text-align: left;
}
.slider-section .slider-container .slider-item .slider-content .slider-link {
  display: inline-block;
  padding: 14px 36px;
  background: white;
  color: #000;
  text-decoration: none;
  border-radius: 0;
  margin-top: 1.5rem;
  transition: transform 0.2s ease;
  align-self: flex-start;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.slider-section .slider-container .slider-item .slider-content .slider-link:hover {
  transform: translateY(-2px);
  background: #E21936;
  background: var(--red);
  color: white;
}
.slider-section .slider-container .slider-item .slider-content .slider-link:hover::after {
  color: black;
}
.slider-section .slider-container .slider-item .slider-content .slider-link::after {
  content: ">";
  margin-left: 0.5rem;
  font-weight: 700;
  color: #E21936;
  color: var(--red);
}
.slider-section .slider-nav {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  margin: 0;
  display: flex;
  grid-gap: 10px;
  gap: 10px;
  justify-content: flex-start;
  width: 100%;
  max-width: 1320px;
  max-width: var(--container);
  padding: 0 30px;
  padding: 0 var(--gap);
  z-index: 99;
}
@media (max-width: 1030px) {
  .slider-section .slider-nav {
    max-width: 93%;
  }
}
@media (max-width: 768px) {
  .slider-section .slider-nav {
    max-width: 100%;
    bottom: 50px;
    grid-gap: 8px;
    gap: 8px;
  }
}
@media (max-width: 576px) {
  .slider-section .slider-nav {
    bottom: 50px;
    grid-gap: 6px;
    gap: 6px;
  }
}
.slider-section .slider-nav .slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .slider-section .slider-nav .slider-dot {
    width: 10px;
    height: 10px;
  }
}
.slider-section .slider-nav .slider-dot.active {
  background-color: #ffffff;
  transform: scale(1.2);
}
.slider-section .slider-nav .slider-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.slide-puzzle-block {
  --gap: 2px;
  --background: white;
  --radius: 4px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 30px;
  padding: 100px var(--gap);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 100px;
  gap: 100px;
  align-items: center;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .slide-puzzle-block {
    grid-template-columns: 1fr;
    grid-gap: 50px;
    gap: 50px;
    padding: 50px 30px;
    padding: 50px var(--gap);
  }
}
@media (max-width: 576px) {
  .slide-puzzle-block {
    padding: 30px 30px;
    padding: 30px var(--gap);
  }
}
.slide-puzzle-block.initialized {
  opacity: 1;
}
.slide-puzzle-block .puzzle-content {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
  gap: 20px;
}
.slide-puzzle-block .puzzle-title {
  font-size: 60px;
  line-height: 1.2;
  margin: 0;
  color: #6D6D6D;
  color: var(--black);
  position: relative;
  padding-bottom: 15px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .slide-puzzle-block .puzzle-title {
    font-size: 50px;
  }
}
@media (max-width: 576px) {
  .slide-puzzle-block .puzzle-title {
    font-size: 40px;
  }
}
.slide-puzzle-block .puzzle-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 10px;
  background-color: #E21936;
  background-color: var(--red);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .slide-puzzle-block .puzzle-title:after {
    width: 70px;
    height: 8px;
  }
}
@media (max-width: 576px) {
  .slide-puzzle-block .puzzle-title:after {
    width: 50px;
    height: 6px;
  }
}
.slide-puzzle-block .puzzle-text {
  font-size: 18px;
  line-height: 1.4;
  color: #666;
  color: var(--text-color, #666);
  margin-top: 15px;
}
@media (max-width: 768px) {
  .slide-puzzle-block .puzzle-text {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .slide-puzzle-block .puzzle-text {
    font-size: 14px;
  }
}
.slide-puzzle-block .puzzle-text p:last-child {
  margin-bottom: 0;
}
.slide-puzzle-block .puzzle-link {
  display: inline-block;
  padding: 14px 36px;
  background: white;
  color: #000;
  text-decoration: none;
  border-radius: 0;
  margin-top: 40px;
  transition: transform 0.2s ease;
  align-self: flex-start;
  border: 2px solid #6D6D6D;
  border: 2px solid var(--black, #6D6D6D);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 768px) {
  .slide-puzzle-block .puzzle-link {
    font-size: 16px;
    margin-top: 0;
  }
}
@media (max-width: 576px) {
  .slide-puzzle-block .puzzle-link {
    margin-top: 30px;
    font-size: 14px;
  }
}
.slide-puzzle-block .puzzle-link:hover {
  transform: translateY(-2px);
  background: #E21936;
  background: var(--red);
  border: 2px solid #E21936;
  border: 2px solid var(--red);
  color: white;
}
.slide-puzzle-block .puzzle-link:hover::after {
  color: #6D6D6D;
  color: var(--black);
}
.slide-puzzle-block .puzzle-link::after {
  content: ">";
  margin-left: 0.5rem;
  font-weight: 700;
  color: #E21936;
  color: var(--red);
}
.slide-puzzle-block .puzzle-container {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 100%;
  background: var(--background);
  border-radius: var(--radius);
  overflow: hidden;
}
.slide-puzzle-block .puzzle-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  padding: var(--gap);
}
.slide-puzzle-block .puzzle-tile {
  position: absolute;
  width: calc((100% - 30px * (var(--grid-size) + 1)) / var(--grid-size));
  width: calc((100% - var(--gap) * (var(--grid-size) + 1)) / var(--grid-size));
  height: calc((100% - 30px * (var(--grid-size) + 1)) / var(--grid-size));
  height: calc((100% - var(--gap) * (var(--grid-size) + 1)) / var(--grid-size));
  transform: translate(calc(var(--x) * (100% + 30px)), calc(var(--y) * (100% + 30px)));
  transform: translate(calc(var(--x) * (100% + var(--gap))), calc(var(--y) * (100% + var(--gap))));
  background-repeat: no-repeat;
  background-size: calc(var(--grid-size) * 100%);
  cursor: pointer;
  will-change: transform;
  transition: transform 0.2s ease;
  background-size: calc(var(--grid-size) * (100% + 30px));
  background-size: calc(var(--grid-size) * (100% + var(--gap)));
}
.slide-puzzle-block .puzzle-tile:hover {
  z-index: 2;
  transform: scale(1.02) translate(calc(var(--x) * (100% + 30px)), calc(var(--y) * (100% + 30px)));
  transform: scale(1.02) translate(calc(var(--x) * (100% + var(--gap))), calc(var(--y) * (100% + var(--gap))));
}
.slide-puzzle-block .puzzle-tile::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 30px solid var(--background);
  border: var(--gap) solid var(--background);
  pointer-events: none;
}
.slide-puzzle-block .preview-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
}

.block-editor-block-list__block .slide-puzzle-block {
  margin: 0;
}
.block-editor-block-list__block .slide-puzzle-block .components-placeholder__error {
  color: #cc1818;
  padding: 8px 16px;
  background: #fff;
  border-radius: 4px;
}

.spin-wheel-puzzle {
  --ring-gap: 2px;
  --background: white;
  --radius: 50%;
  --ring-border: 10px;
  --ring-spacing: 12.5%;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
  transition: opacity 0.3s ease;
  background-color: #f0f0f0;
  position: relative;
}
@media (max-width: 768px) {
  .spin-wheel-puzzle {
    padding: 50px 15px;
  }
}
@media (max-width: 576px) {
  .spin-wheel-puzzle {
    padding: 40px 10px;
  }
}
.spin-wheel-puzzle.initialized {
  opacity: 1;
}
.spin-wheel-puzzle .wheel-title {
  font-size: 60px;
  line-height: 1.2;
  color: #6D6D6D;
  color: var(--black);
  position: relative;
  padding-bottom: 15px;
  font-weight: 400;
  margin: 0 0 100px;
  text-align: center;
}
@media (max-width: 768px) {
  .spin-wheel-puzzle .wheel-title {
    font-size: 50px;
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .spin-wheel-puzzle .wheel-title {
    font-size: 40px;
    margin-bottom: 40px;
  }
}
.spin-wheel-puzzle .wheel-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 10px;
  background-color: #E21936;
  background-color: var(--red);
}
@media (max-width: 768px) {
  .spin-wheel-puzzle .wheel-title {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .spin-wheel-puzzle .wheel-title:after {
    width: 70px;
    height: 8px;
  }
}
@media (max-width: 576px) {
  .spin-wheel-puzzle .wheel-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .spin-wheel-puzzle .wheel-title:after {
    width: 50px;
    height: 6px;
  }
}
.spin-wheel-puzzle .wheel-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 800px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f0f0f0;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .spin-wheel-puzzle .wheel-container {
    max-width: 600px;
  }
}
@media (max-width: 576px) {
  .spin-wheel-puzzle .wheel-container {
    max-width: 400px;
  }
}
.spin-wheel-puzzle .wheel-rings {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.spin-wheel-puzzle .wheel-rings .ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  cursor: grab;
  transition: transform var(--rotation-speed) ease;
  will-change: transform;
  border: var(--ring-border) solid #98989A;
  border: var(--ring-border) solid var(--light-grey);
  pointer-events: all;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .spin-wheel-puzzle .wheel-rings .ring {
    --ring-border: 8px;
    --ring-spacing: 10%;
  }
}
@media (max-width: 576px) {
  .spin-wheel-puzzle .wheel-rings .ring {
    --ring-border: 6px;
    --ring-spacing: 8%;
  }
}
.spin-wheel-puzzle .wheel-rings .ring:nth-child(1) {
  z-index: 1;
  width: 100%;
  height: 100%;
}
.spin-wheel-puzzle .wheel-rings .ring:nth-child(2) {
  z-index: 2;
  width: calc(100% - var(--ring-spacing) * 2);
  height: calc(100% - var(--ring-spacing) * 2);
}
.spin-wheel-puzzle .wheel-rings .ring:nth-child(3) {
  z-index: 3;
  width: calc(100% - var(--ring-spacing) * 4);
  height: calc(100% - var(--ring-spacing) * 4);
}
.spin-wheel-puzzle .wheel-rings .ring:nth-child(4) {
  z-index: 4;
  width: calc(100% - var(--ring-spacing) * 6);
  height: calc(100% - var(--ring-spacing) * 6);
}
.spin-wheel-puzzle .wheel-rings .ring:hover {
  cursor: grabbing;
}
.spin-wheel-puzzle .wheel-rings .ring.active {
  z-index: 10;
}
.spin-wheel-puzzle .wheel-rings .ring.solved {
  border-color: #5ca103;
}
.spin-wheel-puzzle .preview-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
}
.spin-wheel-puzzle .success-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 20px 40px;
  border-radius: 8px;
  text-align: center;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .spin-wheel-puzzle .success-message {
    padding: 15px 30px;
  }
}
@media (max-width: 576px) {
  .spin-wheel-puzzle .success-message {
    padding: 10px 20px;
  }
}
.spin-wheel-puzzle .success-message.visible {
  opacity: 1;
  visibility: visible;
}
.spin-wheel-puzzle .success-message h3 {
  color: #6D6D6D;
  color: var(--black);
  margin: 0 0 10px;
  font-size: 24px;
}
@media (max-width: 768px) {
  .spin-wheel-puzzle .success-message h3 {
    font-size: 20px;
    margin: 0 0 8px;
  }
}
@media (max-width: 576px) {
  .spin-wheel-puzzle .success-message h3 {
    font-size: 18px;
    margin: 0 0 6px;
  }
}
.spin-wheel-puzzle .success-message p {
  color: var(--text-color);
  margin: 0;
  font-size: 16px;
}
@media (max-width: 768px) {
  .spin-wheel-puzzle .success-message p {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .spin-wheel-puzzle .success-message p {
    font-size: 12px;
  }
}
.spin-wheel-puzzle .confetti {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 15;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.spin-wheel-puzzle .confetti.active {
  opacity: 1;
}
.spin-wheel-puzzle .confetti .confetti-piece {
  position: absolute;
  width: 10px;
  height: 30px;
  background: #ffd300;
  top: -20px;
  opacity: 0;
}
.spin-wheel-puzzle .confetti .confetti-piece:nth-child(1) {
  left: 7%;
  transform: rotate(347deg);
  animation: makeItRain 1000ms infinite ease-out;
  animation-delay: 270ms;
  animation-duration: 1066msms;
}
.spin-wheel-puzzle .confetti .confetti-piece:nth-child(2) {
  left: 14%;
  transform: rotate(313deg);
  animation: makeItRain 1000ms infinite ease-out;
  animation-delay: 385ms;
  animation-duration: 798msms;
}
.spin-wheel-puzzle .confetti .confetti-piece:nth-child(3) {
  left: 21%;
  transform: rotate(108deg);
  animation: makeItRain 1000ms infinite ease-out;
  animation-delay: 267ms;
  animation-duration: 773msms;
}
.spin-wheel-puzzle .confetti .confetti-piece:nth-child(4) {
  left: 28%;
  transform: rotate(179deg);
  animation: makeItRain 1000ms infinite ease-out;
  animation-delay: 496ms;
  animation-duration: 859msms;
}
.spin-wheel-puzzle .confetti .confetti-piece:nth-child(5) {
  left: 35%;
  transform: rotate(229deg);
  animation: makeItRain 1000ms infinite ease-out;
  animation-delay: 95ms;
  animation-duration: 1114msms;
}
.spin-wheel-puzzle .confetti .confetti-piece:nth-child(6) {
  left: 42%;
  transform: rotate(282deg);
  animation: makeItRain 1000ms infinite ease-out;
  animation-delay: 234ms;
  animation-duration: 1165msms;
}
.spin-wheel-puzzle .confetti .confetti-piece:nth-child(7) {
  left: 49%;
  transform: rotate(42deg);
  animation: makeItRain 1000ms infinite ease-out;
  animation-delay: 421ms;
  animation-duration: 849msms;
}
.spin-wheel-puzzle .confetti .confetti-piece:nth-child(8) {
  left: 56%;
  transform: rotate(203deg);
  animation: makeItRain 1000ms infinite ease-out;
  animation-delay: 194ms;
  animation-duration: 768msms;
}
.spin-wheel-puzzle .confetti .confetti-piece:nth-child(9) {
  left: 63%;
  transform: rotate(94deg);
  animation: makeItRain 1000ms infinite ease-out;
  animation-delay: 268ms;
  animation-duration: 1098msms;
}
.spin-wheel-puzzle .confetti .confetti-piece:nth-child(10) {
  left: 70%;
  transform: rotate(42deg);
  animation: makeItRain 1000ms infinite ease-out;
  animation-delay: 12ms;
  animation-duration: 705msms;
}
.spin-wheel-puzzle .confetti .confetti-piece:nth-child(11) {
  left: 77%;
  transform: rotate(307deg);
  animation: makeItRain 1000ms infinite ease-out;
  animation-delay: 14ms;
  animation-duration: 737msms;
}
.spin-wheel-puzzle .confetti .confetti-piece:nth-child(12) {
  left: 84%;
  transform: rotate(230deg);
  animation: makeItRain 1000ms infinite ease-out;
  animation-delay: 485ms;
  animation-duration: 1084msms;
}
.spin-wheel-puzzle .confetti .confetti-piece:nth-child(13) {
  left: 91%;
  transform: rotate(306deg);
  animation: makeItRain 1000ms infinite ease-out;
  animation-delay: 457ms;
  animation-duration: 1108msms;
}
.spin-wheel-puzzle .confetti .confetti-piece:nth-child(odd) {
  background: #7431e8;
}
.spin-wheel-puzzle .confetti .confetti-piece:nth-child(even) {
  z-index: 1;
}
.spin-wheel-puzzle .confetti .confetti-piece:nth-child(4n) {
  width: 5px;
  height: 12px;
  animation-duration: 2000ms;
}
.spin-wheel-puzzle .confetti .confetti-piece:nth-child(3n) {
  width: 3px;
  height: 10px;
  animation-duration: 2500ms;
  animation-delay: 1000ms;
}
.spin-wheel-puzzle .confetti .confetti-piece:nth-child(4n-7) {
  background: #E21936;
  background: var(--red);
}

.block-editor-block-list__block .spin-wheel-puzzle {
  margin: 0;
  max-width: 100%;
}
.block-editor-block-list__block .spin-wheel-puzzle .wheel-container {
  max-width: 800px;
}
@media (max-width: 768px) {
  .block-editor-block-list__block .spin-wheel-puzzle .wheel-container {
    max-width: 600px;
  }
}
@media (max-width: 576px) {
  .block-editor-block-list__block .spin-wheel-puzzle .wheel-container {
    max-width: 400px;
  }
}

@keyframes makeItRain {
  from {
    opacity: 0;
    transform: translateY(0) rotate(var(--rotation));
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateY(calc(100vh - 100px)) rotate(var(--rotation));
  }
}
.faq-block {
  width: 100%;
  max-width: 1320px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 20px;
  background-color: white;
}
@media (max-width: 768px) {
  .faq-block {
    padding: 60px 20px;
  }
}
@media (max-width: 576px) {
  .faq-block {
    padding: 40px 20px;
  }
}
.faq-block .faq-title {
  font-size: 60px;
  line-height: 1.2;
  color: #6D6D6D;
  color: var(--black);
  position: relative;
  padding-bottom: 20px;
  font-weight: 400;
  margin: 0 0 100px;
  text-align: center;
}
.faq-block .faq-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 10px;
  background-color: #E21936;
  background-color: var(--red);
}
@media (max-width: 768px) {
  .faq-block .faq-title {
    font-size: 50px;
    margin-bottom: 40px;
  }
  .faq-block .faq-title:after {
    width: 70px;
    height: 8px;
  }
}
@media (max-width: 576px) {
  .faq-block .faq-title {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .faq-block .faq-title:after {
    width: 50px;
    height: 6px;
  }
}
.faq-block .faq-container {
  max-width: 1320px;
  max-width: var(--container);
  margin: 0 auto;
}
.faq-block .faq-item {
  border-bottom: 1px solid #6D6D6D;
  border-bottom: 1px solid var(--black);
}
.faq-block .faq-item:first-child {
  border-top: 1px solid #6D6D6D;
  border-top: 1px solid var(--black);
}
.faq-block .faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 40px 22px 20px;
  position: relative;
  text-align: left;
  font-size: 22px;
  line-height: 1.3;
  color: #98989A;
  color: var(--light-grey);
  font-weight: 700;
  cursor: pointer;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .faq-block .faq-question {
    font-size: 20px;
    padding: 15px 30px 15px 0;
  }
}
@media (max-width: 576px) {
  .faq-block .faq-question {
    font-size: 18px;
    padding: 12px 40px 12px 0;
  }
}
.faq-block .faq-question:hover {
  color: #E21936;
  color: var(--red);
}
.faq-block .faq-question .icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.faq-block .faq-question .icon path {
  stroke: currentColor;
}
.faq-block .faq-question[aria-expanded=true] {
  color: #E21936;
  color: var(--red);
}
.faq-block .faq-question[aria-expanded=true] .icon {
  transform: translateY(-50%) rotate(180deg);
}
.faq-block .faq-answer {
  padding: 0 0 0 20px;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
  color: #98989A;
  color: var(--light-grey);
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
.faq-block .faq-answer[hidden] {
  display: block;
}
.faq-block .faq-answer.active {
  max-height: 1000px;
  opacity: 1;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .faq-block .faq-answer {
    font-size: 16px;
  }
  .faq-block .faq-answer.active {
    padding-bottom: 15px;
    padding-left: 0;
  }
}
@media (max-width: 576px) {
  .faq-block .faq-answer {
    font-size: 14px;
  }
  .faq-block .faq-answer.active {
    padding-bottom: 12px;
    padding-left: 0;
  }
}
.faq-block .faq-answer p:last-child {
  margin-bottom: 0;
}

.sectors-block {
  width: 100%;
  max-width: 1320px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 20px;
  background-color: #f0f0f0;
}
@media (max-width: 768px) {
  .sectors-block {
    padding: 60px 20px;
  }
}
@media (max-width: 576px) {
  .sectors-block {
    padding: 40px 20px;
  }
}
.sectors-block .sectors-header {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .sectors-block .sectors-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .sectors-block .sectors-header {
    margin-bottom: 30px;
  }
}
.sectors-block .sectors-title {
  font-size: 60px;
  line-height: 1.3;
  color: #6D6D6D;
  color: var(--black);
  position: relative;
  padding-bottom: 20px;
  font-weight: 400;
  margin: 0 0 30px;
}
.sectors-block .sectors-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 10px;
  background-color: #E21936;
  background-color: var(--red);
}
@media (max-width: 768px) {
  .sectors-block .sectors-title {
    font-size: 50px;
    margin-bottom: 20px;
  }
  .sectors-block .sectors-title:after {
    width: 70px;
    height: 8px;
  }
}
@media (max-width: 576px) {
  .sectors-block .sectors-title {
    font-size: 40px;
    margin-bottom: 15px;
  }
  .sectors-block .sectors-title:after {
    width: 50px;
    height: 6px;
  }
}
.sectors-block .sectors-description {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
  color: #6D6D6D;
  color: var(--grey);
  max-width: 1000px;
  margin: 0 auto 20px;
}
@media (max-width: 768px) {
  .sectors-block .sectors-description {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .sectors-block .sectors-description {
    font-size: 16px;
  }
}
.sectors-block .sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  gap: 20px;
  margin: 0 auto 60px;
  max-width: 1320px;
  max-width: var(--container);
}
@media (max-width: 1030px) {
  .sectors-block .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .sectors-block .sectors-grid {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.sectors-block .sector-card {
  display: block;
  position: relative;
  background: white;
  text-decoration: none;
  transition: transform 0.3s ease;
  aspect-ratio: 1;
}
.sectors-block .sector-card:hover {
  transform: translateY(-5px);
}
.sectors-block .sector-card:hover .sector-image img {
  transform: scale(1.1);
}
.sectors-block .sector-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.sectors-block .sector-image:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.sectors-block .sector-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.sectors-block .sector-title {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  padding: 14px 20px;
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
  color: black;
  font-weight: 700;
  z-index: 2;
  text-align: center;
  background: white;
}
@media (max-width: 768px) {
  .sectors-block .sector-title {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .sectors-block .sector-title {
    font-size: 14px;
  }
}
.sectors-block .sectors-cta {
  text-align: center;
}
.sectors-block .sectors-cta .button {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: #000;
  text-decoration: none;
  border-radius: 0;
  margin-top: 40px;
  transition: transform 0.2s ease;
  align-self: flex-start;
  border: 2px solid #6D6D6D;
  border: 2px solid var(--black, #6D6D6D);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 768px) {
  .sectors-block .sectors-cta .button {
    font-size: 16px;
    margin-top: 0;
  }
}
@media (max-width: 576px) {
  .sectors-block .sectors-cta .button {
    font-size: 14px;
  }
}
.sectors-block .sectors-cta .button:hover {
  transform: translateY(-2px);
  background: #E21936;
  background: var(--red);
  border: 2px solid #E21936;
  border: 2px solid var(--red);
  color: white;
}
.sectors-block .sectors-cta .button:hover::after {
  color: #6D6D6D;
  color: var(--black);
}
.sectors-block .sectors-cta .button::after {
  content: ">";
  margin-left: 0.5rem;
  font-weight: 700;
  color: #E21936;
  color: var(--red);
}

.join-us-block {
  width: 100%;
  max-width: 1320px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 20px;
  background-color: #fff;
  overflow: hidden;
}
@media (max-width: 768px) {
  .join-us-block {
    padding: 60px 20px;
  }
}
@media (max-width: 576px) {
  .join-us-block {
    padding: 40px 20px;
  }
}
.join-us-block .join-us-header {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .join-us-block .join-us-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .join-us-block .join-us-header {
    margin-bottom: 30px;
  }
}
.join-us-block .join-us-title {
  font-size: 60px;
  line-height: 1.3;
  color: #6D6D6D;
  color: var(--black);
  position: relative;
  padding-bottom: 20px;
  font-weight: 400;
  margin: 0 0 30px;
}
.join-us-block .join-us-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 10px;
  background-color: #E21936;
  background-color: var(--red);
}
@media (max-width: 768px) {
  .join-us-block .join-us-title {
    font-size: 50px;
    margin-bottom: 20px;
  }
  .join-us-block .join-us-title:after {
    width: 70px;
    height: 8px;
  }
}
@media (max-width: 576px) {
  .join-us-block .join-us-title {
    font-size: 40px;
    margin-bottom: 15px;
  }
  .join-us-block .join-us-title:after {
    width: 50px;
    height: 6px;
  }
}
.join-us-block .join-us-description {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
  color: #6D6D6D;
  color: var(--grey);
  max-width: 1000px;
  margin: 0 auto 20px;
}
@media (max-width: 768px) {
  .join-us-block .join-us-description {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .join-us-block .join-us-description {
    font-size: 16px;
  }
}
.join-us-block .join-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
  gap: 50px;
  margin: 0 auto 60px;
  max-width: 1320px;
  max-width: var(--container);
  width: 100%;
  padding: 0 20px;
}
@media (max-width: 1030px) {
  .join-us-block .join-us-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .join-us-block .join-us-grid {
    grid-gap: 30px;
    gap: 30px;
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .join-us-block .join-us-grid {
    grid-template-columns: 1fr;
    grid-gap: 30px;
    gap: 30px;
    margin-bottom: 40px;
    padding: 0 10px;
  }
}
.join-us-block .join-us-card {
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  overflow: hidden;
}
.join-us-block .join-us-card:hover {
  transform: translateY(-5px);
}
.join-us-block .join-us-card:hover .join-us-image img {
  transform: scale(1.1);
}
.join-us-block .join-us-card:hover .join-us-card-title {
  background-color: #E21936;
  background-color: var(--red);
  border-color: #E21936;
  border-color: var(--red);
  color: white;
}
@media (max-width: 768px) {
  .join-us-block .join-us-card {
    max-width: 100%;
  }
}
.join-us-block .join-us-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  min-height: 350px;
}
@media (max-width: 576px) {
  .join-us-block .join-us-image {
    min-height: 200px;
  }
}
.join-us-block .join-us-image img {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
  display: block;
}
.join-us-block .join-us-card-title {
  width: 100%;
  padding: 14px 20px;
  font-size: 17px;
  line-height: 1.3;
  color: black;
  font-weight: 700;
  z-index: 2;
  text-align: center;
  background: white;
  margin-top: 30px;
  border: 2px solid #6D6D6D;
  border: 2px solid var(--black, #6D6D6D);
}
@media (max-width: 768px) {
  .join-us-block .join-us-card-title {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .join-us-block .join-us-card-title {
    font-size: 14px;
  }
}
.join-us-block .join-us-cta {
  text-align: center;
}
.join-us-block .join-us-cta .button {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: #000;
  text-decoration: none;
  border-radius: 0;
  margin-top: 40px;
  transition: transform 0.2s ease;
  align-self: flex-start;
  border: 2px solid #6D6D6D;
  border: 2px solid var(--black, #6D6D6D);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 768px) {
  .join-us-block .join-us-cta .button {
    font-size: 16px;
    margin-top: 0;
  }
}
@media (max-width: 576px) {
  .join-us-block .join-us-cta .button {
    font-size: 14px;
  }
}
.join-us-block .join-us-cta .button:hover {
  transform: translateY(-2px);
  background: #E21936;
  background: var(--red);
  border: 2px solid #E21936;
  border: 2px solid var(--red);
  color: white;
}
.join-us-block .join-us-cta .button:hover::after {
  color: #6D6D6D;
  color: var(--black);
}
.join-us-block .join-us-cta .button::after {
  content: ">";
  margin-left: 0.5rem;
  font-weight: 700;
  color: #E21936;
  color: var(--red);
}

.membership-block {
  width: 100%;
  max-width: 1320px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 20px;
  background-color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 768px) {
  .membership-block {
    padding: 60px 20px;
  }
}
@media (max-width: 576px) {
  .membership-block {
    padding: 40px 20px;
  }
}
.membership-block .membership-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .membership-block .membership-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .membership-block .membership-header {
    margin-bottom: 30px;
  }
}
.membership-block .membership-title {
  font-size: 60px;
  line-height: 1.3;
  color: #6D6D6D;
  color: var(--black);
  position: relative;
  padding-bottom: 20px;
  font-weight: 400;
  margin: 0 0 30px;
}
.membership-block .membership-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 10px;
  background-color: #E21936;
  background-color: var(--red);
}
@media (max-width: 768px) {
  .membership-block .membership-title {
    font-size: 50px;
    margin-bottom: 20px;
  }
  .membership-block .membership-title:after {
    width: 70px;
    height: 8px;
  }
}
@media (max-width: 576px) {
  .membership-block .membership-title {
    font-size: 40px;
    margin-bottom: 15px;
  }
  .membership-block .membership-title:after {
    width: 50px;
    height: 6px;
  }
}
.membership-block .membership-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 32px;
  gap: 32px;
  margin: 100px auto 20px;
  max-width: 1320px;
  max-width: var(--container);
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
@media (max-width: 1030px) {
  .membership-block .membership-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    gap: 20px;
    margin: 50px auto 20px;
  }
}
@media (max-width: 768px) {
  .membership-block .membership-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
    gap: 40px;
    margin: 40px auto 20px;
  }
}
@media (max-width: 576px) {
  .membership-block .membership-grid {
    grid-template-columns: 1fr;
    grid-gap: 30px;
    gap: 30px;
    margin: 30px auto 20px;
  }
}
.membership-block .membership-card {
  background: white;
  box-shadow: 13px 13px 15px rgba(0, 0, 0, 0.34);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  border: 1px solid #E5E5E5;
}
.membership-block .membership-card .card-content {
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.membership-block .membership-card .card-content .card-type {
  text-align: center;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
  align-self: center;
}
.membership-block .membership-card.early-bird {
  transform: scale(1.13);
  background: white;
}
@media (max-width: 1030px) {
  .membership-block .membership-card.early-bird {
    transform: scale(1);
  }
}
.membership-block .membership-card.early-bird .card-type {
  color: black;
  border: 1px solid #E21936;
  border: 1px solid var(--red);
  padding: 14px 34px;
  margin: 24px auto;
  font-size: 22px;
  letter-spacing: 0.5px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.membership-block .membership-card.early-bird .card-description {
  font-size: 24px;
  line-height: 1.4;
  color: #6D6D6D;
  color: var(--grey);
  margin: 30px auto;
  max-width: 220px;
  font-style: normal;
  font-weight: 400;
}
.membership-block .membership-card.early-bird .card-price {
  color: #E21936;
  color: var(--red);
  margin: 0;
  padding: 30px 20px;
  position: relative;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.membership-block .membership-card.early-bird .button-container {
  display: inline-block;
  padding: 14px 36px;
  background: #E21936;
  background: var(--red);
  border: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin: -1px;
  position: relative;
}
.membership-block .membership-card.early-bird .button-container::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  height: 10px;
  background: repeating-linear-gradient(90deg, #98989A, #98989A 15px, transparent 0px, transparent 30px);
  background: repeating-linear-gradient(90deg, var(--light-grey), var(--light-grey) 15px, transparent 0px, transparent 30px);
}
.membership-block .membership-card.early-bird .button-container .button {
  color: white;
  border: 1px solid white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
  font-style: normal;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 0;
  margin: 15px auto;
}
@media (max-width: 768px) {
  .membership-block .membership-card.early-bird .button-container .button {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .membership-block .membership-card.early-bird .button-container .button {
    font-size: 14px;
  }
}
.membership-block .membership-card.early-bird .button-container .button:hover {
  background: white;
  color: #E21936;
  color: var(--red);
}
.membership-block .membership-card:not(.early-bird) .card-type {
  color: black;
  border: 1px solid #6D6D6D;
  border: 1px solid var(--black);
  padding: 12px 30px;
  margin: 24px auto;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 768px) {
  .membership-block .membership-card:not(.early-bird) .card-type {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .membership-block .membership-card:not(.early-bird) .card-type {
    font-size: 14px;
  }
}
.membership-block .membership-card:not(.early-bird) .card-price {
  background-color: #E21936;
  background-color: var(--red);
  color: white;
  margin: -1px;
  padding: 30px 20px;
  position: relative;
}
.membership-block .membership-card:not(.early-bird) .card-price::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  height: 10px;
  background: repeating-linear-gradient(90deg, #98989A, #98989A 15px, transparent 0px, transparent 30px);
  background: repeating-linear-gradient(90deg, var(--light-grey), var(--light-grey) 15px, transparent 0px, transparent 30px);
}
.membership-block .membership-card:not(.early-bird) .button-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, height 0.3s ease;
  background: #E21936;
  background: var(--red);
  margin: -1px -1px -1px;
}
.membership-block .membership-card:not(.early-bird):hover .button-container {
  visibility: visible;
  opacity: 1;
  height: 90px;
}
.membership-block .membership-card:not(.early-bird):hover .card-price {
  margin-bottom: 70px;
  transition: margin-bottom 0.3s ease;
}
.membership-block .membership-card:not(.early-bird) .button {
  color: white;
  border: 1px solid white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
  font-style: normal;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 0;
  margin: 15px auto;
  display: inline-block;
  padding: 14px 36px;
}
@media (max-width: 768px) {
  .membership-block .membership-card:not(.early-bird) .button {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .membership-block .membership-card:not(.early-bird) .button {
    font-size: 14px;
  }
}
.membership-block .membership-card:not(.early-bird) .button:hover {
  background: white;
  color: #E21936;
  color: var(--red);
}
.membership-block .membership-card:hover {
  transform: translateY(-5px);
}
.membership-block .card-price {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}
.membership-block .card-price .currency {
  font-size: 0.6em;
  vertical-align: baseline;
  margin-right: 4px;
}
.membership-block .card-description {
  font-size: 18px;
  line-height: 1.5;
  color: #6D6D6D;
  color: var(--grey);
  margin: 20px 0;
  padding: 0 15px;
}
.membership-block .button {
  display: inline-block;
  padding: 14px 36px;
  background: #E21936;
  background: var(--red);
  border: none;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin: 30px auto;
  text-decoration: none;
  min-width: 180px;
}
.membership-block .button:hover {
  background: rgb(182.0723684211, 20.4276315789, 22.2039473684);
}

.benefits-block {
  width: 100%;
  max-width: 1320px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 20px;
  background-color: #F0F0F0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 768px) {
  .benefits-block {
    padding: 60px 20px;
  }
}
@media (max-width: 576px) {
  .benefits-block {
    padding: 40px 20px;
  }
}
.benefits-block .benefits-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .benefits-block .benefits-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .benefits-block .benefits-header {
    margin-bottom: 30px;
  }
}
.benefits-block .benefits-title {
  font-size: 60px;
  line-height: 1.3;
  color: #6D6D6D;
  color: var(--black);
  position: relative;
  padding-bottom: 20px;
  font-weight: 400;
  margin: 0 0 60px;
}
.benefits-block .benefits-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 10px;
  background-color: #E21936;
  background-color: var(--red);
}
@media (max-width: 768px) {
  .benefits-block .benefits-title {
    font-size: 50px;
    margin-bottom: 20px;
  }
  .benefits-block .benefits-title:after {
    width: 70px;
    height: 8px;
  }
}
@media (max-width: 576px) {
  .benefits-block .benefits-title {
    font-size: 40px;
    margin-bottom: 15px;
  }
  .benefits-block .benefits-title:after {
    width: 50px;
    height: 6px;
  }
}
.benefits-block .benefits-description {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
  color: #6D6D6D;
  color: var(--grey);
  max-width: 1000px;
  margin: 30px auto 20px;
}
@media (max-width: 768px) {
  .benefits-block .benefits-description {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .benefits-block .benefits-description {
    font-size: 16px;
  }
}
.benefits-block .benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  grid-gap: 19px;
  gap: 19px;
  margin: 0 auto;
  max-width: 1320px;
  max-width: var(--container);
  position: relative;
  z-index: 1;
  padding: 0 20px;
  width: calc(100% - 40px);
  justify-content: center;
}
@media (max-width: 1030px) {
  .benefits-block .benefits-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    grid-gap: 15px;
    gap: 15px;
    max-width: 900px;
  }
}
@media (max-width: 576px) {
  .benefits-block .benefits-grid {
    grid-template-columns: minmax(180px, 400px);
    grid-gap: 20px;
    gap: 20px;
    max-width: 100%;
  }
}
.benefits-block .benefits-card {
  background: white;
  box-shadow: 13px 13px 15px rgba(0, 0, 0, 0.34);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  min-height: 400px;
  max-width: 220px;
  width: 100%;
  margin: 0 auto;
}
.benefits-block .benefits-card:hover {
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .benefits-block .benefits-card {
    min-height: 380px;
  }
}
@media (max-width: 576px) {
  .benefits-block .benefits-card {
    min-height: 360px;
    max-width: 100%;
  }
}
.benefits-block .benefits-card .card-content {
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.benefits-block .benefits-card .card-content .card-type {
  text-align: center;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
  align-self: center;
  color: #6D6D6D;
  color: var(--black);
  padding: 12px 0;
  margin: 24px auto;
  font-size: 23px;
  letter-spacing: 0.5px;
  font-style: normal;
  line-height: normal;
}
@media (max-width: 768px) {
  .benefits-block .benefits-card .card-content .card-type {
    font-size: 19px;
  }
}
@media (max-width: 576px) {
  .benefits-block .benefits-card .card-content .card-type {
    font-size: 17px;
  }
}
.benefits-block .card-description {
  font-size: 18px;
  line-height: 1.5;
  color: #6D6D6D;
  color: var(--grey);
  margin: 20px 0;
  padding: 0 15px;
}
.benefits-block .button-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
  background: #E21936;
  background: var(--red);
  border: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin: -1px;
  position: relative;
}
.benefits-block .button-container::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(90deg, #98989A, #98989A 15px, transparent 0px, transparent 30px);
  background: repeating-linear-gradient(90deg, var(--light-grey), var(--light-grey) 15px, transparent 0px, transparent 30px);
}
.benefits-block .button-container .card-price {
  flex: 1;
  color: #FFF;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding: 15px 10px;
}
.benefits-block .button-container .card-price::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  width: 8px;
  height: 100%;
  background: repeating-linear-gradient(0deg, #98989A, #98989A 10px, transparent 0px, transparent 20px);
  background: repeating-linear-gradient(0deg, var(--light-grey), var(--light-grey) 10px, transparent 0px, transparent 20px);
}
.benefits-block .button-container .card-price .currency {
  font-size: 0.6em;
  vertical-align: baseline;
  margin-right: 4px;
}
.benefits-block .button-container .benefits-card-button {
  padding: 15px 10px;
  flex: 1;
  display: inline-block;
  border: none;
  color: white;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
}
@media (max-width: 768px) {
  .benefits-block .button-container .benefits-card-button {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .benefits-block .button-container .benefits-card-button {
    font-size: 14px;
  }
}

.news-block {
  width: 100%;
  background-color: white;
  padding: 100px 0;
}
@media (max-width: 768px) {
  .news-block {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  .news-block {
    padding: 40px 0;
  }
}
.news-block .components-placeholder__error {
  width: 100%;
  max-width: 1320px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 30px;
  background-color: #FFF5F5;
  border: 1px solid #E21936;
  border: 1px solid var(--red);
  border-left-width: 4px;
  color: #6D6D6D;
  color: var(--black);
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .news-block .components-placeholder__error {
    padding: 25px;
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .news-block .components-placeholder__error {
    padding: 20px;
    font-size: 14px;
  }
}
.news-block .news-container {
  width: 100%;
  max-width: 1320px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.news-block .news-header {
  text-align: left;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .news-block .news-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .news-block .news-header {
    margin-bottom: 30px;
  }
}
.news-block .news-header .news-title {
  font-size: 60px;
  line-height: 1.3;
  color: #6D6D6D;
  color: var(--black);
  position: relative;
  padding-bottom: 20px;
  font-weight: 400;
  margin: 0 0 30px;
}
.news-block .news-header .news-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 10px;
  background-color: #E21936;
  background-color: var(--red);
}
@media (max-width: 768px) {
  .news-block .news-header .news-title {
    font-size: 45px;
    padding-bottom: 15px;
  }
  .news-block .news-header .news-title:after {
    width: 60px;
    height: 8px;
  }
}
@media (max-width: 576px) {
  .news-block .news-header .news-title {
    font-size: 35px;
    padding-bottom: 12px;
  }
  .news-block .news-header .news-title:after {
    width: 50px;
    height: 6px;
  }
}
.news-block .featured-posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 60px;
  -moz-column-gap: 60px;
       column-gap: 60px;
  grid-row-gap: 0;
  row-gap: 0;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .news-block .featured-posts {
    grid-column-gap: 40px;
    -moz-column-gap: 40px;
         column-gap: 40px;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .news-block .featured-posts {
    grid-column-gap: 30px;
    -moz-column-gap: 30px;
         column-gap: 30px;
    margin-bottom: 20px;
  }
}
.news-block .featured-posts .featured-posts-header {
  grid-column: 1/-1;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #6D6D6D;
  border-bottom: 1px solid var(--grey);
}
@media (max-width: 768px) {
  .news-block .featured-posts .featured-posts-header {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
}
@media (max-width: 576px) {
  .news-block .featured-posts .featured-posts-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.news-block .featured-posts .featured-posts-header .featured-posts-title {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  color: #6D6D6D;
  color: var(--black);
  margin: 0;
}
@media (max-width: 768px) {
  .news-block .featured-posts .featured-posts-header .featured-posts-title {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .news-block .featured-posts .featured-posts-header .featured-posts-title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .news-block .featured-posts {
    grid-template-columns: 1fr;
    grid-gap: 30px;
    gap: 30px;
  }
}
.news-block .featured-post .post-thumbnail {
  display: block;
  margin-bottom: 30px;
  position: relative;
  padding-top: 100%;
}
.news-block .featured-post .post-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.news-block .featured-post .post-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 30px;
  font-family: "Montserrat", Roboto, "Helvetica Neue", sans-serif, serif;
  font-family: var(--font-alt), serif;
}
@media (max-width: 768px) {
  .news-block .featured-post .post-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .news-block .featured-post .post-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.news-block .featured-post .post-title a {
  color: #6D6D6D;
  color: var(--black);
  text-decoration: none;
}
.news-block .featured-post .post-title a:hover {
  color: #E21936;
  color: var(--red);
}
.news-block .featured-post .post-excerpt {
  font-size: 20px;
  line-height: 1.3;
  color: #6D6D6D;
  color: var(--grey);
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .news-block .featured-post .post-excerpt {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .news-block .featured-post .post-excerpt {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
.news-block .featured-post .post-meta {
  font-size: 20px;
  color: #6D6D6D;
  color: var(--grey);
  margin-bottom: 30px;
  font-style: italic;
  font-weight: 700;
}
@media (max-width: 768px) {
  .news-block .featured-post .post-meta {
    font-size: 18px;
    margin-bottom: 25px;
  }
}
@media (max-width: 576px) {
  .news-block .featured-post .post-meta {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.news-block .featured-post .read-more {
  display: inline-flex;
  align-items: center;
  grid-gap: 10px;
  gap: 10px;
  padding: 14px 20px;
  font-size: 17px;
  line-height: 1.3;
  color: black;
  font-weight: 700;
  z-index: 2;
  text-align: center;
  background: white;
  border: 2px solid #6D6D6D;
  border: 2px solid var(--black, #6D6D6D);
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.news-block .featured-post .read-more:hover {
  background: #E21936;
  background: var(--red);
  border-color: #E21936;
  border-color: var(--red);
  color: white;
}
@media (max-width: 768px) {
  .news-block .featured-post .read-more {
    padding: 12px 18px;
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .news-block .featured-post .read-more {
    padding: 10px 16px;
    font-size: 15px;
  }
}
.news-block .news-list-wrapper {
  display: flex;
  flex-direction: column;
}
.news-block .news-list {
  flex: 1;
}
.news-block .news-list .news-item {
  padding: 30px 0 30px 30px;
  border-bottom: 1px solid #6D6D6D;
  border-bottom: 1px solid var(--grey);
  position: relative;
}
.news-block .news-list .news-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 30px;
  width: 10px;
  background-color: #E21936;
  background-color: var(--red);
}
.news-block .news-list .news-item:first-child {
  padding-top: 0;
}
.news-block .news-list .news-item:first-child::before {
  top: 0;
}
.news-block .news-list .news-item:last-child {
  border-bottom: none;
}
.news-block .news-list .news-item:last-child::before {
  bottom: 0;
}
.news-block .news-list .news-item .post-title {
  margin: 0 0 15px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}
.news-block .news-list .news-item .post-title a {
  color: #6D6D6D;
  color: var(--black);
  text-decoration: none;
}
.news-block .news-list .news-item .post-title a:hover {
  color: #E21936;
  color: var(--red);
}
@media (max-width: 768px) {
  .news-block .news-list .news-item .post-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
@media (max-width: 576px) {
  .news-block .news-list .news-item .post-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.news-block .news-list .news-item .post-excerpt {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
  color: #6D6D6D;
  color: var(--grey);
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .news-block .news-list .news-item .post-excerpt {
    font-size: 15px;
    margin-bottom: 12px;
  }
}
@media (max-width: 576px) {
  .news-block .news-list .news-item .post-excerpt {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.news-block .news-list .news-item .post-meta {
  font-size: 19px;
  color: #6D6D6D;
  color: var(--grey);
  font-style: italic;
  font-weight: 700;
  line-height: 1.33;
}
@media (max-width: 768px) {
  .news-block .news-list .news-item .post-meta {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .news-block .news-list .news-item .post-meta {
    font-size: 14px;
  }
}
.news-block .news-footer {
  text-align: left;
  margin-top: 20px;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .news-block .news-footer {
    margin-top: 15px;
    padding-top: 15px;
  }
}
@media (max-width: 576px) {
  .news-block .news-footer {
    margin-top: 10px;
    padding-top: 10px;
    text-align: center;
  }
}
.news-block .news-footer .see-all-news {
  display: inline-flex;
  align-items: center;
  grid-gap: 10px;
  gap: 10px;
  padding: 14px 20px;
  font-size: 17px;
  line-height: 1.3;
  color: black;
  font-weight: 700;
  z-index: 2;
  text-align: center;
  background: white;
  border: 2px solid #6D6D6D;
  border: 2px solid var(--black, #6D6D6D);
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.news-block .news-footer .see-all-news:hover {
  background: #E21936;
  background: var(--red);
  border-color: #E21936;
  border-color: var(--red);
  color: white;
}
@media (max-width: 768px) {
  .news-block .news-footer .see-all-news {
    padding: 12px 18px;
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .news-block .news-footer .see-all-news {
    padding: 10px 16px;
    font-size: 15px;
  }
}

.contact-block {
  width: 100%;
  background-color: #F0F0F0;
  padding: 100px 0;
}
@media (max-width: 768px) {
  .contact-block {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  .contact-block {
    padding: 40px 0;
  }
}
.contact-block .contact-container {
  width: 100%;
  max-width: 1320px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.contact-block .contact-header {
  text-align: center;
  margin-bottom: 60px;
}
.contact-block .contact-header .contact-title {
  font-size: 60px;
  line-height: 1.3;
  color: #6D6D6D;
  color: var(--black);
  position: relative;
  padding-bottom: 20px;
  font-weight: 400;
  margin: 0;
}
.contact-block .contact-header .contact-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 10px;
  background-color: #E21936;
  background-color: var(--red);
}
@media (max-width: 768px) {
  .contact-block .contact-header .contact-title {
    font-size: 45px;
    padding-bottom: 15px;
  }
  .contact-block .contact-header .contact-title:after {
    width: 60px;
    height: 8px;
  }
}
@media (max-width: 576px) {
  .contact-block .contact-header .contact-title {
    font-size: 35px;
    padding-bottom: 12px;
  }
  .contact-block .contact-header .contact-title:after {
    width: 50px;
    height: 6px;
  }
}
.contact-block .contact-header .contact-description {
  max-width: 800px;
  margin: 80px auto;
  font-size: 20px;
  line-height: 1.4;
  font-style: normal;
  font-weight: 400;
  color: #6D6D6D;
  color: var(--grey);
}
@media (max-width: 768px) {
  .contact-block .contact-header .contact-description {
    margin: 40px auto;
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .contact-block .contact-header .contact-description {
    margin: 30px auto;
    font-size: 16px;
  }
}
.contact-block .contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-gap: 60px;
  gap: 60px;
}
@media (max-width: 768px) {
  .contact-block .contact-content {
    grid-template-columns: 1fr;
    grid-gap: 40px;
    gap: 40px;
  }
}
.contact-block .contact-form .gform_wrapper {
  margin: 0;
}
.contact-block .contact-form .gform_wrapper .gform_required_legend {
  display: none;
}
.contact-block .contact-form .gform_wrapper .gform_fields {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
  gap: 20px;
}
.contact-block .contact-form .gform_wrapper .gfield_label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.contact-block .contact-form .gform_wrapper input:not([type=submit]),
.contact-block .contact-form .gform_wrapper textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #6D6D6D;
  border: 2px solid var(--black);
  border-radius: 0;
  background: transparent;
  font-size: 18px;
  color: #6D6D6D;
  color: var(--black);
  transition: all 0.3s ease;
  min-height: 50px;
}
.contact-block .contact-form .gform_wrapper input:not([type=submit])::-moz-placeholder, .contact-block .contact-form .gform_wrapper textarea::-moz-placeholder {
  color: #6D6D6D;
  color: var(--black);
  opacity: 1;
}
.contact-block .contact-form .gform_wrapper input:not([type=submit])::placeholder,
.contact-block .contact-form .gform_wrapper textarea::placeholder {
  color: #6D6D6D;
  color: var(--black);
  opacity: 1;
}
.contact-block .contact-form .gform_wrapper input:not([type=submit]):focus,
.contact-block .contact-form .gform_wrapper textarea:focus {
  outline: none;
  border-color: #E21936;
  border-color: var(--red);
}
.contact-block .contact-form .gform_wrapper textarea {
  min-height: 200px;
  resize: vertical;
}
.contact-block .contact-form .gform_wrapper .gfield_required {
  color: #E21936;
  color: var(--red);
  margin-left: 5px;
}
.contact-block .contact-form .gform_wrapper .gform_footer,
.contact-block .contact-form .gform_wrapper .gform-footer {
  margin-top: 30px;
  padding: 0;
  text-align: left;
}
.contact-block .contact-form .gform_wrapper .gform_footer .button,
.contact-block .contact-form .gform_wrapper .gform_footer input[type=submit],
.contact-block .contact-form .gform_wrapper .gform-footer .button,
.contact-block .contact-form .gform_wrapper .gform-footer input[type=submit] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-width: 140px !important;
  padding: 14px 30px !important;
  font-size: 0 !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  color: black !important;
  background: transparent !important;
  border: 2px solid #6D6D6D !important;
  border: 2px solid var(--black) !important;
  border-radius: 0 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  position: relative !important;
}
.contact-block .contact-form .gform_wrapper .gform_footer .button span,
.contact-block .contact-form .gform_wrapper .gform_footer input[type=submit] span,
.contact-block .contact-form .gform_wrapper .gform-footer .button span,
.contact-block .contact-form .gform_wrapper .gform-footer input[type=submit] span {
  font-size: 18px !important;
}
.contact-block .contact-form .gform_wrapper .gform_footer .button .arrow,
.contact-block .contact-form .gform_wrapper .gform_footer input[type=submit] .arrow,
.contact-block .contact-form .gform_wrapper .gform-footer .button .arrow,
.contact-block .contact-form .gform_wrapper .gform-footer input[type=submit] .arrow {
  color: #E21936 !important;
  color: var(--red) !important;
  margin-left: 10px !important;
}
.contact-block .contact-form .gform_wrapper .gform_footer .button:hover,
.contact-block .contact-form .gform_wrapper .gform_footer input[type=submit]:hover,
.contact-block .contact-form .gform_wrapper .gform-footer .button:hover,
.contact-block .contact-form .gform_wrapper .gform-footer input[type=submit]:hover {
  border-color: #E21936 !important;
  border-color: var(--red) !important;
  background-color: #E21936 !important;
  background-color: var(--red) !important;
  color: white !important;
}
.contact-block .contact-form .gform_wrapper .gform_footer .button:hover .arrow,
.contact-block .contact-form .gform_wrapper .gform_footer input[type=submit]:hover .arrow,
.contact-block .contact-form .gform_wrapper .gform-footer .button:hover .arrow,
.contact-block .contact-form .gform_wrapper .gform-footer input[type=submit]:hover .arrow {
  color: white !important;
}
.contact-block .contact-form .gform_wrapper .gfield_validation_message,
.contact-block .contact-form .gform_wrapper .validation_message {
  color: #E21936;
  color: var(--red);
  font-size: 14px;
  margin-top: 5px;
}
.contact-block .contact-form .gform_wrapper .gform_validation_errors {
  display: none;
}
.contact-block .contact-form .gform_wrapper .gfield_required_asterisk {
  color: #E21936;
  color: var(--red);
}
.contact-block .contact-form .gform_wrapper .gform_confirmation_message {
  text-align: center;
  padding: 20px;
  background: rgba(0, 128, 0, 0.05);
  border: 2px solid rgba(0, 128, 0, 0.2);
  border-radius: 4px;
  color: #6D6D6D;
  color: var(--grey, #666666);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin: 20px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
  gap: 10px;
  animation: fadeInUp 0.5s ease-out forwards;
}
.contact-block .contact-form .gform_wrapper .gform_confirmation_message:before {
  content: "✓";
  color: #008000;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .contact-block .contact-form .gform_wrapper .gform_confirmation_message {
    font-size: 16px;
    padding: 15px;
  }
}
.contact-block .offices-grid {
  grid-gap: 30px;
  gap: 30px;
  display: flex;
  flex-direction: column;
}
.contact-block .offices-grid .office-location {
  display: flex;
  flex-direction: row;
  grid-gap: 20px;
  gap: 20px;
}
@media (max-width: 576px) {
  .contact-block .offices-grid .office-location {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.contact-block .offices-grid .office-location .contact-map {
  width: 100%;
  height: 300px;
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .contact-block .offices-grid .office-location .contact-map {
    height: 250px;
  }
}
@media (max-width: 576px) {
  .contact-block .offices-grid .office-location .contact-map {
    height: 200px;
  }
}
.contact-block .offices-grid .office-location .office-details .office-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 18px;
  color: #98989A;
  color: var(--light-grey);
}
@media (max-width: 768px) {
  .contact-block .offices-grid .office-location .office-details .office-name {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .contact-block .offices-grid .office-location .office-details .office-name {
    font-size: 16px;
  }
}
.contact-block .offices-grid .office-location .office-details p {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.6;
  color: #98989A;
  color: var(--light-grey);
}
@media (max-width: 768px) {
  .contact-block .offices-grid .office-location .office-details p {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .contact-block .offices-grid .office-location .office-details p {
    font-size: 16px;
  }
}
.contact-block .offices-grid .office-location .office-details a {
  color: #98989A;
  color: var(--light-grey);
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-block .offices-grid .office-location .office-details a:hover {
  color: #E21936;
  color: var(--red);
}
.contact-block .offices-grid .office-location .office-details .office-hours {
  font-style: italic;
}

.cards-block {
  padding: 80px 0;
  background: #F0F0F0;
}
@media (max-width: 768px) {
  .cards-block {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  .cards-block {
    padding: 40px 0;
  }
}
.cards-block .container {
  max-width: 1320px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.cards-block .container .section-title {
  font-size: 60px;
  line-height: 1.3;
  color: #6D6D6D;
  color: var(--black);
  position: relative;
  padding-bottom: 20px;
  font-weight: 400;
  margin: 0 auto 60px;
  text-align: center;
}
.cards-block .container .section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 10px;
  background-color: #E21936;
  background-color: var(--red);
}
@media (max-width: 768px) {
  .cards-block .container .section-title {
    font-size: 45px;
    padding-bottom: 15px;
    margin: 0 auto 40px;
  }
  .cards-block .container .section-title:after {
    width: 60px;
    height: 8px;
  }
}
@media (max-width: 576px) {
  .cards-block .container .section-title {
    font-size: 35px;
    padding-bottom: 12px;
    margin: 0 auto 30px;
  }
  .cards-block .container .section-title:after {
    width: 50px;
    height: 6px;
  }
}
.cards-block .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  gap: 30px;
}
@media (max-width: 768px) {
  .cards-block .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
    gap: 25px;
    padding: 0;
  }
}
@media (max-width: 576px) {
  .cards-block .cards-grid {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
  }
}
.cards-block .card {
  border: 2px solid #6D6D6D;
  border: 2px solid var(--grey);
  background: white;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .cards-block .card {
    align-items: stretch;
  }
}
.cards-block .card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
@media (max-width: 576px) {
  .cards-block .card:hover {
    transform: translateX(-5px);
  }
}
.cards-block .card .card-date {
  padding: 20px;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  color: #6D6D6D;
  color: var(--grey);
}
@media (max-width: 576px) {
  .cards-block .card .card-date {
    padding: 15px;
    font-size: 16px;
    border-bottom: none;
    display: flex;
    align-items: center;
    min-width: 100px;
  }
}
.cards-block .card .card-content {
  padding: 10px 20px;
  flex: 1;
}
@media (max-width: 576px) {
  .cards-block .card .card-content {
    padding: 15px;
  }
}
.cards-block .card .card-content .card-title {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 35px;
  color: #6D6D6D;
  color: var(--black);
}
@media (max-width: 768px) {
  .cards-block .card .card-content .card-title {
    font-size: 18px;
    margin: 0 0 12px;
  }
}
@media (max-width: 576px) {
  .cards-block .card .card-content .card-title {
    font-size: 16px;
    margin: 0 0 10px;
  }
}
.cards-block .card .card-content .card-excerpt {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  color: #6D6D6D;
  color: var(--grey);
}
@media (max-width: 768px) {
  .cards-block .card .card-content .card-excerpt {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .cards-block .card .card-content .card-excerpt {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.cards-block .card .card-footer {
  padding: 10px 20px 20px;
  margin-top: auto;
}
@media (max-width: 576px) {
  .cards-block .card .card-footer {
    padding: 15px;
    border-top: none;
    border-left: 1px solid #E6E6E6;
    display: flex;
    align-items: center;
  }
}
.cards-block .card .card-footer .read-more {
  display: inline-flex;
  align-items: center;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8; /* 187.5% */
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .cards-block .card .card-footer .read-more {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .cards-block .card .card-footer .read-more {
    font-size: 14px;
  }
}
.cards-block .card .card-footer .read-more:after {
  content: ">";
  margin-left: 8px;
  transition: transform 0.3s ease;
  color: #E21936;
  color: var(--red);
}
.cards-block .card .card-footer .read-more:hover {
  color: #E21936;
  color: var(--red);
}
.cards-block .card .card-footer .read-more:hover:after {
  transform: translateX(5px);
}
.cards-block .pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 5px;
  gap: 5px;
}
.cards-block .pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  font-size: 16px;
  color: #6D6D6D;
  color: var(--black);
  text-decoration: none;
  transition: all 0.3s ease;
  background: white;
  border: none;
}
.cards-block .pagination .page-numbers.current {
  color: #E21936;
  color: var(--red);
  background: white;
  font-weight: 700;
}
.cards-block .pagination .page-numbers.prev, .cards-block .pagination .page-numbers.next {
  width: 40px;
  height: 40px;
  background: #6D6D6D;
  background: var(--black);
  color: white;
  font-size: 20px;
  padding: 0;
}
.cards-block .pagination .page-numbers.prev:hover, .cards-block .pagination .page-numbers.next:hover {
  background: #E21936;
  background: var(--red);
}
.cards-block .pagination .page-numbers.prev {
  border-radius: 4px 0 0 4px;
}
.cards-block .pagination .page-numbers.next {
  border-radius: 0 4px 4px 0;
}
.cards-block .pagination .page-numbers.dots {
  pointer-events: none;
}
@media (max-width: 768px) {
  .cards-block .pagination .page-numbers {
    min-width: 35px;
    height: 35px;
    font-size: 15px;
  }
  .cards-block .pagination .page-numbers.prev, .cards-block .pagination .page-numbers.next {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .cards-block .pagination .page-numbers {
    min-width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .cards-block .pagination .page-numbers.prev, .cards-block .pagination .page-numbers.next {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

.related-news-block {
  padding: 0;
}
.related-news-block .section-title {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  color: #6D6D6D;
  color: var(--black);
  position: relative;
  margin: 0 0 30px;
  padding-bottom: 15px;
}
.related-news-block .section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 10px;
  background: #E21936;
  background: var(--red);
}
@media (max-width: 768px) {
  .related-news-block .section-title {
    font-size: 32px;
    margin: 0 0 25px;
    padding-bottom: 12px;
  }
  .related-news-block .section-title:after {
    width: 40px;
    height: 8px;
  }
}
@media (max-width: 576px) {
  .related-news-block .section-title {
    font-size: 28px;
    margin: 0 0 20px;
    padding-bottom: 10px;
  }
  .related-news-block .section-title:after {
    width: 35px;
    height: 6px;
  }
}
.related-news-block .related-posts {
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
  gap: 30px;
}
@media (max-width: 768px) {
  .related-news-block .related-posts {
    grid-gap: 25px;
    gap: 25px;
  }
}
@media (max-width: 576px) {
  .related-news-block .related-posts {
    grid-gap: 20px;
    gap: 20px;
  }
}
.related-news-block .related-post {
  background: white;
  border: 2px solid #6D6D6D;
  border: 2px solid var(--grey);
  padding: 20px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .related-news-block .related-post {
    padding: 15px;
  }
}
.related-news-block .related-post:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(-5px);
}
.related-news-block .related-post .post-date {
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  color: #6D6D6D;
  color: var(--grey);
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .related-news-block .related-post .post-date {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
@media (max-width: 576px) {
  .related-news-block .related-post .post-date {
    font-size: 15px;
    margin-bottom: 6px;
  }
}
.related-news-block .related-post .post-title {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 15px;
  color: #6D6D6D;
  color: var(--black);
}
@media (max-width: 768px) {
  .related-news-block .related-post .post-title {
    font-size: 20px;
    margin: 0 0 12px;
    line-height: 1.3;
  }
}
@media (max-width: 576px) {
  .related-news-block .related-post .post-title {
    font-size: 18px;
    margin: 0 0 10px;
    line-height: 1.2;
  }
}
.related-news-block .related-post .post-excerpt {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  color: #6D6D6D;
  color: var(--grey);
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .related-news-block .related-post .post-excerpt {
    font-size: 16px;
    margin-bottom: 12px;
    -webkit-line-clamp: 3;
  }
}
@media (max-width: 576px) {
  .related-news-block .related-post .post-excerpt {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.4;
  }
}
.related-news-block .related-post .read-more {
  display: inline-flex;
  align-items: center;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 0;
}
@media (max-width: 768px) {
  .related-news-block .related-post .read-more {
    font-size: 15px;
    line-height: 1.6;
  }
}
@media (max-width: 576px) {
  .related-news-block .related-post .read-more {
    font-size: 14px;
    line-height: 1.5;
  }
}
.related-news-block .related-post .read-more:after {
  content: ">";
  margin-left: 8px;
  color: #E21936;
  color: var(--red);
  transition: transform 0.3s ease;
}
.related-news-block .related-post .read-more:hover {
  color: #E21936;
  color: var(--red);
}
.related-news-block .related-post .read-more:hover:after {
  transform: translateX(5px);
}

.gallery-block {
  width: 100%;
  background-color: #F0F0F0;
  padding: 100px 0;
}
@media (max-width: 768px) {
  .gallery-block {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  .gallery-block {
    padding: 40px 0;
  }
}
.gallery-block .gallery-container {
  width: 100%;
  max-width: 1320px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.gallery-block .gallery-header {
  text-align: center;
  margin-bottom: 60px;
}
.gallery-block .gallery-header .gallery-title {
  font-size: 60px;
  line-height: 1.3;
  color: #6D6D6D;
  color: var(--black);
  position: relative;
  padding-bottom: 20px;
  font-weight: 400;
  margin: 0;
}
.gallery-block .gallery-header .gallery-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 10px;
  background-color: #E21936;
  background-color: var(--red);
}
@media (max-width: 768px) {
  .gallery-block .gallery-header .gallery-title {
    font-size: 45px;
    padding-bottom: 15px;
  }
  .gallery-block .gallery-header .gallery-title:after {
    width: 60px;
    height: 8px;
  }
}
@media (max-width: 576px) {
  .gallery-block .gallery-header .gallery-title {
    font-size: 35px;
    padding-bottom: 12px;
  }
  .gallery-block .gallery-header .gallery-title:after {
    width: 50px;
    height: 6px;
  }
}
.gallery-block .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  gap: 20px;
}
@media (max-width: 1030px) {
  .gallery-block .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery-block .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .gallery-block .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.gallery-block .gallery-grid .gallery-item {
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 1;
}
.gallery-block .gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-block .gallery-grid .gallery-item img:hover {
  transform: scale(1.05);
}

.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox .lightbox-image {
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
.gallery-lightbox .lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s ease;
}
.gallery-lightbox .lightbox-close:hover {
  color: #E21936;
  color: var(--red);
}
.gallery-lightbox .lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
.gallery-lightbox .lightbox-nav .lightbox-prev,
.gallery-lightbox .lightbox-nav .lightbox-next {
  font-size: 40px;
  color: white;
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s ease;
}
.gallery-lightbox .lightbox-nav .lightbox-prev:hover,
.gallery-lightbox .lightbox-nav .lightbox-next:hover {
  color: #E21936;
  color: var(--red);
}

.resources-block {
  padding: 80px 0;
  background: #fff;
}
@media (max-width: 768px) {
  .resources-block {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  .resources-block {
    padding: 40px 0;
  }
}
.resources-block .container {
  max-width: 1320px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.resources-block .section-title {
  font-size: 60px;
  line-height: 1.3;
  color: #6D6D6D;
  color: var(--black);
  position: relative;
  padding-bottom: 20px;
  font-weight: 400;
  margin: 0 auto 60px;
  text-align: center;
}
.resources-block .section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 10px;
  background-color: #E21936;
  background-color: var(--red);
}
@media (max-width: 768px) {
  .resources-block .section-title {
    font-size: 45px;
    padding-bottom: 15px;
    margin: 0 auto 40px;
  }
  .resources-block .section-title:after {
    width: 60px;
    height: 8px;
  }
}
@media (max-width: 576px) {
  .resources-block .section-title {
    font-size: 32px;
    padding-bottom: 12px;
    margin: 0 auto 30px;
  }
  .resources-block .section-title:after {
    width: 50px;
    height: 6px;
  }
}
.resources-block .resources-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 30px;
  gap: 30px;
}
@media (max-width: 1030px) {
  .resources-block .resources-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px;
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .resources-block .resources-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    gap: 20px;
    padding: 0 10px;
  }
}
@media (max-width: 576px) {
  .resources-block .resources-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    gap: 15px;
    padding: 0;
  }
}
.resources-block .resource-item {
  background: white;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .resources-block .resource-item {
    padding: 25px 15px;
  }
}
@media (max-width: 576px) {
  .resources-block .resource-item {
    padding: 20px 15px;
  }
}
.resources-block .resource-item:hover {
  transform: translateY(-5px);
}
.resources-block .resource-item:hover .resource-icon img {
  transform: scale(1.05);
}
.resources-block .resource-item:hover .resource-title {
  color: #E21936;
  color: var(--red);
}
.resources-block .resource-link {
  text-decoration: none;
  color: inherit;
}
.resources-block .resource-icon {
  margin-bottom: 20px;
  width: 100px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@media (max-width: 768px) {
  .resources-block .resource-icon {
    width: 80px;
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .resources-block .resource-icon {
    width: 60px;
    margin-bottom: 12px;
  }
}
.resources-block .resource-icon img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.resources-block .resource-title {
  font-size: 18px;
  font-weight: 500;
  color: #6D6D6D;
  color: var(--grey);
  margin: 0;
  line-height: 1.3;
  padding: 0 10px;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .resources-block .resource-title {
    font-size: 16px;
    padding: 0 8px;
    line-height: 1.25;
  }
}
@media (max-width: 576px) {
  .resources-block .resource-title {
    font-size: 14px;
    padding: 0 5px;
    line-height: 1.2;
  }
}
.resources-block .no-resources {
  text-align: center;
  font-size: 20px;
  color: #6D6D6D;
  color: var(--grey);
  padding: 40px 0;
  font-style: italic;
  background: #F0F0F0;
  border-radius: 4px;
  margin: 0;
}
@media (max-width: 768px) {
  .resources-block .no-resources {
    font-size: 18px;
    padding: 30px 0;
  }
}
@media (max-width: 576px) {
  .resources-block .no-resources {
    font-size: 16px;
    padding: 20px 0;
  }
}
.resources-block .pagination {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .resources-block .pagination {
    margin-top: 30px;
  }
}
@media (max-width: 576px) {
  .resources-block .pagination {
    margin-top: 25px;
  }
}

/* Our Team Block Styles */
.our-team-block {
  padding: 80px 0;
  background: #fff;
}
@media (max-width: 768px) {
  .our-team-block {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  .our-team-block {
    padding: 40px 0;
  }
}
.our-team-block .container {
  max-width: 1320px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.our-team-block .our-team-header {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .our-team-block .our-team-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .our-team-block .our-team-header {
    margin-bottom: 30px;
  }
}
.our-team-block .our-team-header .our-team-title {
  font-size: 60px;
  line-height: 1.3;
  color: #6D6D6D;
  color: var(--black);
  position: relative;
  padding-bottom: 20px;
  font-weight: 400;
  margin: 0;
}
.our-team-block .our-team-header .our-team-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 10px;
  background-color: #E21936;
  background-color: var(--red);
  transition: width 0.3s ease;
}
@media (max-width: 768px) {
  .our-team-block .our-team-header .our-team-title {
    font-size: 45px;
    padding-bottom: 15px;
  }
  .our-team-block .our-team-header .our-team-title:after {
    width: 60px;
    height: 8px;
  }
}
@media (max-width: 576px) {
  .our-team-block .our-team-header .our-team-title {
    font-size: 32px;
    padding-bottom: 12px;
  }
  .our-team-block .our-team-header .our-team-title:after {
    width: 40px;
    height: 6px;
  }
}
.our-team-block .team-members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px;
  gap: 60px;
}
@media (max-width: 768px) {
  .our-team-block .team-members {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 30px;
    gap: 40px 30px;
  }
}
@media (max-width: 576px) {
  .our-team-block .team-members {
    grid-template-columns: 1fr;
    grid-gap: 40px;
    gap: 40px;
    max-width: 400px;
    margin: 0 auto;
  }
}
.our-team-block .team-member {
  text-align: center;
  transition: transform 0.3s ease;
}
.our-team-block .team-member:hover {
  transform: translateY(-5px);
}
.our-team-block .team-member:hover .member-image img {
  transform: scale(1.05);
}
.our-team-block .team-member:hover .member-name {
  color: #E21936;
  color: var(--red);
}
.our-team-block .team-member:hover .position-divider {
  width: 80px;
}
@media (max-width: 768px) {
  .our-team-block .team-member:hover .position-divider {
    width: 70px;
  }
}
@media (max-width: 576px) {
  .our-team-block .team-member:hover .position-divider {
    width: 60px;
  }
}
.our-team-block .member-image {
  position: relative;
  margin-bottom: 20px;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
}
.our-team-block .member-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #6D6D6D;
  background: var(--black);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.our-team-block .member-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
@media (max-width: 576px) {
  .our-team-block .member-image {
    margin-bottom: 15px;
  }
}
.our-team-block .member-info {
  padding: 0 15px;
}
.our-team-block .member-info .member-name {
  font-size: 24px;
  color: var(--grey-dark);
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 0.95;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .our-team-block .member-info .member-name {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .our-team-block .member-info .member-name {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.our-team-block .member-info .member-position {
  font-size: 24px;
  color: var(--grey-dark);
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 0.95;
}
@media (max-width: 768px) {
  .our-team-block .member-info .member-position {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .our-team-block .member-info .member-position {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.our-team-block .member-info .position-divider {
  display: block;
  width: 60px;
  height: 10px;
  background: #E21936;
  background: var(--red);
  margin: 20px auto;
  transition: width 0.3s ease;
}
@media (max-width: 768px) {
  .our-team-block .member-info .position-divider {
    width: 50px;
    height: 8px;
    margin: 15px auto;
  }
}
@media (max-width: 576px) {
  .our-team-block .member-info .position-divider {
    width: 40px;
    height: 6px;
    margin: 12px auto;
  }
}
.our-team-block .member-info .member-contact {
  font-size: 20px;
  color: #6D6D6D;
  color: var(--grey);
  margin-bottom: 5px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .our-team-block .member-info .member-contact {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 576px) {
  .our-team-block .member-info .member-contact {
    font-size: 16px;
    line-height: 24px;
  }
}
.our-team-block .member-info .member-contact.phone {
  margin-top: 15px;
}
@media (max-width: 576px) {
  .our-team-block .member-info .member-contact.phone {
    margin-top: 12px;
  }
}
.our-team-block .member-info .member-contact.phone a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.our-team-block .member-info .member-contact.phone a:hover {
  color: #E21936;
  color: var(--red);
}
.our-team-block .member-info .member-contact.email a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.our-team-block .member-info .member-contact.email a:hover {
  color: #E21936;
  color: var(--red);
}

.header-timeline-block {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 576px) {
  .header-timeline-block {
    height: 100vh;
  }
}
.header-timeline-block .backgrounds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.header-timeline-block .backgrounds .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.header-timeline-block .backgrounds .background.active {
  opacity: 1;
}
.header-timeline-block .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  z-index: 2;
}
.header-timeline-block .container {
  position: relative;
  z-index: 3;
  max-width: 1320px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 20px;
  height: 100vh;
  display: flex;
  grid-gap: 80px;
  gap: 80px;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 768px) {
  .header-timeline-block .container {
    padding: 60px 20px;
    grid-gap: 60px;
    gap: 60px;
  }
}
@media (max-width: 576px) {
  .header-timeline-block .container {
    padding: 40px 20px;
    flex-direction: column;
    grid-gap: 40px;
    gap: 40px;
    justify-content: flex-start;
    position: relative;
  }
}
.header-timeline-block .timeline-container {
  position: relative;
  height: 70vh;
  flex-shrink: 0;
  width: 120px;
  order: 1;
}
@media (max-width: 576px) {
  .header-timeline-block .timeline-container {
    position: absolute;
    height: 50vh;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.header-timeline-block .timeline {
  position: absolute;
  width: 2px;
  background: white;
  display: flex;
  flex-direction: column;
  grid-gap: 60px;
  gap: 60px;
  left: 50%;
  transform: translateX(-50%);
  padding: 120px 0;
}
@media (max-width: 768px) {
  .header-timeline-block .timeline {
    grid-gap: 50px;
    gap: 50px;
  }
}
@media (max-width: 576px) {
  .header-timeline-block .timeline {
    width: 2px;
    background: rgba(255, 255, 255, 0.5);
  }
}
.header-timeline-block .timeline:before, .header-timeline-block .timeline:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 576px) {
  .header-timeline-block .timeline:before, .header-timeline-block .timeline:after {
    height: 60px;
  }
}
.header-timeline-block .timeline:before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}
.header-timeline-block .timeline:after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}
.header-timeline-block .timeline .timeline-item {
  position: relative;
  padding: 30px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 6;
}
@media (max-width: 576px) {
  .header-timeline-block .timeline .timeline-item {
    padding: 20px 0;
  }
}
.header-timeline-block .timeline .timeline-item .dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 99;
}
@media (max-width: 576px) {
  .header-timeline-block .timeline .timeline-item .dot {
    width: 16px;
    height: 16px;
  }
}
.header-timeline-block .timeline .timeline-item .dot:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .header-timeline-block .timeline .timeline-item .dot:after {
    width: 10px;
    height: 10px;
  }
}
.header-timeline-block .timeline .timeline-item .year {
  position: absolute;
  right: calc(100% + 20px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #fff;
  opacity: 0.7;
  transition: all 0.3s ease;
  font-weight: 500;
  white-space: nowrap;
  text-align: right;
  z-index: 6;
}
@media (max-width: 768px) {
  .header-timeline-block .timeline .timeline-item .year {
    font-size: 20px;
    right: calc(100% + 15px);
  }
}
@media (max-width: 576px) {
  .header-timeline-block .timeline .timeline-item .year {
    font-size: 18px;
    right: calc(100% + 12px);
  }
}
.header-timeline-block .timeline .timeline-item.past .dot {
  background: #fff;
  opacity: 1;
}
.header-timeline-block .timeline .timeline-item.past .year {
  opacity: 1;
}
.header-timeline-block .timeline .timeline-item.active .dot {
  background: #fff;
  opacity: 1;
  transform: translateX(-50%) scale(1.2);
}
.header-timeline-block .timeline .timeline-item.active .dot:after {
  background: #E21936;
  background: var(--red);
}
.header-timeline-block .timeline .timeline-item.active .year {
  opacity: 1;
  color: #E21936;
  color: var(--red);
  font-size: 500%;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transform: translateY(-50%) scale(1.05);
}
@media (max-width: 768px) {
  .header-timeline-block .timeline .timeline-item.active .year {
    font-size: 300%;
  }
}
@media (max-width: 576px) {
  .header-timeline-block .timeline .timeline-item.active .year {
    font-size: 200%;
  }
}
.header-timeline-block .timeline .timeline-item:hover .dot {
  opacity: 1;
  transform: translateX(-50%) scale(1.2);
}
.header-timeline-block .timeline .timeline-item:hover .dot:after {
  transform: translate(-50%, -50%) scale(1.1);
}
.header-timeline-block .timeline .timeline-item:hover .year {
  opacity: 1;
}
.header-timeline-block .content-wrapper {
  flex: 1;
  max-width: 600px;
  order: 2;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  .header-timeline-block .content-wrapper {
    max-width: 450px;
    overflow: hidden;
  }
}
@media (max-width: 576px) {
  .header-timeline-block .content-wrapper {
    max-width: 100%;
    order: 1;
    overflow: hidden;
    position: relative;
  }
}
.header-timeline-block .content-wrapper .content {
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
  position: absolute;
}
.header-timeline-block .content-wrapper .content .close-icon {
  display: none; /* Hidden by default */
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 10;
}
.header-timeline-block .content-wrapper .content .close-icon:before, .header-timeline-block .content-wrapper .content .close-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: white;
}
.header-timeline-block .content-wrapper .content .close-icon:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header-timeline-block .content-wrapper .content .close-icon:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header-timeline-block .content-wrapper .content.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
@media (max-width: 576px) {
  .header-timeline-block .content-wrapper .content.active {
    text-align: center;
    background: rgba(0, 0, 0, 0.85);
    padding: 60px;
    margin: -20px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
  }
  .header-timeline-block .content-wrapper .content.active .close-icon {
    display: block; /* Show close icon on mobile */
  }
}
.header-timeline-block .content-wrapper .timeline-link {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: white;
  text-decoration: none;
  border-radius: 0;
  margin-top: 40px;
  transition: transform 0.2s ease;
  align-self: flex-start;
  border: 2px solid #6D6D6D;
  border: 2px solid var(--black, #6D6D6D);
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .header-timeline-block .content-wrapper .timeline-link {
    font-size: 16px;
    padding: 12px 30px;
    margin-top: 30px;
  }
}
@media (max-width: 576px) {
  .header-timeline-block .content-wrapper .timeline-link {
    font-size: 14px;
    padding: 10px 24px;
    margin: 30px auto 0;
    display: table;
    text-align: center;
  }
}
.header-timeline-block .content-wrapper .timeline-link:hover {
  transform: translateY(-2px);
  background: #E21936;
  background: var(--red);
  border-color: #E21936;
  border-color: var(--red);
  color: white;
}
.header-timeline-block .content-wrapper .timeline-link::after {
  content: ">";
  margin-left: 0.5rem;
  font-weight: 700;
  color: #E21936;
  color: var(--red);
}
.header-timeline-block .title {
  font-size: 70px;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .header-timeline-block .title {
    font-size: 50px;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .header-timeline-block .title {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
  }
}
.header-timeline-block .description {
  color: #fff;
  line-height: 1.4;
  font-size: 22px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .header-timeline-block .description {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .header-timeline-block .description {
    font-size: 16px;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .header-timeline-block .timeline-item {
    padding: 20px 0;
  }
  .header-timeline-block .timeline-item:active .dot {
    transform: translateX(-50%) scale(1.2);
  }
  .header-timeline-block .dot:after {
    width: 12px;
    height: 12px;
  }
}

/*
	This file is for styling your comment sections
*/
#comments {
  padding: 30px 0;
  padding: var(--gap) 0;
}

.comments-holder {
  max-width: 1320px;
  max-width: var(--container-content);
  margin: auto;
}

.comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comment-form-cookies-consent label {
  display: inline;
  font-weight: normal;
}

/*--------------------------------------------------------------
# Default Card Pagination for all loops
--------------------------------------------------------------*/
.pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 5px;
  gap: 5px;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  font-size: 16px;
  color: #6D6D6D;
  color: var(--black);
  text-decoration: none;
  transition: all 0.3s ease;
  background: white;
  border: none;
}
.pagination .page-numbers.current {
  color: #E21936;
  color: var(--red);
  background: white;
  font-weight: 700;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  width: 40px;
  height: 40px;
  background: #6D6D6D;
  background: var(--black);
  color: white;
  font-size: 20px;
  padding: 0;
}
.pagination .page-numbers.prev:hover, .pagination .page-numbers.next:hover {
  background: #E21936;
  background: var(--red);
}
.pagination .page-numbers.prev {
  border-radius: 4px 0 0 4px;
}
.pagination .page-numbers.next {
  border-radius: 0 4px 4px 0;
}
.pagination .page-numbers.dots {
  pointer-events: none;
  background: transparent;
  color: #6D6D6D;
  color: var(--grey);
}
@media (max-width: 768px) {
  .pagination .page-numbers {
    min-width: 35px;
    height: 35px;
    font-size: 15px;
  }
  .pagination .page-numbers.prev, .pagination .page-numbers.next {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .pagination .page-numbers {
    min-width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .pagination .page-numbers.prev, .pagination .page-numbers.next {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

.nav-links {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  grid-gap: 20px;
  gap: 20px;
}
.nav-links .nav-previous,
.nav-links .nav-next {
  flex: 0 0 auto;
  max-width: 45%;
}
.nav-links .nav-previous a,
.nav-links .nav-next a {
  display: inline-flex;
  align-items: center;
  color: #E21936;
  color: var(--red);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
  grid-gap: 10px;
  gap: 10px;
}
.nav-links .nav-previous a .nav-title,
.nav-links .nav-next a .nav-title {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  gap: 10px;
}
.nav-links .nav-previous a .nav-title .nav-title-icon-wrapper,
.nav-links .nav-next a .nav-title .nav-title-icon-wrapper {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.nav-links .nav-previous a .nav-title .nav-title-icon-wrapper svg,
.nav-links .nav-next a .nav-title .nav-title-icon-wrapper svg {
  width: 24px;
  height: 24px;
  color: #E21936;
  color: var(--red);
}
@media (max-width: 768px) {
  .nav-links .nav-previous a .nav-title .nav-title-icon-wrapper svg,
  .nav-links .nav-next a .nav-title .nav-title-icon-wrapper svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 576px) {
  .nav-links .nav-previous a .nav-title .nav-title-icon-wrapper svg,
  .nav-links .nav-next a .nav-title .nav-title-icon-wrapper svg {
    width: 18px;
    height: 18px;
  }
}
.nav-links .nav-previous a:hover,
.nav-links .nav-next a:hover {
  color: #E21936;
  color: var(--red);
}
.nav-links .nav-previous a:hover .nav-title-icon-wrapper,
.nav-links .nav-next a:hover .nav-title-icon-wrapper {
  transform: translateX(-5px);
}
@media (max-width: 768px) {
  .nav-links .nav-previous a,
  .nav-links .nav-next a {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .nav-links .nav-previous a,
  .nav-links .nav-next a {
    font-size: 16px;
  }
}
.nav-links .nav-next {
  text-align: right;
}
.nav-links .nav-next a {
  flex-direction: row-reverse;
}
.nav-links .nav-next a:hover .nav-title-icon-wrapper {
  transform: translateX(5px);
}
.nav-links .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 768px) {
  .nav-links {
    padding: 30px 0;
    grid-gap: 15px;
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .nav-links {
    padding: 20px 0;
    grid-gap: 10px;
    gap: 10px;
  }
}

/*--------------------------------------------------------------
# WordPress Login Page Styles
--------------------------------------------------------------*/
/* Custom styling for login logo and site title */
.login h1 a {
  display: none;
}

#login p.site-title {
  display: flex;
  justify-content: center;
}

#login p.message {
  display: flex;
  justify-content: center;
}

/* Optional: Style the login form */
#loginform {
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Optional: Style the login button */
#wp-submit {
  background-color: #CD1719;
  border-color: #CD1719;
}

/*--------------------------------------------------------------
# Search Page Styling
--------------------------------------------------------------*/
.search .page-header {
  background-color: #f8f8f8;
  padding: 60px 0;
  margin-bottom: 40px;
}
.search .page-header .search-container {
  z-index: 99;
}
.search .page-header .page-title {
  margin-bottom: 30px;
  text-align: center;
}
.search .page-header .page-title span {
  color: #E21936;
  color: var(--highlight);
  font-weight: bold;
}

.search-form {
  max-width: 600px;
  margin: 0 auto;
  justify-content: center;
}
.search-form .search-form-container {
  display: flex;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  z-index: 99;
}
.search-form .search-field {
  flex: 1;
  height: 55px;
  padding: 10px 20px;
  font-size: 1.8rem;
  border: 1px solid #e5e5e5;
  border-right: none;
  border-radius: 4px 0 0 4px;
  width: 600px;
  max-width: 100%;
}
.search-form .search-field:focus {
  outline: none;
  border-color: #E21936;
  border-color: var(--highlight);
}
.search-form .search-submit {
  min-width: 60px;
  padding: 10px 25px;
  background-color: #E21936;
  background-color: var(--highlight);
  border: 1px solid #E21936;
  border: 1px solid var(--highlight);
  color: white;
  font-size: 1.8rem;
  border-radius: 0 4px 4px 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-form .search-submit:hover {
  background-color: #007fb0;
  background-color: var(--highlight-darkened);
  cursor: pointer;
}
.search-form .search-submit .iconify {
  font-size: 2rem;
}

.search-items {
  padding: 20px 0 60px;
}
.search-items .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  gap: 30px;
}
@media (max-width: 768px) {
  .search-items .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
    gap: 25px;
    padding: 0;
  }
}
@media (max-width: 576px) {
  .search-items .cards-grid {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
  }
}
.search-items .card {
  border: 2px solid #6D6D6D;
  border: 2px solid var(--grey);
  background: white;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .search-items .card {
    align-items: stretch;
  }
}
.search-items .card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
@media (max-width: 576px) {
  .search-items .card:hover {
    transform: translateX(-5px);
  }
}
.search-items .card .card-date {
  padding: 20px;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  color: #6D6D6D;
  color: var(--grey);
}
@media (max-width: 576px) {
  .search-items .card .card-date {
    padding: 15px;
    font-size: 16px;
    border-bottom: none;
    display: flex;
    align-items: center;
    min-width: 100px;
  }
}
.search-items .card .card-content {
  padding: 10px 20px;
  flex: 1;
}
@media (max-width: 576px) {
  .search-items .card .card-content {
    padding: 15px;
  }
}
.search-items .card .card-content .card-title {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 35px;
  color: #6D6D6D;
  color: var(--black);
}
@media (max-width: 768px) {
  .search-items .card .card-content .card-title {
    font-size: 18px;
    margin: 0 0 12px;
  }
}
@media (max-width: 576px) {
  .search-items .card .card-content .card-title {
    font-size: 16px;
    margin: 0 0 10px;
  }
}
.search-items .card .card-content .card-excerpt {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  color: #6D6D6D;
  color: var(--grey);
}
@media (max-width: 768px) {
  .search-items .card .card-content .card-excerpt {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .search-items .card .card-content .card-excerpt {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.search-items .card .card-footer {
  padding: 10px 20px 20px;
  margin-top: auto;
}
@media (max-width: 576px) {
  .search-items .card .card-footer {
    padding: 15px;
    border-top: none;
    border-left: 1px solid #E6E6E6;
    display: flex;
    align-items: center;
  }
}
.search-items .card .card-footer .read-more {
  display: inline-flex;
  align-items: center;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8; /* 187.5% */
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .search-items .card .card-footer .read-more {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .search-items .card .card-footer .read-more {
    font-size: 14px;
  }
}
.search-items .card .card-footer .read-more:after {
  content: ">";
  margin-left: 8px;
  transition: transform 0.3s ease;
  color: #E21936;
  color: var(--red);
}
.search-items .card .card-footer .read-more:hover {
  color: #E21936;
  color: var(--red);
}
.search-items .card .card-footer .read-more:hover:after {
  transform: translateX(5px);
}
.search-items .no-results {
  text-align: center;
  padding: 40px 0;
}
.search-items .no-results .page-content {
  max-width: 600px;
  margin: 0 auto;
}
.search-items .no-results .page-content p {
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #666;
}
.search-items .no-results .page-content .search-form {
  margin-top: 20px;
}

.search .navigation.pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.search .navigation.pagination .nav-links {
  display: flex;
  align-items: center;
  grid-gap: 8px;
  gap: 8px;
}
.search .navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background-color: #f5f5f5;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.search .navigation.pagination .page-numbers:hover {
  background-color: #e0e0e0;
}
.search .navigation.pagination .page-numbers.current {
  background-color: #E21936;
  background-color: var(--highlight);
  color: white;
}
.search .navigation.pagination .page-numbers.prev, .search .navigation.pagination .page-numbers.next {
  background-color: transparent;
}
.search .navigation.pagination .page-numbers.prev:hover, .search .navigation.pagination .page-numbers.next:hover {
  background-color: #f5f5f5;
}
.search .navigation.pagination .page-numbers .iconify {
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .search .page-header {
    padding: 40px 0;
  }
  .search-form .search-field {
    height: 50px;
    font-size: 1.6rem;
  }
  .search-form .search-submit {
    padding: 10px 15px;
  }
  .search-items .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 20px;
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .search .page-header {
    padding: 30px 0;
  }
  .search-form .search-field {
    height: 45px;
    font-size: 1.4rem;
  }
  .search-items {
    padding: 15px 0 40px;
  }
  .search-items .card-grid {
    grid-template-columns: 1fr;
  }
}
.admin-bar #page {
  min-height: calc(100vh - 32px);
}

@media (max-width: 782px) {
  .admin-bar #page {
    min-height: calc(100vh - 46px);
  }
}
#tinymce {
  padding: 0 30px;
  padding: 0 var(--gap);
}

/*--------------------------------------------------------------
# Page design
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# SASS Variables and Mixins. Do not output any css in here. if you need these make sure to @use "variables"
--------------------------------------------------------------*/
/*------- Media Query Sizes. Add your own --------*/
/*------- Panel Becomes Absolute Query  --------*/
/*------- Add your own breakpoints to the grid --------*/
/*--------------------------------------------------------------
Mixins
--------------------------------------------------------------*/
/*------- Retina --------*/
/*------- Deep Shadow Mixin --------*/
/*------- Lighten and shade colors --------*/
/*------- Fluid Font Lock --------*/
/*------- Sort Map by values --------*/
/*------- Grid --------*/
/* Mixins for media queries */
/*--------------------------------------------------------------
# Post news design
--------------------------------------------------------------*/
.news-content-wrapper {
  display: flex;
  padding-top: 80px;
  grid-gap: 50px;
  gap: 50px;
}
@media (max-width: 768px) {
  .news-content-wrapper {
    flex-direction: column;
    padding-top: 40px;
    grid-gap: 40px;
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .news-content-wrapper {
    padding-top: 20px;
    grid-gap: 20px;
    gap: 20px;
  }
}
.news-content-wrapper .news-content {
  width: 100%;
  max-width: 1320px;
  max-width: var(--container-content);
  margin: 0 auto;
  /* Styles for the news post footer*/
}
@media (max-width: 768px) {
  .news-content-wrapper .news-content {
    max-width: 100%;
  }
}
.news-content-wrapper .news-content p {
  font-size: 20px;
  line-height: 1.36;
  font-weight: 400;
  font-style: normal;
  color: #6D6D6D;
  color: var(--grey);
  margin: 0 0 20px;
}
@media (max-width: 768px) {
  .news-content-wrapper .news-content p {
    font-size: 18px;
    margin: 0 0 15px;
  }
}
@media (max-width: 576px) {
  .news-content-wrapper .news-content p {
    font-size: 16px;
    margin: 0 0 10px;
  }
}
.news-content-wrapper .news-content h1, .news-content-wrapper .news-content h2, .news-content-wrapper .news-content h3, .news-content-wrapper .news-content h4, .news-content-wrapper .news-content h5, .news-content-wrapper .news-content h6 {
  font-weight: 700;
  color: #6D6D6D;
  color: var(--black);
  margin: 0 0 20px;
}
@media (max-width: 768px) {
  .news-content-wrapper .news-content h1, .news-content-wrapper .news-content h2, .news-content-wrapper .news-content h3, .news-content-wrapper .news-content h4, .news-content-wrapper .news-content h5, .news-content-wrapper .news-content h6 {
    margin: 0 0 15px;
  }
}
@media (max-width: 576px) {
  .news-content-wrapper .news-content h1, .news-content-wrapper .news-content h2, .news-content-wrapper .news-content h3, .news-content-wrapper .news-content h4, .news-content-wrapper .news-content h5, .news-content-wrapper .news-content h6 {
    margin: 0 0 10px;
  }
}
.news-content-wrapper .news-content h2 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.36;
  margin: 16px 0 20px;
}
@media (max-width: 768px) {
  .news-content-wrapper .news-content h2 {
    font-size: 18px;
    margin: 0 0 15px;
  }
}
@media (max-width: 576px) {
  .news-content-wrapper .news-content h2 {
    font-size: 16px;
    margin: 0 0 10px;
  }
}
.news-content-wrapper .news-content ul, .news-content-wrapper .news-content ol {
  margin: 0 0 30px 20px;
  padding: 0;
}
@media (max-width: 768px) {
  .news-content-wrapper .news-content ul, .news-content-wrapper .news-content ol {
    margin: 0 0 25px 15px;
  }
}
@media (max-width: 576px) {
  .news-content-wrapper .news-content ul, .news-content-wrapper .news-content ol {
    margin: 0 0 20px 10px;
  }
}
.news-content-wrapper .news-content ul {
  list-style-type: none;
}
.news-content-wrapper .news-content ul li {
  position: relative;
  font-size: 20px;
  line-height: 1.36;
  font-weight: 400;
  color: #6D6D6D;
  color: var(--grey);
  margin-bottom: 15px;
  padding-left: 25px;
}
.news-content-wrapper .news-content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: #E21936;
  background-color: var(--red);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .news-content-wrapper .news-content ul li {
    font-size: 18px;
    margin-bottom: 12px;
    padding-left: 20px;
  }
  .news-content-wrapper .news-content ul li:before {
    width: 7px;
    height: 7px;
    top: 9px;
  }
}
@media (max-width: 576px) {
  .news-content-wrapper .news-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 18px;
  }
  .news-content-wrapper .news-content ul li:before {
    width: 6px;
    height: 6px;
    top: 8px;
  }
}
.news-content-wrapper .news-content ol li {
  font-size: 20px;
  line-height: 1.36;
  font-weight: 400;
  color: #6D6D6D;
  color: var(--grey);
  margin-bottom: 15px;
  padding-left: 5px;
}
@media (max-width: 768px) {
  .news-content-wrapper .news-content ol li {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
@media (max-width: 576px) {
  .news-content-wrapper .news-content ol li {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.news-content-wrapper .news-content strong {
  font-weight: 700;
  margin: 20px 0;
}
.news-content-wrapper .news-content blockquote,
.news-content-wrapper .news-content .wp-block-quote {
  position: relative;
  padding-left: 30px;
  margin: 40px 0;
  border: none;
}
.news-content-wrapper .news-content blockquote:before,
.news-content-wrapper .news-content .wp-block-quote:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #E21936;
  background-color: var(--red);
}
.news-content-wrapper .news-content blockquote p,
.news-content-wrapper .news-content .wp-block-quote p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  padding-left: 0;
  color: #6D6D6D;
  color: var(--black);
  margin: 0;
}
@media (max-width: 768px) {
  .news-content-wrapper .news-content blockquote p,
  .news-content-wrapper .news-content .wp-block-quote p {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .news-content-wrapper .news-content blockquote p,
  .news-content-wrapper .news-content .wp-block-quote p {
    font-size: 20px;
  }
}
.news-content-wrapper .news-content blockquote li,
.news-content-wrapper .news-content .wp-block-quote li {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  padding-left: 0;
  color: #6D6D6D;
  color: var(--black);
  margin: 0;
}
@media (max-width: 768px) {
  .news-content-wrapper .news-content blockquote li,
  .news-content-wrapper .news-content .wp-block-quote li {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .news-content-wrapper .news-content blockquote li,
  .news-content-wrapper .news-content .wp-block-quote li {
    font-size: 20px;
  }
}
.news-content-wrapper .news-content blockquote cite,
.news-content-wrapper .news-content .wp-block-quote cite {
  display: block;
  margin-top: 20px;
  font-style: italic;
  font-size: 18px;
  color: #6D6D6D;
  color: var(--grey);
}
@media (max-width: 768px) {
  .news-content-wrapper .news-content blockquote cite,
  .news-content-wrapper .news-content .wp-block-quote cite {
    font-size: 16px;
    margin-top: 15px;
  }
}
@media (max-width: 576px) {
  .news-content-wrapper .news-content blockquote cite,
  .news-content-wrapper .news-content .wp-block-quote cite {
    font-size: 14px;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .news-content-wrapper .news-content blockquote,
  .news-content-wrapper .news-content .wp-block-quote {
    padding-left: 25px;
    margin: 30px 0;
  }
}
@media (max-width: 576px) {
  .news-content-wrapper .news-content blockquote,
  .news-content-wrapper .news-content .wp-block-quote {
    padding-left: 20px;
    margin: 25px 0;
  }
}
.news-content-wrapper .news-content .news-post-footer {
  display: flex;
  grid-gap: 20px;
  grid-gap: 20px;
  gap: 20px;
  padding: 20px 0;
  margin-top: 70px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .news-content-wrapper .news-content .news-post-footer {
    grid-gap: 15px;
    gap: 15px;
    padding: 15px 0;
    margin-top: 55px;
  }
}
@media (max-width: 576px) {
  .news-content-wrapper .news-content .news-post-footer {
    grid-gap: 10px;
    gap: 10px;
    padding: 10px 0;
    margin-top: 40px;
    flex-direction: column;
  }
}
.news-content-wrapper .news-content .news-post-footer .news-tags {
  display: block;
}
@media (max-width: 768px) {
  .news-content-wrapper .news-content .news-post-footer .news-tags {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 5px;
    gap: 5px;
  }
}
.news-content-wrapper .news-content .news-post-footer .news-tags a, .news-content-wrapper .news-content .news-post-footer .news-tags span {
  display: inline-block;
  padding: 8px 10px;
  background-color: #6D6D6D;
  background-color: var(--grey);
  color: white;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.news-content-wrapper .news-content .news-post-footer .news-tags a:hover, .news-content-wrapper .news-content .news-post-footer .news-tags span:hover {
  color: #E21936;
  color: var(--red);
}
@media (max-width: 768px) {
  .news-content-wrapper .news-content .news-post-footer .news-tags a, .news-content-wrapper .news-content .news-post-footer .news-tags span {
    padding: 6px 12px;
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .news-content-wrapper .news-content .news-post-footer .news-tags a, .news-content-wrapper .news-content .news-post-footer .news-tags span {
    padding: 5px 10px;
    font-size: 12px;
  }
}
.news-content-wrapper .news-content .news-post-footer .recipe-share {
  display: flex;
  align-items: center;
  grid-gap: 15px;
  gap: 15px;
}
.news-content-wrapper .news-content .news-post-footer .recipe-share .share-label {
  font-size: 16px;
  font-weight: 500;
  color: #6D6D6D;
  color: var(--black);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .news-content-wrapper .news-content .news-post-footer .recipe-share .share-label {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .news-content-wrapper .news-content .news-post-footer .recipe-share .share-label {
    font-size: 12px;
  }
}
.news-content-wrapper .news-content .news-post-footer .recipe-share .social-share {
  display: flex;
  grid-gap: 10px;
  gap: 10px;
  align-items: center;
  background-color: #6D6D6D;
  background-color: var(--grey);
  padding: 8px 12px;
  border-radius: 4px;
}
.news-content-wrapper .news-content .news-post-footer .recipe-share .social-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-content-wrapper .news-content .news-post-footer .recipe-share .social-share a .iconify {
  font-size: 20px;
}
.news-content-wrapper .news-content .news-post-footer .recipe-share .social-share a:hover {
  color: #E21936;
  color: var(--red);
}
@media (max-width: 768px) {
  .news-content-wrapper .news-content .news-post-footer .recipe-share .social-share a {
    width: 20px;
    height: 20px;
  }
  .news-content-wrapper .news-content .news-post-footer .recipe-share .social-share a .iconify {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .news-content-wrapper .news-content .news-post-footer .recipe-share .social-share a {
    width: 18px;
    height: 18px;
  }
  .news-content-wrapper .news-content .news-post-footer .recipe-share .social-share a .iconify {
    font-size: 16px;
  }
}
.news-content-wrapper .news-sidebar {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .news-content-wrapper .news-sidebar {
    max-width: 100%;
  }
}
.news-content-wrapper .news-sidebar .widget,
.news-content-wrapper .news-sidebar #secondary, .news-content-wrapper .news-sidebar .secondary {
  padding: 0;
}

/*------- ACF Menu block --------*/
.site .acf-menu {
  padding: 0;
}

.section-menu {
  background: #4c545d;
  background: var(--dark-grey);
}
.section-menu li {
  font-weight: normal;
}

/*# sourceMappingURL=backEnd.css.map*/