@charset "UTF-8";
/**
 * Theme Name: Coveware WordPress Theme
 * Theme URI: https://coveware.com/
 * Author: Phil Buchanan
 * Author URI: https://coveware.com/
 * Description: A responsive, accessible WordPress theme for the Coveware Website. Developed to support WordPress version 7.0 and Gutenberg.
 * Update URI: false
 * Version: 1.0.0
 * License: Copyright 2026
 * Requires PHP: 8.0
 * Requires at least: 7.0
 */
:root {
  /* Color Variables */
  /* Greys */
  --grey--50: #fafafa;
  --grey--75: #f2f2f2;
  --grey--100: #e5e5e5; /* Tinted backgrounds */
  --grey--200: #bfbfbf;
  --grey--500: #767676; /* Lightest possible grey for text on white background */
  --grey--800: #4d4d4d; /* 30 */
  /* Colors */
  --color--primary: #0270bc;
  --color--secondary: #062c66;
  /* Fonts */
  --color--text: var(--grey--800);
  /* Borders */
  --color--border: var(--grey--200);
  --color--border--light: var(--grey--100);
  /* Success and Errors */
  --color--error: #c33;
  --color--error--hover: #e00;
  --color--success: #080;
  --color--background--hovered: #f7fbfd;
  /* Typography */
  --font-family--sans-serif: 'Open Sans', sans-serif;
  --font-family--mono: 'Lucida Sans Typewriter', 'Lucida Console', monaco, 'Bitstream Vera Sans Mono', monospace;
  --line--height: 1.5;
  --font--size: 16px;
  --font--size--h1: 1.875rem;
  --font--size--h2: 1.5rem;
  --font--size--h3: 1.25rem;
  --font--size--h4: 1rem;
  --font--size--h5: 0.875rem;
  --font--size--h6: 0.75rem;
  --font--size--small: 0.75rem;
  --font--weight--light: 300;
  --font--weight--normal: 400;
  --font--weight--bold: 700;
  /* Spacing */
  --spacing--xs: 6px;
  --spacing--sm: 12px;
  --spacing--md: 24px;
  --spacing--lg: 36px;
  --spacing--xl: 72px;
  /* Grid */
  --wrapper-width: 1400px;
  --fractions: 12;
  --total-block-grid-columns: 6;
  --gutter: 10px;
  /* Breakpoints */
  --breakpoint--nav: 767px;
  /* No suffix on classes for < 475px */
  --breakpoint--sm: 475px;
  --breakpoint--md: 768px;
  --breakpoint--lg: 1024px;
  --breakpoint--xl: 1200px;
  --border-radius: 4px;
  --border-radius--lg: 8px;
  --border-radius--xl: 16px;
  --box-shadow: 0 1px 8px rgba(2, 112, 188, 0.1), 0 2px 24px rgba(0, 0, 0, 0.05);
  /* Z-Index */
  --z-index--skip-link: 900;
  --z-index--tooltip: 600;
  --z-index--dropdown: 500;
  --z-index--modal: 300;
  --z-index--navigation: 100;
  --z-index--animations: 10;
  --z-index: 1;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

header, footer, main, article, aside, details,
figcaption, figure, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

html {
  color: var(--color--text);
  font-family: var(--font-family--sans-serif);
  font-size: var(--font--size);
  line-height: var(--line--height);
  border-top: 6px solid var(--color--secondary);
  overflow-y: scroll;
  min-height: 100%;
}

body {
  overflow: hidden;
}

/* These sizes (`xs`, `md`, etc.) should exist in the breakpoints group */
/* Adds an additional amount of padding beyond the default `o-col` padding. */
h1,
h2,
h3,
h4,
h5,
h6,
.is-style-h1,
.is-style-h2,
.is-style-h3,
.is-style-h4,
.is-style-h5,
.is-style-h6 {
  line-height: 1.2;
  margin: 0;
}

h1,
.is-style-h1 {
  color: var(--color--secondary);
  font-size: var(--font--size--h1);
  font-weight: var(--font--weight--bold);
  margin-bottom: 1rem;
}

h2,
.is-style-h2 {
  color: var(--color--primary);
  font-size: var(--font--size--h2);
  font-weight: var(--font--weight--bold);
  margin-bottom: 1rem;
}

h3,
.is-style-h3 {
  color: var(--color--primary);
  font-size: var(--font--size--h3);
  font-weight: var(--font--weight--bold);
  margin-bottom: 1rem;
}

h4,
.is-style-h4 {
  color: #000;
  font-size: var(--font--size--h4);
  font-weight: var(--font--weight--bold);
  margin-bottom: 0.375rem;
}

h5,
.is-style-h5 {
  color: #000;
  font-size: var(--font--size--h5);
  font-weight: var(--font--weight--bold);
  margin-bottom: 0.375rem;
}

h6,
.is-style-h6 {
  color: var(--color--secondary);
  font-size: var(--font--size--h6);
  font-weight: var(--font--weight--bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}

p {
  margin-bottom: 1em;
}

@media screen and (min-width: 475px) {
  .is-style-title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.1;
  }
}
.is-style-intro {
  color: #000;
  font-size: 1.1875rem;
  font-weight: var(--font--weight--light);
}

.is-style-medium .is-style-intro,
.is-style-dark .is-style-intro {
  color: #fff;
}

strong,
b {
  font-weight: var(--font--weight--bold);
}

em,
i {
  font-style: italic;
}

blockquote {
  font-size: var(--font--size--h3);
  font-weight: var(--font--weight--light);
  line-height: 1.35;
  border-left: 10px solid var(--color--primary);
  padding-left: 15px;
}
blockquote:not(:first-child) {
  margin-top: var(--spacing--lg);
}
blockquote:not(:last-child) {
  margin-bottom: var(--spacing--lg);
}
blockquote.is-style-plain {
  border-left: none;
  padding-left: 0;
}
blockquote p:first-of-type {
  text-indent: -0.3em;
}
blockquote p:first-of-type:before {
  content: "“";
}
blockquote p:last-of-type:after {
  content: "”";
}
blockquote cite {
  display: block;
  font-size: var(--font--size--h5);
  font-style: normal;
  margin-top: calc(0px - var(--spacing--sm));
}
blockquote cite:before {
  content: "—";
  margin-right: 0.25em;
}

q {
  quotes: "“" "”" "‘" "’";
}
q:before {
  content: open-quote;
}
q:after {
  content: close-quote;
}

cite {
  font-size: var(--font--size--h5);
}

caption {
  font-size: var(--font--size--h5);
}

kbd,
code,
var {
  color: var(--color--text);
  background-color: var(--grey--50);
  font-family: var(--font-family--mono);
  font-size: var(--font--size--h5);
  border: 1px solid var(--color--border--light);
  border-radius: 2px;
  padding: 0.1em 0.25em;
}

pre code {
  display: block;
  margin-bottom: 1rem;
}

kbd {
  border-bottom-width: 3px;
}

sub,
sup {
  vertical-align: baseline;
  font-size: 0.8125em;
  position: relative;
  top: -0.5em;
}

sub {
  top: 0.3em;
}

ins {
  text-decoration: underline;
}

s,
del {
  text-decoration: line-through;
}

big {
  font-size: var(--font--size--h1);
}

small {
  font-size: var(--font--size--small);
}

dfn {
  font-style: italic;
}

abbr {
  border-bottom: 1px dotted currentColor;
}

hr,
.wp-block-separator {
  border: solid var(--color--primary);
  border-width: 3px 0 0;
  border-radius: var(--border-radius);
  height: 0;
  max-width: 125px;
  margin: var(--spacing--lg) auto;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

dt {
  font-weight: var(--font--weight--bold);
}

dd,
ol,
ul,
.wp-block-list {
  margin-left: 2em;
  margin-bottom: 1em;
}

a {
  color: var(--color--primary);
  background-color: transparent;
  transition: color 0.2s;
}
a:hover {
  color: var(--color--secondary);
  text-decoration: none;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
  font-style: italic;
  vertical-align: middle;
}

figcaption {
  font-size: var(--font--size--small);
}

button,
input,
select,
textarea {
  vertical-align: middle;
  color: inherit;
  background: none;
  font: inherit;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  white-space: normal;
  box-shadow: none;
}
button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  opacity: 0.4;
}

[type=search]::-webkit-search-decoration,
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-results-button,
[type=search]::-webkit-search-results-decoration {
  display: none;
}

label,
legend {
  display: inline-block;
}

[type=date],
[type=datetime],
[type=datetime-local],
[type=email],
[type=month],
[type=number],
[type=password],
[type=range],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
textarea,
select {
  background-color: #fff;
  border: 1px solid var(--color--border);
  border-radius: var(--border-radius--lg);
  width: 100%;
  padding: 0.8rem;
  -webkit-appearance: none;
  -moz-appearance: none;
}
[type=date]:focus,
[type=datetime]:focus,
[type=datetime-local]:focus,
[type=email]:focus,
[type=month]:focus,
[type=number]:focus,
[type=password]:focus,
[type=range]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=text]:focus,
[type=time]:focus,
[type=url]:focus,
[type=week]:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--color--primary);
  outline-offset: -2px;
}

textarea {
  resize: vertical;
}

[type=checkbox],
[type=radio] {
  position: relative;
  top: -2px;
  margin-right: 2px;
}

select {
  background-position: center right 10px;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 4"><polygon points="8 0 4 4 0 0 8 0" fill="%23000"/></svg>');
  background-size: 8px 4px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-padding-end: 30px;
  -moz-padding-end: 30px;
}
select::-ms-expand {
  display: none;
}

button,
[type=button],
[type=submit] {
  cursor: pointer;
  display: inline-block;
  color: #fff;
  background-color: var(--color--primary);
  text-align: center;
  text-decoration: none;
  font-weight: var(--font--weight--bold);
  padding: var(--spacing--sm) var(--spacing--md);
  border-radius: 50px;
  white-space: nowrap;
  transition: background-color 0.2s;
}
button:hover,
[type=button]:hover,
[type=submit]:hover {
  color: #fff;
  background-color: var(--color--secondary);
}

[type=reset] {
  color: var(--color--error);
  text-decoration: underline;
}

[disabled] {
  pointer-events: none;
  opacity: 0.6;
}

.form-item,
.wpforms-container .wpforms-field {
  margin: 0 0 var(--spacing--md);
  padding: 0;
}
.form-item label,
.form-item legend,
.form-item p,
.wpforms-container .wpforms-field label,
.wpforms-container .wpforms-field legend,
.wpforms-container .wpforms-field p {
  font-size: var(--font--size--h5);
  font-weight: var(--font--weight--bold);
  margin-bottom: var(--spacing--xs);
}
.form-item label + p,
.form-item legend + p,
.form-item p + p,
.wpforms-container .wpforms-field label + p,
.wpforms-container .wpforms-field legend + p,
.wpforms-container .wpforms-field p + p {
  margin-top: calc(0px - var(--spacing--xs));
}
.form-item p,
.wpforms-container .wpforms-field p {
  font-weight: normal;
}
.form-item .wpforms-field-sublabel,
.wpforms-container .wpforms-field .wpforms-field-sublabel {
  font-weight: var(--font--weight--normal);
}

table {
  width: 100%;
  border: none;
}

.o-box {
  display: block;
}
.o-box > :last-child {
  margin-bottom: 0;
}
.o-box.is-size-sm {
  max-width: 450px;
}
.o-box.is-size-md {
  max-width: 650px;
}
.o-box.is-size-lg {
  max-width: 870px;
}

.o-button-bare {
  display: inline-block;
  color: inherit;
  background-color: transparent;
  font: inherit;
  text-align: left;
  text-decoration: none;
  vertical-align: baseline;
  border: none;
  border-radius: 0;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.o-button-bare:hover {
  background-color: transparent;
}

.o-container {
  width: 100%;
  max-width: var(--wrapper-width);
  margin-left: auto;
  margin-right: auto;
}
.o-container.is-full-width {
  max-width: 100%;
}

.o-container {
  padding-left: calc(var(--gutter) * 2);
  padding-right: calc(var(--gutter) * 2);
}

@media screen and (min-width: 768px) {
  .o-container {
    padding-left: calc(var(--gutter) * 3);
    padding-right: calc(var(--gutter) * 3);
  }
}
.o-list-bare {
  list-style: none;
  margin: 0;
}

.o-block-grid {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--gutter) * 2);
}
.o-block-grid:not(:last-child) {
  margin-bottom: var(--spacing--md);
}

.o-block-grid__item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.o-block-grid__item > :last-child {
  margin-bottom: 0;
}

.o-block-grid-1 .o-block-grid__item {
  width: calc((100% - calc((1 - 1) * var(--gutter) * 2)) / 1);
}

.o-block-grid-2 .o-block-grid__item {
  width: calc((100% - calc((2 - 1) * var(--gutter) * 2)) / 2);
}

.o-block-grid-3 .o-block-grid__item {
  width: calc((100% - calc((3 - 1) * var(--gutter) * 2)) / 3);
}

.o-block-grid-4 .o-block-grid__item {
  width: calc((100% - calc((4 - 1) * var(--gutter) * 2)) / 4);
}

.o-block-grid-5 .o-block-grid__item {
  width: calc((100% - calc((5 - 1) * var(--gutter) * 2)) / 5);
}

.o-block-grid-6 .o-block-grid__item {
  width: calc((100% - calc((6 - 1) * var(--gutter) * 2)) / 6);
}

@media screen and (min-width: 475px) {
  .o-block-grid-1-sm .o-block-grid__item {
    width: calc((100% - calc((1 - 1) * var(--gutter) * 2)) / 1);
  }
  .o-block-grid-2-sm .o-block-grid__item {
    width: calc((100% - calc((2 - 1) * var(--gutter) * 2)) / 2);
  }
  .o-block-grid-3-sm .o-block-grid__item {
    width: calc((100% - calc((3 - 1) * var(--gutter) * 2)) / 3);
  }
  .o-block-grid-4-sm .o-block-grid__item {
    width: calc((100% - calc((4 - 1) * var(--gutter) * 2)) / 4);
  }
  .o-block-grid-5-sm .o-block-grid__item {
    width: calc((100% - calc((5 - 1) * var(--gutter) * 2)) / 5);
  }
  .o-block-grid-6-sm .o-block-grid__item {
    width: calc((100% - calc((6 - 1) * var(--gutter) * 2)) / 6);
  }
}
@media screen and (min-width: 768px) {
  .o-block-grid-1-md .o-block-grid__item {
    width: calc((100% - calc((1 - 1) * var(--gutter) * 2)) / 1);
  }
  .o-block-grid-2-md .o-block-grid__item {
    width: calc((100% - calc((2 - 1) * var(--gutter) * 2)) / 2);
  }
  .o-block-grid-3-md .o-block-grid__item {
    width: calc((100% - calc((3 - 1) * var(--gutter) * 2)) / 3);
  }
  .o-block-grid-4-md .o-block-grid__item {
    width: calc((100% - calc((4 - 1) * var(--gutter) * 2)) / 4);
  }
  .o-block-grid-5-md .o-block-grid__item {
    width: calc((100% - calc((5 - 1) * var(--gutter) * 2)) / 5);
  }
  .o-block-grid-6-md .o-block-grid__item {
    width: calc((100% - calc((6 - 1) * var(--gutter) * 2)) / 6);
  }
}
@media screen and (min-width: 1024px) {
  .o-block-grid-1-lg .o-block-grid__item {
    width: calc((100% - calc((1 - 1) * var(--gutter) * 2)) / 1);
  }
  .o-block-grid-2-lg .o-block-grid__item {
    width: calc((100% - calc((2 - 1) * var(--gutter) * 2)) / 2);
  }
  .o-block-grid-3-lg .o-block-grid__item {
    width: calc((100% - calc((3 - 1) * var(--gutter) * 2)) / 3);
  }
  .o-block-grid-4-lg .o-block-grid__item {
    width: calc((100% - calc((4 - 1) * var(--gutter) * 2)) / 4);
  }
  .o-block-grid-5-lg .o-block-grid__item {
    width: calc((100% - calc((5 - 1) * var(--gutter) * 2)) / 5);
  }
  .o-block-grid-6-lg .o-block-grid__item {
    width: calc((100% - calc((6 - 1) * var(--gutter) * 2)) / 6);
  }
}
@media screen and (min-width: 1200px) {
  .o-block-grid-1-xl .o-block-grid__item {
    width: calc((100% - calc((1 - 1) * var(--gutter) * 2)) / 1);
  }
  .o-block-grid-2-xl .o-block-grid__item {
    width: calc((100% - calc((2 - 1) * var(--gutter) * 2)) / 2);
  }
  .o-block-grid-3-xl .o-block-grid__item {
    width: calc((100% - calc((3 - 1) * var(--gutter) * 2)) / 3);
  }
  .o-block-grid-4-xl .o-block-grid__item {
    width: calc((100% - calc((4 - 1) * var(--gutter) * 2)) / 4);
  }
  .o-block-grid-5-xl .o-block-grid__item {
    width: calc((100% - calc((5 - 1) * var(--gutter) * 2)) / 5);
  }
  .o-block-grid-6-xl .o-block-grid__item {
    width: calc((100% - calc((6 - 1) * var(--gutter) * 2)) / 6);
  }
}
.o-grid {
  display: grid;
  gap: calc(var(--gutter) * 2);
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.o-grid:not(:last-child) {
  margin-bottom: var(--spacing--md);
}

.o-grid__column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  grid-column-end: span 12;
}
.o-grid__column > :last-child {
  margin-bottom: 0;
}

.o-grid__column--position-1 {
  grid-column-start: 1;
}

.o-grid__column--position-2 {
  grid-column-start: 2;
}

.o-grid__column--position-3 {
  grid-column-start: 3;
}

.o-grid__column--position-4 {
  grid-column-start: 4;
}

.o-grid__column--position-5 {
  grid-column-start: 5;
}

.o-grid__column--position-6 {
  grid-column-start: 6;
}

.o-grid__column--position-7 {
  grid-column-start: 7;
}

.o-grid__column--position-8 {
  grid-column-start: 8;
}

.o-grid__column--position-9 {
  grid-column-start: 9;
}

.o-grid__column--position-10 {
  grid-column-start: 10;
}

.o-grid__column--position-11 {
  grid-column-start: 11;
}

.o-grid__column--position-12 {
  grid-column-start: 12;
}

.o-grid__column--1of12 {
  grid-column-end: span 1;
}

.o-grid__column--2of12 {
  grid-column-end: span 2;
}

.o-grid__column--3of12 {
  grid-column-end: span 3;
}

.o-grid__column--4of12 {
  grid-column-end: span 4;
}

.o-grid__column--5of12 {
  grid-column-end: span 5;
}

.o-grid__column--6of12 {
  grid-column-end: span 6;
}

.o-grid__column--7of12 {
  grid-column-end: span 7;
}

.o-grid__column--8of12 {
  grid-column-end: span 8;
}

.o-grid__column--9of12 {
  grid-column-end: span 9;
}

.o-grid__column--10of12 {
  grid-column-end: span 10;
}

.o-grid__column--11of12 {
  grid-column-end: span 11;
}

.o-grid__column--12of12 {
  grid-column-end: span 12;
}

@media screen and (min-width: 475px) {
  .o-grid__column--position-1-sm {
    grid-column-start: 1;
  }
  .o-grid__column--position-2-sm {
    grid-column-start: 2;
  }
  .o-grid__column--position-3-sm {
    grid-column-start: 3;
  }
  .o-grid__column--position-4-sm {
    grid-column-start: 4;
  }
  .o-grid__column--position-5-sm {
    grid-column-start: 5;
  }
  .o-grid__column--position-6-sm {
    grid-column-start: 6;
  }
  .o-grid__column--position-7-sm {
    grid-column-start: 7;
  }
  .o-grid__column--position-8-sm {
    grid-column-start: 8;
  }
  .o-grid__column--position-9-sm {
    grid-column-start: 9;
  }
  .o-grid__column--position-10-sm {
    grid-column-start: 10;
  }
  .o-grid__column--position-11-sm {
    grid-column-start: 11;
  }
  .o-grid__column--position-12-sm {
    grid-column-start: 12;
  }
  .o-grid__column--1of12-sm {
    grid-column-end: span 1;
  }
  .o-grid__column--2of12-sm {
    grid-column-end: span 2;
  }
  .o-grid__column--3of12-sm {
    grid-column-end: span 3;
  }
  .o-grid__column--4of12-sm {
    grid-column-end: span 4;
  }
  .o-grid__column--5of12-sm {
    grid-column-end: span 5;
  }
  .o-grid__column--6of12-sm {
    grid-column-end: span 6;
  }
  .o-grid__column--7of12-sm {
    grid-column-end: span 7;
  }
  .o-grid__column--8of12-sm {
    grid-column-end: span 8;
  }
  .o-grid__column--9of12-sm {
    grid-column-end: span 9;
  }
  .o-grid__column--10of12-sm {
    grid-column-end: span 10;
  }
  .o-grid__column--11of12-sm {
    grid-column-end: span 11;
  }
  .o-grid__column--12of12-sm {
    grid-column-end: span 12;
  }
}
@media screen and (min-width: 768px) {
  .o-grid__column--position-1-md {
    grid-column-start: 1;
  }
  .o-grid__column--position-2-md {
    grid-column-start: 2;
  }
  .o-grid__column--position-3-md {
    grid-column-start: 3;
  }
  .o-grid__column--position-4-md {
    grid-column-start: 4;
  }
  .o-grid__column--position-5-md {
    grid-column-start: 5;
  }
  .o-grid__column--position-6-md {
    grid-column-start: 6;
  }
  .o-grid__column--position-7-md {
    grid-column-start: 7;
  }
  .o-grid__column--position-8-md {
    grid-column-start: 8;
  }
  .o-grid__column--position-9-md {
    grid-column-start: 9;
  }
  .o-grid__column--position-10-md {
    grid-column-start: 10;
  }
  .o-grid__column--position-11-md {
    grid-column-start: 11;
  }
  .o-grid__column--position-12-md {
    grid-column-start: 12;
  }
  .o-grid__column--1of12-md {
    grid-column-end: span 1;
  }
  .o-grid__column--2of12-md {
    grid-column-end: span 2;
  }
  .o-grid__column--3of12-md {
    grid-column-end: span 3;
  }
  .o-grid__column--4of12-md {
    grid-column-end: span 4;
  }
  .o-grid__column--5of12-md {
    grid-column-end: span 5;
  }
  .o-grid__column--6of12-md {
    grid-column-end: span 6;
  }
  .o-grid__column--7of12-md {
    grid-column-end: span 7;
  }
  .o-grid__column--8of12-md {
    grid-column-end: span 8;
  }
  .o-grid__column--9of12-md {
    grid-column-end: span 9;
  }
  .o-grid__column--10of12-md {
    grid-column-end: span 10;
  }
  .o-grid__column--11of12-md {
    grid-column-end: span 11;
  }
  .o-grid__column--12of12-md {
    grid-column-end: span 12;
  }
}
@media screen and (min-width: 1024px) {
  .o-grid__column--position-1-lg {
    grid-column-start: 1;
  }
  .o-grid__column--position-2-lg {
    grid-column-start: 2;
  }
  .o-grid__column--position-3-lg {
    grid-column-start: 3;
  }
  .o-grid__column--position-4-lg {
    grid-column-start: 4;
  }
  .o-grid__column--position-5-lg {
    grid-column-start: 5;
  }
  .o-grid__column--position-6-lg {
    grid-column-start: 6;
  }
  .o-grid__column--position-7-lg {
    grid-column-start: 7;
  }
  .o-grid__column--position-8-lg {
    grid-column-start: 8;
  }
  .o-grid__column--position-9-lg {
    grid-column-start: 9;
  }
  .o-grid__column--position-10-lg {
    grid-column-start: 10;
  }
  .o-grid__column--position-11-lg {
    grid-column-start: 11;
  }
  .o-grid__column--position-12-lg {
    grid-column-start: 12;
  }
  .o-grid__column--1of12-lg {
    grid-column-end: span 1;
  }
  .o-grid__column--2of12-lg {
    grid-column-end: span 2;
  }
  .o-grid__column--3of12-lg {
    grid-column-end: span 3;
  }
  .o-grid__column--4of12-lg {
    grid-column-end: span 4;
  }
  .o-grid__column--5of12-lg {
    grid-column-end: span 5;
  }
  .o-grid__column--6of12-lg {
    grid-column-end: span 6;
  }
  .o-grid__column--7of12-lg {
    grid-column-end: span 7;
  }
  .o-grid__column--8of12-lg {
    grid-column-end: span 8;
  }
  .o-grid__column--9of12-lg {
    grid-column-end: span 9;
  }
  .o-grid__column--10of12-lg {
    grid-column-end: span 10;
  }
  .o-grid__column--11of12-lg {
    grid-column-end: span 11;
  }
  .o-grid__column--12of12-lg {
    grid-column-end: span 12;
  }
}
@media screen and (min-width: 1200px) {
  .o-grid__column--position-1-xl {
    grid-column-start: 1;
  }
  .o-grid__column--position-2-xl {
    grid-column-start: 2;
  }
  .o-grid__column--position-3-xl {
    grid-column-start: 3;
  }
  .o-grid__column--position-4-xl {
    grid-column-start: 4;
  }
  .o-grid__column--position-5-xl {
    grid-column-start: 5;
  }
  .o-grid__column--position-6-xl {
    grid-column-start: 6;
  }
  .o-grid__column--position-7-xl {
    grid-column-start: 7;
  }
  .o-grid__column--position-8-xl {
    grid-column-start: 8;
  }
  .o-grid__column--position-9-xl {
    grid-column-start: 9;
  }
  .o-grid__column--position-10-xl {
    grid-column-start: 10;
  }
  .o-grid__column--position-11-xl {
    grid-column-start: 11;
  }
  .o-grid__column--position-12-xl {
    grid-column-start: 12;
  }
  .o-grid__column--1of12-xl {
    grid-column-end: span 1;
  }
  .o-grid__column--2of12-xl {
    grid-column-end: span 2;
  }
  .o-grid__column--3of12-xl {
    grid-column-end: span 3;
  }
  .o-grid__column--4of12-xl {
    grid-column-end: span 4;
  }
  .o-grid__column--5of12-xl {
    grid-column-end: span 5;
  }
  .o-grid__column--6of12-xl {
    grid-column-end: span 6;
  }
  .o-grid__column--7of12-xl {
    grid-column-end: span 7;
  }
  .o-grid__column--8of12-xl {
    grid-column-end: span 8;
  }
  .o-grid__column--9of12-xl {
    grid-column-end: span 9;
  }
  .o-grid__column--10of12-xl {
    grid-column-end: span 10;
  }
  .o-grid__column--11of12-xl {
    grid-column-end: span 11;
  }
  .o-grid__column--12of12-xl {
    grid-column-end: span 12;
  }
}
.alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}

.alignwide {
  margin-left: calc(0px - var(--gutter) * 2);
  margin-right: calc(0px - var(--gutter) * 2);
  max-width: calc(100% + calc(var(--gutter) * 2) * 2);
  width: calc(100% + calc(var(--gutter) * 2) * 2);
}

@media screen and (min-width: 768px) {
  .alignwide {
    margin-left: calc(0px - var(--gutter) * 3);
    margin-right: calc(0px - var(--gutter) * 3);
    max-width: calc(100% + calc(var(--gutter) * 3) * 2);
    width: calc(100% + calc(var(--gutter) * 3) * 2);
  }
}
.wp-block-buttons {
  display: flex;
  gap: var(--spacing--xs) var(--spacing--sm);
  flex-wrap: wrap;
}

.wp-block-button.is-style-dark .wp-block-button__link {
  color: #fff;
  background-color: var(--color--secondary);
}
.wp-block-button.is-style-dark .wp-block-button__link:hover {
  color: #fff;
  background-color: var(--color--primary);
}
.wp-block-button.is-style-attack .wp-block-button__link {
  color: #fff;
  background-color: var(--color--error);
}
.wp-block-button.is-style-attack .wp-block-button__link:hover {
  color: #fff;
  background-color: var(--color--error--hover);
}
.wp-block-button.is-style-ko .wp-block-button__link {
  color: var(--color--primary);
  background-color: #fff;
}
.wp-block-button.is-style-ko .wp-block-button__link:hover {
  color: var(--color--secondary);
  background-color: #fff;
}

.wp-block-button__link {
  display: inline-block;
  color: #fff;
  background-color: var(--color--primary);
  text-align: center;
  text-decoration: none;
  font-weight: var(--font--weight--bold);
  padding: var(--spacing--sm) calc(var(--spacing--sm) + 4px) var(--spacing--sm) var(--spacing--md);
  border-radius: 50px;
  white-space: nowrap;
  transition: background-color 0.2s;
}
.wp-block-button__link:hover {
  color: #fff;
  background-color: var(--color--secondary);
}
.wp-block-button__link:hover .chevron {
  transform: translateX(0);
}
.wp-block-button__link:hover .stem {
  opacity: 1;
  transform: scaleX(1);
}
.wp-block-button__link svg {
  fill: currentcolor;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  transition: fill 0.2s;
}
.wp-block-button__link .chevron {
  transition: transform 0.1s;
  transform: translateX(-10px);
}
.wp-block-button__link .stem {
  opacity: 0;
  transition: transform 0.1s, opacity 0.1s;
  transform: scaleX(0);
  transform-origin: left center;
}

.wp-block-pb-card {
  display: flex;
  flex-direction: column;
  color: var(--color--text);
  background-color: #fff;
  border-radius: var(--border-radius--lg);
  width: 100%;
  height: 100%;
  margin: 0 0 calc(var(--gutter) * 2);
  box-shadow: 0 0 0 1px var(--grey--100);
}
.wp-block-pb-card.is-style-blue {
  color: #fff;
  background-color: var(--color--secondary);
  box-shadow: none;
}
.wp-block-pb-card.is-style-blue h1,
.wp-block-pb-card.is-style-blue h2,
.wp-block-pb-card.is-style-blue h3,
.wp-block-pb-card.is-style-blue h4,
.wp-block-pb-card.is-style-blue h5,
.wp-block-pb-card.is-style-blue h6,
.wp-block-pb-card.is-style-blue .is-style-h1,
.wp-block-pb-card.is-style-blue .is-style-h2,
.wp-block-pb-card.is-style-blue .is-style-h3,
.wp-block-pb-card.is-style-blue .is-style-h4,
.wp-block-pb-card.is-style-blue .is-style-h5,
.wp-block-pb-card.is-style-blue .is-style-h6,
.wp-block-pb-card.is-style-blue a {
  color: currentcolor;
}
.wp-block-pb-card.is-style-frosted {
  color: #000;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius--xl);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: none;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

a.wp-block-pb-card {
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.2s;
}
a.wp-block-pb-card:hover {
  box-shadow: var(--box-shadow), 0 0 0 1px rgba(0, 0, 0, 0.05);
}
a.wp-block-pb-card:hover .c-post__excerpt-title {
  text-decoration: underline;
}
a.wp-block-pb-card:hover .wp-block-pb-card__button {
  background-color: var(--color--secondary);
}
a.wp-block-pb-card.is-style-shadowed:hover {
  box-shadow: none;
}

.wp-block-pb-card__image-container {
  border-top-left-radius: var(--border-radius--lg);
  border-top-right-radius: var(--border-radius--lg);
  margin-bottom: 0;
  overflow: hidden;
}
.wp-block-pb-card__image-container.is-ratio-16-9 {
  aspect-ratio: 16/9;
}
.wp-block-pb-card__image-container.is-ratio-4-3 {
  aspect-ratio: 4/3;
}
.wp-block-pb-card__image-container.is-ratio-1-1 {
  aspect-ratio: 1/1;
}
.wp-block-pb-card__image-container[class*=is-ratio-] > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wp-block-pb-card__content {
  flex-grow: 1;
  padding: var(--spacing--md);
}
.wp-block-pb-card__content > :last-child {
  margin-bottom: 0;
}

.wp-block-cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: calc(0px - var(--spacing--md));
  overflow: hidden;
}
.wp-block-cover + .wp-block-cover,
.wp-block-cover + .wp-block-pb-section {
  margin-top: calc(0px - var(--spacing--lg));
}
.wp-block-cover.no-backdrop .wp-block-cover__background {
  display: none;
}

.wp-block-cover__image-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  z-index: 0;
}

.wp-block-cover__background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25) !important;
  pointer-events: none;
  z-index: 1;
}

.wp-block-cover__inner-container {
  position: relative;
  color: #fff;
  width: 100%;
  max-width: var(--wrapper-width);
  margin-left: auto;
  margin-right: auto;
  padding-top: var(--spacing--md);
  padding-bottom: var(--spacing--md);
  z-index: 2;
}
.wp-block-cover__inner-container > h1,
.wp-block-cover__inner-container > h2,
.wp-block-cover__inner-container > h3,
.wp-block-cover__inner-container > h4,
.wp-block-cover__inner-container > h5,
.wp-block-cover__inner-container > h6,
.wp-block-cover__inner-container > .is-style-h1,
.wp-block-cover__inner-container > .is-style-h2,
.wp-block-cover__inner-container > .is-style-h3,
.wp-block-cover__inner-container > .is-style-h4,
.wp-block-cover__inner-container > .is-style-h5,
.wp-block-cover__inner-container > .is-style-h6,
.wp-block-cover__inner-container a:not(.wp-block-button__link) {
  color: currentcolor;
}

.wp-block-cover__inner-container {
  padding-left: calc(var(--gutter) * 2);
  padding-right: calc(var(--gutter) * 2);
}

@media screen and (min-width: 768px) {
  .wp-block-cover__inner-container {
    padding-left: calc(var(--gutter) * 3);
    padding-right: calc(var(--gutter) * 3);
  }
}
.wp-block-file .wp-block-file__button {
  display: inline-block;
  color: #fff;
  background-color: var(--color--primary);
  text-align: center;
  text-decoration: none;
  font-weight: var(--font--weight--bold);
  margin-left: var(--spacing--sm);
  padding: var(--spacing--xs) 16px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background-color 0.2s;
}
.wp-block-file .wp-block-file__button:hover {
  color: #fff;
  background-color: var(--color--secondary);
}

.wp-block-image {
  display: inline-block;
  margin-bottom: var(--spacing--md);
}
.wp-block-image.is-style-icon {
  margin-bottom: var(--spacing--sm);
}
.wp-block-image.aligncenter {
  width: 100%;
  text-align: center;
}

.wp-block-list.is-style-ruled, .wp-block-list.is-style-ruled-two-column {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wp-block-list.is-style-ruled:not(:last-child), .wp-block-list.is-style-ruled-two-column:not(:last-child) {
  margin-bottom: 1rem;
}
.wp-block-list.is-style-ruled li:not(:first-child), .wp-block-list.is-style-ruled-two-column li:not(:first-child) {
  padding-top: var(--spacing--xs);
}
.wp-block-list.is-style-ruled li:not(:last-child), .wp-block-list.is-style-ruled-two-column li:not(:last-child) {
  padding-bottom: var(--spacing--xs);
  border-bottom: 1px solid var(--grey--100);
}

@media screen and (min-width: 768px) {
  .wp-block-list.is-style-ruled-two-column {
    column-count: 2;
    column-gap: calc(var(--gutter) * 2);
  }
  .wp-block-list.is-style-ruled-two-column:not(:first-child) {
    margin-top: var(--spacing--md);
  }
  .wp-block-list.is-style-ruled-two-column:not(:last-child) {
    margin-bottom: var(--spacing--md);
  }
  .wp-block-list.is-style-ruled-two-column > li {
    margin-bottom: -1px;
    padding-top: var(--spacing--xs);
    padding-bottom: var(--spacing--xs);
    border-top: 1px solid var(--grey--100);
    border-bottom: 1px solid var(--grey--100);
    break-inside: avoid;
  }
}
.wp-block-pb-card.is-style-blue .wp-block-list.is-style-ruled li:not(:last-child), .wp-block-pb-card.is-style-blue .wp-block-list.is-style-ruled-two-column li:not(:last-child) {
  border-bottom: 1px solid #475e80;
}

.wp-block-pb-section {
  padding-top: var(--spacing--lg);
  padding-bottom: var(--spacing--lg);
}
.wp-block-pb-section.is-style-grey {
  background-color: var(--grey--50);
  border-top: 1px solid var(--grey--75);
  border-bottom: 1px solid var(--grey--75);
}
.wp-block-pb-section.is-style-grey:first-child,
.wp-block-pb-section.is-style-grey + .is-style-grey {
  border-top: none;
}
.wp-block-pb-section.is-style-grey:last-child {
  border-bottom: none;
}
.wp-block-pb-section.is-style-medium h1,
.wp-block-pb-section.is-style-medium h2,
.wp-block-pb-section.is-style-medium h3,
.wp-block-pb-section.is-style-medium h4,
.wp-block-pb-section.is-style-medium h5,
.wp-block-pb-section.is-style-medium h6,
.wp-block-pb-section.is-style-medium .is-style-h1,
.wp-block-pb-section.is-style-medium .is-style-h2,
.wp-block-pb-section.is-style-medium .is-style-h3,
.wp-block-pb-section.is-style-medium .is-style-h4,
.wp-block-pb-section.is-style-medium .is-style-h5,
.wp-block-pb-section.is-style-medium .is-style-h6,
.wp-block-pb-section.is-style-medium a, .wp-block-pb-section.is-style-dark h1,
.wp-block-pb-section.is-style-dark h2,
.wp-block-pb-section.is-style-dark h3,
.wp-block-pb-section.is-style-dark h4,
.wp-block-pb-section.is-style-dark h5,
.wp-block-pb-section.is-style-dark h6,
.wp-block-pb-section.is-style-dark .is-style-h1,
.wp-block-pb-section.is-style-dark .is-style-h2,
.wp-block-pb-section.is-style-dark .is-style-h3,
.wp-block-pb-section.is-style-dark .is-style-h4,
.wp-block-pb-section.is-style-dark .is-style-h5,
.wp-block-pb-section.is-style-dark .is-style-h6,
.wp-block-pb-section.is-style-dark a {
  color: currentcolor;
}
.wp-block-pb-section.is-style-medium {
  color: #fff;
  background-color: var(--color--primary);
}
.wp-block-pb-section.is-style-dark {
  color: #fff;
  background-color: var(--color--secondary);
}
.wp-block-pb-section:not(.is-style-grey):not(.is-style-medium):not(.is-style-dark) + .wp-block-pb-section:not(.is-style-grey):not(.is-style-medium):not(.is-style-dark) {
  border-top: 1px solid var(--grey--75);
}

@media screen and (min-width: 475px) {
  .wp-block-pb-section.is-large {
    padding-top: var(--spacing--xl);
    padding-bottom: var(--spacing--xl);
  }
}
.wp-block-pb-statistic {
  margin-bottom: var(--spacing--md);
}
.wp-block-pb-statistic.aligncenter {
  text-align: center;
}

.wp-block-pb-statistic__title,
.wp-block-pb-statistic__value,
.wp-block-pb-statistic__secondary {
  margin-bottom: 0;
}

.wp-block-pb-statistic__value {
  color: var(--color--primary);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1;
}

.wp-block-pb-statistic__secondary {
  color: var(--grey--500);
  font-size: var(--font--size--h5);
}

.wp-block-table {
  margin-bottom: var(--spacing--md);
}
.wp-block-table.has-fixed-layout table {
  table-layout: fixed;
  width: 100%;
}
.wp-block-table.has-fixed-layout td,
.wp-block-table.has-fixed-layout th {
  word-break: break-word;
}
.wp-block-table table th {
  font-weight: var(--font--weight--bold);
}
.wp-block-table table th,
.wp-block-table table td {
  padding: var(--spacing--xs) var(--spacing--sm);
  border: none;
  border-bottom: 1px solid var(--grey--75);
}
.wp-block-table table thead {
  border: none;
}
.wp-block-table table thead th,
.wp-block-table table thead td {
  border-bottom: 1px solid var(--grey--500);
}
.wp-block-table table tbody tr:hover th,
.wp-block-table table tbody tr:hover td {
  background-color: var(--color--background--hovered);
}
.wp-block-table .wp-element-caption {
  font-size: var(--font--size--h5);
  margin-top: var(--spacing--xs);
}

.wp-block-pb-timeline {
  position: relative;
}
.wp-block-pb-timeline:not(:first-child) {
  margin-top: var(--spacing--lg);
}
.wp-block-pb-timeline:not(:last-child) {
  margin-bottom: var(--spacing--lg);
}

.wp-block-pb-timeline-item {
  flex-grow: 0;
  position: relative;
  padding: var(--spacing--md);
  margin-left: 24px;
  background-color: var(--grey--50);
  border-radius: var(--border-radius--lg);
  box-shadow: inset 0 0 0 1px var(--grey--75);
}
.wp-block-pb-timeline-item > :last-child {
  margin-bottom: 0;
}
.wp-block-pb-timeline-item:not(:last-child) {
  margin-bottom: 20px;
}
.wp-block-pb-timeline-item:not(:last-child):before {
  content: "";
  position: absolute;
  top: calc(var(--spacing--md) + 11px);
  left: -17px;
  width: 2px;
  height: calc(100% + 19px);
  border-radius: 2px;
  background-color: var(--color--primary);
}
.wp-block-pb-timeline-item:after {
  content: "";
  position: absolute;
  top: 27px;
  left: -24px;
  width: 16px;
  height: 16px;
  border-radius: 16px;
  background-color: var(--color--secondary);
}

@media screen and (min-width: 768px) {
  .wp-block-pb-timeline-item {
    width: calc(50% - var(--spacing--md));
    margin-left: 0;
  }
  .wp-block-pb-timeline-item:after {
    left: -24px;
  }
  .wp-block-pb-timeline-item:not(:last-child) {
    margin-bottom: 40px;
  }
  .wp-block-pb-timeline-item:not(:last-child):before {
    height: calc(100% - 40px);
    left: -25px;
    right: auto;
  }
  .wp-block-pb-timeline-item:nth-child(odd):before {
    left: auto;
    right: -25px;
  }
  .wp-block-pb-timeline-item:nth-child(odd):after {
    left: auto;
    right: -32px;
  }
  .wp-block-pb-timeline-item:nth-child(even) {
    margin-left: calc(50% + 24px);
  }
  .wp-block-pb-timeline-item:nth-child(even):before {
    left: -25px;
    right: auto;
  }
  .wp-block-pb-timeline-item:nth-child(even):after {
    left: -32px;
  }
  .wp-block-pb-timeline-item:nth-of-type(n + 1) {
    margin-top: -80px;
  }
  .wp-block-pb-timeline-item:first-child {
    margin-top: 0;
  }
}
.wp-block-cover:not(:first-child),
.wp-block-pb-section:not(:first-child) {
  margin-top: var(--spacing--lg);
}
.wp-block-cover:not(:last-child),
.wp-block-pb-section:not(:last-child) {
  margin-bottom: var(--spacing--lg);
}
.wp-block-cover + .wp-block-cover,
.wp-block-cover + .wp-block-pb-section,
.wp-block-pb-section + .wp-block-cover,
.wp-block-pb-section + .wp-block-pb-section {
  margin-top: calc(0px - var(--spacing--lg));
}

.c-post__content > .wp-block-cover:first-child,
.c-post__content > .wp-block-pb-section:first-child {
  margin-top: calc(0px - var(--spacing--lg));
}
.c-post__content > .wp-block-cover:last-child,
.c-post__content > .wp-block-pb-section:last-child {
  margin-bottom: calc(0px - var(--spacing--lg));
}

.wp-block-cover__inner-container > :last-child,
.wp-block-pb-section__content > :last-child {
  margin-bottom: 0;
}

.is-root-container .wp-block-cover:first-child,
.is-root-container .wp-block-pb-section:first-child {
  margin-top: calc(0px - var(--spacing--lg));
}

.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.alignright {
  margin-left: auto;
}

.c-announcements {
  font-size: var(--font--size--h5);
  background-color: var(--grey--50);
  border-bottom: 1px solid var(--grey--75);
  margin-top: calc(0px - var(--spacing--lg));
  margin-bottom: var(--spacing--lg);
  padding: var(--spacing--xs) var(--spacing--md);
}
.c-announcements > :last-child {
  margin-bottom: 0;
}

.c-post {
  display: block;
}

.single-post .post {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--spacing--xl);
}

.c-post__title {
  margin-top: 0;
  margin-bottom: var(--spacing--md);
}

.c-post__excerpt-title {
  margin-bottom: 0.25em;
}

.c-category-description p {
  margin-bottom: 0.5em;
}

.c-post__thumbnail {
  margin-bottom: var(--spacing--md);
  border-radius: var(--border-radius--xl);
  overflow: hidden;
}
.c-post__thumbnail img {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.c-post__content ol + h2,
.c-post__content ol + .is-style-h2,
.c-post__content ul + h2,
.c-post__content ul + .is-style-h2,
.c-post__content p + h2,
.c-post__content p + .is-style-h2 {
  margin-top: var(--spacing--lg);
}
.c-post__content ol + h3,
.c-post__content ol + .is-style-h3,
.c-post__content ul + h3,
.c-post__content ul + .is-style-h3,
.c-post__content p + h3,
.c-post__content p + .is-style-h3 {
  margin-top: var(--spacing--md);
}

.c-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing--xs) var(--spacing--md);
  font-size: var(--font--size--h5);
  line-height: 1.2;
  margin-bottom: var(--spacing--sm);
}

.c-meta__item {
  display: block;
}

.c-google-map {
  width: 100%;
}

.wp-caption {
  max-width: 100%;
  margin-bottom: 1em;
}
.wp-caption img {
  margin-bottom: 0.6em;
}

.wp-caption-text {
  text-align: left;
  font-size: var(--font--size--small);
  line-height: 1.2;
  font-style: italic;
}

embed,
iframe,
object,
video {
  max-width: 100%;
  margin-bottom: 1em;
  vertical-align: middle;
}

p embed,
p iframe,
p object,
p video {
  margin-bottom: 0;
}

.c-site-header {
  border-bottom: 1px solid var(--grey--75);
  margin-bottom: var(--spacing--lg);
  padding-top: var(--spacing--sm);
  padding-bottom: var(--spacing--sm);
}

.c-site-header__content {
  display: flex;
  gap: var(--spacing--lg);
  justify-content: space-between;
  align-items: center;
}

.c-site-header__logo {
  display: inline-block;
  width: 145px;
}

.c-site-footer {
  background-color: var(--grey--50);
  border-top: 1px solid var(--grey--75);
  margin-top: var(--spacing--lg);
  padding-top: var(--spacing--lg);
  padding-bottom: var(--spacing--lg);
}

@media screen and (max-width: 767px) {
  .c-site-footer__legal {
    font-size: var(--font--size--h5);
  }
}
@media screen and (min-width: 1024px) {
  .c-site-footer__legal {
    display: flex;
    gap: var(--spacing--md);
    justify-content: space-between;
    align-items: baseline;
    font-size: var(--font--size--h5);
  }
}
.c-site-footer__links {
  display: flex;
  align-items: center;
  gap: var(--spacing--sm);
}

.c-gdpr-banner {
  position: fixed;
  right: var(--spacing--md);
  bottom: var(--spacing--md);
  font-size: var(--font--size--small);
  color: #fff;
  background-color: var(--color--primary);
  border-radius: var(--border-radius--lg);
  box-shadow: var(--box-shadow);
  width: 100%;
  max-width: 360px;
  padding: var(--spacing--sm);
}
.c-gdpr-banner a {
  color: currentcolor;
}

.c-gdpr-banner__buttons {
  display: flex;
  gap: var(--spacing--sm);
}

.c-gdpr-banner__button {
  text-decoration: underline;
}

.c-nav-toggle {
  display: inline-block;
  background: transparent;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 14px;
}
.c-nav-toggle:hover {
  background-color: transparent;
}
.c-nav-toggle.is-open .c-nav-toggle__inner {
  transform: rotate(45deg);
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.c-nav-toggle.is-open .c-nav-toggle__inner, .c-nav-toggle.is-open .c-nav-toggle__inner:before, .c-nav-toggle.is-open .c-nav-toggle__inner:after {
  background-color: var(--grey--800);
}
.c-nav-toggle.is-open .c-nav-toggle__inner:before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.15s ease;
}
.c-nav-toggle.is-open .c-nav-toggle__inner:after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (min-width: 800px) {
  .c-nav-toggle {
    display: none;
  }
}

.c-nav-toggle__box {
  position: relative;
  display: block;
  width: 16px;
  height: 12px;
}

.c-nav-toggle__inner {
  display: block;
  top: 50%;
  margin-top: -1px;
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.c-nav-toggle__inner, .c-nav-toggle__inner:before, .c-nav-toggle__inner:after {
  position: absolute;
  background-color: var(--grey--800);
  width: 16px;
  height: 2px;
  transition-property: transform;
  transition-duration: 0.075s;
  transition-timing-function: ease;
}
.c-nav-toggle__inner:before, .c-nav-toggle__inner:after {
  content: "";
  display: block;
}
.c-nav-toggle__inner:before {
  top: -5px;
  transition: top 0.075s 0.15s ease, opacity 0.075s ease;
}
.c-nav-toggle__inner:after {
  bottom: -5px;
  transition: bottom 0.075s 0.15s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.c-primary-nav__list a {
  display: inline-block;
  color: var(--color--secondary);
  font-size: var(--font--size--h5);
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s;
}
.c-primary-nav__list .is-primary {
  margin-left: var(--spacing--sm);
}
.c-primary-nav__list .is-primary a {
  color: #fff;
  background-color: var(--color--error);
  text-align: center;
  font-weight: var(--font--weight--bold);
  padding: var(--spacing--sm) var(--spacing--md);
  border-radius: 50px;
  white-space: nowrap;
}
.c-primary-nav__list .is-primary a:hover {
  color: #fff;
  background-color: var(--color--error--hover);
}
.c-primary-nav__list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 799px) {
  .c-primary-nav__list {
    position: absolute;
    top: 80px;
    left: 0;
    background-color: #fff;
    width: 100%;
    padding: var(--spacing--md);
    pointer-events: none;
    opacity: 0;
    border-bottom: 1px solid var(--grey--100);
    box-shadow: var(--box-shadow);
    transform: translateY(20px);
    transform-origin: top center;
    transition: transform 0.2s, opacity 0.2s;
    z-index: var(--z-index--navigation);
    overflow-y: scroll;
    visibility: hidden;
  }
  .c-primary-nav__list.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }
  .c-primary-nav__list li:not(:last-child) {
    margin-bottom: var(--spacing--sm);
  }
  .c-primary-nav__list li.current-menu-item > a {
    font-weight: var(--font--weight--bold);
  }
  .c-primary-nav__list a:hover {
    text-decoration: underline;
  }
  .c-primary-nav__list .is-primary {
    margin-top: var(--spacing--md);
    margin-left: 0;
  }
  .c-primary-nav__list .is-primary a {
    display: block;
  }
  .c-primary-nav__list .is-primary a:hover {
    text-decoration: none;
  }
  .c-primary-nav__list .sub-menu {
    margin-top: var(--spacing--sm);
    margin-left: var(--spacing--sm);
  }
}
@media screen and (min-width: 800px) {
  .c-primary-nav__list {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    align-items: center;
    visibility: visible !important;
  }
  .c-primary-nav__list li:hover .sub-menu, .c-primary-nav__list li:focus-within .sub-menu {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
  }
  .c-primary-nav__list a {
    padding: var(--spacing--sm);
  }
  .c-primary-nav__list a:hover {
    color: var(--color--primary);
  }
  .c-primary-nav__list > li > .sub-menu {
    position: absolute;
    background-color: #fff;
    padding: var(--spacing--xs) 0;
    border-radius: var(--border-radius--lg);
    box-shadow: var(--box-shadow);
    pointer-events: none;
    opacity: 0;
    z-index: var(--z-index--dropdown);
    transition: opacity 0.2s, transform 0.2s;
    transform: translateY(15px);
  }
  .c-primary-nav__list > li > .sub-menu li {
    max-width: none;
  }
  .c-primary-nav__list > li > .sub-menu li.current-menu-item > a {
    font-weight: var(--font--weight--bold);
  }
  .c-primary-nav__list > li > .sub-menu a {
    display: block;
    padding: var(--spacing--xs) var(--spacing--sm);
  }
  .c-primary-nav__list > li > .sub-menu a:hover {
    background-color: var(--grey--50);
  }
  .c-primary-nav__list > li > .sub-menu .sub-menu a {
    padding-left: var(--spacing--md);
  }
  .c-primary-nav__list > li:not(.is-primary).current-menu-item > a, .c-primary-nav__list > li:not(.is-primary).current-menu-ancestor > a, .c-primary-nav__list > li:not(.is-primary).current-page-item > a, .c-primary-nav__list > li:not(.is-primary).current-page-ancestor > a, .c-primary-nav__list > li:not(.is-primary).current_page_parent > a {
    position: relative;
  }
  .c-primary-nav__list > li:not(.is-primary).current-menu-item > a:after, .c-primary-nav__list > li:not(.is-primary).current-menu-ancestor > a:after, .c-primary-nav__list > li:not(.is-primary).current-page-item > a:after, .c-primary-nav__list > li:not(.is-primary).current-page-ancestor > a:after, .c-primary-nav__list > li:not(.is-primary).current_page_parent > a:after {
    content: "";
    position: absolute;
    background-color: var(--color--primary);
    width: calc(100% - 12px);
    height: 6px;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    bottom: -15px;
    left: 6px;
  }
}
.c-social-nav__list {
  display: flex;
}
.c-social-nav__list li:not(:first-child) {
  margin-left: 6px;
}
.c-social-nav__list li:not(:last-child) {
  margin-right: 6px;
}
.c-social-nav__list a {
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("images/logos/social/web.svg");
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
}
.c-social-nav__list a:hover {
  color: var(--color--primary);
  text-decoration: none;
}
.c-social-nav__list [href*="facebook.com"] {
  background-image: url("images/logos/social/facebook.svg");
}
.c-social-nav__list [href*="instagram.com"] {
  background-image: url("images/logos/social/instagram.svg");
}
.c-social-nav__list [href*="linkedin.com"] {
  background-image: url("images/logos/social/linkedin.svg");
}
.c-social-nav__list [href*="mailto:"] {
  background-image: url("images/logos/social/email.svg");
}
.c-social-nav__list [href*="twitter.com"] {
  background-image: url("images/logos/social/twitter.svg");
}
.c-social-nav__list [href*="youtube.com"] {
  background-image: url("images/logos/social/youtube.svg");
}

.c-footer-nav {
  margin-bottom: var(--spacing--lg);
}

.c-footer-nav__list {
  display: flex;
  gap: var(--spacing--lg);
  font-size: var(--font--size--h5);
}
.c-footer-nav__list a {
  color: var(--color--secondary);
  text-decoration: none;
  font-weight: var(--font--weight--bold);
  transition: color 0.2s, background-color 0.2s;
}
.c-footer-nav__list a:hover {
  text-decoration: underline;
}
.c-footer-nav__list .is-primary {
  margin-left: auto;
}
.c-footer-nav__list .is-primary a {
  color: #fff;
  background-color: var(--color--error);
  text-align: center;
  font-weight: var(--font--weight--bold);
  padding: var(--spacing--sm) var(--spacing--md);
  border-radius: 30px;
  white-space: nowrap;
}
.c-footer-nav__list .is-primary a:hover {
  background-color: var(--color--error--hover);
  text-decoration: none;
}
.c-footer-nav__list .sub-menu {
  list-style: none;
  margin: var(--spacing--xs) 0 0;
}
.c-footer-nav__list .sub-menu a {
  color: var(--color--primary);
  font-weight: var(--font--weight--normal);
}
.c-footer-nav__list .sub-menu .sub-menu {
  margin-top: 0;
  margin-left: var(--spacing--sm);
}

.c-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing--sm);
}
.c-footer-links a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.c-footer-links a:hover {
  text-decoration: underline;
}

.nav-links {
  display: flex;
  gap: var(--spacing--xs);
  justify-content: center;
  align-items: baseline;
  margin-top: var(--spacing--xl);
  margin-bottom: var(--spacing--xl);
}

.page-numbers {
  color: var(--color--text);
  padding: 4px 8px;
}
.page-numbers.current {
  color: #fff;
  background-color: var(--color--primary);
  font-weight: var(--font--weight--bold);
  border-radius: var(--border-radius);
}
.page-numbers.prev {
  margin-right: 30px;
}
.page-numbers.next {
  margin-left: 30px;
}

a.page-numbers {
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: border-color 0.2s, background-color 0.2s;
}
a.page-numbers:hover {
  background-color: var(--color--background--hovered);
  border-color: var(--color--primary);
}

.c-post-navigation {
  margin-bottom: var(--spacing--xl);
}

.c-post-navigation__item {
  display: flex;
  gap: var(--spacing--sm);
  align-items: center;
  text-decoration: none;
}
.c-post-navigation__item:hover .c-post-navigation__title {
  text-decoration: underline;
}
.c-post-navigation__item:hover.is-next .c-post-navigation__arrow {
  transform: translateX(12px);
}
.c-post-navigation__item:hover.is-previous .c-post-navigation__arrow {
  transform: translateX(-12px);
}

.c-post-navigation__slug {
  color: var(--grey--500);
  font-size: var(--font--size--h5);
}

.c-post-navigation__arrow {
  transition: transform 0.2s;
}
.c-post-navigation__arrow svg {
  display: block;
}

@media screen and (max-width: 799px) {
  .c-post-navigation__item.is-previous {
    margin-bottom: var(--spacing--sm);
  }
  .c-post-navigation__arrow {
    display: none;
  }
}
@media screen and (min-width: 800px) {
  .c-post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing--md);
  }
  .c-post-navigation__item.is-next {
    text-align: right;
  }
}
.post-password-form {
  max-width: 620px;
  margin: var(--spacing--xl) auto;
}
.post-password-form label {
  display: inline-block;
  font-weight: var(--font--weight--bold);
}
.post-password-form p:last-child {
  display: flex;
  align-items: flex-end;
}
.post-password-form [type=password] {
  height: 50px;
  padding: 0 20px;
  border-right: none;
  border-radius: 0;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.post-password-form [type=submit] {
  display: block;
  flex: 0 0 auto;
  color: #fff;
  background-color: var(--color--primary);
  height: 50px;
  padding: 0 20px 0 16px;
  border-radius: 0;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  transition: background-color 0.2s;
}
.post-password-form [type=submit]:hover {
  background-color: var(--color--secondary);
}

.post-password-form-invalid-password {
  background-color: #f5e1de;
  margin-bottom: var(--spacing--sm);
  padding: var(--spacing--xs);
  border: 1px solid #f1aeb5;
  border-radius: var(--border-radius);
}
.post-password-form-invalid-password > :last-child {
  margin-bottom: 0;
}

.search-form {
  display: flex;
  max-width: 650px;
  margin-bottom: var(--spacing--md);
}
.search-form label {
  flex: 1 1 auto;
}

.search-field {
  height: 100%;
  padding: var(--spacing--sm) 20px;
  border-right: none;
  border-radius: 0;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.search-submit {
  flex: 0 0 auto;
  color: #fff;
  background-color: var(--color--primary);
  padding: var(--spacing--sm) 20px;
  border-radius: 0;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  transition: background-color 0.2s;
}
.search-submit:hover {
  background-color: var(--color--secondary);
}

.search-details {
  font-size: var(--font--size--h5);
  margin-bottom: var(--spacing--sm);
}

.u-sr-only,
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.u-skip-link {
  color: var(--color--primary);
  background-color: #fff;
  font-weight: var(--font--weight--bold);
  text-decoration: none;
  padding: 1rem;
  transition: 0s;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
}
.u-skip-link:focus {
  left: 15px;
  top: 15px;
  clip: auto;
  width: auto;
  height: auto;
  z-index: var(--z-index--skip-link);
}

.u-flex {
  display: flex !important;
}

.u-justify-content-start {
  justify-content: flex-start !important;
}

.u-justify-content-center {
  justify-content: center !important;
}

.u-justify-content-end {
  justify-content: flex-end !important;
}

.u-justify-content-space-between {
  justify-content: space-between !important;
}

.u-justify-content-space-around {
  justify-content: space-around !important;
}

.u-align-items-start {
  align-items: flex-start !important;
}

.u-align-self-start {
  align-self: flex-start !important;
}

.u-align-items-center {
  align-items: center !important;
}

.u-align-self-center {
  align-self: center !important;
}

.u-align-items-end {
  align-items: flex-end !important;
}

.u-align-self-end {
  align-self: flex-end !important;
}

.u-hidden {
  display: none !important;
}

@media screen and (max-width: 474px) {
  .u-hidden-xs {
    display: none !important;
  }
}
@media screen and (min-width: 475px) and (max-width: 767px) {
  .u-hidden-sm {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .u-hidden-md {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .u-hidden-lg {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .u-hidden-xl {
    display: none !important;
  }
}
@media screen and (min-width: 800px) {
  .u-hidden-desktop {
    display: none !important;
  }
}
@media screen and (max-width: 799px) {
  .u-hidden-mobile {
    display: none !important;
  }
}
.u-margin-xs {
  margin: var(--spacing--xs) !important;
}

.u-margin-top-xs {
  margin-top: var(--spacing--xs) !important;
}

.u-margin-bottom-xs {
  margin-bottom: var(--spacing--xs) !important;
}

.u-margin-sm {
  margin: var(--spacing--sm) !important;
}

.u-margin-top-sm {
  margin-top: var(--spacing--sm) !important;
}

.u-margin-bottom-sm {
  margin-bottom: var(--spacing--sm) !important;
}

.u-margin-md {
  margin: var(--spacing--md) !important;
}

.u-margin-top-md {
  margin-top: var(--spacing--md) !important;
}

.u-margin-bottom-md {
  margin-bottom: var(--spacing--md) !important;
}

.u-margin-lg {
  margin: var(--spacing--lg) !important;
}

.u-margin-top-lg {
  margin-top: var(--spacing--lg) !important;
}

.u-margin-bottom-lg {
  margin-bottom: var(--spacing--lg) !important;
}

.u-margin-xl {
  margin: var(--spacing--xl) !important;
}

.u-margin-top-xl {
  margin-top: var(--spacing--xl) !important;
}

.u-margin-bottom-xl {
  margin-bottom: var(--spacing--xl) !important;
}

.u-padding-xs {
  padding: var(--spacing--xs) !important;
}

.u-padding-top-xs {
  padding-top: var(--spacing--xs) !important;
}

.u-padding-bottom-xs {
  padding-bottom: var(--spacing--xs) !important;
}

.u-padding-sm {
  padding: var(--spacing--sm) !important;
}

.u-padding-top-sm {
  padding-top: var(--spacing--sm) !important;
}

.u-padding-bottom-sm {
  padding-bottom: var(--spacing--sm) !important;
}

.u-padding-md {
  padding: var(--spacing--md) !important;
}

.u-padding-top-md {
  padding-top: var(--spacing--md) !important;
}

.u-padding-bottom-md {
  padding-bottom: var(--spacing--md) !important;
}

.u-padding-lg {
  padding: var(--spacing--lg) !important;
}

.u-padding-top-lg {
  padding-top: var(--spacing--lg) !important;
}

.u-padding-bottom-lg {
  padding-bottom: var(--spacing--lg) !important;
}

.u-padding-xl {
  padding: var(--spacing--xl) !important;
}

.u-padding-top-xl {
  padding-top: var(--spacing--xl) !important;
}

.u-padding-bottom-xl {
  padding-bottom: var(--spacing--xl) !important;
}

.u-no-margin {
  margin: 0 !important;
}

.u-no-margin-top {
  margin-top: 0 !important;
}

.u-no-margin-bottom {
  margin-bottom: 0 !important;
}

.u-no-padding {
  padding: 0 !important;
}

.u-no-padding-top {
  padding-top: 0 !important;
}

.u-no-padding-bottom {
  padding-bottom: 0 !important;
}

.u-float-right {
  float: right !important;
  max-width: 35% !important;
  margin-left: calc(var(--gutter) * 2) !important;
}

.u-text-left,
.has-text-align-left {
  text-align: left !important;
}

.u-text-right,
.has-text-align-right {
  text-align: right !important;
}

.u-text-center,
.has-text-align-center {
  text-align: center !important;
}

.u-no-wrap {
  white-space: nowrap !important;
}

.u-text-truncate {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.u-text-small {
  font-size: var(--font--size--small) !important;
}

.u-text-no-decoration {
  text-decoration: none !important;
}

.u-text-normal {
  font-weight: var(--font--weight--normal) !important;
}

.u-text-bold {
  font-weight: var(--font--weight--bold) !important;
}

.u-text-italic {
  font-style: italic !important;
}

.u-text-underline {
  text-decoration: underline !important;
}

.u-text-strikethrough {
  text-decoration: line-through !important;
}

.u-text-muted {
  color: var(--grey--500) !important;
}

.u-text-error {
  color: var(--color--error) !important;
}

.u-text-success {
  color: var(--color--success) !important;
}

.u-text-ko {
  color: #fff !important;
}

.u-1of12 {
  width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 1 + (1 - 1) * var(--gutter) * 2) !important;
}

.u-offset-1of12 {
  margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 1 + 1 * var(--gutter) * 2) !important;
}

.u-2of12 {
  width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 2 + (2 - 1) * var(--gutter) * 2) !important;
}

.u-offset-2of12 {
  margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 2 + 2 * var(--gutter) * 2) !important;
}

.u-3of12 {
  width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 3 + (3 - 1) * var(--gutter) * 2) !important;
}

.u-offset-3of12 {
  margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 3 + 3 * var(--gutter) * 2) !important;
}

.u-4of12 {
  width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 4 + (4 - 1) * var(--gutter) * 2) !important;
}

.u-offset-4of12 {
  margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 4 + 4 * var(--gutter) * 2) !important;
}

.u-5of12 {
  width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 5 + (5 - 1) * var(--gutter) * 2) !important;
}

.u-offset-5of12 {
  margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 5 + 5 * var(--gutter) * 2) !important;
}

.u-6of12 {
  width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 6 + (6 - 1) * var(--gutter) * 2) !important;
}

.u-offset-6of12 {
  margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 6 + 6 * var(--gutter) * 2) !important;
}

.u-7of12 {
  width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 7 + (7 - 1) * var(--gutter) * 2) !important;
}

.u-offset-7of12 {
  margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 7 + 7 * var(--gutter) * 2) !important;
}

.u-8of12 {
  width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 8 + (8 - 1) * var(--gutter) * 2) !important;
}

.u-offset-8of12 {
  margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 8 + 8 * var(--gutter) * 2) !important;
}

.u-9of12 {
  width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 9 + (9 - 1) * var(--gutter) * 2) !important;
}

.u-offset-9of12 {
  margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 9 + 9 * var(--gutter) * 2) !important;
}

.u-10of12 {
  width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 10 + (10 - 1) * var(--gutter) * 2) !important;
}

.u-offset-10of12 {
  margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 10 + 10 * var(--gutter) * 2) !important;
}

.u-11of12 {
  width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 11 + (11 - 1) * var(--gutter) * 2) !important;
}

.u-offset-11of12 {
  margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 11 + 11 * var(--gutter) * 2) !important;
}

.u-12of12 {
  width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 12 + (12 - 1) * var(--gutter) * 2) !important;
}

.u-offset-12of12 {
  margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 12 + 12 * var(--gutter) * 2) !important;
}

@media screen and (min-width: 475px) {
  .u-1of12-sm {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 1 + (1 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-1of12-sm {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 1 + 1 * var(--gutter) * 2) !important;
  }
  .u-2of12-sm {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 2 + (2 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-2of12-sm {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 2 + 2 * var(--gutter) * 2) !important;
  }
  .u-3of12-sm {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 3 + (3 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-3of12-sm {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 3 + 3 * var(--gutter) * 2) !important;
  }
  .u-4of12-sm {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 4 + (4 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-4of12-sm {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 4 + 4 * var(--gutter) * 2) !important;
  }
  .u-5of12-sm {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 5 + (5 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-5of12-sm {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 5 + 5 * var(--gutter) * 2) !important;
  }
  .u-6of12-sm {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 6 + (6 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-6of12-sm {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 6 + 6 * var(--gutter) * 2) !important;
  }
  .u-7of12-sm {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 7 + (7 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-7of12-sm {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 7 + 7 * var(--gutter) * 2) !important;
  }
  .u-8of12-sm {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 8 + (8 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-8of12-sm {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 8 + 8 * var(--gutter) * 2) !important;
  }
  .u-9of12-sm {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 9 + (9 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-9of12-sm {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 9 + 9 * var(--gutter) * 2) !important;
  }
  .u-10of12-sm {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 10 + (10 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-10of12-sm {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 10 + 10 * var(--gutter) * 2) !important;
  }
  .u-11of12-sm {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 11 + (11 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-11of12-sm {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 11 + 11 * var(--gutter) * 2) !important;
  }
  .u-12of12-sm {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 12 + (12 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-12of12-sm {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 12 + 12 * var(--gutter) * 2) !important;
  }
}
@media screen and (min-width: 768px) {
  .u-1of12-md {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 1 + (1 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-1of12-md {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 1 + 1 * var(--gutter) * 2) !important;
  }
  .u-2of12-md {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 2 + (2 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-2of12-md {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 2 + 2 * var(--gutter) * 2) !important;
  }
  .u-3of12-md {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 3 + (3 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-3of12-md {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 3 + 3 * var(--gutter) * 2) !important;
  }
  .u-4of12-md {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 4 + (4 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-4of12-md {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 4 + 4 * var(--gutter) * 2) !important;
  }
  .u-5of12-md {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 5 + (5 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-5of12-md {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 5 + 5 * var(--gutter) * 2) !important;
  }
  .u-6of12-md {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 6 + (6 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-6of12-md {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 6 + 6 * var(--gutter) * 2) !important;
  }
  .u-7of12-md {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 7 + (7 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-7of12-md {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 7 + 7 * var(--gutter) * 2) !important;
  }
  .u-8of12-md {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 8 + (8 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-8of12-md {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 8 + 8 * var(--gutter) * 2) !important;
  }
  .u-9of12-md {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 9 + (9 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-9of12-md {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 9 + 9 * var(--gutter) * 2) !important;
  }
  .u-10of12-md {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 10 + (10 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-10of12-md {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 10 + 10 * var(--gutter) * 2) !important;
  }
  .u-11of12-md {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 11 + (11 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-11of12-md {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 11 + 11 * var(--gutter) * 2) !important;
  }
  .u-12of12-md {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 12 + (12 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-12of12-md {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 12 + 12 * var(--gutter) * 2) !important;
  }
}
@media screen and (min-width: 1024px) {
  .u-1of12-lg {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 1 + (1 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-1of12-lg {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 1 + 1 * var(--gutter) * 2) !important;
  }
  .u-2of12-lg {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 2 + (2 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-2of12-lg {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 2 + 2 * var(--gutter) * 2) !important;
  }
  .u-3of12-lg {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 3 + (3 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-3of12-lg {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 3 + 3 * var(--gutter) * 2) !important;
  }
  .u-4of12-lg {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 4 + (4 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-4of12-lg {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 4 + 4 * var(--gutter) * 2) !important;
  }
  .u-5of12-lg {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 5 + (5 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-5of12-lg {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 5 + 5 * var(--gutter) * 2) !important;
  }
  .u-6of12-lg {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 6 + (6 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-6of12-lg {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 6 + 6 * var(--gutter) * 2) !important;
  }
  .u-7of12-lg {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 7 + (7 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-7of12-lg {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 7 + 7 * var(--gutter) * 2) !important;
  }
  .u-8of12-lg {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 8 + (8 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-8of12-lg {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 8 + 8 * var(--gutter) * 2) !important;
  }
  .u-9of12-lg {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 9 + (9 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-9of12-lg {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 9 + 9 * var(--gutter) * 2) !important;
  }
  .u-10of12-lg {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 10 + (10 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-10of12-lg {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 10 + 10 * var(--gutter) * 2) !important;
  }
  .u-11of12-lg {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 11 + (11 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-11of12-lg {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 11 + 11 * var(--gutter) * 2) !important;
  }
  .u-12of12-lg {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 12 + (12 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-12of12-lg {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 12 + 12 * var(--gutter) * 2) !important;
  }
}
@media screen and (min-width: 1200px) {
  .u-1of12-xl {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 1 + (1 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-1of12-xl {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 1 + 1 * var(--gutter) * 2) !important;
  }
  .u-2of12-xl {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 2 + (2 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-2of12-xl {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 2 + 2 * var(--gutter) * 2) !important;
  }
  .u-3of12-xl {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 3 + (3 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-3of12-xl {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 3 + 3 * var(--gutter) * 2) !important;
  }
  .u-4of12-xl {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 4 + (4 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-4of12-xl {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 4 + 4 * var(--gutter) * 2) !important;
  }
  .u-5of12-xl {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 5 + (5 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-5of12-xl {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 5 + 5 * var(--gutter) * 2) !important;
  }
  .u-6of12-xl {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 6 + (6 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-6of12-xl {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 6 + 6 * var(--gutter) * 2) !important;
  }
  .u-7of12-xl {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 7 + (7 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-7of12-xl {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 7 + 7 * var(--gutter) * 2) !important;
  }
  .u-8of12-xl {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 8 + (8 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-8of12-xl {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 8 + 8 * var(--gutter) * 2) !important;
  }
  .u-9of12-xl {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 9 + (9 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-9of12-xl {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 9 + 9 * var(--gutter) * 2) !important;
  }
  .u-10of12-xl {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 10 + (10 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-10of12-xl {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 10 + 10 * var(--gutter) * 2) !important;
  }
  .u-11of12-xl {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 11 + (11 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-11of12-xl {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 11 + 11 * var(--gutter) * 2) !important;
  }
  .u-12of12-xl {
    width: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 12 + (12 - 1) * var(--gutter) * 2) !important;
  }
  .u-offset-12of12-xl {
    margin-left: calc(calc((100% - (12 - 1) * var(--gutter) * 2) / 12) * 12 + 12 * var(--gutter) * 2) !important;
  }
}
.u-reset-width {
  width: auto !important;
  max-width: none !important;
}

.u-full-height {
  height: 100% !important;
}

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