@charset "UTF-8";
/*
px to em
usage: 
em(number) or em(number, number)
where first number represents pixels and the second one relative context

usage:
font-size: em(32);
will output
font-size: 2em;

font-size: em(32, 64);
will output 
font-size: 0.5em;
*/
/*
replace `$substring` in `$string` with `$replace`
*/
/*
get the index of the last occurrence of `$substring` in `$string`
*/
/*
return `$image` with the retina suffix "@2x"
*/
/*
  simple position mixin, absolute positioning is default
*/
/*
absolute (default) or fixed centering by horizontal, vertical or both axis (default)
don't forget to add position: relative to parent container in case of absolute positioning

usage: 
@include center-position(absolute, vertical); will position the element absolutely and center vertically
@include center-position(fixed, both); will fix the element to the viewport center
*/
/*
gradient mixin

usage:
@include background-gradient(red, 10%, black, 40%, vertical);
will otuput
background: linear-gradient(to bottom, red 10%, black 40%);
*/
/*
input placeholders color mixin
  usage:
    @include input-placeholder {
        color: red;
    }
*/
/*
trigger hardware aceleration on an element
*/
/*
truncate
*/
/*
set responsive ratio

usage
@include responsive-ratio(16, 9);
for pseudo elements
@include responsive-ratio(16, 9, true);
*/
/*
create a circle element
*/
/*
apply styles if it's a retina display
*/
/*
apply styles if it's not a retina display
*/
/*
set the background image in either standard size or retina display version
retina filename must have the "@2x" suffix
don't forget to specify the width and height either using this mixin or directly to the element

usage:
@include background-image('forest.png');
will output:
background-image: url('../images/forest.png');
background-repeat: no-repeat;
background-position: center;
background-size: contain;

@include retina {
  background-image: url('../images/forest@2x.png');
}
*/
/*GRID MIXIN

USAGE EXAMPLES:

--> default:
@include grid(); 
//outputs defaults as set in grid/_variables.scss

--> set rows (or columns):
@include grid($rows: 400px); 
//outputs grid with the default values except rows all being 400px high
*/
/*
GRID AUTOMATIC ARRANGEMENT
*/
/*
GRID ITEMS SPREAD AND POSITIONING
*/
/*
GRID ITEMS SELF ALIGNMENT
*/
/*FLEX MIXIN

USAGE EXAMPLES:

--> default:
@include grid(); 
//outputs defaults as set in grid/_variables.scss

--> set rows (or columns):
@include grid($rows: 400px); 
//outputs grid with the default values except rows all being 400px high
*/
/* media mixin 
variables can be set / referenced via grid/variables.scss
usage for mobile-first: 
@include media('mobile-screen') {}
usage for max-width:
@include media('mobile-screen', max) {} 
*/
/* media mixin, height version 
variables can be set / referenced via grid/variables.scss
generic usage that will output max-height and min-width of 768px: 
@include media-both('lap-height') {}
usage  that will output min-height and min-width of 640px:
@include media-both('lap-height', min, 640px) {}
*/
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/proximanova-reg-webfont.woff2") format("woff2"), url("../fonts/proximanova-reg-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/proximanova-bold-webfont.woff2") format("woff2"), url("../fonts/proximanova-bold-webfont.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Palatino";
  src: url("../fonts/palab-webfont.woff2") format("woff2"), url("../fonts/palab-webfont.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
body {
  color: #363636;
  font-family: "Proxima Nova", sans-serif;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Palatino", serif;
  font-size: 1em;
  font-style: normal;
  font-stretch: normal;
  text-transform: none;
  color: #363636;
  font-weight: bold;
}

.section-pattern-interrupt h1 {
  margin-bottom: 0.5526315789em;
}
@media only screen and (min-width: 768px) {
  .section-pattern-interrupt h1 {
    margin-bottom: 0.6333333333em;
  }
}
.section-easy-enrollment h1 {
  font-size: 1.5625em;
  line-height: 1.2;
  letter-spacing: -0.032em;
  color: #323F3A;
  font-weight: 700;
  margin-bottom: 0.72em;
}
@media only screen and (min-width: 768px) {
  .section-easy-enrollment h1 {
    font-weight: 900;
    font-size: 2.4375em;
    letter-spacing: -0.0320512821em;
    line-height: 1.15;
    margin-bottom: 0.7948717949em;
  }
}
.post-article h1 {
  margin-bottom: 0.5806451613em;
}
@media only screen and (min-width: 768px) {
  .post-article h1 {
    margin-bottom: 0.4782608696em;
  }
}
.archive-header h1 {
  margin-bottom: 0.5263157895em;
}
@media only screen and (min-width: 768px) {
  .archive-header h1 {
    margin-bottom: 0.4666666667em;
  }
}
h1 .post-article.static {
  font-size: 2.5625em;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 0.487804878em;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  h1 .post-article.static {
    font-size: 3.4375em;
    margin-bottom: 0.3272727273em;
    letter-spacing: -0.032em;
    line-height: 1.25;
  }
}
.post-article h1 {
  margin-bottom: 0.2631578947em;
}
@media only screen and (min-width: 768px) {
  .post-article h1 {
    margin-bottom: 0.4333333333em;
  }
}
.post-article.no-featured-image h1 {
  margin-bottom: 0;
}
.search h1 {
  margin-bottom: 0.9032258065em;
}
@media only screen and (min-width: 768px) {
  .search h1 {
    margin-bottom: 0.6956521739em;
  }
}

.section-cid h2 {
  margin-bottom: 0.875em;
}
@media only screen and (min-width: 768px) {
  .section-cid h2 {
    margin-bottom: 1.0571428571em;
  }
}
.archive-list h2 {
  margin-bottom: 0.84em;
}
@media only screen and (min-width: 768px) {
  .archive-list h2 {
    margin-bottom: 1.4871794872em;
  }
}
.section-problem h2, .section-solution h2 {
  margin-bottom: 0.9em;
}
@media only screen and (min-width: 768px) {
  .section-problem h2, .section-solution h2 {
    margin-bottom: 0.880952381em;
  }
}
.section-stp h2 span {
  margin-bottom: 0.9em;
}
@media only screen and (min-width: 768px) {
  .section-stp h2 span {
    margin-bottom: 0.880952381em;
  }
}
.subscribe-box h2 {
  margin-bottom: 0.487804878em;
}
@media only screen and (min-width: 768px) {
  .subscribe-box h2 {
    margin-bottom: 0.4em;
  }
}

.product-modules h3 {
  margin-bottom: 0;
}
.key-points-wrapper h3 {
  text-align: center;
  margin-bottom: 1.25em;
}
@media only screen and (min-width: 768px) {
  .key-points-wrapper h3 {
    margin-bottom: 0.5428571429em;
  }
}
.subscribe-box h3 {
  margin-bottom: 0.3214285714em;
}
.single .section-subscribe h3 {
  margin-bottom: 0.4166666667em;
}
@media only screen and (min-width: 768px) {
  .single .section-subscribe h3 {
    margin-bottom: 0.3428571429em;
  }
}

p.lead {
  margin-bottom: 0.9166666667em;
}
@media only screen and (min-width: 768px) {
  p.lead {
    margin-bottom: 0.9583333333em;
  }
}
.section-pattern-interrupt .block-content p {
  margin-bottom: 0.0555555556em;
}
@media only screen and (min-width: 768px) {
  .section-pattern-interrupt .block-content p {
    margin-bottom: 1em;
  }
}
.section-cid p {
  margin-bottom: 1.8125em;
}
.section-cid p:last-child {
  margin-bottom: 2.625em;
}
@media only screen and (min-width: 768px) {
  .section-cid p {
    margin-bottom: 1.5555555556em;
  }
  .section-cid p:last-child {
    margin-bottom: 0.8888888889em;
  }
}
.section-problem p, .section-solution p, .section-ty p, .single-answer .content p {
  margin-bottom: 1.8125em;
}
@media only screen and (min-width: 768px) {
  .section-problem p, .section-solution p, .section-ty p, .single-answer .content p {
    margin-bottom: 1.5555555556em;
  }
}
.product-intro p, .product-modules p {
  margin-bottom: 1.8125em;
}
@media only screen and (min-width: 768px) {
  .product-intro p, .product-modules p {
    margin-bottom: 1.5555555556em;
  }
}
.single-key-point p {
  margin-bottom: 0;
}
.section-mission p {
  margin-bottom: 1.8125em;
}
@media only screen and (min-width: 768px) {
  .section-mission p {
    margin-bottom: 1.5555555556em;
  }
}

a {
  transition: all 0.275s ease-in-out;
  color: #2C7C8D;
}
a:hover {
  text-decoration: none;
}
nav a {
  text-decoration: none;
  font-size: 1em;
  color: #363636;
  letter-spacing: -0.005em;
}
nav a:hover {
  color: #2C7C8D;
}
nav a.current-page {
  color: #363636;
  font-weight: 700;
  font-size: 1.25em;
  letter-spacing: -0.032em;
  display: none;
}
@media only screen and (min-width: 980px) {
  nav a.current-page {
    display: inline-block;
  }
}
.nav-archive .nav-items-container a {
  text-decoration: underline;
}
a:focus {
  outline: none;
}

strong {
  font-weight: 800;
}

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

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
}

@-ms-viewport {
  width: device-width;
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

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

p {
  margin-top: 0;
}

abbr[title],
abbr[data-original-title] {
  border-bottom: 0;
}

address {
  line-height: inherit;
}

ul, ol {
  list-style-type: none;
}

ol,
ul,
dl {
  margin-top: 0;
  padding: 0;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dd {
  margin-left: 0;
}

blockquote {
  margin: 0;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bold;
}

small {
  font-size: 75%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  overflow: auto;
}

figure {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0;
  margin: 0;
}

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

svg:not(:root) {
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

caption {
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
  background-color: transparent;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  outline: none;
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: none;
}

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

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

ins {
  text-decoration: none;
}

.post-content ul, .post-content ol, .the-content ul, .the-content ol {
  margin-bottom: 1.75em;
  padding-left: 1.1875em;
}
.post-content ul li, .post-content ol li, .the-content ul li, .the-content ol li {
  list-style: none;
  position: relative;
  color: #363636;
}
.post-content ul li:last-child, .post-content ol li:last-child, .the-content ul li:last-child, .the-content ol li:last-child {
  margin-bottom: 0;
}
.post-content ul, .the-content ul {
  list-style: disc;
}
.post-content ul li, .the-content ul li {
  list-style-type: disc;
}
.post-content ol, .the-content ol {
  list-style: decimal;
}
.post-content ol li, .the-content ol li {
  list-style-type: decimal;
}

button,
.button,
.share-button,
.js-load-more,
.button-transparent,
.button-tooltip,
.button-blue,
input[type=submit] {
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.275s;
  text-decoration: none;
  display: inline-block;
  line-height: normal;
  -webkit-appearance: none;
  text-align: center;
  border-radius: 8px;
}

.button-blue, input[type=submit] {
  font-size: 1em;
  line-height: 1.56;
  letter-spacing: -0.005625em;
  font-weight: 800;
  background-color: #5FBBCE;
  color: #ffffff;
  padding: 0.7em 1.8em 0.55em;
}
@media only screen and (min-width: 768px) {
  .button-blue, input[type=submit] {
    font-size: 1.125em;
    padding: 0.7em 1.8em 0.55em;
    letter-spacing: -0.005em;
  }
}
.button-blue:hover, input[type=submit]:hover {
  background-color: rgb(58.6124401914, 168.6602870813, 191.3875598086);
  box-shadow: 0 3px 4px rgba(78, 88, 95, 0.3);
}

.button-transparent, .button-tooltip {
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: -0.005em;
  font-weight: 800;
  color: #363636;
  background-color: #ffffff;
  padding: 0.4375em 1.0625em;
  border: 1px solid #DBDBDB;
}
.button-transparent.green-btn-transparent, .green-btn-transparent.button-tooltip {
  display: flex;
  align-items: center;
  border-color: #01DD36;
  font-size: 1.125em;
  padding: 0.4444444444em 1.4444444444em 0.4444444444em 0.4444444444em;
  width: fit-content;
  color: #02AC29;
}
@media only screen and (min-width: 768px) {
  .button-transparent.green-btn-transparent, .green-btn-transparent.button-tooltip {
    padding-right: 2em;
  }
}
.button-transparent.green-btn-transparent .icon, .green-btn-transparent.button-tooltip .icon {
  width: 1.8333333333em;
  height: 1.8333333333em;
  margin-right: 0.8333333333em;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cdefs%3E%3ClinearGradient id='phone-a' x1='50%25' x2='50%25' y1='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%2391FC8A'/%3E%3Cstop offset='100%25' stop-color='%2300DD35'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23phone-a)' fill-rule='evenodd' d='M28,0 L92,0 C107.463973,-2.84068575e-15 120,12.536027 120,28 L120,92 C120,107.463973 107.463973,120 92,120 L28,120 C12.536027,120 1.8937905e-15,107.463973 0,92 L0,28 C-1.8937905e-15,12.536027 12.536027,2.84068575e-15 28,0 Z M44.5834327,74.9454984 C71.8070438,101.462003 91.9641642,103.925688 98.3235481,88.3805272 C99.3484331,85.8752526 99.0306549,84.1378865 95.1415676,80.955906 L81.7065387,71.7635179 C78.8781116,70.3493043 76.4032379,72.1170712 74.9890243,73.5312848 C68.6250633,78.4810323 65.1525459,77.1298352 60.8468887,72.824178 L53.7758209,65.7531102 L44.5834327,74.9454984 Z M44.5834327,74.9454984 L53.7758209,65.7531102 L46.704753,58.6820424 C42.3990958,54.3763852 41.0478988,50.9038678 45.9976463,44.5399068 C47.4118598,43.1256932 49.1796268,40.6508195 47.7654132,37.8223924 L38.5730251,24.3873635 C35.3910445,20.4982762 33.6536784,20.1804979 31.1484039,21.205383 C15.6032433,27.5647669 18.0669284,47.7218873 44.5834327,74.9454984 Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}
@media only screen and (min-width: 768px) {
  .button-transparent.green-btn-transparent .icon, .green-btn-transparent.button-tooltip .icon {
    width: 2.3888888889em;
    height: 2.3888888889em;
    margin-right: 1.1111111111em;
  }
}
.button-transparent.green-btn-transparent:hover, .green-btn-transparent.button-tooltip:hover {
  color: #02AC29;
  border-color: rgb(0.5405405405, 119.4594594595, 29.1891891892);
  text-decoration: none;
}
.button-transparent:hover, .button-tooltip:hover {
  color: #363636;
  border-color: #363636;
}
.button-transparent.next-q:hover, .next-q.button-tooltip:hover {
  border-color: #DBDBDB;
  transform: scale(1.05);
}

.load-more-wrapper {
  text-align: center;
  margin-top: 2.625em;
}

.js-load-more {
  font-size: 1em;
  padding: 0.5625em 1.9375em;
  transition: padding 0.1s, background-color 0.275s, box-shadow 0.275s;
  position: relative;
}
.js-load-more.is-loading {
  padding-right: 2.5em;
}
.js-load-more.is-loading .svg-wrapper {
  opacity: 1;
  transition: opacity 0.3s;
}
.js-load-more .svg-wrapper {
  position: absolute;
  top: 0.625em;
  left: calc(100% - 1.86em);
  opacity: 0;
}
.js-load-more svg {
  width: 1.375em;
}
.js-load-more svg circle {
  stroke: #ffffff;
}
.js-load-more.is-off {
  display: none;
}

.table-wrapper {
  overflow-x: auto;
}

.wp-block-table {
  margin-bottom: 1.5em;
}

.the-content table {
  background: #F2F6FA;
  text-align: left;
  word-break: break-word;
  font-size: 0.9em;
  width: 100%;
}
@media only screen and (min-width: 480px) {
  .the-content table {
    font-size: 1em;
  }
}
.the-content td, .the-content th {
  padding: 0.5em;
  border: 1px solid rgba(114, 125, 135, 0.4);
}

input[type=text],
input[type=email],
input[type=tel],
input[type=search],
input[type=number],
input[type=url],
textarea,
select {
  border: 1px solid rgba(114, 125, 135, 0.4);
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  box-shadow: 0 0 0px 1000px #fff inset;
  border-radius: 5px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=url]:focus,
textarea:focus,
select:focus {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset, 0 0 0 2px rgba(0, 181, 253, 0.25) !important;
  box-shadow: 0 0 0px 1000px #fff inset, 0 0 0 2px rgba(0, 181, 253, 0.25) !important;
  border-color: #16a9fd;
}
input[type=text].placeholder,
input[type=email].placeholder,
input[type=tel].placeholder,
input[type=search].placeholder,
input[type=number].placeholder,
input[type=url].placeholder,
textarea.placeholder,
select.placeholder {
  color: rgba(54, 54, 54, 0.5);
}
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=search]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=url]:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder {
  color: rgba(54, 54, 54, 0.5);
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  color: rgba(54, 54, 54, 0.5);
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: rgba(54, 54, 54, 0.5);
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: rgba(54, 54, 54, 0.5);
}
.archive-header input[type=text],
.archive-header input[type=email],
.archive-header input[type=tel],
.archive-header input[type=search],
.archive-header input[type=number],
.archive-header input[type=url],
.archive-header textarea,
.archive-header select {
  border-color: transparent;
}

form {
  width: 100%;
}

.gform_footer {
  position: relative;
}

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

.gform_submission_error {
  display: none;
}

.gfield {
  position: relative;
  margin-bottom: 1.375em;
  border-bottom: 1px solid rgba(78, 88, 95, 0.0980392157);
  padding-bottom: 1.5625em;
}
.gfield:last-child, .gfield.no-border {
  border-bottom: none;
}
.gfield.gsection {
  margin-bottom: 1.25em;
  border-bottom: none;
  padding-bottom: 0;
  position: relative;
}
.gfield.gsection h3 {
  margin-bottom: 0;
  margin-top: 0;
}
.gfield.field_description_above .gfield_label {
  margin-bottom: 0;
}
.gfield.field_description_above .gfield_description {
  margin-bottom: 0.2142857143em;
}
.gfield.field_description_below .gfield_description {
  margin-top: 0.2142857143em;
}
.gfield select,
.gfield input,
.gfield textarea {
  width: 100%;
  color: #363636;
}
.gfield select {
  height: 2.8125em;
}
.gfield .ginput_container_multiselect select {
  height: auto;
}
.gfield select,
.gfield textarea {
  padding: 0.73em;
}
.gfield .ginput_container_name label,
.gfield .ginput_container_address label {
  display: none;
}
.gfield .ginput_container_name span input,
.gfield .ginput_container_name span select,
.gfield .ginput_container_address span input,
.gfield .ginput_container_address span select {
  margin-bottom: 0.5em;
}
.gfield .ginput_container_name span:last-child input,
.gfield .ginput_container_name span:last-child select,
.gfield .ginput_container_address span:last-child input,
.gfield .ginput_container_address span:last-child select {
  margin-bottom: 0;
}
.gfield .ginput_container_time {
  display: inline-block;
}
.gfield .ginput_container_time.gfield_time_minute {
  margin-right: 0.75em;
}
.gfield .ginput_container_time input,
.gfield .ginput_container_time select {
  width: auto;
}
.gfield .ginput_container_time input {
  min-width: 4.5em;
}
.gfield .hour_minute_colon {
  display: inline-block;
  margin: 0 0.1875em;
}
.gfield .ginput_container_radio .gchoice,
.gfield .ginput_container_checkbox .gchoice,
.gfield .ginput_container_consent .gchoice {
  position: relative;
  margin-bottom: 0.4375em;
}
.gfield .ginput_container_radio .gchoice:last-child,
.gfield .ginput_container_checkbox .gchoice:last-child,
.gfield .ginput_container_consent .gchoice:last-child {
  margin-bottom: 0;
}
.gfield .ginput_container_radio input,
.gfield .ginput_container_checkbox input,
.gfield .ginput_container_consent input {
  border: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
}
.gfield .ginput_container_radio input:checked + label::after,
.gfield .ginput_container_checkbox input:checked + label::after,
.gfield .ginput_container_consent input:checked + label::after {
  display: inline-block;
}
.gfield .ginput_container_radio input[aria-label="Other Choice, please specify"],
.gfield .ginput_container_checkbox input[aria-label="Other Choice, please specify"],
.gfield .ginput_container_consent input[aria-label="Other Choice, please specify"] {
  margin-top: 0.4375em;
}
.gfield .ginput_container_radio input[aria-label="Other Choice, please specify"][disabled],
.gfield .ginput_container_checkbox input[aria-label="Other Choice, please specify"][disabled],
.gfield .ginput_container_consent input[aria-label="Other Choice, please specify"][disabled] {
  display: none;
}
.gfield .ginput_container_radio label,
.gfield .ginput_container_checkbox label,
.gfield .ginput_container_consent label {
  line-height: 1.6 !important;
  padding-left: 2em;
}
.gfield .ginput_container_radio label::before,
.gfield .ginput_container_checkbox label::before,
.gfield .ginput_container_consent label::before {
  content: "";
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background-color: #ffffff;
  position: absolute;
  top: 0.0625em;
  left: 0;
  border-radius: 5px;
  border: solid 1px rgba(114, 125, 135, 0.4);
}
.archive-header .gfield .ginput_container_radio label::before,
.archive-header .gfield .ginput_container_checkbox label::before,
.archive-header .gfield .ginput_container_consent label::before {
  border-color: transparent;
}
.gfield .ginput_container_radio label::after,
.gfield .ginput_container_checkbox label::after,
.gfield .ginput_container_consent label::after {
  content: "";
  display: none;
  position: absolute;
  left: 0.4375em;
  top: 0.1875em;
  width: 0.4375em;
  height: 0.875em;
  border: solid #363636;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(34deg);
  -ms-transform: rotate(34deg);
  transform: rotate(34deg);
  background-color: transparent;
}
.gfield .ginput_container_radio label {
  line-height: 1.6 !important;
  padding-left: 2em;
}
.gfield .ginput_container_radio label::before {
  border-radius: 50%;
}
.gfield .ginput_container_radio label::after {
  background-color: #363636;
  top: 0.5em;
  width: 0.375em;
  height: 0.375em;
  border-radius: 50%;
}
.gfield.consent {
  position: absolute;
  top: calc(100% + 0.92307em);
  left: 0;
  width: 100%;
}
.gfield.consent .gfield_label {
  display: none;
}
.gfield.consent label {
  padding-left: 1.6923076923em;
}
.gfield.consent label::before {
  width: 1.1538461538em;
  height: 1.1538461538em;
  top: 0.1538461538em;
}
.gfield.consent label::after {
  left: 0.3846153846em;
  top: 0.3076923077em;
  width: 0.4615384615em;
  height: 0.6923076923em;
}
.gfield.consent .validation_message {
  padding-top: 0;
  padding-left: 1.8333333333em;
}
.gfield label a:hover {
  text-decoration: underline;
}
.gfield.gfield_error input[type=text],
.gfield.gfield_error input[type=email],
.gfield.gfield_error input[type=tel],
.gfield.gfield_error input[type=number],
.gfield.gfield_error input[type=url],
.gfield.gfield_error input[type=file],
.gfield.gfield_error select,
.gfield.gfield_error textarea {
  border-color: #dc3232;
}
.gfield.gfield_error input[type=text]:focus,
.gfield.gfield_error input[type=email]:focus,
.gfield.gfield_error input[type=tel]:focus,
.gfield.gfield_error input[type=number]:focus,
.gfield.gfield_error input[type=url]:focus,
.gfield.gfield_error input[type=file]:focus,
.gfield.gfield_error select:focus,
.gfield.gfield_error textarea:focus {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset, 0 0 0 2px rgba(220, 50, 50, 0.25) !important;
  box-shadow: 0 0 0px 1000px #fff inset, 0 0 0 2px rgba(220, 50, 50, 0.25) !important;
  border-color: #dc3232;
}
.gfield.gfield_visibility_hidden {
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=url] {
  height: 2.75em;
  padding: 0.75em;
}

.floating-label {
  display: inline-block;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 0.3846153846em;
  left: 1.0384615385em;
}

input[type=number] {
  max-width: 10em;
}

input[type=submit] {
  font-size: 1.1875em;
  padding: 0.3421052632em 1.3157894737em;
  width: 100%;
  white-space: pre-wrap;
}

.hidden_label .gfield_label {
  display: none;
}

.gform_fields .gfield_error .validation_message {
  color: #dc3232;
  font-size: 0.75em;
  padding: 0.1666666667em 0;
  text-align: left;
  align-self: flex-start;
}
@media only screen and (min-width: 768px) {
  .gform_fields .gfield_error .validation_message {
    padding-bottom: 0;
  }
}

.gfield_required {
  display: none;
}

.screen-reader-text {
  opacity: 0;
  position: absolute;
  left: -9999px;
}

.gform_ajax_spinner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.625em;
  max-width: 1.25em;
}
.subscribe-form .gform_ajax_spinner {
  right: 0.625em;
}
@media only screen and (min-width: 980px) {
  .ee-form .gform_ajax_spinner {
    max-width: 0.875em;
  }
}

.form-wrapper.subscribe-form, .form-wrapper.ee-form {
  padding-bottom: 7.5em;
  padding-bottom: 0;
  text-align: left;
}
@media only screen and (min-width: 980px) {
  .form-wrapper.subscribe-form, .form-wrapper.ee-form {
    padding-bottom: 5.625em;
    padding-bottom: 0;
  }
}
.form-wrapper.subscribe-form form, .form-wrapper.ee-form form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  position: relative;
}
@media only screen and (min-width: 980px) {
  .form-wrapper.subscribe-form form, .form-wrapper.ee-form form {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
  }
}
.form-wrapper.subscribe-form form .gform_body, .form-wrapper.ee-form form .gform_body {
  padding: 0;
  background-color: transparent;
  margin-bottom: 0;
}
.form-wrapper.subscribe-form form .gform_fields, .form-wrapper.ee-form form .gform_fields {
  flex-direction: column;
}
@media only screen and (min-width: 980px) {
  .form-wrapper.subscribe-form form .gform_fields, .form-wrapper.ee-form form .gform_fields {
    flex-direction: row;
    gap: 0.625em;
    margin-right: 10px;
  }
}
.form-wrapper.subscribe-form .gfield, .form-wrapper.ee-form .gfield {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.form-wrapper.subscribe-form .gfield.consent, .form-wrapper.ee-form .gfield.consent {
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
@media only screen and (max-width: 979px) {
  .form-wrapper.subscribe-form .gfield.consent, .form-wrapper.ee-form .gfield.consent {
    top: calc(100% + 18px);
  }
}
.form-wrapper.subscribe-form .gfield.consent .gfield_consent_description, .form-wrapper.ee-form .gfield.consent .gfield_consent_description {
  display: none;
}
.form-wrapper.subscribe-form .gfield_label, .form-wrapper.ee-form .gfield_label {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.form-wrapper.subscribe-form .gfield_validation_message, .form-wrapper.ee-form .gfield_validation_message {
  background-color: #dc3232;
  color: #ffffff;
  line-height: 1;
  padding: 0.5833333333em 1em;
  width: 100%;
  border-radius: 0 0 5px 5px;
  position: relative;
  top: -0.6em;
}
.form-wrapper.subscribe-form .ginput_container_consent, .form-wrapper.ee-form .ginput_container_consent {
  text-align: left;
  width: auto;
  position: relative;
  display: inline-block;
}
.form-wrapper.subscribe-form .ginput_container_consent + .gfield_validation_message, .form-wrapper.ee-form .ginput_container_consent + .gfield_validation_message {
  font-size: 0.9230769231em;
  border-radius: 5px;
  display: inline-block;
  width: 100%;
  top: -0.25em;
  align-self: center;
}
@media only screen and (min-width: 980px) {
  .form-wrapper.subscribe-form .ginput_container_consent + .gfield_validation_message, .form-wrapper.ee-form .ginput_container_consent + .gfield_validation_message {
    width: 75%;
  }
}
.form-wrapper.subscribe-form .gfield_consent_label, .form-wrapper.ee-form .gfield_consent_label {
  color: #ffffff;
}
.single .form-wrapper.subscribe-form .gfield_consent_label, .single .form-wrapper.ee-form .gfield_consent_label {
  color: #363636;
}
.form-wrapper.subscribe-form .gfield_consent_label a, .form-wrapper.ee-form .gfield_consent_label a {
  color: #ffffff;
  text-decoration: underline;
}
.form-wrapper.subscribe-form .gfield_consent_label a:hover, .form-wrapper.ee-form .gfield_consent_label a:hover {
  text-decoration: none;
}
.single .form-wrapper.subscribe-form .gfield_consent_label a, .single .form-wrapper.ee-form .gfield_consent_label a {
  color: #60666a;
}
.single .form-wrapper.subscribe-form .gfield_consent_label a:hover, .single .form-wrapper.ee-form .gfield_consent_label a:hover {
  color: #2c7c8d;
  text-decoration: none;
}
.form-wrapper.subscribe-form input[type=text],
.form-wrapper.subscribe-form input[type=email],
.form-wrapper.subscribe-form input[type=tel], .form-wrapper.ee-form input[type=text],
.form-wrapper.ee-form input[type=email],
.form-wrapper.ee-form input[type=tel] {
  margin-bottom: 1.25em;
  width: 100%;
}
@media only screen and (min-width: 980px) {
  .form-wrapper.subscribe-form input[type=text],
  .form-wrapper.subscribe-form input[type=email],
  .form-wrapper.subscribe-form input[type=tel], .form-wrapper.ee-form input[type=text],
  .form-wrapper.ee-form input[type=email],
  .form-wrapper.ee-form input[type=tel] {
    width: 100%;
    margin-bottom: 0;
  }
}
.form-wrapper.subscribe-form input[type=text]:not(:placeholder-shown),
.form-wrapper.subscribe-form input[type=email]:not(:placeholder-shown),
.form-wrapper.subscribe-form input[type=tel]:not(:placeholder-shown), .form-wrapper.ee-form input[type=text]:not(:placeholder-shown),
.form-wrapper.ee-form input[type=email]:not(:placeholder-shown),
.form-wrapper.ee-form input[type=tel]:not(:placeholder-shown) {
  padding: 1.0625em 0.75em 0.4375em;
}
.form-wrapper.subscribe-form input[type=text]:not(:placeholder-shown) + .floating-label,
.form-wrapper.subscribe-form input[type=email]:not(:placeholder-shown) + .floating-label,
.form-wrapper.subscribe-form input[type=tel]:not(:placeholder-shown) + .floating-label, .form-wrapper.ee-form input[type=text]:not(:placeholder-shown) + .floating-label,
.form-wrapper.ee-form input[type=email]:not(:placeholder-shown) + .floating-label,
.form-wrapper.ee-form input[type=tel]:not(:placeholder-shown) + .floating-label {
  font-size: 0.8125em;
  visibility: visible;
  transition: all 0.1s ease-in-out;
  opacity: 0.75;
}
@media only screen and (min-width: 980px) {
  .form-wrapper.subscribe-form input[type=email], .form-wrapper.ee-form input[type=email] {
    min-width: 15.375em;
    margin-bottom: 0;
  }
  .module-modal .form-wrapper.subscribe-form input[type=email], .module-modal .form-wrapper.ee-form input[type=email] {
    min-width: unset;
  }
}
.form-wrapper.subscribe-form .gfield_error input, .form-wrapper.ee-form .gfield_error input {
  margin-bottom: 0;
}
.form-wrapper.subscribe-form input[type=submit], .form-wrapper.ee-form input[type=submit] {
  width: 100%;
  font-size: 1em;
  padding: 0.625em 1.5em;
  color: #ffffff;
  background-color: #5FBBCE;
  max-height: 2.75em;
}
@media only screen and (min-width: 980px) {
  .form-wrapper.subscribe-form input[type=submit], .form-wrapper.ee-form input[type=submit] {
    width: auto;
  }
}
.form-wrapper.subscribe-form .gform_footer, .form-wrapper.ee-form .gform_footer {
  align-self: flex-start;
  position: relative;
  width: 100%;
  height: 2.75em;
}
@media only screen and (min-width: 980px) {
  .form-wrapper.subscribe-form .gform_footer, .form-wrapper.ee-form .gform_footer {
    width: auto;
  }
}
@media only screen and (min-width: 980px) {
  .form-wrapper.ee-form .gfield:not(.gfield--type-consent) {
    width: 12.25em;
  }
}
.form-wrapper.subscribe-form input[type=submit] {
  padding: 0.625em 2.75em;
}

.gform_required_legend {
  display: none;
}

.the-content .gform_confirmation_wrapper {
  padding-bottom: 2.5625em;
}
@media only screen and (min-width: 980px) {
  .the-content .gform_confirmation_wrapper {
    padding-bottom: 2.9375em;
  }
}
.gform_confirmation_wrapper h1,
.gform_confirmation_wrapper h2,
.gform_confirmation_wrapper h3,
.gform_confirmation_wrapper h4 {
  margin-top: 0 !important;
}
.gform_confirmation_wrapper h1:last-child,
.gform_confirmation_wrapper h2:last-child,
.gform_confirmation_wrapper h3:last-child,
.gform_confirmation_wrapper h4:last-child {
  margin-bottom: 0 !important;
}
.gform_confirmation_wrapper p:last-child {
  margin-bottom: 0 !important;
}

.gform_validation_container {
  position: absolute !important;
  left: -9999px;
  visibility: hidden;
}

.gfield_visibility_hidden {
  position: absolute !important;
  left: -9999px;
  visibility: hidden;
}

.instruction.validation_message {
  display: none;
}

.size-1,
.size-1-dark {
  font-size: 2.375em;
  line-height: 1.18;
  letter-spacing: -0.0539473684em;
  color: #242424;
}
@media only screen and (min-width: 768px) {
  .size-1,
  .size-1-dark {
    font-size: 3.75em;
    line-height: 0.9;
    letter-spacing: -0.0320588235em;
  }
}

.size-1-dark {
  color: #ffffff;
}

.size-2, .nav-archive .container .nav-archive-logo .logo-text, .post-article .content-article .the-content h2,
.size-2-dark {
  font-size: 1.875em;
  line-height: 1.2;
  letter-spacing: -0.054em;
  color: #242424;
}
@media only screen and (min-width: 768px) {
  .size-2, .nav-archive .container .nav-archive-logo .logo-text, .post-article .content-article .the-content h2,
  .size-2-dark {
    font-size: 2.625em;
    letter-spacing: -0.054047619em;
    line-height: 1.14;
  }
}

.size-2-dark {
  color: #ffffff;
}

.size-3,
.size-3-dark {
  font-size: 1.5em;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #363636;
  font-family: "Proxima Nova";
  font-weight: 800;
}
@media only screen and (min-width: 768px) {
  .size-3,
  .size-3-dark {
    font-size: 2.1875em;
    line-height: 1;
    letter-spacing: -0.02em;
  }
}

.size-3-dark {
  color: #ffffff;
}

.size-4, .block-post .title, .section-pattern-interrupt .block-content p,
.size-4-dark,
.post-article .hero-article .container .post-excerpt p {
  color: #363636;
  font-size: 1.125em;
  line-height: 1.4;
  letter-spacing: 0;
}
@media only screen and (min-width: 768px) {
  .size-4, .block-post .title, .section-pattern-interrupt .block-content p,
  .size-4-dark,
  .post-article .hero-article .container .post-excerpt p {
    font-size: 1.5625em;
    line-height: 1.2;
  }
}

.size-4-dark, .post-article .hero-article .container .post-excerpt p {
  color: #ffffff;
}

.size-5, .assessment-results .single-answer .content p, .section-ty p, .post-article ul li, .post-article ol li, .items p, .post-article .content-article .the-content p, .section-cid p, .section-problem p, .product-modules p, .section-mission p, .gsection_title,
.size-5-dark,
.section-solution p,
.product-intro p,
.single-key-point p {
  font-size: 1em;
  line-height: 1.56;
  letter-spacing: 0;
  color: #323F3A;
}
@media only screen and (min-width: 768px) {
  .size-5, .assessment-results .single-answer .content p, .section-ty p, .post-article ul li, .post-article ol li, .items p, .post-article .content-article .the-content p, .section-cid p, .section-problem p, .product-modules p, .section-mission p, .gsection_title,
  .size-5-dark,
  .section-solution p,
  .product-intro p,
  .single-key-point p {
    font-size: 1.125em;
    line-height: 1.5;
    letter-spacing: -0.005em;
  }
}

.size-5-dark, .section-solution p, .product-intro p, .single-key-point p {
  color: #ffffff;
}

.size-6, .block-post.is-primitive .post-content p, .block-post .author .meta-data .archive-date, .block-post .author .meta-data a, .gsection_description, .gfield .ginput_container_radio label,
.gfield .ginput_container_checkbox label,
.gfield .ginput_container_consent label, .floating-label, .gfield_label,
.size-6-dark,
.assessment-results .items .single-item p,
.last-step .items .single-item p,
footer .second-row .container .single-disclaimer span,
footer .second-row .container .single-disclaimer,
footer .first-row .footer-nav a {
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: #363636;
}

.size-6-dark, .assessment-results .items .single-item p, .last-step .items .single-item p, footer .second-row .container .single-disclaimer span, footer .second-row .container .single-disclaimer, footer .first-row .footer-nav a {
  color: #ffffff;
}

.size-7, .block-post.is-primitive .meta-data .archive-date, .gfield .gfield_description, .gfield.consent,
.size-7-dark {
  font-size: 0.8125em;
  line-height: 1.23;
  letter-spacing: 0;
  color: #363636;
}

.size-7-dark {
  color: #aab0b7;
}

.post-article .content-article .the-content p {
  margin-bottom: 1.75em;
}
@media only screen and (min-width: 768px) {
  .post-article .content-article .the-content p {
    margin-bottom: 1.5555555556em;
  }
}
.post-article .content-article .the-content .lead p {
  font-size: 1.5em;
  color: #4E585F;
  letter-spacing: 0;
  line-height: 1.17;
}
@media only screen and (min-width: 768px) {
  .post-article .content-article .the-content .lead p {
    font-size: 1.8125em;
  }
}
.post-article .content-article .the-content span.lead {
  font-size: 1.4047619048em;
  font-weight: 300;
  line-height: 1.42;
  letter-spacing: -0.0433898305em;
  color: #363636;
  margin-bottom: 0.5084745763em;
  display: inline-block;
}
.post-article .content-article .the-content a:not(.wp-block-button__link):not(.wp-block-file__button) {
  color: #2C7C8D;
}
.post-article .content-article .the-content a:not(.wp-block-button__link):not(.wp-block-file__button):hover {
  text-decoration: none;
}
.post-article .content-article .the-content img {
  height: auto;
}
.post-article .content-article .the-content blockquote {
  padding-left: 1.5em;
  border-left: 5px solid #2C7C8D;
  margin: 1.5em 0;
}
.post-article .content-article .the-content blockquote p {
  font-size: 1.375em;
  margin-bottom: 0.2272727273em;
  font-weight: normal;
  font-style: italic;
  font-stretch: normal;
  line-height: 1.45;
  letter-spacing: -0.0136363636em;
}
.post-article .content-article .the-content blockquote cite {
  font-size: 1.125em;
  line-height: 1.86;
  letter-spacing: -0.0388888889em;
  color: #7A7A7A;
  font-style: normal;
}
.post-article .content-article .the-content blockquote cite strong {
  font-weight: normal;
}
.post-article .content-article .the-content blockquote span.cite {
  line-height: 1.86;
  letter-spacing: -0.0318181818em;
  color: #7A7A7A;
  font-style: normal !important;
}
.post-article .content-article .the-content h1 {
  font-size: 2.5625em;
  margin-bottom: 0.7804878049em;
  margin-top: 0.8292682927em;
}
@media only screen and (min-width: 768px) {
  .post-article .content-article .the-content h1 {
    font-size: 3.4375em;
    margin-bottom: 0.5818181818em;
    margin-top: 0.6181818182em;
  }
}
.post-article .content-article .the-content h2 {
  font-weight: 900;
  margin-bottom: 1.28em;
  margin-top: 1.36em;
}
@media only screen and (min-width: 768px) {
  .post-article .content-article .the-content h2 {
    margin-bottom: 0.8205128205em;
    margin-top: 0.8717948718em;
  }
}
.post-article .content-article .the-content h3 {
  font-size: 1.375em;
  margin-bottom: 1.2727272727em;
  margin-top: 1.2727272727em;
  line-height: 1.2;
  letter-spacing: -0.0363636364em;
  color: #323F3A;
  font-weight: 900;
}
@media only screen and (min-width: 768px) {
  .post-article .content-article .the-content h3 {
    font-size: 1.8125em;
    letter-spacing: -0.0275862069em;
    margin-bottom: 0.9655172414em;
    margin-top: 0.9655172414em;
  }
}
.post-article .content-article .the-content h4, .post-article .content-article .the-content h5, .post-article .content-article .the-content h6 {
  font-size: 1.1875em;
  line-height: 1.18;
  letter-spacing: -0.0231578947em;
  color: #363636;
  font-weight: 900;
  margin-bottom: 1.2631578947em;
  margin-top: 1.2631578947em;
}

.laptop-s-screen-show {
  display: none;
}
@media only screen and (min-width: 980px) {
  .laptop-s-screen-show {
    display: block;
  }
}

.laptop-s-screen-hide {
  display: block;
}
@media only screen and (min-width: 980px) {
  .laptop-s-screen-hide {
    display: none !important;
  }
}

.tablet-screen-show {
  display: none;
}
@media only screen and (min-width: 768px) {
  .tablet-screen-show {
    display: block;
  }
  .button-tooltip .tablet-screen-show, .call-btn .tablet-screen-show {
    display: inline-block;
  }
}

.tablet-screen-hide {
  display: block;
}
@media only screen and (min-width: 768px) {
  .tablet-screen-hide {
    display: none;
  }
}

.mobile-screen-show {
  display: none;
}
@media only screen and (min-width: 480px) {
  .mobile-screen-show {
    display: inline-block;
  }
}

.mobile-screen-hide {
  display: inline-block;
}
@media only screen and (min-width: 480px) {
  .mobile-screen-hide {
    display: none;
  }
}

.medium-screen-show {
  display: none;
}
@media only screen and (min-width: 640px) {
  .medium-screen-show {
    display: inline-block;
  }
}

.tablet-l-screen-show {
  display: none !important;
}

.tablet-l-screen-hide {
  display: inline-block !important;
}

.module-contact-options .lb-v-scrollbar .lb-v-scrollbar-slider {
  background-color: #363636;
}

.hidden {
  display: none;
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}

.anchor-docker {
  position: relative;
}

.anchor-docker {
  position: relative;
  top: -6.25em;
}

.main-nav-offset-docker,
.archive-nav-docker {
  position: relative;
}
.blog .main-nav-offset-docker, .archive .main-nav-offset-docker, .search-results .main-nav-offset-docker,
.blog .archive-nav-docker,
.archive .archive-nav-docker,
.search-results .archive-nav-docker {
  top: 70px;
}

.hidden {
  display: none !important;
}

span.is-hidden {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  left: -99999px;
}

.no-match {
  display: none;
}

.is-visible {
  display: block;
}

@-ms-keyframes spin {
  from {
    -ms-transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes parallax {
  0% {
    background-position: 0 3.75em;
  }
  100% {
    background-position: 4.6875em 3.75em;
  }
}
@keyframes parallaxMob {
  0% {
    background-position: 0 60px;
  }
  100% {
    background-position: 50px 60px;
  }
}
@keyframes waterFill {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1521px;
  }
}
@keyframes waterFillMob {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 337px;
  }
}
body {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  overflow-x: hidden;
}
body.is-visible {
  opacity: 1;
}
body .container {
  margin: 0 auto;
  max-width: 65.25em;
  position: relative;
  padding: 0 1.25em;
}
@media only screen and (min-width: 1084px) {
  body .container {
    padding: 0 0;
  }
}

.nav-main {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 210;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(78, 88, 95, 0.0980392157);
  width: 100%;
  transition: top 0.275s ease-in-out;
}
@supports not ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .nav-main {
    background-color: rgba(255, 255, 255, 0.9);
  }
}
.nav-main.is-off {
  top: -4.5em;
}
.admin-bar .nav-main {
  top: 2.875em;
}
@media screen and (min-width: 783px) {
  .admin-bar .nav-main {
    top: 2em;
  }
}
.admin-bar .nav-main.is-off {
  top: -6.375em;
}
.nav-main .container {
  padding: 0.4375em 1.25em;
  display: -ms-grid;
  -ms-grid-columns: 6em auto 1.375em;
  display: grid;
  grid-template-columns: 6em auto 1.375em;
  grid-column-gap: 1.25em;
  grid-row-gap: 0;
  align-items: center;
}
@media only screen and (min-width: 980px) {
  .nav-main .container {
    grid-column-gap: 0;
    grid-template-columns: 6em 1fr auto;
    padding: 0.875em 1.25em;
  }
}
@media only screen and (min-width: 1084px) {
  .nav-main .container {
    grid-template-columns: 9.125em 1fr auto;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
}

nav.is-wrapping .container {
  padding-top: 1.25em;
  padding-bottom: 1.25em;
}
nav.is-wrapping .nav-items-container ul:not(.module-contact-options) {
  justify-content: flex-start;
}
nav .nav-items-container {
  display: block;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 3.4375em;
  right: 0em;
  transition: all 0.275s ease-in-out;
  background-color: #f7faf9;
  z-index: 200;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}
@media only screen and (min-width: 980px) {
  nav .nav-items-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-self: self-end;
    position: static;
    opacity: 1;
    pointer-events: auto;
    background-color: transparent;
    height: auto;
    width: auto;
    overflow-y: unset;
    overflow-x: unset;
    margin-left: 0.75em;
  }
}
@media only screen and (min-width: 1035px) {
  nav .nav-items-container {
    margin-left: 3.75em;
  }
}
nav .nav-items-container.is-active {
  opacity: 1;
  pointer-events: auto;
}
nav .nav-items-container.is-active li {
  pointer-events: auto;
}
@media only screen and (max-width: 979px) {
  nav .nav-items-container.is-active .wrapper {
    transform: translateX(0);
    background-color: #f7faf9;
  }
}
nav .nav-items-container.is-active + .button-togglenav span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
  left: 0;
}
nav .nav-items-container.is-active + .button-togglenav span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
nav .nav-items-container.is-active + .button-togglenav span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0.9375em;
  left: 0;
}
nav .nav-items-container .wrapper {
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 1.25em 1.25em;
}
@media only screen and (min-width: 980px) {
  nav .nav-items-container .wrapper {
    display: flex;
    overflow: unset;
    padding: 0;
  }
}
@media only screen and (max-width: 979px) {
  nav .nav-items-container .wrapper {
    transform: translateY(-50vh);
    transition: transform 0.275s ease-in-out;
  }
}
nav .nav-items-container ul:not(.module-contact-options) {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0;
}
@media only screen and (max-width: 979px) {
  nav .nav-items-container ul:not(.module-contact-options) {
    flex-direction: column;
    align-items: flex-start;
  }
}
nav .nav-items-container ul:not(.module-contact-options) li {
  position: relative;
  display: block;
  width: 100%;
}
@media only screen and (max-width: 979px) {
  nav .nav-items-container ul:not(.module-contact-options) li a {
    display: block;
    padding: 0.8125em 0;
    transition: color 0.275s ease-in-out;
    border-bottom: 2px solid rgba(81, 132, 123, 0.25);
  }
}
@media only screen and (min-width: 980px) {
  nav .nav-items-container ul:not(.module-contact-options) li {
    margin-right: 0.125em;
    display: inline-block;
    margin-bottom: 0;
    width: auto;
  }
  nav .nav-items-container ul:not(.module-contact-options) li:last-child {
    margin-right: 0.6875em;
  }
  nav .nav-items-container ul:not(.module-contact-options) li a {
    padding: 0.625em 0.5em;
    border-radius: 7px;
    transition: unset;
  }
}
nav .nav-items-container ul:not(.module-contact-options) li.menu-item-has-children {
  position: relative;
}
@media only screen and (max-width: 979px) {
  nav .nav-items-container ul:not(.module-contact-options) li.menu-item-has-children::before {
    transition: all 0.275s ease-in-out;
    content: "";
    display: block;
    position: absolute;
    top: 0.4375em;
    left: -0.625em;
    width: calc(100% + 1.25em);
    height: calc(100% - 0.4375em);
    background-color: rgba(81, 132, 123, 0.1);
    opacity: 0;
    border-radius: 5px;
    z-index: -1;
  }
  nav .nav-items-container ul:not(.module-contact-options) li.menu-item-has-children.is-clicked::before {
    opacity: 1;
  }
}
nav .nav-items-container ul:not(.module-contact-options) li.menu-item-has-children .sub-menu-trigger {
  padding: 0;
  padding-left: 0.3125em;
  cursor: pointer;
  position: absolute;
  right: -0.25em;
  top: 0;
  background-color: transparent;
  width: 1.75em;
  border-bottom: none;
  height: 100%;
  max-height: 2.875em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 980px) {
  nav .nav-items-container ul:not(.module-contact-options) li.menu-item-has-children .sub-menu-trigger {
    height: auto;
    max-height: unset;
    display: inline-block;
  }
}
nav .nav-items-container ul:not(.module-contact-options) li.menu-item-has-children .sub-menu-trigger.is-clicked .down-arrow {
  transform: rotate(0deg);
}
nav .nav-items-container ul:not(.module-contact-options) li.menu-item-has-children .sub-menu-trigger.is-clicked ~ .sub-menu-wrapper {
  height: auto;
}
nav .nav-items-container ul:not(.module-contact-options) li.menu-item-has-children .down-arrow {
  display: inline-block;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='512' height='512' viewBox='0 0 284.929 284.929'%3E%3Cpath d='M282.082 76.511l-14.274-14.273c-1.902-1.906-4.093-2.856-6.57-2.856-2.471 0-4.661.95-6.563 2.856L142.466 174.441 30.262 62.241c-1.903-1.906-4.093-2.856-6.567-2.856-2.475 0-4.665.95-6.567 2.856L2.856 76.515C.95 78.417 0 80.607 0 83.082c0 2.473.953 4.663 2.856 6.565l133.043 133.046c1.902 1.903 4.093 2.854 6.567 2.854s4.661-.951 6.562-2.854L282.082 89.647c1.902-1.903 2.847-4.093 2.847-6.565 0-2.475-.945-4.665-2.847-6.571z' fill='%237a7a7a' data-original='%23000000' xmlns='http://www.w3.org/2000/svg'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  padding: 0.375em;
  transform: rotate(-90deg);
  transition: all 0.275s ease-in-out;
}
@media only screen and (min-width: 980px) {
  nav .nav-items-container ul:not(.module-contact-options) li.menu-item-has-children .down-arrow {
    padding: 0.3125em;
    opacity: 0.5;
    transform: unset;
  }
}
@media only screen and (min-width: 980px) {
  nav .nav-items-container ul:not(.module-contact-options) li.menu-item-has-children > a {
    padding: 0.625em 1.75em 0.625em 0.5em;
  }
}
nav .nav-items-container ul:not(.module-contact-options) li.menu-item-has-children.is-active {
  margin-bottom: 0;
}
nav .nav-items-container ul:not(.module-contact-options) li.menu-item-has-children.is-active > a {
  background-color: #ccdce1;
}
nav .nav-items-container ul:not(.module-contact-options) li.menu-item-has-children.is-active > .sub-menu-wrapper {
  display: block;
}
nav .nav-items-container ul:not(.module-contact-options) li.menu-item-has-children.is-active > .sub-menu-wrapper li {
  margin-bottom: 0;
}
@media only screen and (min-width: 980px) {
  nav .nav-items-container ul:not(.module-contact-options) li.menu-item-has-children.is-active > .sub-menu-wrapper {
    background-color: #ffffff;
    opacity: 1;
    pointer-events: auto;
  }
}
nav .nav-items-container ul:not(.module-contact-options) li .sub-menu-wrapper {
  min-width: 100%;
  overflow: hidden;
  transition: height 0.275s ease-in-out;
}
@media only screen and (min-width: 980px) {
  nav .nav-items-container ul:not(.module-contact-options) li .sub-menu-wrapper {
    display: block;
    position: absolute;
    top: 1.5em;
    opacity: 0;
    pointer-events: none;
    background: #ffffff;
    left: 0;
    transition: all 0.275s ease-in-out;
    z-index: 10;
    min-width: 14.0625em;
    box-shadow: 0px 3px 10px rgba(10, 10, 10, 0.1019607843);
    border: 1px solid rgba(10, 10, 10, 0.0117647059);
    border-radius: 6px;
    height: auto;
    overflow: unset;
  }
}
nav .nav-items-container ul:not(.module-contact-options) li .sub-menu-wrapper li {
  width: 100%;
  padding-right: 0;
  margin-right: 0;
}
@media only screen and (min-width: 980px) {
  nav .nav-items-container ul:not(.module-contact-options) li .sub-menu-wrapper li:first-child a {
    padding-top: 1.2307692308em;
  }
}
nav .nav-items-container ul:not(.module-contact-options) li .sub-menu-wrapper li:last-child a {
  padding-bottom: 0.5em;
}
@media only screen and (min-width: 980px) {
  nav .nav-items-container ul:not(.module-contact-options) li .sub-menu-wrapper li:last-child a {
    padding-bottom: 0.9285714286em;
  }
}
nav .nav-items-container ul:not(.module-contact-options) li .sub-menu-wrapper li a {
  display: block;
  padding-top: 0.5em;
  padding-bottom: 0;
  text-transform: none;
  opacity: 1;
  transition: all 0.275s ease-in-out;
  position: relative;
  letter-spacing: -0.03625em;
  border-bottom: none;
}
@media only screen and (min-width: 980px) {
  nav .nav-items-container ul:not(.module-contact-options) li .sub-menu-wrapper li a {
    font-size: 0.8125em;
    color: #363636;
    padding: 0 1em 1em;
    text-align: left;
    letter-spacing: 0;
    font-weight: normal;
  }
}
nav .nav-items-container ul:not(.module-contact-options) li .sub-menu-wrapper li:hover a {
  opacity: 0.7;
  background-color: transparent;
}
nav .nav-items-container ul:not(.module-contact-options) li .sub-menu-wrapper li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
@media only screen and (min-width: 980px) {
  nav .nav-items-container ul:not(.module-contact-options) li .sub-menu-wrapper:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.875em;
    top: -0.8125em;
    left: 0;
  }
}
nav .nav-items-container ul:not(.module-contact-options) li .sub-menu-wrapper .sub-menu {
  display: block;
}
@media only screen and (min-width: 980px) {
  nav .nav-items-container ul:not(.module-contact-options) li .sub-menu-wrapper .sub-menu {
    max-height: 25em;
    overflow-y: auto;
  }
}
nav .nav-items-container ul:not(.module-contact-options) li .sub-menu-wrapper .sub-menu .sub-menu-wrapper {
  display: none;
}
@media only screen and (min-width: 980px) {
  nav .nav-items-container ul:not(.module-contact-options) li.is-clicked > a {
    background-color: rgba(78, 88, 95, 0.0980392157);
  }
  nav .nav-items-container ul:not(.module-contact-options) li.is-clicked .sub-menu-wrapper {
    opacity: 1;
    pointer-events: auto;
    top: 2.125em;
  }
}
@media (hover: hover) and (pointer: fine) and (min-width: 980px) {
  nav .nav-items-container ul:not(.module-contact-options) li:hover > a {
    background-color: rgba(78, 88, 95, 0.0980392157);
    color: #363636;
  }
  nav .nav-items-container ul:not(.module-contact-options) li:hover .sub-menu-wrapper {
    opacity: 1;
    pointer-events: auto;
    top: 2.125em;
  }
}
nav .call-btn {
  justify-self: end;
}
@media only screen and (min-width: 980px) {
  nav .call-btn {
    grid-column: 3/4;
    grid-row: 1/2;
  }
}
@media only screen and (max-width: 767px) {
  nav .call-btn {
    padding-left: 0.8125em;
    padding-right: 0.8125em;
  }
}
nav .button-nav {
  display: block;
  max-width: 30em;
  margin: 0.8125em auto;
  width: 100%;
}
nav .button-togglenav {
  position: relative;
  height: 100%;
  padding: 0;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  color: rgba(0, 0, 0, 0.7);
}
@media only screen and (min-width: 980px) {
  nav .button-togglenav {
    display: none;
  }
}
nav .button-togglenav svg {
  margin-left: 0.4375em;
}
nav .button-togglenav .nav-icon {
  width: 1.375em;
  height: 1.375em;
  position: relative;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
nav .button-togglenav .nav-icon span {
  display: block;
  border-radius: 3px;
  position: absolute;
  height: 0.25em;
  width: 100%;
  background: #4b5455;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
nav .button-togglenav .nav-icon span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
nav .button-togglenav .nav-icon span:nth-child(2) {
  top: 0.5625em;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
nav .button-togglenav .nav-icon span:nth-child(3) {
  top: 1.125em;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.nav-global-logo {
  font-size: 1em;
  display: flex;
  width: 6em;
  transition: none;
}
@media only screen and (min-width: 1084px) {
  .nav-global-logo {
    width: 9.125em;
  }
}

.nav-archive {
  position: absolute;
  width: 100%;
  z-index: 209;
  transition: box-shadow 0.3s ease-in-out, top 0.275s ease-in-out;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@supports not ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .nav-archive {
    background-color: rgba(255, 255, 255, 0.9);
  }
}
.nav-archive.nav-is-fixed {
  position: fixed;
  top: 0;
}
.admin-bar .nav-archive.nav-is-fixed {
  top: 2.875em;
}
@media screen and (min-width: 783px) {
  .admin-bar .nav-archive.nav-is-fixed {
    top: 2em;
  }
}
.nav-archive .container {
  padding: 3em 1.25em 1.375em;
  margin: 0 auto;
  position: relative;
}
@media only screen and (min-width: 980px) {
  .nav-archive .container {
    padding: 1.75em 1.25em;
    display: -ms-grid;
    -ms-grid-columns: auto auto;
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 0;
    grid-row-gap: 0;
    align-items: center;
  }
}
@media only screen and (min-width: 1084px) {
  .nav-archive .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.nav-archive .container .nav-archive-logo .logo-text {
  position: relative;
  font-weight: 800;
  display: inline-block;
  font-size: 1.875em;
}
@media only screen and (min-width: 768px) {
  .nav-archive .container .nav-archive-logo .logo-text {
    font-size: 2.1875em;
  }
}
.nav-archive .container .nav-archive-logo .logo-text::after {
  content: "";
  width: 1.3em;
  height: 0.8333333333em;
  background: url("../images/drip-1.png") no-repeat center;
  background-size: contain;
  position: absolute;
  top: -0.5em;
  right: -1.9666666667em;
  transform: scale(-1, 1);
}
@media only screen and (min-width: 768px) {
  .nav-archive .container .nav-archive-logo .logo-text::after {
    width: 1.2571428571em;
    height: 1em;
    top: -0.4285714286em;
    right: -1.7428571429em;
  }
}
.nav-archive .container .nav-items-container {
  top: 6.4375em;
  right: 1.25em;
  justify-content: flex-end;
}
.nav-archive .container .nav-items-container.is-active {
  top: 7.0625em;
}
@media only screen and (max-width: 979px) {
  .nav-archive .container .nav-items-container .archive-menu {
    display: block;
  }
}
@media only screen and (min-width: 980px) {
  .nav-archive .container .nav-items-container .archive-menu li {
    margin-right: 0.5625em;
  }
  .single .nav-archive .container .nav-items-container .archive-menu li {
    margin-right: 0;
  }
}
@media only screen and (min-width: 980px) {
  .nav-archive .container .nav-items-container .archive-menu li a:not(.button):not(.share-button):not(.button-blue):not(.button-transparent):not(.button-tooltip):not(.js-load-more):not(input[type=submit]) {
    padding: 0.4285714286em 0.5714285714em;
  }
}
.nav-archive .container .nav-items-container .archive-menu li .sub-menu-wrapper li {
  margin-right: 0;
}
.nav-archive .container .nav-items-container::before {
  right: 1.375em;
}
.nav-archive.blog-nav-archive, .nav-archive.nav-page-static {
  border-bottom: 1px solid rgba(152, 177, 198, 0.4509803922);
  top: 4.375em;
  position: fixed;
}
.admin-bar .nav-archive.blog-nav-archive, .admin-bar .nav-archive.nav-page-static {
  top: 7.25em;
}
@media screen and (min-width: 783px) {
  .admin-bar .nav-archive.blog-nav-archive, .admin-bar .nav-archive.nav-page-static {
    top: 6.375em;
  }
}
.nav-archive.blog-nav-archive.nav-is-fixed, .nav-archive.nav-page-static.nav-is-fixed {
  box-shadow: none;
  border-top: none;
  top: 0px;
}
.admin-bar .nav-archive.blog-nav-archive.nav-is-fixed, .admin-bar .nav-archive.nav-page-static.nav-is-fixed {
  top: 2.875em;
}
@media screen and (min-width: 783px) {
  .admin-bar .nav-archive.blog-nav-archive.nav-is-fixed, .admin-bar .nav-archive.nav-page-static.nav-is-fixed {
    top: 2em;
  }
}
.nav-archive.blog-nav-archive.is-off, .nav-archive.nav-page-static.is-off {
  top: -4.5em;
}
.admin-bar .nav-archive.blog-nav-archive.is-off, .admin-bar .nav-archive.nav-page-static.is-off {
  top: -6.5em;
}
.nav-archive.blog-nav-archive .container, .nav-archive.nav-page-static .container {
  position: static;
  padding: 1.125em 0.875em;
  margin: 0 auto;
  text-align: center;
  max-width: 71.375em;
  white-space: nowrap;
  overflow-x: auto;
  display: -ms-grid;
  -ms-grid-columns: auto auto;
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 1.875em;
  grid-row-gap: 0;
  align-items: center;
}
@media only screen and (min-width: 980px) {
  .nav-archive.blog-nav-archive .container, .nav-archive.nav-page-static .container {
    padding: 1.125em 0.875em;
    position: relative;
    text-align: left;
  }
}
@media only screen and (min-width: 1084px) {
  .nav-archive.blog-nav-archive .container, .nav-archive.nav-page-static .container {
    padding-left: 0.875em;
    padding-right: 0.875em;
  }
}
@media only screen and (min-width: 1170px) {
  .nav-archive.blog-nav-archive .container, .nav-archive.nav-page-static .container {
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
}
.nav-archive.blog-nav-archive .container .nav-items-container, .nav-archive.nav-page-static .container .nav-items-container {
  justify-content: flex-end;
  height: auto;
  margin-left: 0;
  background-color: transparent;
}
@media only screen and (max-width: 979px) {
  .nav-archive.blog-nav-archive .container .nav-items-container, .nav-archive.nav-page-static .container .nav-items-container {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    padding: 0;
    box-shadow: unset;
    border: none;
    max-height: unset;
    max-width: unset;
    min-width: unset;
    opacity: 1;
    pointer-events: auto;
    overflow-y: unset;
    overflow-x: unset;
    border-radius: unset;
  }
  .nav-archive.blog-nav-archive .container .nav-items-container::before, .nav-archive.nav-page-static .container .nav-items-container::before {
    content: none;
  }
}
.nav-archive.blog-nav-archive .container .archive-menu, .nav-archive.nav-page-static .container .archive-menu {
  justify-content: flex-end;
  width: 100%;
}
@media only screen and (max-width: 979px) {
  .nav-archive.blog-nav-archive .container .archive-menu li:last-child, .nav-archive.nav-page-static .container .archive-menu li:last-child {
    margin-right: 1em;
  }
}
@media only screen and (max-width: 979px) {
  .nav-archive.blog-nav-archive .container .archive-menu li, .nav-archive.nav-page-static .container .archive-menu li {
    display: inline-block;
    margin-right: 1.875em;
  }
}
.nav-archive.blog-nav-archive .container .archive-menu li.current-menu-item a, .nav-archive.nav-page-static .container .archive-menu li.current-menu-item a {
  color: #232b32;
}
@media only screen and (min-width: 980px) {
  .nav-archive.blog-nav-archive .container .archive-menu li.current-menu-item a, .nav-archive.nav-page-static .container .archive-menu li.current-menu-item a {
    background-color: #ccdce1;
  }
}
@media only screen and (max-width: 979px) {
  .nav-archive.blog-nav-archive .container .archive-menu li a:not(.button):not(.share-button):not(.button-blue):not(.button-transparent):not(.button-tooltip):not(.js-load-more):not(input[type=submit]), .nav-archive.nav-page-static .container .archive-menu li a:not(.button):not(.share-button):not(.button-blue):not(.button-transparent):not(.button-tooltip):not(.js-load-more):not(input[type=submit]) {
    display: inline-block;
    padding: 0;
    border: none;
  }
}

footer {
  z-index: 100;
  position: relative;
}
footer .first-row {
  padding: 1em 0 0.875em;
  background-color: #123F48;
}
@media only screen and (min-width: 768px) {
  footer .first-row {
    padding: 5em 0 0;
  }
}
footer .first-row .container {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  footer .first-row .container {
    display: -ms-grid;
    -ms-grid-columns: auto 1fr;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap: 2em;
    grid-row-gap: 0;
    justify-items: space-between;
  }
}
@media only screen and (min-width: 1084px) {
  footer .first-row .container {
    padding: 0;
  }
}
footer .first-row .footer-nav {
  order: 2;
  padding-top: 1.375em;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) {
  footer .first-row .footer-nav {
    order: unset;
    padding-top: 0;
  }
}
footer .first-row .footer-nav div {
  width: 50%;
  margin-bottom: 1.6875em;
}
footer .first-row .footer-nav div h4 {
  font-family: "Proxima Nova";
  font-size: 1em;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.5;
  margin-bottom: 0.5em;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  footer .first-row .footer-nav div {
    margin-right: 3.75em;
    margin-bottom: 5em;
    width: auto;
  }
  footer .first-row .footer-nav div:last-child {
    margin-right: 0;
  }
  footer .first-row .footer-nav div h4 {
    font-size: 1.125em;
    letter-spacing: -0.005em;
    margin-bottom: 0.3333333333em;
  }
}
footer .first-row .footer-nav div.about, footer .first-row .footer-nav div.follow {
  padding-right: 1em;
}
@media only screen and (min-width: 768px) {
  footer .first-row .footer-nav div.about, footer .first-row .footer-nav div.follow {
    padding-right: 0;
  }
}
footer .first-row .footer-nav li {
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(255, 255, 255, 0.75);
}
footer .first-row .footer-nav li:last-child {
  margin-bottom: 0;
}
footer .first-row .footer-nav a {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  footer .first-row .footer-nav a {
    font-size: 0.875em;
  }
}
footer .first-row .footer-nav a:hover {
  text-decoration: underline;
}
footer .first-row .copyright {
  text-align: center;
  order: 1;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 1em;
}
@media only screen and (min-width: 768px) {
  footer .first-row .copyright {
    order: unset;
    text-align: left;
    max-width: 15.875em;
    margin: 0 auto;
    margin: 0;
    text-align: left;
    align-self: flex-start;
    justify-self: end;
    border-bottom: none;
    padding-bottom: 0;
  }
}
footer .first-row .copyright .logo {
  width: 7.5625em;
  display: inline-block;
}
footer .first-row .copyright .logo img {
  vertical-align: top;
}
@media only screen and (min-width: 768px) {
  footer .first-row .copyright .logo {
    width: 14.0625em;
  }
}
footer .first-row .copyright .copy {
  font-size: 0.9375em;
  line-height: 1.33;
  letter-spacing: 0.0133333333em;
  color: rgba(255, 255, 255, 0.75);
}
footer .second-row {
  padding: 1.375em 0;
  background-color: #103239;
}
@media only screen and (min-width: 768px) {
  footer .second-row {
    padding: 1.875em 0;
  }
}
footer .second-row .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  footer .second-row .container {
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 1084px) {
  footer .second-row .container {
    padding-left: 0;
    padding-right: 0;
  }
}
footer .second-row .container .single-disclaimer {
  display: block;
  position: relative;
  border-radius: 0.4375em;
  background-color: #123F48;
  padding: 1.125em 0.75em;
  padding-left: 3.5625em;
  line-height: normal;
  width: auto;
  margin-bottom: 0.4375em;
  flex-shrink: 0;
  width: 100%;
  max-width: 11.875em;
}
@media only screen and (min-width: 480px) {
  footer .second-row .container .single-disclaimer {
    margin-bottom: 0;
    width: auto;
    margin-right: 0.4375em;
  }
}
@media only screen and (min-width: 640px) {
  footer .second-row .container .single-disclaimer {
    margin-right: 1em;
  }
}
footer .second-row .container .single-disclaimer:nth-child(2) {
  margin-right: 0;
}
@media only screen and (min-width: 480px) {
  footer .second-row .container .single-disclaimer:nth-child(2) {
    margin-right: 0.4375em;
  }
}
@media only screen and (min-width: 640px) {
  footer .second-row .container .single-disclaimer:nth-child(2) {
    margin-right: 1em;
  }
}
footer .second-row .container .single-disclaimer:last-child {
  padding-left: 3.5625em;
  margin-right: 0;
  margin-bottom: 0;
}
footer .second-row .container .single-disclaimer span {
  line-height: normal;
  margin-left: 0.3125em;
  opacity: 0.7;
}
footer .second-row .container .single-disclaimer svg {
  position: absolute;
  top: 50%;
  left: 0.625em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
footer .second-row .container .single-disclaimer:last-child svg {
  left: 0.625em;
  width: 2.4375em;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: inline-block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots {
  position: absolute;
  bottom: 0.9375em;
  display: block;
  width: calc(100% - 1.5625em);
  max-width: 71.375em;
  left: 1.5625em;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  height: 1.9375em;
}
@media only screen and (min-width: 768px) {
  .slick-dots {
    bottom: 1.9375em;
  }
}
@media only screen and (min-width: 1170px) {
  .slick-dots {
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
  }
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 3.75em;
  height: 0.25em;
  margin-right: 0.5625em;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 60px;
  height: 4px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button::before {
  content: "";
  font-size: 6px;
  line-height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 4px;
  opacity: 0.4;
  text-align: center;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button::before {
  opacity: 1;
  background-color: #ffffff;
}

.slick-arrow {
  position: absolute;
  top: calc(50% - 12px);
  width: 1.75em;
  height: 1.75em;
  background: #ffffff;
  border: solid 1px #ffffff;
  border-radius: 50%;
  text-indent: -10000em;
  z-index: 10;
}
.slick-arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1.75em;
  height: 1.75em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.slick-arrow.slick-prev {
  left: -0.875em;
}
.slick-arrow.slick-prev::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cdefs%3E%3Cstyle%3E.a{fill:%23fff;stroke:rgba(5,5,5,0.2);}.a,.b{stroke-width:2px;}.b,.d{fill:none;}.b{stroke:%23050505;stroke-linecap:round;stroke-linejoin:round;}.c{stroke:none;}%3C/style%3E%3C/defs%3E%3Cg transform='translate(947 1507) rotate(180)'%3E%3Cg class='a' transform='translate(917 1477)'%3E%3Ccircle class='c' cx='14' cy='14' r='14'/%3E%3Ccircle class='d' cx='14' cy='14' r='15'/%3E%3C/g%3E%3Cpath class='b' d='M1031,1582.666l5.421,5.417L1031,1593.5' transform='translate(-102.037 -97.076)'/%3E%3C/g%3E%3C/svg%3E");
  margin-left: -1px;
}
.slick-arrow.slick-next {
  right: -0.875em;
}
.slick-arrow.slick-next::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cdefs%3E%3Cstyle%3E.a{fill:%23fff;stroke:rgba(5,5,5,0.2);}.a,.b{stroke-width:2px;}.b,.d{fill:none;}.b{stroke:%23050505;stroke-linecap:round;stroke-linejoin:round;}.c{stroke:none;}%3C/style%3E%3C/defs%3E%3Cg transform='translate(-915 -1475)'%3E%3Cg class='a' transform='translate(917 1477)'%3E%3Ccircle class='c' cx='14' cy='14' r='14'/%3E%3Ccircle class='d' cx='14' cy='14' r='15'/%3E%3C/g%3E%3Cpath class='b' d='M1031,1582.666l5.421,5.417L1031,1593.5' transform='translate(-102.037 -97.076)'/%3E%3C/g%3E%3C/svg%3E");
}

.module-contact {
  margin: 0.25em -1em 0;
  display: none;
}
@media only screen and (min-width: 980px) {
  .module-contact {
    display: block;
    position: fixed;
    right: -2.75em;
    top: 15.375em;
    z-index: 1201;
    margin: 0;
    text-align: right;
    height: 0;
  }
}
.module-contact .module-contact-button {
  font-size: 1em;
  display: none;
  transition: all 0.275s ease-in-out;
  font-size: 1em;
  text-decoration: none;
  transform: rotate(-90deg);
  border-radius: 0.3125em 0.3125em 0 0;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #DBDBDB;
  width: 8.125em;
  text-align: center;
  padding: 0.75em;
  color: #363636;
  font-weight: 800;
  cursor: pointer;
  text-transform: none;
}
@media only screen and (min-width: 768px) {
  .module-contact .module-contact-button {
    display: inline-block;
  }
}
.module-contact .module-contact-button:hover {
  color: #363636;
  border-color: #363636;
}
.module-contact .module-contact-options {
  background-color: #ffffff;
  box-shadow: 0px 3px 10px rgba(10, 10, 10, 0.1019607843);
  border-radius: 6px;
  position: absolute;
  right: 5.5em;
  top: -2.625em;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s all ease-in-out;
  min-width: 15.625em;
  overflow: auto;
  max-height: 21.25em;
  text-align: left;
}
.module-contact .module-contact-options.is-visible {
  opacity: 1;
  pointer-events: auto;
  height: auto;
  right: 5.8125em;
}
@media only screen and (max-width: 767px) {
  .module-contact .module-contact-options {
    left: 0;
    top: 0;
    margin: 0 auto;
    right: 0;
    position: relative;
    margin: 0;
    border: 0;
    box-shadow: none;
    transition-duration: 0s;
    background: #ffffff;
    height: 0;
    padding: 0;
    opacity: 1;
    height: auto;
    min-width: unset;
    overflow: unset;
    max-height: unset;
  }
}
.module-contact li:nth-child(even) {
  background-color: #F8FAFB;
}
.module-contact li:first-child .module-contact-option {
  padding-top: 1em;
}
.module-contact li:last-child .module-contact-option {
  padding-bottom: 1em;
}
.module-contact .module-contact-option {
  font-size: 1em;
  padding: 0.75em 1em;
  width: 100%;
  min-width: 10em;
  display: block;
  position: relative;
  z-index: 2;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: unset;
}
.module-contact .module-contact-option:hover {
  opacity: 0.7;
}
.module-contact .module-contact-option-icon {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  align-self: flex-start;
  width: 1.9375em;
  height: 1.9375em;
}
.module-contact .module-contact-option-icon::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #ffffff;
  top: 0;
  left: 0;
  border-radius: 0.375em;
  z-index: -1;
}
.module-contact .module-contact-option-icon svg {
  width: 100%;
  height: 100%;
}
.module-contact .module-contact-option-label {
  font-size: 1em;
  font-weight: 500;
  color: #727D87;
  text-transform: uppercase;
  padding-left: 1.375em;
  display: block;
}
@media only screen and (min-width: 768px) {
  .module-contact .module-contact-option-label {
    padding-left: 1em;
    font-size: 0.75em;
  }
}
.module-contact .module-contact-option-value {
  font-size: 1em;
  font-weight: normal;
  display: block;
  color: #363636;
  padding-left: 1.375em;
  text-transform: none;
}
@media only screen and (min-width: 768px) {
  .module-contact .module-contact-option-value {
    padding-left: 0.75em;
  }
}

.modal-overlay {
  transition: opacity 0.275s ease-in-out;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1110;
}
.modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.module-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.275s ease-in-out;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.module-modal::-webkit-scrollbar {
  /* WebKit */
  width: 0;
  height: 0;
}
.module-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  z-index: 1120;
  transform: translateY(0.625em);
  -webkit-transform: translateY(0.625em);
  transition: transform 0.275s ease-in-out;
}
.module-modal.is-active .modal-content {
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

.modal-box {
  width: 90vw;
  position: relative;
  max-width: 50.3125em;
  z-index: 1120;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-box.align-start {
  justify-content: flex-start;
}
.modal-box.align-start .container {
  padding-bottom: 4em;
  padding-top: 4em;
}
@media screen and (min-width: 768px) and (max-height: 700px) {
  .modal-box {
    font-size: 0.8em;
  }
}
.modal-box header {
  margin-bottom: 1.75em;
  text-align: center;
  max-width: 28.125em;
  margin-left: auto;
  margin-right: auto;
  transform: translateX(100px);
  transition: all 0.275s ease-in-out;
}
@media only screen and (min-width: 768px) {
  .modal-box header {
    margin-bottom: 2.875em;
  }
}
.modal-box .container {
  padding-right: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  height: auto;
}

.modal-close {
  position: absolute;
  cursor: pointer;
  right: 1.4375em;
  top: 1.4375em;
  height: 1.9375em;
  width: 1.9375em;
  border-radius: 50%;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31' height='31'%3E%3Cdefs%3E%3Cstyle%3E.b{fill:%23fff}%3C/style%3E%3C/defs%3E%3Cg transform='translate(-909.5 -119)'%3E%3Ccircle cx='15.5' cy='15.5' r='15.5' transform='translate(909.5 119)' style='fill:%23115376'/%3E%3Cpath class='b' d='m920.757 129.343 9.9 9.9-1.415 1.414-9.9-9.9z'/%3E%3Cpath class='b' d='m919.343 139.243 9.9-9.9 1.414 1.415-9.9 9.9z'/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
  z-index: 1120;
  opacity: 0;
  transition: all 0.275s ease-in-out;
}
.modal-close.is-active {
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .modal-close {
    right: 3.9375em;
    top: 3.9375em;
  }
}

.single-question {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition: all 0.275s ease-in-out;
  width: 100%;
  transform: translateX(50px);
}
.single-question.is-hidden {
  display: none;
}
.single-question.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.single-question.is-active header {
  transform: translateX(0);
}
.single-question.is-active .single-choice {
  transform: scale(1);
  transition-delay: unset;
}
.single-question .button-wrapper {
  text-align: center;
  margin-top: 2.5em;
}

.quiz .choices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.quiz .single-choice {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 3px 10px rgba(10, 10, 10, 0.1019607843);
  border-radius: 6px;
  position: relative;
  transition: all 0.275s ease-in-out;
  width: calc(50% - 5px);
  background-color: #ffffff;
  transform: scale(0);
  margin-right: 0.625em;
  margin-bottom: 0.625em;
}
@media only screen and (min-width: 768px) {
  .quiz .single-choice {
    margin-right: 2.125em;
    margin-bottom: 2.125em;
  }
}
.quiz .single-choice:nth-child(2) {
  transition-delay: 0.15s;
  margin-right: 0;
}
.quiz .single-choice:nth-child(3) {
  transition-delay: 0.25s;
  margin-bottom: 0;
}
.quiz .single-choice:nth-child(4) {
  transition-delay: 0.35s;
}
.quiz .single-choice:last-child {
  margin-bottom: 0;
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .quiz .single-choice {
    width: auto;
  }
}
.quiz .single-choice .wrapper {
  transition: all 0.275s ease-in-out;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  width: 100%;
}
.quiz .single-choice:hover .wrapper {
  transform: scale(1.05);
}
.quiz .single-choice figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f7faf9;
  border-radius: 6px 6px 0px 0px;
  width: 100%;
  padding: 0.625em 2.625em;
}
@media only screen and (min-width: 768px) {
  .quiz .single-choice figure {
    padding: 1em 4.6875em;
  }
}
.quiz .single-choice img {
  max-width: 3.75em;
}
@media only screen and (min-width: 768px) {
  .quiz .single-choice img {
    max-width: 7.9375em;
  }
}
.quiz .single-choice input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  margin: 0;
  z-index: 10;
}
.quiz .single-choice label {
  font-weight: normal;
  font-size: 0.875em;
  padding: 0.2142857143em 0.5714285714em;
  width: 100%;
  background-color: #ffffff;
  text-align: center;
  border-radius: 0 0 6px 6px;
}
@media only screen and (min-width: 768px) {
  .quiz .single-choice label {
    font-size: 1em;
    padding: 1.125em;
    font-weight: 800;
  }
}

.last-step .items {
  max-width: unset;
  margin-bottom: 0;
}
@media only screen and (min-width: 980px) {
  .last-step .items {
    display: flex;
    align-items: center;
  }
}
.last-step .items .single-item {
  background: transparent linear-gradient(90deg, #368ebc 0%, #2888b9 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 4px 36px rgba(0, 0, 0, 0.0509803922);
  border-radius: 8px;
  padding: 0.625em;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 768px) {
  .last-step .items .single-item {
    padding: 1.25em;
  }
}
@media only screen and (min-width: 980px) {
  .last-step .items .single-item {
    margin-bottom: 0;
    margin-right: 0.5em;
  }
  .last-step .items .single-item:last-child {
    margin-right: 0;
  }
}
.last-step .items .single-item img {
  width: 2.8125em;
  height: 2.8125em;
}
.last-step .items .single-item p {
  margin-bottom: 0;
}
.last-step .sub-box, .last-step .gform_confirmation_wrapper {
  max-width: 100%;
  margin-bottom: 1.25em;
}
@media only screen and (min-width: 980px) {
  .last-step .sub-box, .last-step .gform_confirmation_wrapper {
    min-height: 15.1875em;
    margin-bottom: 2.1875em;
    padding-left: 1.25em;
    padding-right: 1.25em;
  }
}
@media only screen and (min-width: 980px) {
  .last-step .sub-box, .last-step .gform_confirmation_wrapper {
    padding-left: 1.25em;
    padding-right: 1.25em;
  }
}
.last-step .sub-box .form-wrapper.ee-form .gfield_consent_label, .last-step .gform_confirmation_wrapper .form-wrapper.ee-form .gfield_consent_label {
  color: #363636;
}
.last-step .sub-box .form-wrapper.ee-form .gfield_consent_label a, .last-step .gform_confirmation_wrapper .form-wrapper.ee-form .gfield_consent_label a {
  color: #363636;
}
.last-step .sub-box .form-wrapper.ee-form .gfield_consent_label a:hover, .last-step .gform_confirmation_wrapper .form-wrapper.ee-form .gfield_consent_label a:hover {
  color: #2c7c8d;
  text-decoration: none;
}
.last-step .sub-box .gform_ajax_spinner, .last-step .gform_confirmation_wrapper .gform_ajax_spinner {
  right: 0.3125em;
}
.last-step .sub-box h4, .last-step .gform_confirmation_wrapper h4 {
  font-family: "Proxima Nova";
  opacity: 0.9;
  text-align: center;
  font-weight: normal;
  margin-bottom: 0.96em;
  max-width: 21.2em;
  margin-left: auto;
  margin-right: auto;
}

.progressbar {
  position: absolute;
  width: 100%;
  height: 0.625em;
  background-color: #115376;
  top: 0;
  left: 0;
  z-index: 1120;
  opacity: 0;
  transition: all 0.275s ease-in-out;
}
.progressbar.is-active {
  opacity: 1;
}
.progressbar .progressbar-percentage {
  height: 100%;
  width: 100%;
  background-color: #a4d5ef;
}

.block-post {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #ffffff;
  margin-bottom: 1.25em;
  position: relative;
  z-index: 5;
  padding-bottom: 4.4375em;
}
.block-post:last-of-type {
  margin-bottom: 2.6875em;
}
.block-post .post-thumbnail {
  display: block;
  padding-top: 56.25%;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.875em;
  background-color: #CCDCE1;
  border-radius: 0.3125em;
}
@media only screen and (min-width: 768px) {
  .block-post .post-thumbnail:hover .title {
    opacity: 0.8;
  }
}
.block-post .post-thumbnail img {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0.3125em;
}
.block-post .post-thumbnail:hover + .title a {
  color: #2C7C8D;
}
.block-post .post-thumbnail:hover {
  opacity: 0.7;
}
.block-post .title {
  margin-bottom: 1.2962962963em;
}
@media only screen and (min-width: 768px) {
  .block-post .title {
    margin-bottom: 0.9722222222em;
  }
}
.block-post .title a {
  color: #242424;
  text-decoration: none;
}
.block-post .title a:hover {
  color: #2C7C8D;
}
.block-post .post-content {
  flex-grow: 1;
  padding: 0;
}
.block-post .post-content a {
  color: #2C7C8D;
}
.block-post .post-content a:hover {
  text-decoration: underline;
}
.block-post .post-content img {
  height: auto;
  border: 10px solid white;
  outline: 1px solid rgba(0, 0, 0, 0.1);
}
.block-post .post-content iframe {
  max-width: 100%;
}
.block-post .post-content .post-footer {
  display: flex;
  flex-direction: column;
  margin-top: 2.0625em;
}
@media only screen and (min-width: 480px) {
  .block-post .post-content .post-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 479px) {
  .block-post .post-content .more-link-wrapper {
    margin-bottom: 1.375em;
  }
}
.block-post .post-content .more-link-wrapper + p {
  margin: 0;
}
.block-post .author {
  display: flex;
  align-items: center;
  padding: 0;
  margin-bottom: 0.25em;
}
.block-post .author .avatar {
  display: inline-block;
  width: 2.1875em;
  height: 2.1875em;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.block-post .author .avatar img {
  max-width: 100%;
  max-height: 100%;
}
.block-post .author .meta-data {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-width: 0;
  flex-shrink: 1;
  background-color: #42C6ED;
  border-radius: 15px;
  padding: 0.40625em 1em 0.40625em 1em;
  min-height: 2.8125em;
}
.block-post .author .meta-data a {
  color: #123F48;
}
.block-post .author .meta-data a:hover {
  text-decoration: underline;
}
.block-post .author .meta-data .archive-date {
  color: #123F48;
  margin-right: 1.25em;
}
.block-post .author .meta-data .archive-date a {
  color: #123F48;
}
.block-post .author .meta-data .archive-date a:hover {
  text-decoration: underline;
}
.block-post.is-primitive {
  margin-bottom: 2em;
  box-shadow: 0px 3px 10px rgba(10, 10, 10, 0.1019607843);
  background-color: #ffffff;
  border-radius: 6px;
  padding-bottom: 0;
  border: none;
  display: flex;
  flex-direction: column;
}
.block-post.is-primitive:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 640px) {
  .block-post.is-primitive {
    width: calc(50% - 1.25em);
    margin-right: 1.125em;
    margin-bottom: 2.625em;
  }
  .block-post.is-primitive:nth-child(2n) {
    margin-right: 0;
  }
  @supports (display: grid) {
    .block-post.is-primitive {
      width: auto;
      margin-right: 0;
      margin-bottom: 0;
    }
  }
}
@media only screen and (min-width: 980px) {
  .block-post.is-primitive {
    width: calc(33.3333% - 0.875em);
  }
  .block-post.is-primitive:nth-child(2n) {
    margin-right: 1.25em;
  }
  .block-post.is-primitive:nth-child(3n) {
    margin-right: 0;
  }
  @supports (display: grid) {
    .block-post.is-primitive {
      width: auto;
    }
    .block-post.is-primitive:nth-child(2n) {
      margin-right: 0;
    }
  }
}
.block-post.is-primitive .post-thumbnail {
  display: block;
  padding-top: 56.25%;
  overflow: hidden;
  position: relative;
  min-height: unset;
  border-radius: 6px 6px 0 0;
  border: none;
  box-shadow: unset;
  margin-bottom: 0;
  background-color: #CCDCE1;
}
.block-post.is-primitive .post-thumbnail img {
  border-radius: 6px 6px 0 0;
}
.block-post.is-primitive .post-thumbnail::before {
  content: none;
}
.block-post.is-primitive .post-thumbnail:hover + .text-wrapper .title a {
  color: #2C7C8D;
}
.block-post.is-primitive .text-wrapper {
  padding: 0.875em 1.5625em 0;
}
.block-post.is-primitive .cat-name {
  padding: 0.4166666667em 0.6666666667em 0.25em;
  line-height: 1;
  opacity: 0.75;
  margin-bottom: 0.6666666667em;
}
.block-post.is-primitive .title {
  font-family: "Proxima Nova";
  position: static;
  font-size: 1.5625em;
  margin-bottom: 0.44em;
  margin-top: 0.44em;
}
.block-post.is-primitive .title a:hover {
  color: #2C7C8D;
}
.block-post.is-primitive .post-content {
  padding: 0;
}
.block-post.is-primitive .post-content p:last-child {
  margin-bottom: 0;
}
.block-post.is-primitive .author {
  margin-bottom: 0;
  background: #ffffff;
  padding: 1.125em 1.5625em 1.5em;
  margin-top: auto;
}
.block-post.is-primitive .author .avatar {
  margin-right: 0.75em;
}
.block-post.is-primitive .meta-data {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  border-radius: unset;
  background-color: transparent;
  padding: 0;
  min-height: unset;
}
.block-post.is-primitive .meta-data .archive-date {
  opacity: 0.5;
  margin-right: 0;
  line-height: normal;
}
.block-post.is-primitive .meta-data .archive-date a {
  text-decoration: none;
  color: #363636;
  line-height: normal;
}
.block-post.is-primitive .meta-data .archive-date a:hover {
  text-decoration: underline;
}

.module-scroll-indicator {
  display: inline-block;
  width: 120px;
  height: 50px;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.275s ease-in-out;
  transform: translateX(-50%);
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 10;
}
.module-scroll-indicator .indicator {
  display: inline-block;
  width: 122px;
  height: 122px;
  background-color: #DEEDFF;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.module-scroll-indicator .indicator svg {
  transform: translateX(-50%);
  position: absolute;
  top: 30px;
  left: 50%;
  width: 31px;
}
.module-scroll-indicator.is-hidden {
  opacity: 0;
}

/*SEARCH FORM*/
.search-form-container {
  max-width: 35.3125em;
  margin-left: auto;
  margin-right: auto;
}
.search-results .search-form-container, .search-no-results .search-form-container {
  margin: 0;
  max-width: unset;
}
.search-form-container .form-control {
  font-size: 1em;
  border-radius: 0.1875em;
  width: 100%;
  padding: 0.75em 0.75em 0.75em 0.75em;
  border-radius: 5px;
}
.search-form-container .form-control:focus {
  border-color: #123F48;
  box-shadow: 0 0 0 3px rgba(44, 124, 141, 0.25);
}
.search-form-container .search-submit {
  display: none;
}

.module-tooltip {
  position: relative;
}
.module-tooltip .button-tooltip {
  text-decoration: none !important;
}
.module-tooltip .tooltip-dropdown {
  position: absolute;
  top: 2.9375em;
  right: 0;
  left: initial;
  width: 17.5em;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
  z-index: 1101;
  opacity: 0;
  border-radius: 0.5625em;
  padding: 1em 1em 7.25em;
  transition: all 0.275s;
  pointer-events: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 1220px) {
  .module-tooltip .tooltip-dropdown {
    right: -3.5625em;
  }
}
.module-tooltip .tooltip-dropdown.is-active {
  opacity: 1;
  pointer-events: auto;
  top: 3.5625em;
}
.module-tooltip .tooltip-dropdown::before {
  content: none;
  background: #ffffff;
  position: absolute;
  top: -0.375em;
  right: 1.625em;
  display: block;
  width: 0.625em;
  height: 0.625em;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: none;
  border-right: none;
}
@media only screen and (min-width: 1220px) {
  .module-tooltip .tooltip-dropdown::before {
    right: 50%;
    -webkit-transform: translateX(50%) rotate(45deg);
    transform: translateX(50%) rotate(45deg);
  }
}
.module-tooltip .tooltip-dropdown .subscribe-form .gform-body {
  padding: 0;
  margin-bottom: 0;
}
.module-tooltip .tooltip-dropdown .subscribe-form .gfield {
  padding-bottom: 0;
  border-bottom: none;
}
.module-tooltip .tooltip-dropdown .subscribe-form .gfield.consent {
  top: unset;
  bottom: 0.8461538462em;
  padding: 0 1.2307692308em 0 3em;
}
.module-tooltip .tooltip-dropdown .subscribe-form .gfield.consent label::before {
  left: 1.2307692308em;
}
.module-tooltip .tooltip-dropdown .subscribe-form .gfield.consent label::after {
  left: 1.5384615385em;
}
.module-tooltip .tooltip-dropdown .subscribe-form .gfield.consent .gfield_consent_label {
  padding-left: 0;
}
.module-tooltip .tooltip-dropdown .subscribe-form .gfield.consent .gfield_validation_message {
  width: calc(100% - 50px);
  border-radius: 5px;
  bottom: -2.1666666667em;
}
.module-tooltip .tooltip-dropdown .subscribe-form .gfield_label {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.module-tooltip .tooltip-dropdown .subscribe-form input[type=text]:not(:placeholder-shown),
.module-tooltip .tooltip-dropdown .subscribe-form input[type=email]:not(:placeholder-shown) {
  padding: 1.0625em 0.75em 0.4375em;
}
.module-tooltip .tooltip-dropdown .subscribe-form input[type=text]:not(:placeholder-shown) + .floating-label,
.module-tooltip .tooltip-dropdown .subscribe-form input[type=email]:not(:placeholder-shown) + .floating-label {
  font-size: 0.8125em;
  visibility: visible;
  transition: all 0.1s ease-in-out;
  opacity: 0.75;
}
.module-tooltip .tooltip-dropdown .subscribe-form .gfield_validation_message {
  background-color: #dc3232;
  color: #ffffff;
  line-height: 1;
  padding: 0.5833333333em 1em;
  width: 100%;
  border-radius: 0 0 5px 5px;
  position: absolute;
  top: unset;
  bottom: -1.75em;
}

.tooltip-close {
  position: absolute;
  cursor: pointer;
  left: -10px;
  top: -10px;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11'%3E%3Cpath fill='%23FFF' fill-rule='evenodd' d='M9.222.723L10.399 1.9 6.575 5.723l3.824 3.824-1.177 1.176L5.399 6.9l-3.824 3.824L.399 9.547l3.823-3.824L.399 1.9 1.575.723l3.824 3.824L9.222.723z'/%3E%3C/svg%3E") no-repeat center;
  border: 2px solid #ffffff;
  box-shadow: 0 1px 2px 0 rgba(105, 104, 101, 0.5);
  background-size: 10px;
  display: inline-block;
}
.sidebar .tooltip-close {
  display: none;
}

.tooltip-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.275s ease-in-out;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
}
.sidebar .tooltip-overlay {
  display: none;
}
.tooltip-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.share-buttons-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 1em;
  padding: 0.875em 1em;
  margin-bottom: -0.8125em;
}
@media only screen and (min-width: 768px) {
  .share-buttons-wrapper {
    background-color: rgba(10, 10, 10, 0.3);
    margin-bottom: 0;
  }
}

.share-button {
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none !important;
  max-width: 2.3125em;
  margin-right: 1.25em;
}
@media only screen and (min-width: 768px) {
  .share-button {
    margin-right: 0.625em;
  }
}
.share-button:hover {
  opacity: 0.5;
}
.share-button:last-child {
  margin-right: 0;
}

.section-pattern-interrupt {
  margin-bottom: 2.875em;
}
@media only screen and (min-width: 980px) {
  .section-pattern-interrupt {
    margin-bottom: 8.75em;
  }
}
.section-pattern-interrupt .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5.75em;
  padding-bottom: 3.125em;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .section-pattern-interrupt .container {
    padding-top: 10em;
  }
}
@media only screen and (min-width: 980px) {
  .section-pattern-interrupt .container {
    align-items: flex-start;
    padding-top: 16.625em;
    padding-bottom: 9.5em;
    min-height: 46.0625em;
  }
}
.section-pattern-interrupt .block-content {
  position: relative;
  max-width: 32.375em;
  margin-bottom: 0.3125em;
  text-align: center;
}
@media only screen and (min-width: 980px) {
  .section-pattern-interrupt .block-content {
    text-align: left;
  }
}
.section-pattern-interrupt figure {
  max-width: 31.75em;
  margin-bottom: 0.3125em;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .section-pattern-interrupt figure {
    margin-bottom: 1.875em;
  }
}
@media only screen and (min-width: 980px) {
  .section-pattern-interrupt figure {
    max-width: 44.75em;
    position: absolute;
    top: 9.625em;
    right: -1.25em;
    z-index: -1;
    margin-bottom: 0;
  }
}
.section-pattern-interrupt figure img {
  vertical-align: top;
}
.section-pattern-interrupt figure::before {
  content: "";
  width: 1.4375em;
  height: 1.3125em;
  background: url("../images/pi-drip.png") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0.9375em;
  left: 2.5em;
}
@media only screen and (min-width: 480px) {
  .section-pattern-interrupt figure::before {
    width: 4.0625em;
    height: 3.75em;
    top: 2.1875em;
    left: 3.375em;
  }
}
.section-pattern-interrupt .btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section-pattern-interrupt .btn-wrapper button {
  margin-bottom: 0.3888888889em;
}
@media only screen and (min-width: 980px) {
  .section-pattern-interrupt .btn-wrapper button {
    margin-bottom: 0.6666666667em;
  }
}
.section-pattern-interrupt .btn-wrapper .call-note {
  width: 100%;
}
@media only screen and (min-width: 980px) {
  .section-pattern-interrupt .btn-wrapper .call-note {
    text-decoration: underline;
    font-weight: normal;
    line-height: normal;
    border: none;
    padding: 0;
    letter-spacing: -0.005em;
    opacity: 0.7;
    width: auto;
  }
  .section-pattern-interrupt .btn-wrapper .call-note:hover {
    opacity: 1;
    box-shadow: none;
  }
}

.section-cid {
  background-color: #f7faf9;
  position: relative;
  z-index: 10;
}
.section-cid::before, .section-cid::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  pointer-events: none;
}
.section-cid::before {
  height: 16.8125em;
  background-image: url("../images/top-mask.png");
  background-size: cover;
  top: -9.125em;
}
@media only screen and (min-width: 980px) {
  .section-cid::before {
    height: 32.5em;
    background-size: 100% 520px;
    top: -20.0625em;
  }
}
.section-cid::after {
  height: 8.625em;
  background-image: url("../images/bottom-mask.png");
  background-size: cover;
  bottom: 0;
}
@media only screen and (min-width: 980px) {
  .section-cid::after {
    height: 23.5em;
    background-size: 100% 376px;
    bottom: -3.125em;
  }
}
.section-cid .container {
  padding-top: 1em;
  padding-bottom: 7.625em;
}
@media only screen and (min-width: 768px) {
  .section-cid .container {
    padding-top: 0;
    padding-bottom: 9.375em;
  }
}
.section-cid .container .block-content {
  max-width: 39.4375em;
  position: relative;
  margin: 0 auto;
}
@media only screen and (min-width: 980px) {
  .section-cid .container .block-content::before, .section-cid .container .block-content::after {
    content: "";
    display: inline-block;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .section-cid .container .block-content::before {
    background-image: url("../images/drip-1.png");
    top: 3.0625em;
    left: -4.3125em;
    width: 2.375em;
    height: 1.875em;
  }
  .section-cid .container .block-content::after {
    background-image: url("../images/drip-2.png");
    top: 6.25em;
    left: -9.8125em;
    width: 7.125em;
    height: 6.4375em;
  }
}
.section-cid .container .block-content header {
  max-width: 32.5em;
  position: relative;
}
@media only screen and (min-width: 980px) {
  .section-cid .container .block-content header::before {
    content: "";
    display: inline-block;
    position: absolute;
    background: url("../images/fl.png") no-repeat center;
    background-size: contain;
    top: -3.5625em;
    right: -13.625em;
    width: 12.0625em;
    height: 13.6875em;
  }
}

.logotypes-container {
  margin-bottom: 0.75em;
  margin: auto;
  max-width: 49.125em;
}
@media only screen and (min-width: 768px) {
  .logotypes-container {
    margin-bottom: 5.75em;
  }
}
.logotypes-container.is-visible .logotype-block {
  opacity: 1;
}
.logotypes-container.is-visible .logotype-block:nth-child(2) {
  transition-delay: 0.15s;
}
.logotypes-container.is-visible .logotype-block:nth-child(3) {
  transition-delay: 0.3s;
}
.logotypes-container.is-visible .logotype-block:nth-child(4) {
  transition-delay: 0.45s;
}

.logotypes {
  position: relative;
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (min-width: 768px) {
  .logotypes {
    margin-left: 0;
    margin-right: 0;
  }
}
.logotypes::before, .logotypes::after {
  content: "";
  position: absolute;
  width: 0.6875em;
  height: 100%;
  top: 0;
  z-index: 10;
}
.logotypes::before {
  left: 0;
  background: -moz-linear-gradient(left, rgb(247, 250, 249) 0%, rgba(247, 250, 249, 0) 100%);
  background: -webkit-linear-gradient(left, rgb(247, 250, 249) 0%, rgba(247, 250, 249, 0) 100%);
  background: linear-gradient(to right, rgb(247, 250, 249) 0%, rgba(247, 250, 249, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#00ffffff",GradientType=1 );
}
.logotypes::after {
  right: 0;
  background: -moz-linear-gradient(left, rgba(247, 250, 249, 0) 0%, rgb(247, 250, 249) 100%);
  background: -webkit-linear-gradient(left, rgba(247, 250, 249, 0) 0%, rgb(247, 250, 249) 100%);
  background: linear-gradient(to right, rgba(247, 250, 249, 0) 0%, rgb(247, 250, 249) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=1 );
}
.logotypes .slick-track {
  display: flex;
  align-items: center;
}
.logotypes .logotype-block {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 4.3125em;
  margin: 0.3125em;
  background-color: #ecf1ef;
  border: 1px solid rgba(10, 10, 10, 0.0117647059);
  border-radius: 6px;
  padding: 22px 16px;
  opacity: 0;
  transition: opacity 0.275s ease-in-out;
}
@media only screen and (min-width: 640px) {
  .logotypes .logotype-block {
    box-shadow: 0px 3px 10px rgba(10, 10, 10, 0.1019607843);
    background-color: #ffffff;
    height: 5.9375em;
  }
}
.logotypes .logotype-block img {
  max-height: 3.6875em;
}
@media only screen and (min-width: 640px) {
  .logotypes .logotype-block img {
    max-height: 5.125em;
  }
}
@media only screen and (min-width: 640px) {
  .logotypes .logotype-block {
    margin: 0.5em;
  }
}
.logotypes .logotype-block a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.section-problem,
.section-solution {
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .section-problem .container,
  .section-solution .container {
    display: -ms-grid;
    -ms-grid-columns: 1fr 1fr;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 1.25em;
    grid-row-gap: 0;
  }
}
@media only screen and (min-width: 1180px) {
  .section-problem .container,
  .section-solution .container {
    grid-template-columns: 32.375em 32.8125em;
  }
}
.section-problem .container .block-content,
.section-solution .container .block-content {
  transition: opacity 0.275s ease-in-out;
}
@media only screen and (min-width: 1180px) {
  .section-problem .container .block-content,
  .section-solution .container .block-content {
    max-width: 32.375em;
  }
}
.section-problem .container .block-content p:last-child,
.section-solution .container .block-content p:last-child {
  margin-bottom: 0;
}

.section-problem .container {
  padding-top: 0.5625em;
}
@media only screen and (min-width: 768px) {
  .section-problem .container {
    padding-top: 3.25em;
    padding-bottom: 6.25em;
  }
}
.section-problem .container .block-content {
  transition: opacity 0.4s ease-in-out;
  transition-delay: 0.6s;
  opacity: 1;
}
.section-problem.sol-is-visible .block-content {
  opacity: 0.5;
}

.section-solution {
  transition: opacity 0.275s ease-in-out;
  position: relative;
  z-index: 100;
}
.section-solution .container {
  padding-top: 0.5625em;
  padding-bottom: 5.3125em;
}
@media only screen and (min-width: 768px) {
  .section-solution .container {
    padding-top: 0;
    padding-bottom: 8.875em;
  }
}
@media only screen and (min-width: 768px) {
  .section-solution .block-content {
    opacity: 1;
  }
}
.section-solution .block-content p a {
  color: #ffffff;
}
.section-solution.sol-is-visible .block-content {
  opacity: 1;
}

.prob-sol-bg-wrapper {
  position: relative;
  z-index: 15;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .prob-sol-bg-wrapper {
    position: absolute;
    width: 100%;
    height: 100vh;
  }
}
@media only screen and (max-width: 767px) {
  .prob-sol-bg-wrapper:nth-of-type(1) {
    margin-top: -1.375em;
  }
}
@media only screen and (max-width: 767px) {
  .prob-sol-bg-wrapper:nth-of-type(2) {
    margin-top: 3.5625em;
  }
}
.prob-sol-bg-wrapper.cloned .prob-sol-bg .microbes {
  opacity: 0;
}
.prob-sol-bg-wrapper.cloned .prob-sol-bg .water {
  opacity: 1;
}

.prob-sol-bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 57.125em;
  pointer-events: none;
}
.prob-sol-bg.sol-is-visible .microbes {
  opacity: 0;
}
.prob-sol-bg.sol-is-visible .water {
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .prob-sol-bg {
    position: sticky;
    height: auto;
    top: 9.625em;
    display: -ms-grid;
    -ms-grid-columns: 1fr 1fr;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 1.25em;
    grid-row-gap: 0;
    max-width: 65.25em;
    margin: 0 auto;
  }
  .prob-sol-bg.prob-is-visible figure {
    opacity: 1;
  }
  .prob-sol-bg.sol-is-visible .microbes {
    opacity: 0;
  }
  .prob-sol-bg.sol-is-visible .water {
    opacity: 1;
  }
}
@media only screen and (min-width: 1180px) {
  .prob-sol-bg {
    grid-template-columns: 32.375em 32.8125em;
  }
}
.prob-sol-bg figure {
  position: relative;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .prob-sol-bg figure {
    max-width: 32.8125em;
    grid-column: 2/3;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    margin: unset;
  }
}
@media only screen and (max-height: 640px) and (min-width: 768px) {
  .prob-sol-bg figure {
    max-width: 23.625em;
  }
}
.prob-sol-bg figure img {
  vertical-align: top;
  position: relative;
  z-index: 2;
}
.prob-sol-bg figure .microbes,
.prob-sol-bg figure .water {
  background-repeat: repeat-x;
  background-position: top 60px center;
  background-size: contain;
  position: absolute;
  width: calc(100% - 10px);
  max-width: 32.5em;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: parallaxMob linear 3s infinite alternate;
  transition: opacity 0.4s ease-in-out;
  transition-delay: 0.3s;
  display: inline-block;
}
@media only screen and (min-width: 768px) {
  .prob-sol-bg figure .microbes,
  .prob-sol-bg figure .water {
    animation: parallax linear 4s infinite alternate;
  }
}
.prob-sol-bg figure .microbes {
  background-image: url("../images/prob-fig-2@2x.png");
}
.prob-sol-bg figure .water {
  background-image: url("../images/sol-fig-2@2x.png");
  opacity: 0;
}

.section-stp {
  background: linear-gradient(transparent 64px, #1875a7 0%);
  position: relative;
  z-index: 60;
}
@media only screen and (min-width: 768px) {
  .section-stp {
    background: linear-gradient(transparent 303px, #1875a7 0%);
  }
}
.page-template-your-assessment .section-stp {
  background: #1875a7;
}
.section-stp::before {
  content: "";
  display: block;
  background: url("../images/wave-2.png") center repeat-x;
  background-size: 1521px auto;
  animation: waterFill 6s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18.9375em;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .section-stp::before {
    background-size: 337px auto;
    height: 4em;
    animation: waterFillMob 6s linear infinite;
  }
}
.page-template-your-assessment .section-stp::before {
  content: none;
}
.section-stp .container {
  max-width: 53.25em;
  padding-top: 6.0625em;
  padding-bottom: 6.25em;
  z-index: 10;
}
@media only screen and (min-width: 768px) {
  .section-stp .container {
    padding-top: 13.3125em;
    padding-bottom: 5.75em;
  }
  .page-template-your-assessment .section-stp .container {
    padding-top: 0;
  }
}
@media screen and (min-width: 892px) {
  .section-stp .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.section-stp .block-content {
  max-width: 51.6875em;
  margin: 0 auto 4.1875em;
  text-align: center;
  position: relative;
}
@media only screen and (min-width: 480px) {
  .section-stp .block-content {
    margin-bottom: 3.25em;
  }
}
.section-stp .block-content::before {
  content: "";
  display: inline-block;
  width: 1.0625em;
  height: 2.3125em;
  background: url("../images/bubbles.png") no-repeat center;
  background-size: contain;
  position: absolute;
  top: -4.0625em;
  left: 1.625em;
}
@media only screen and (min-width: 768px) {
  .section-stp .block-content::before {
    top: -5.25em;
    left: 2.25em;
    width: 2.125em;
    height: 4.75em;
  }
}
@media only screen and (min-width: 1060px) {
  .section-stp .block-content::before {
    top: unset;
    left: -2.625em;
    bottom: 0;
  }
}
.section-stp .block-content header {
  margin-bottom: 1.625em;
}
@media only screen and (min-width: 768px) {
  .section-stp .block-content header {
    margin-bottom: 3.0625em;
  }
}
.section-stp .block-content h2 span.match {
  display: block;
}

.product-intro p a {
  color: #ffffff;
}
.product-intro p:last-child {
  margin-bottom: 0;
}

.product-modules {
  margin-bottom: 5em;
  position: relative;
}
.product-modules .single-module {
  background-color: #ffffff;
  position: relative;
  margin-bottom: 3.75em;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.275s ease-in-out;
}
.product-modules .single-module.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .product-modules .single-module {
    margin-bottom: 2.5625em;
  }
}
@media only screen and (min-width: 1060px) {
  .product-modules .single-module::before, .product-modules .single-module::after {
    content: "";
    display: inline-block;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
}
.product-modules .single-module::before {
  width: 2.4375em;
  height: 7.25em;
  background-image: url("../images/arrow.png");
  bottom: -4.9375em;
}
.product-modules .single-module::after {
  width: 2.125em;
  height: 4.75em;
  background-image: url("../images/bubbles.png");
}
.product-modules .single-module:nth-child(odd)::before {
  left: -3.5625em;
}
.product-modules .single-module:nth-child(odd)::after {
  bottom: 5.0625em;
  right: -4.875em;
}
.product-modules .single-module:nth-child(even)::before {
  transform: scale(-1, 1);
  right: -3.5625em;
}
.product-modules .single-module:nth-child(even)::after {
  bottom: 0.3125em;
  left: -5.625em;
}
.product-modules .single-module:last-child {
  margin-bottom: 0;
}
.product-modules .single-module:last-child::before, .product-modules .single-module:last-child::after {
  content: none;
}
@media only screen and (min-width: 768px) {
  .product-modules .single-module {
    flex-direction: row;
  }
}
.product-modules .single-module figure {
  height: 18.125em;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  border-radius: 0 0 6px 6px;
}
@media only screen and (min-width: 768px) {
  .product-modules .single-module figure {
    min-width: 26.625em;
    border-radius: 0 6px 6px 0;
    background-position: center;
    height: auto;
  }
}
.product-modules .single-module .content {
  padding: 1.4375em 1em 1.5625em;
}
@media only screen and (min-width: 768px) {
  .product-modules .single-module .content {
    padding: 2.375em;
  }
}
.product-modules .single-module .module-header {
  margin-bottom: 0.875em;
}
@media only screen and (min-width: 768px) {
  .product-modules .single-module .module-header {
    margin-bottom: 1.875em;
  }
}
.product-modules .single-module p:last-child {
  margin-bottom: 0;
}

.step-nb {
  display: inline-block;
  background-color: #d6f5f0;
  border-radius: 100px;
  font-size: 0.875em;
  color: #51847b;
  text-transform: uppercase;
  letter-spacing: 0.065em;
  padding: 0.7142857143em 1.2857142857em 0.5714285714em;
  line-height: 1;
  vertical-align: baseline;
  margin-bottom: 0.5714285714em;
}

.key-points-wrapper .single-key-point {
  padding: 1.375em 1em 1.3125em;
  border-radius: 6px;
  background: transparent linear-gradient(89deg, #368EBC 0%, #2888B9 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 4px 36px rgba(0, 0, 0, 0.0509803922);
  margin-bottom: 1.25em;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .key-points-wrapper .single-key-point {
    margin-bottom: 0.625em;
  }
}
.key-points-wrapper .single-key-point.align-start {
  align-items: flex-start;
}
.key-points-wrapper .single-key-point:last-child {
  margin-bottom: 0;
}
.key-points-wrapper .single-key-point img {
  max-width: 2.8125em;
  margin-right: 1em;
}
.key-points-wrapper .single-key-point p a {
  color: #ffffff;
}

.section-mission {
  background-color: #f7faf9;
  position: relative;
  z-index: 1;
  overflow: hidden;
  z-index: 100;
}
@media only screen and (min-width: 980px) {
  .section-mission::after {
    content: "";
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    background-image: url("../images/bottom-mask.png");
    bottom: -5.25em;
    height: 23.5em;
    background-size: 100% 376px;
  }
}
.section-mission .container {
  padding-bottom: 4em;
  z-index: 3;
  padding-top: 3.875em;
}
@media only screen and (min-width: 980px) {
  .section-mission .container {
    display: -ms-grid;
    -ms-grid-columns: 30.3125em auto;
    display: grid;
    grid-template-columns: 30.3125em auto;
    grid-column-gap: 4.9375em;
    grid-row-gap: 0;
    padding-top: 10.375em;
    padding-bottom: 13.9375em;
  }
}
.section-mission .block-content {
  position: relative;
  z-index: 1;
  padding-top: 1.875em;
}
@media only screen and (min-width: 980px) {
  .section-mission .block-content {
    padding-top: 0.375em;
  }
}
.section-mission .block-content header {
  margin-bottom: 1.5em;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .section-mission .block-content header {
    margin-bottom: 2.125em;
  }
}
@media only screen and (min-width: 1220px) {
  .section-mission .block-content header::after {
    content: "";
    display: inline-block;
    position: absolute;
    background: url("../images/drip-2.png") no-repeat center;
    background-size: contain;
    bottom: -6.625em;
    right: -7.875em;
    width: 7.125em;
    height: 6.4375em;
  }
}
.section-mission .block-content p:last-child {
  margin-bottom: 0;
}
.section-mission .block-content ul {
  list-style-type: disc;
}
.section-mission .block-content ol {
  list-style-type: decimal;
}
.section-mission .block-content ul, .section-mission .block-content ol {
  padding-left: 1.625em;
}
.section-mission .block-content ul li, .section-mission .block-content ol li {
  line-height: 1.3;
  font-size: 1.25em;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 0.75em;
}
.section-mission .mission-img {
  width: 100%;
  max-width: 30.3125em;
  margin: 0 auto;
  max-height: 26.25em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  position: relative;
}
@media only screen and (min-width: 480px) {
  .section-mission .mission-img {
    max-height: 30.5em;
    height: auto;
  }
}
@media only screen and (min-width: 980px) {
  .section-mission .mission-img {
    width: 30.3125em;
  }
  .section-mission .mission-img::before {
    content: "";
    display: inline-block;
    position: absolute;
    background: url("../images/drip-1.png") no-repeat center;
    background-size: contain;
    bottom: -1.4375em;
    right: -2em;
    width: 2.75em;
    height: 2.1875em;
    transform: scale(-1, 1);
  }
}
.section-mission .signature {
  display: inline-block;
  position: absolute;
  bottom: 0.4375em;
  left: calc(50% + 55px);
  transform: translateX(-50%);
}
@media only screen and (max-width: 479px) {
  .section-mission .signature {
    bottom: 0.0625em;
    right: unset;
    left: calc(50% + 36px);
    transform: translateX(-50%);
  }
  .section-mission .signature svg {
    width: 11.25em;
    height: 3.5625em;
  }
}

.section-easy-enrollment {
  position: relative;
  z-index: 15;
  z-index: 100;
  background-color: #ffffff;
}
@media only screen and (min-width: 980px) {
  .assessment .section-easy-enrollment {
    margin-top: 12.875em;
  }
}
.section-easy-enrollment .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3.75em;
  padding-bottom: 3.125em;
  overflow: hidden;
}
@media only screen and (min-width: 980px) {
  .section-easy-enrollment .container {
    align-items: flex-start;
    padding-top: 2.3125em;
    padding-bottom: 14.875em;
    min-height: 42.25em;
  }
}
.section-easy-enrollment .block-content {
  position: relative;
  max-width: 35.625em;
  order: 2;
}
.section-easy-enrollment .block-content header {
  margin-bottom: 0.9375em;
}
.page-template-your-assessment .section-easy-enrollment .block-content header {
  margin-bottom: 0;
}
.page-template-your-assessment .section-easy-enrollment .block-content header.no-match {
  margin-bottom: 0.9375em;
}
@media only screen and (min-width: 768px) {
  .section-easy-enrollment .block-content header {
    margin-bottom: 1.875em;
  }
  .page-template-your-assessment .section-easy-enrollment .block-content header {
    margin-bottom: 0.75em;
  }
  .page-template-your-assessment .section-easy-enrollment .block-content header.no-match {
    margin-bottom: 1.875em;
  }
}
@media only screen and (min-width: 980px) {
  .section-easy-enrollment .block-content {
    order: 1;
  }
}
.section-easy-enrollment figure {
  max-width: 31.75em;
  margin-bottom: 2.3125em;
  position: relative;
  order: 1;
}
@media only screen and (min-width: 980px) {
  .section-easy-enrollment figure {
    order: 2;
    max-width: 44.75em;
    position: absolute;
    top: -1.625em;
    right: -3.75em;
    z-index: -1;
    margin-bottom: 0;
  }
}
.section-easy-enrollment figure img {
  vertical-align: top;
}
.section-easy-enrollment .lead {
  margin-bottom: 0.3125em;
}
@media only screen and (min-width: 768px) {
  .section-easy-enrollment .lead {
    margin-bottom: 0.2777777778em;
  }
}
.section-easy-enrollment .lead.no-match {
  max-width: 25.5555555556em;
}

.items {
  margin-bottom: 1.25em;
  max-width: 23.125em;
}
.items .single-item {
  display: flex;
  align-items: center;
  text-align: left;
  padding: 0.3125em 0.5625em 0.3125em 0em;
}
.items .single-item.align-start {
  align-items: flex-start;
}
.items .single-item:last-child {
  margin-bottom: 0;
}
.items img {
  background-color: #a4d5ef;
  display: inline-block;
  border-radius: 10px;
  width: 2.125em;
  height: 2.125em;
  flex-shrink: 0;
  margin-right: 0.75em;
}
.items p {
  display: block;
  margin-bottom: 0;
}

@media only screen and (max-width: 479px) {
  .ee-button {
    width: 100%;
  }
}

.section-archive {
  padding-bottom: 2.125em;
  position: relative;
}
.home .section-archive {
  z-index: 100;
  background-color: #ffffff;
}
.blog .section-archive, .archive .section-archive, .search .section-archive {
  padding-bottom: 4.375em;
  background-color: #f7faf9;
  z-index: 10;
}
@media only screen and (min-width: 768px) {
  .blog .section-archive, .archive .section-archive, .search .section-archive {
    padding-bottom: 8.5625em;
  }
}
.blog .section-archive::after, .archive .section-archive::after, .search .section-archive::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  pointer-events: none;
  height: 8.625em;
  background-image: url("../images/bottom-mask.png");
  background-size: cover;
  bottom: -2.3125em;
}
@media only screen and (min-width: 980px) {
  .blog .section-archive::after, .archive .section-archive::after, .search .section-archive::after {
    height: 23.5em;
    background-size: 100% 376px;
    bottom: -6.375em;
  }
}
.section-archive .container {
  padding: 6.8125em 1em 2em;
}
@media only screen and (min-width: 980px) {
  .section-archive .container {
    padding-top: 6em;
  }
}
@media only screen and (min-width: 1084px) {
  .section-archive .container {
    padding-right: 0;
    padding-left: 0;
  }
}
.blog .section-archive .container, .archive .section-archive .container, .search .section-archive .container {
  padding-top: 4.6875em;
  padding-bottom: 1.5625em;
}
@media only screen and (min-width: 768px) {
  .blog .section-archive .container, .archive .section-archive .container, .search .section-archive .container {
    padding-top: 0.625em;
    padding-bottom: 3.75em;
  }
}
@media only screen and (min-width: 768px) {
  .blog .section-archive .container::after, .archive .section-archive .container::after, .search .section-archive .container::after {
    content: "";
    display: inline-block;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("../images/drip-2.png");
    top: -7.875em;
    left: 1.3125em;
    width: 7.125em;
    height: 6.4375em;
    transition: all 0.275s ease-in-out;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1180px) {
  .blog .section-archive .container::after, .archive .section-archive .container::after, .search .section-archive .container::after {
    top: -10.0625em;
    left: -4.1875em;
  }
}
@media only screen and (min-width: 640px) {
  .section-archive .archive-posts {
    display: flex;
    flex-wrap: wrap;
  }
  @supports (display: grid) {
    .section-archive .archive-posts {
      display: -ms-grid;
      -ms-grid-columns: repeat(2, 1fr);
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-column-gap: 1.25em;
      grid-row-gap: 2em;
    }
  }
}
@media only screen and (min-width: 980px) {
  @supports (display: grid) {
    .section-archive .archive-posts {
      grid-template-columns: repeat(3, 1fr);
    }
  }
}

.load-indicator {
  text-align: center;
  transition: all 0.275s 0.275s;
  width: 2.625em;
  position: absolute;
  left: calc(50% - 21px);
  bottom: 0.375em;
  opacity: 0;
}
.load-indicator.is-visible {
  opacity: 1;
  transform: scale(1);
  transform-origin: center;
}
.load-indicator.is-off {
  opacity: 0;
  transform: scale(0.1);
}
.load-indicator svg circle {
  stroke: #DEEDFF;
}

/*Archive Header*/
.archive-header {
  background-color: #ffffff;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.archive-header .archive-header-bg-wrapper {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
}
.archive-header .archive-header-bg-wrapper::before, .archive-header .archive-header-bg-wrapper::after {
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.archive-header .archive-header-bg-wrapper::before {
  z-index: 4;
  height: 16.8125em;
  background-image: url("../images/top-mask.png");
  background-size: cover;
  bottom: -9.1875em;
}
@media only screen and (min-width: 768px) {
  .archive-header .archive-header-bg-wrapper::before {
    height: 32.5em;
    background-size: 101% 520px;
    bottom: -15.5625em;
  }
}
.archive-header .archive-header-bg-wrapper::after {
  top: 0;
  z-index: 3;
  background: transparent linear-gradient(180deg, rgba(45, 56, 55, 0.3529411765) 0%, #727a79 100%) 0% 0% no-repeat padding-box;
  opacity: 0.9;
}
.archive-header .archive-header-bg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 2;
}
.archive-header .container {
  padding: 6.5em 1.25em 8.75em;
  max-width: 41.75em;
  overflow: hidden;
  z-index: 5;
  text-align: center;
}
.search-results .archive-header .container, .archive.date .archive-header .container, .archive.author .archive-header .container {
  padding-bottom: 3.75em;
}
@media only screen and (min-width: 768px) {
  .archive-header .container {
    padding: 11.75em 0 9.25em;
  }
  .search-results .archive-header .container, .archive.date .archive-header .container, .archive.author .archive-header .container {
    padding-bottom: 7.9375em;
  }
}
.archive-header .container header {
  margin-bottom: 2.125em;
}
@media only screen and (min-width: 768px) {
  .archive-header .container header {
    margin-bottom: 1.8125em;
  }
}
.archive-header .container .form-wrapper {
  min-height: 4.875em;
  background-color: transparent;
}

.pagination-wrapper {
  text-align: center;
}

.pagination {
  display: inline-block;
}
.pagination ul {
  display: flex;
  align-items: center;
  padding: 1.25em;
}
@media only screen and (min-width: 480px) {
  .pagination ul {
    padding: 1.5625em;
    background-color: #ffffff;
    box-shadow: 0px 3px 10px rgba(10, 10, 10, 0.1019607843);
    border-radius: 6px;
  }
}
.pagination .next-link,
.pagination .prev-link {
  font-size: 1em;
  position: relative;
}
.pagination .next-link a,
.pagination .prev-link a {
  display: inline-block;
  text-decoration: none;
}
.pagination .next-link a::before,
.pagination .prev-link a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pagination .next-link.inactive,
.pagination .prev-link.inactive {
  opacity: 0.3;
  cursor: not-allowed;
}
.pagination .next-link.inactive:hover,
.pagination .prev-link.inactive:hover {
  box-shadow: unset;
}
.pagination .prev-link {
  margin-right: 0.625em;
}
@media only screen and (min-width: 480px) {
  .pagination .prev-link {
    margin-right: 1em;
  }
}
.pagination .prev-link a {
  color: #363636;
}
.pagination .next-link {
  padding: 0.4375em 1.0625em;
  margin-left: 0.625em;
}
@media only screen and (min-width: 480px) {
  .pagination .next-link {
    margin-left: 1em;
  }
}
.pagination .next-link a {
  color: #ffffff;
}

.watter-fill-wrapper {
  position: absolute;
  z-index: 50;
  width: 100%;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
}
.ee-modal .watter-fill-wrapper {
  height: calc(100vh + 280px);
}
.watter-fill-wrapper.is-hidden {
  display: none;
}

.watter-fill {
  height: 100%;
  background-image: url("../images/wave-2.png");
  background-repeat: repeat-x;
  background-size: 1521px auto;
  background-position-y: 0;
  animation: waterFill 2s linear infinite;
  transform: translateY(100%);
  transition: transform 1.5s ease-in-out;
  opacity: 0.8;
  transform: translateY(100vh);
}
.ee-modal .watter-fill {
  transition-duration: 1s;
}
.watter-fill::after {
  content: "";
  position: absolute;
  top: 18.9375em;
  left: 0;
  width: 100%;
  height: calc(100% - 141px);
  background-color: #1875a7;
  height: 100vh;
}
.sol-is-visible .watter-fill {
  opacity: 0.8;
  transform: translateY(-280px);
  pointer-events: auto;
}
@media only screen and (min-width: 768px) {
  .sol-is-visible .watter-fill {
    transform: translateY(-280px);
  }
}
.ee-modal.is-active .watter-fill {
  opacity: 1;
  transform: translateY(-280px);
}

.post-article {
  position: relative;
  overflow: hidden;
  z-index: 54;
  background-color: #ffffff;
  padding-bottom: 3.9375em;
}
.single .post-article {
  padding-bottom: 0;
}
.post-article ul li, .post-article ol li {
  margin-bottom: 0.6666666667em;
}
.post-article ul li ul, .post-article ul li ol, .post-article ol li ul, .post-article ol li ol {
  margin-bottom: 1.5555555556em;
  margin-top: 1.5555555556em;
}
.post-article ul li ul li, .post-article ul li ol li, .post-article ol li ul li, .post-article ol li ol li {
  font-size: 1em;
}
.post-article .hero-article {
  margin-bottom: 2.25em;
  position: relative;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.post-article .hero-article::before, .post-article .hero-article::after {
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.post-article .hero-article::before {
  z-index: 4;
  height: 7.4375em;
  background-image: url("../images/top-mask-2.png");
  background-size: contain;
  background-position: bottom center;
  bottom: 0;
}
@media screen and (min-width: 948px) {
  .post-article .hero-article::before {
    background-position: center;
    height: 14.25em;
    background-size: cover;
    bottom: 0;
  }
}
.post-article .hero-article::after {
  top: 0;
  z-index: 3;
  background: transparent linear-gradient(180deg, rgba(45, 56, 55, 0.3529411765) 0%, #727A79 100%) 0% 0% no-repeat padding-box;
}
.post-article .hero-article .container {
  max-width: 46.875em;
  margin: auto;
  padding-top: 6.375em;
  z-index: 20;
}
@media only screen and (min-width: 768px) {
  .post-article .hero-article .container {
    padding-top: 10.875em;
    padding-bottom: 5.5em;
  }
}
@media screen and (min-width: 948px) {
  .post-article .hero-article .container {
    padding-bottom: 10.3125em;
  }
}
.post-article .hero-article .container .post-excerpt {
  max-width: 32.375em;
  margin: 0 auto;
  margin-bottom: 1.4375em;
}
@media only screen and (min-width: 768px) {
  .post-article .hero-article .container .post-excerpt {
    margin-bottom: 1.6875em;
  }
}
.post-article .hero-article .container .post-excerpt p {
  margin-bottom: 0;
}
.post-article .hero-article .post-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.3125em;
}
@media only screen and (min-width: 768px) {
  .post-article .hero-article .post-actions {
    align-items: stretch;
    flex-direction: row;
  }
}
.post-article .hero-article .author {
  background-color: rgba(10, 10, 10, 0.3);
  padding: 0.75em 1em;
  border-radius: 16px;
  min-width: 0;
  flex-shrink: 1;
  min-width: 0;
  min-height: 3.9375em;
  margin-bottom: 1.875em;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .post-article .hero-article .author {
    width: auto;
    margin-right: 0.875em;
    margin-bottom: 0;
  }
}
.post-article .hero-article a.avatar {
  display: inline-block;
  width: 2.1875em;
  height: 2.1875em;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 0.6875em;
}
.post-article .hero-article a.avatar img {
  max-width: 100%;
  max-height: 100%;
}
.post-article .hero-article .meta-data {
  display: flex;
  flex-direction: column;
}
.post-article .hero-article .meta-data a {
  font-size: 0.875em;
  letter-spacing: 0.005em;
  color: #575F67;
}
.post-article .hero-article .meta-data a:hover {
  text-decoration: underline;
}
.post-article .hero-article .meta-data .archive-date {
  color: #ffffff;
  line-height: 1.53;
}
.post-article .hero-article .meta-data .archive-date a {
  color: #ffffff;
  font-size: 1em;
  text-decoration: none;
}
.post-article .hero-article .meta-data .archive-date a:hover {
  text-decoration: underline;
}
.post-article .hero-article figure {
  padding-top: 44.9333333333%;
  overflow: hidden;
  position: relative;
  background-color: #CCDCE1;
}
.post-article .hero-article figure img {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.post-article .content-article {
  position: relative;
  z-index: 4;
}
.post-article .content-article .container {
  position: relative;
  width: auto;
  max-width: 42em;
}
.post-article .content-article .container::after {
  display: inline-block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("../images/drip-2.png");
  top: -8.375em;
  left: -1.875em;
  width: 7.125em;
  height: 6.4375em;
  transition: all 0.275s ease-in-out;
}
@media only screen and (min-width: 768px) {
  .post-article .content-article .container::after {
    content: "";
  }
}
@media screen and (min-width: 948px) {
  .post-article .content-article .container::after {
    top: -10.4375em;
  }
}
@media only screen and (min-width: 1035px) {
  .post-article .content-article .container::after {
    left: -14em;
  }
}
.post-article .content-article .the-content {
  word-break: break-word;
}
.post-article .content-article .wp-block-image {
  background-color: #ffffff;
  margin-bottom: 1.5em;
  border-radius: 5px;
  text-align: center;
}
.post-article .content-article .wp-block-image img {
  display: inline-block;
  border-radius: 5px;
}
.post-article .content-article p.wp-block-image {
  margin-bottom: 1.0476190476em;
}
@media only screen and (max-width: 639px) {
  .post-article .content-article .wp-block-embed__wrapper {
    padding-bottom: 75%;
  }
}
.post-article .content-article .wp-block-embed__wrapper iframe {
  max-width: 100%;
  width: 100%;
  min-height: 23.5em;
}
@media only screen and (max-width: 639px) {
  .post-article .content-article .wp-block-embed__wrapper iframe {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    background: no-repeat scroll center #000;
    background-size: cover;
    cursor: pointer;
    min-height: unset;
  }
}
.post-article.page-width-wide .content-article .container {
  max-width: 60.25em;
}
.post-article.static {
  padding-bottom: 3.125em;
}
@media only screen and (min-width: 768px) {
  .post-article.static {
    padding-bottom: 7.125em;
  }
}
.post-article.static.no-content .hero-article {
  margin-bottom: 0;
}
.post-article.static .hero-article .container {
  padding-top: 7.625em;
  padding-bottom: 5.875em;
}
@media only screen and (min-width: 768px) {
  .post-article.static .hero-article .container {
    padding-top: 10.875em;
    padding-bottom: 5.5em;
  }
}
@media screen and (min-width: 948px) {
  .post-article.static .hero-article .container {
    padding-top: 13.375em;
    padding-bottom: 13.75em;
  }
}
.post-article.static .content-article .container::after {
  content: "";
}
@media only screen and (max-width: 767px) {
  .post-article.static .content-article .container::after {
    width: 3.0625em;
    height: 2.6875em;
    left: 1.25em;
    top: -4.6875em;
  }
}
.post-article.static .the-content {
  word-break: break-word;
}
.post-article.static.no-content {
  padding-bottom: 0;
}
.post-article.post-image-off .hero-article::before, .post-article.post-image-off .hero-article::after {
  content: none;
}
.post-article.post-image-off .hero-article .container {
  padding-top: 6.625em;
  padding-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .post-article.post-image-off .hero-article .container {
    padding-top: 11.5em;
    padding-bottom: 2.375em;
  }
}
.post-article.post-image-off .hero-article h1 {
  color: #242424;
}
.post-article.post-image-off .hero-article .post-excerpt p {
  color: #363636;
}
.post-article.post-image-off .content-article .container::after {
  content: none;
}

.page-template-page-ty {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-template-page-ty.admin-bar {
  min-height: calc(100vh - 55px);
}
@media screen and (min-width: 783px) {
  .page-template-page-ty.admin-bar {
    min-height: calc(100vh - 67px);
  }
}
.page-template-page-ty footer {
  margin-top: auto;
}

.section-ty .container {
  padding-top: 6.875em;
  padding-bottom: 1em;
}
@media only screen and (min-width: 980px) {
  .section-ty .container {
    padding-top: 10.625em;
    padding-bottom: 4.625em;
  }
}
.section-ty .ty-box {
  max-width: 37.5em;
  margin: 0 auto;
}
.section-ty header.has-lead {
  margin-bottom: 1.6875em;
}
@media only screen and (min-width: 768px) {
  .section-ty header.has-lead {
    margin-bottom: 1.5em;
  }
}
.section-ty .button-blue, .section-ty input[type=submit] {
  padding: 0.5625em 1em;
  width: 100%;
}

.error404 {
  opacity: 1 !important;
  min-height: 100vh;
}
.error404 header, .error404 nav, .error404 div {
  display: none;
}
.error404 .container {
  display: block;
  max-width: 35.625em;
  width: 95vw;
  padding: 1em;
  border-radius: 0.375em;
  border: 3px solid rgba(78, 88, 95, 0.0980392157);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 640px) {
  .error404 .container {
    padding: 3.125em;
  }
}
.error404 h1, .error404 p, .error404 .button, .error404 .button-blue, .error404 .button-transparent, .error404 .js-load-more, .error404 input[type=submit], .error404 .button-tooltip, .error404 .share-button {
  text-align: center;
}
.error404 h1 {
  margin-bottom: 0.380952381em;
}
.error404 p {
  margin-bottom: 1.1111111111em;
}
.error404 p:first-of-type {
  margin-bottom: 1.04em;
}
.error404 a:not([class^=button]) {
  color: #2C7C8D !important;
}
.error404 a:not([class^=button]):hover {
  text-decoration: no-decoration;
}
.error404 .button, .error404 .button-blue, .error404 .button-transparent, .error404 .js-load-more, .error404 input[type=submit], .error404 .button-tooltip, .error404 .share-button {
  max-width: 17.1875em;
  display: block;
  margin: auto;
}

.page-template-page-search header {
  max-width: 56em;
  margin: 0 auto 0;
  padding-top: 11.4375em;
  padding-bottom: 3.75em;
  border-bottom: 2px solid #F7F6F6;
  text-align: center;
}
@media only screen and (min-width: 480px) {
  .page-template-page-search header {
    padding-top: 14.1875em;
    padding-bottom: 5.125em;
  }
}
.page-template-page-search .archive-list {
  padding-top: 4em;
  padding-bottom: 3.75em;
  max-width: 41.625em;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 480px) {
  .page-template-page-search .archive-list {
    padding-bottom: 4.875em;
  }
}
.page-template-page-search .archive-list h2 {
  text-align: center;
}
@media only screen and (min-width: 480px) {
  .page-template-page-search .archive-list ul {
    columns: 3;
  }
}
.page-template-page-search .archive-list ul li {
  margin-bottom: 1.375em;
  text-align: center;
}
.page-template-page-search .archive-list ul li a {
  font-size: 1.125em;
  letter-spacing: -0.01em;
}
.page-template-page-search .archive-list ul li a:hover {
  text-decoration: underline;
}

.section-subscribe {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.section-subscribe .subscribe-header-bg-wrapper {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
}
.single .section-subscribe .subscribe-header-bg-wrapper {
  display: none;
}
.section-subscribe .subscribe-header-bg-wrapper::before, .section-subscribe .subscribe-header-bg-wrapper::after {
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.section-subscribe .subscribe-header-bg-wrapper::before {
  z-index: 1;
}
.section-subscribe .subscribe-header-bg-wrapper::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1280' height='750'%3E%3Cdefs%3E%3ClinearGradient id='a' y1='.506' x2='1' y2='.5' gradientUnits='objectBoundingBox'%3E%3Cstop offset='0' stop-color='%230d283c'/%3E%3Cstop offset='1' stop-color='%230d283c' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath opacity='.75' fill='url(%23a)' d='M0 0h1280v750H0z'/%3E%3C/svg%3E");
  z-index: 3;
}
.section-subscribe .container {
  padding-top: 3.5em;
  padding-bottom: 5.125em;
}
@media only screen and (min-width: 768px) {
  .section-subscribe .container {
    padding-top: 2.375em;
    padding-bottom: 6.6875em;
  }
}

.sub-box, .gform_confirmation_wrapper {
  padding: 2.5625em 0.625em 6.25em;
  margin: 0 auto;
  max-width: 44.125em;
  overflow: hidden;
  z-index: 5;
  text-align: center;
  box-shadow: 0px 3px 10px rgba(10, 10, 10, 0.1019607843);
  border: 1px solid rgba(10, 10, 10, 0.0117647059);
  border-radius: 6px;
  background-color: #ffffff;
}
@media only screen and (min-width: 980px) {
  .sub-box, .gform_confirmation_wrapper {
    padding: 2.9375em 1.5625em 3.8125em;
  }
}
@media only screen and (min-width: 980px) {
  .sub-box, .gform_confirmation_wrapper {
    padding-left: 3.5625em;
    padding-right: 3.5625em;
  }
}
.sub-box .text-wrapper, .gform_confirmation_wrapper .text-wrapper {
  max-width: 33.125em;
  margin: 0 auto;
  margin-bottom: 1.625em;
}
.sub-box .text-wrapper p:last-child, .gform_confirmation_wrapper .text-wrapper p:last-child {
  margin-bottom: 0;
}
.sub-box .form-wrapper, .gform_confirmation_wrapper .form-wrapper {
  min-height: 4.875em;
  background-color: transparent;
}

.banner {
  transition: all 0.275s ease-in-out;
}
@media only screen and (min-width: 980px) {
  .banner {
    margin-bottom: 2.125em;
  }
}
.banner.is-hidden {
  opacity: 0;
  pointer-events: none;
}
@media only screen and (max-width: 979px) {
  .banner.is-hidden {
    position: absolute;
  }
  .banner.is-hidden + .section-easy-enrollment .container {
    padding-top: 5.875em;
  }
}
.banner .container {
  padding-top: 6.5625em;
}
.banner .container .msg-box {
  position: relative;
  background-color: #84c7bb;
  border-radius: 6px;
  padding: 1.375em 1.5em;
}
.banner .container .msg-box p {
  font-size: 1em;
  letter-spacing: 0;
  line-height: 1.5;
  color: #ffffff;
}
.banner .container .msg-box p:last-child {
  margin-bottom: 0;
}

.close-box {
  position: absolute;
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  top: 0.4375em;
  right: 0.4375em;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31' height='31'%3E%3Cdefs%3E%3Cstyle%3E.b{fill:%23fff}%3C/style%3E%3C/defs%3E%3Cg transform='translate(-909.5 -119)'%3E%3Ccircle cx='15.5' cy='15.5' r='15.5' transform='translate(909.5 119)' style='fill:%236da299'/%3E%3Cpath class='b' d='m920.757 129.343 9.9 9.9-1.415 1.414-9.9-9.9z'/%3E%3Cpath class='b' d='m919.343 139.243 9.9-9.9 1.414 1.415-9.9 9.9z'/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  cursor: pointer;
}

.assessment-results {
  background: linear-gradient(#ffffff 103px, #1875a7 0%);
  position: relative;
}
@media only screen and (min-width: 768px) {
  .assessment-results {
    background: linear-gradient(#ffffff 303px, #1875a7 0%);
  }
}
.assessment-results::before {
  content: "";
  display: block;
  background: url("../images/wave-2.png") center repeat-x;
  background-size: 1521px auto;
  position: absolute;
  top: 5.4375em;
  left: 0;
  width: 100%;
  height: 18.9375em;
  z-index: 3;
  animation: waterFill 6s linear infinite;
}
@media only screen and (max-width: 767px) {
  .assessment-results::before {
    background-size: 337px auto;
    height: 4em;
    top: 4.375em;
    animation: waterFillMob 6s linear infinite;
  }
}
.assessment-results .container {
  max-width: 45.25em;
  z-index: 4;
  padding-top: 10em;
  padding-bottom: 0;
}
@media screen and (min-width: 764px) {
  .assessment-results .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 768px) {
  .assessment-results .container {
    padding-top: 14.75em;
    padding-bottom: 5.6875em;
  }
}
.assessment-results header {
  text-align: center;
  margin-bottom: 2.125em;
}
.assessment-results header h1 {
  line-height: 1.14;
}
.assessment-results header .user-name {
  text-transform: capitalize;
}
.assessment-results .items {
  max-width: unset;
  margin-bottom: 3.9375em;
}
.assessment-results .items.no-match {
  margin-bottom: 0;
}
@media only screen and (min-width: 980px) {
  .assessment-results .items {
    display: flex;
    align-items: center;
    margin-bottom: 3.9375em;
  }
}
.assessment-results .items .single-item {
  background: transparent linear-gradient(90deg, #368EBC 0%, #2888B9 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 4px 36px rgba(0, 0, 0, 0.0509803922);
  border-radius: 8px;
  padding: 0.625em;
  margin-bottom: 0.5em;
}
.assessment-results .items .single-item:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .assessment-results .items .single-item {
    padding: 1.25em;
  }
}
@media only screen and (min-width: 980px) {
  .assessment-results .items .single-item {
    margin-bottom: 0;
    margin-right: 0.5em;
  }
  .assessment-results .items .single-item:last-child {
    margin-right: 0;
  }
}
.assessment-results .items .single-item img {
  width: 2.8125em;
  height: 2.8125em;
}
.assessment-results .items .single-item p {
  margin-bottom: 0;
}
.assessment-results .single-answer {
  background-color: #ffffff;
  box-shadow: 0px 3px 10px rgba(10, 10, 10, 0.1019607843);
  border-radius: 6px;
  padding: 0 1.125em 2em;
  position: relative;
  margin-bottom: 2.5em;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.275s ease-in-out;
}
.assessment-results .single-answer.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .assessment-results .single-answer {
    padding: 0.625em 0.625em 0;
  }
}
.assessment-results .single-answer:last-child {
  margin-bottom: 0;
}
.assessment-results .single-answer header {
  text-align: left;
  margin-bottom: 1.5em;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .assessment-results .single-answer header {
    margin-bottom: 2.125em;
    display: block;
    padding: 2.375em 3em 2.375em;
    padding-right: 8.3125em;
    background-color: #F7FAF9;
    border-radius: 5px;
  }
}
.assessment-results .single-answer header h3 {
  font-weight: normal;
  order: 2;
}
@media only screen and (min-width: 768px) {
  .assessment-results .single-answer header h3 {
    margin-bottom: 0.1428571429em;
  }
}
.assessment-results .single-answer header .icon {
  background-color: #F7FAF9;
  border-radius: 5px 5px 0px 0px;
  padding: 0.625em;
  order: 1;
  margin-bottom: 1.5em;
  margin-right: -1.125em;
  margin-left: -1.125em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .assessment-results .single-answer header .icon {
    margin: 0;
    position: absolute;
    top: 0.625em;
    right: 0.625em;
    padding: 0.625em 1.6875em;
  }
}
.assessment-results .single-answer header .icon img {
  max-width: 6.25em;
}
@media only screen and (min-width: 768px) {
  .assessment-results .single-answer header .icon img {
    max-width: 7.9375em;
  }
}
.assessment-results .single-answer .choice {
  order: 3;
}
.assessment-results .single-answer .choice,
.assessment-results .single-answer .icon,
.assessment-results .single-answer .content {
  display: none;
}
.assessment-results .single-answer .choice.is-visible,
.assessment-results .single-answer .icon.is-visible {
  display: inline-block;
}
@media only screen and (min-width: 768px) {
  .assessment-results .single-answer .content {
    padding: 0 3em 3em;
  }
}
.assessment-results .single-answer .content.is-visible {
  display: block;
}
.assessment-results .single-answer .content p:last-child {
  margin-bottom: 0;
}

.post-article {
  /*
  * Here we here not able to use a mobile first CSS approach.
  * Custom widths are set using inline styles, and on mobile,
  * we need 100% width, so we use important to overwrite the inline style.
  * If the style were set on mobile first, on desktop styles,
  * we would have no way of setting the style again to the inline style.
  */
}
.post-article #start-resizable-editor-section {
  display: none;
}
.post-article .wp-block-audio figcaption {
  margin-top: 0.5em;
  margin-bottom: 1em;
}
.post-article .wp-block-audio audio {
  width: 100%;
  min-width: 300px;
}
.post-article .wp-block-button__link {
  color: #fff;
  background-color: #32373c;
  border: none;
  border-radius: 1.55em;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  font-size: 1.125em;
  padding: 0.667em 1.333em;
  text-align: center;
  text-decoration: none;
  overflow-wrap: break-word;
}
.post-article .wp-block-button__link:hover {
  text-decoration: none;
  opacity: 0.7;
}
.post-article .wp-block-button__link:hover, .post-article .wp-block-button__link:focus, .post-article .wp-block-button__link:active, .post-article .wp-block-button__link:visited {
  color: #fff;
}
.post-article .wp-block-button__link.aligncenter {
  text-align: center;
}
.post-article .wp-block-button__link.alignright {
  /*rtl:ignore*/
  text-align: right;
}
.post-article .wp-block-buttons > .wp-block-button.has-custom-width {
  max-width: none;
}
.post-article .wp-block-buttons > .wp-block-button.has-custom-width .wp-block-button__link {
  width: 100%;
}
.post-article .wp-block-buttons > .wp-block-button.wp-block-button__width-25 {
  width: calc(25% - 0.5em);
}
.post-article .wp-block-buttons > .wp-block-button.wp-block-button__width-50 {
  width: calc(50% - 0.5em);
}
.post-article .wp-block-buttons > .wp-block-button.wp-block-button__width-75 {
  width: calc(75% - 0.5em);
}
.post-article .wp-block-buttons > .wp-block-button.wp-block-button__width-100 {
  margin-right: 0;
  width: 100%;
}
.post-article .wp-block-button.is-style-squared,
.post-article .wp-block-button__link.wp-block-button.is-style-squared {
  border-radius: 0;
}
.post-article .wp-block-button.no-border-radius,
.post-article .wp-block-button__link.no-border-radius {
  border-radius: 0 !important;
}
.post-article .is-style-outline > .wp-block-button__link,
.post-article .wp-block-button__link.is-style-outline {
  border: 2px solid;
}
.post-article .is-style-outline > .wp-block-button__link:not(.has-text-color),
.post-article .wp-block-button__link.is-style-outline:not(.has-text-color) {
  color: #32373c;
}
.post-article .is-style-outline > .wp-block-button__link:not(.has-background),
.post-article .wp-block-button__link.is-style-outline:not(.has-background) {
  background-color: transparent;
}
.post-article .wp-block-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
  /* stylelint-disable indentation */
}
.post-article .wp-block-buttons.is-vertical {
  flex-direction: column;
}
.post-article .wp-block-buttons.is-vertical > .wp-block-button {
  /*rtl:ignore*/
  margin-right: 0;
}
.post-article .wp-block-buttons.is-vertical > .wp-block-button:last-child {
  margin-bottom: 0;
}
.post-article .wp-block-buttons > .wp-block-button {
  display: inline-block;
  /*rtl:ignore*/
  margin-left: 0;
  /*rtl:ignore*/
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}
.post-article .wp-block-buttons > .wp-block-button:last-child {
  /*rtl:ignore*/
  margin-right: 0;
}
.post-article .wp-block-buttons.is-content-justification-left {
  justify-content: flex-start;
}
.post-article .wp-block-buttons.is-content-justification-left.is-vertical {
  align-items: flex-start;
}
.post-article .wp-block-buttons.is-content-justification-center {
  justify-content: center;
}
.post-article .wp-block-buttons.is-content-justification-center.is-vertical {
  align-items: center;
}
.post-article .wp-block-buttons.is-content-justification-right {
  justify-content: flex-end;
}
.post-article .wp-block-buttons.is-content-justification-right > .wp-block-button {
  /*rtl:ignore*/
  margin-left: 0.5em;
  /*rtl:ignore*/
  margin-right: 0;
}
.post-article .wp-block-buttons.is-content-justification-right > .wp-block-button:first-child {
  /*rtl:ignore*/
  margin-left: 0;
}
.post-article .wp-block-buttons.is-content-justification-right.is-vertical {
  align-items: flex-end;
}
.post-article .wp-block-buttons.is-content-justification-space-between {
  justify-content: space-between;
}
.post-article .wp-block-buttons.aligncenter {
  text-align: center;
}
.post-article .wp-block-buttons.alignleft .wp-block-button {
  /*rtl:ignore*/
  margin-left: 0;
  /*rtl:ignore*/
  margin-right: 0.5em;
}
.post-article .wp-block-buttons.alignleft .wp-block-button:last-child {
  /*rtl:ignore*/
  margin-right: 0;
}
.post-article .wp-block-buttons.alignright .wp-block-button {
  /*rtl:ignore*/
  margin-right: 0;
  /*rtl:ignore*/
  margin-left: 0.5em;
}
.post-article .wp-block-buttons.alignright .wp-block-button:first-child {
  /*rtl:ignore*/
  margin-left: 0;
}
.post-article .wp-block-buttons:not(.is-content-justification-space-between,
.is-content-justification-right,
.is-content-justification-left,
.is-content-justification-center) .wp-block-button.aligncenter {
  /* stylelint-enable indentation */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5em;
  width: 100%;
}
.post-article .wp-block-calendar {
  text-align: center;
}
.post-article .wp-block-calendar th,
.post-article .wp-block-calendar tbody td {
  padding: 0.25em;
  border: 1px solid #ddd;
}
.post-article .wp-block-calendar tfoot td {
  border: none;
}
.post-article .wp-block-calendar table {
  width: 100%;
  border-collapse: collapse;
}
.post-article .wp-block-calendar table th {
  font-weight: 400;
  background: #ddd;
}
.post-article .wp-block-calendar a {
  text-decoration: underline;
}
.post-article .wp-block-calendar table tbody,
.post-article .wp-block-calendar table caption {
  color: #40464d;
}
.post-article .wp-block-categories.alignleft {
  /*rtl:ignore*/
  margin-right: 2em;
}
.post-article .wp-block-categories.alignright {
  /*rtl:ignore*/
  margin-left: 2em;
}
.post-article .wp-block-code code {
  display: block;
  white-space: pre-wrap;
  overflow-wrap: break-word;
}
.post-article .wp-block-columns {
  display: flex;
  margin-bottom: 1.75em;
  flex-wrap: wrap;
  justify-content: center;
  /**
  * All Columns Alignment
  */
}
@media (max-width: 599px) {
  .post-article .wp-block-columns {
    margin-bottom: 0;
  }
}
@media (min-width: 782px) {
  .post-article .wp-block-columns {
    flex-wrap: nowrap;
  }
}
.post-article .wp-block-columns.has-background {
  padding: 1.25em 2.375em;
}
.post-article .wp-block-columns.are-vertically-aligned-top {
  align-items: flex-start;
}
.post-article .wp-block-columns.are-vertically-aligned-center {
  align-items: center;
}
.post-article .wp-block-columns.are-vertically-aligned-bottom {
  align-items: flex-end;
}
.post-article .wp-block-column {
  flex-grow: 1;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
  /**
  * Individual Column Alignment
  */
}
@media (max-width: 599px) {
  .post-article .wp-block-column {
    flex-basis: 100% !important;
    margin-bottom: 1.75em;
  }
}
@media (min-width: 600px) and (max-width: 781px) {
  .post-article .wp-block-column:not(:only-child) {
    flex-basis: calc(50% - 1em) !important;
    flex-grow: 0;
  }
  .post-article .wp-block-column:nth-child(even) {
    margin-left: 2em;
  }
  .post-article .wp-block-column:first-child,
  .post-article .wp-block-column:nth-child(2) {
    margin-bottom: 2em;
  }
}
@media (min-width: 782px) {
  .post-article .wp-block-column {
    flex-basis: 0;
    flex-grow: 1;
  }
  .post-article .wp-block-column[style*=flex-basis] {
    flex-grow: 0;
  }
  .post-article .wp-block-column:not(:first-child) {
    margin-left: 2em;
  }
}
.post-article .wp-block-column.is-vertically-aligned-top {
  align-self: flex-start;
}
.post-article .wp-block-column.is-vertically-aligned-center {
  -ms-grid-row-align: center;
  align-self: center;
}
.post-article .wp-block-column.is-vertically-aligned-bottom {
  align-self: flex-end;
}
.post-article .wp-block-column.is-vertically-aligned-top, .post-article .wp-block-column.is-vertically-aligned-center, .post-article .wp-block-column.is-vertically-aligned-bottom {
  width: 100%;
}
.post-article .wp-block-cover-image,
.post-article .wp-block-cover {
  position: relative;
  background-size: cover;
  background-position: center center;
  min-height: 430px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  box-sizing: border-box;
  margin-bottom: 1.5em;
  /**
  * Set a default background color for has-background-dim _unless_ it includes another
  * background-color class (e.g. has-green-background-color). The presence of another
  * background-color class implies that another style will provide the background color
  * for the overlay.
  *
  * See:
  *   - Issue with background color specificity: https://github.com/WordPress/gutenberg/issues/26545
  *   - Issue with alternative fix: https://github.com/WordPress/gutenberg/issues/26545
  */
}
.post-article .wp-block-cover-image.has-parallax,
.post-article .wp-block-cover.has-parallax {
  background-attachment: fixed;
}
@supports (-webkit-overflow-scrolling: touch) {
  .post-article .wp-block-cover-image.has-parallax,
  .post-article .wp-block-cover.has-parallax {
    background-attachment: scroll;
  }
}
@media (prefers-reduced-motion: reduce) {
  .post-article .wp-block-cover-image.has-parallax,
  .post-article .wp-block-cover.has-parallax {
    background-attachment: scroll;
  }
}
.post-article .wp-block-cover-image.is-repeated,
.post-article .wp-block-cover.is-repeated {
  background-repeat: repeat;
  background-size: auto;
}
.post-article .wp-block-cover-image.has-background-dim:not([class*=-background-color]),
.post-article .wp-block-cover.has-background-dim:not([class*=-background-color]) {
  background-color: #000;
}
.post-article .wp-block-cover-image.has-background-dim::before,
.post-article .wp-block-cover.has-background-dim::before {
  content: "";
  background-color: inherit;
}
.post-article .wp-block-cover-image.has-background-dim:not(.has-background-gradient)::before,
.post-article .wp-block-cover-image .wp-block-cover__gradient-background,
.post-article .wp-block-cover.has-background-dim:not(.has-background-gradient)::before,
.post-article .wp-block-cover .wp-block-cover__gradient-background {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  opacity: 0.5;
}
.post-article .wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient)::before,
.post-article .wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,
.post-article .wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient)::before,
.post-article .wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background {
  opacity: 0.1;
}
.post-article .wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient)::before,
.post-article .wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,
.post-article .wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient)::before,
.post-article .wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background {
  opacity: 0.2;
}
.post-article .wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient)::before,
.post-article .wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,
.post-article .wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient)::before,
.post-article .wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background {
  opacity: 0.3;
}
.post-article .wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient)::before,
.post-article .wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,
.post-article .wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient)::before,
.post-article .wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background {
  opacity: 0.4;
}
.post-article .wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient)::before,
.post-article .wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,
.post-article .wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient)::before,
.post-article .wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background {
  opacity: 0.5;
}
.post-article .wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient)::before,
.post-article .wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,
.post-article .wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient)::before,
.post-article .wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background {
  opacity: 0.6;
}
.post-article .wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient)::before,
.post-article .wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,
.post-article .wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient)::before,
.post-article .wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background {
  opacity: 0.7;
}
.post-article .wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient)::before,
.post-article .wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,
.post-article .wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient)::before,
.post-article .wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background {
  opacity: 0.8;
}
.post-article .wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient)::before,
.post-article .wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,
.post-article .wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient)::before,
.post-article .wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background {
  opacity: 0.9;
}
.post-article .wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient)::before,
.post-article .wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,
.post-article .wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient)::before,
.post-article .wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background {
  opacity: 1;
}
.post-article .wp-block-cover-image.alignleft, .post-article .wp-block-cover-image.alignright,
.post-article .wp-block-cover.alignleft,
.post-article .wp-block-cover.alignright {
  max-width: 420px;
  width: 100%;
}
.post-article .wp-block-cover-image::after,
.post-article .wp-block-cover::after {
  display: block;
  content: "";
  font-size: 0;
  min-height: inherit;
}
@supports (position: -webkit-sticky) or (position: sticky) {
  .post-article .wp-block-cover-image::after,
  .post-article .wp-block-cover::after {
    content: none;
  }
}
.post-article .wp-block-cover-image.aligncenter, .post-article .wp-block-cover-image.alignleft, .post-article .wp-block-cover-image.alignright,
.post-article .wp-block-cover.aligncenter,
.post-article .wp-block-cover.alignleft,
.post-article .wp-block-cover.alignright {
  display: flex;
}
.post-article .wp-block-cover-image .wp-block-cover__inner-container,
.post-article .wp-block-cover .wp-block-cover__inner-container {
  width: 100%;
  z-index: 1;
  color: #fff;
}
.post-article .wp-block-cover-image p:not(.has-text-color),
.post-article .wp-block-cover-image h1:not(.has-text-color),
.post-article .wp-block-cover-image h2:not(.has-text-color),
.post-article .wp-block-cover-image h3:not(.has-text-color),
.post-article .wp-block-cover-image h4:not(.has-text-color),
.post-article .wp-block-cover-image h5:not(.has-text-color),
.post-article .wp-block-cover-image h6:not(.has-text-color),
.post-article .wp-block-cover-image .wp-block-subhead:not(.has-text-color),
.post-article .wp-block-cover p:not(.has-text-color),
.post-article .wp-block-cover h1:not(.has-text-color),
.post-article .wp-block-cover h2:not(.has-text-color),
.post-article .wp-block-cover h3:not(.has-text-color),
.post-article .wp-block-cover h4:not(.has-text-color),
.post-article .wp-block-cover h5:not(.has-text-color),
.post-article .wp-block-cover h6:not(.has-text-color),
.post-article .wp-block-cover .wp-block-subhead:not(.has-text-color) {
  color: inherit;
}
.post-article .wp-block-cover-image.is-position-top-left,
.post-article .wp-block-cover.is-position-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}
.post-article .wp-block-cover-image.is-position-top-center,
.post-article .wp-block-cover.is-position-top-center {
  align-items: flex-start;
  justify-content: center;
}
.post-article .wp-block-cover-image.is-position-top-right,
.post-article .wp-block-cover.is-position-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}
.post-article .wp-block-cover-image.is-position-center-left,
.post-article .wp-block-cover.is-position-center-left {
  align-items: center;
  justify-content: flex-start;
}
.post-article .wp-block-cover-image.is-position-center-center,
.post-article .wp-block-cover.is-position-center-center {
  align-items: center;
  justify-content: center;
}
.post-article .wp-block-cover-image.is-position-center-right,
.post-article .wp-block-cover.is-position-center-right {
  align-items: center;
  justify-content: flex-end;
}
.post-article .wp-block-cover-image.is-position-bottom-left,
.post-article .wp-block-cover.is-position-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}
.post-article .wp-block-cover-image.is-position-bottom-center,
.post-article .wp-block-cover.is-position-bottom-center {
  align-items: flex-end;
  justify-content: center;
}
.post-article .wp-block-cover-image.is-position-bottom-right,
.post-article .wp-block-cover.is-position-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}
.post-article .wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container,
.post-article .wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container {
  margin: 0;
  width: auto;
}
.post-article .wp-block-cover-image img.wp-block-cover__image-background,
.post-article .wp-block-cover-image video.wp-block-cover__video-background,
.post-article .wp-block-cover img.wp-block-cover__image-background,
.post-article .wp-block-cover video.wp-block-cover__video-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
  object-fit: cover;
  outline: none;
  border: none;
  box-shadow: none;
}
.post-article .wp-block-cover__video-background {
  z-index: 0;
}
.post-article .wp-block-cover__image-background {
  z-index: 0;
}
.post-article section.wp-block-cover-image h2,
.post-article .wp-block-cover-image-text,
.post-article .wp-block-cover-text {
  color: #fff;
}
.post-article section.wp-block-cover-image h2 a,
.post-article section.wp-block-cover-image h2 a:hover,
.post-article section.wp-block-cover-image h2 a:focus,
.post-article section.wp-block-cover-image h2 a:active,
.post-article .wp-block-cover-image-text a,
.post-article .wp-block-cover-image-text a:hover,
.post-article .wp-block-cover-image-text a:focus,
.post-article .wp-block-cover-image-text a:active,
.post-article .wp-block-cover-text a,
.post-article .wp-block-cover-text a:hover,
.post-article .wp-block-cover-text a:focus,
.post-article .wp-block-cover-text a:active {
  color: #fff;
}
.post-article .wp-block-cover-image .wp-block-cover.has-left-content {
  justify-content: flex-start;
}
.post-article .wp-block-cover-image .wp-block-cover.has-right-content {
  justify-content: flex-end;
}
.post-article section.wp-block-cover-image.has-left-content > h2,
.post-article .wp-block-cover-image.has-left-content .wp-block-cover-image-text,
.post-article .wp-block-cover.has-left-content .wp-block-cover-text {
  margin-left: 0;
  text-align: left;
}
.post-article section.wp-block-cover-image.has-right-content > h2,
.post-article .wp-block-cover-image.has-right-content .wp-block-cover-image-text,
.post-article .wp-block-cover.has-right-content .wp-block-cover-text {
  margin-right: 0;
  text-align: right;
}
.post-article section.wp-block-cover-image > h2,
.post-article .wp-block-cover-image .wp-block-cover-image-text,
.post-article .wp-block-cover .wp-block-cover-text {
  font-size: 2em;
  line-height: 1.25;
  z-index: 1;
  margin-bottom: 0;
  max-width: 840px;
  padding: 0.44em;
  text-align: center;
}
.post-article .wp-block[data-align=left] > [data-type="core/embed"],
.post-article .wp-block[data-align=right] > [data-type="core/embed"],
.post-article .wp-block-embed.alignleft,
.post-article .wp-block-embed.alignright {
  max-width: 360px;
  width: 100%;
}
.post-article .wp-block[data-align=left] > [data-type="core/embed"] .wp-block-embed__wrapper,
.post-article .wp-block[data-align=right] > [data-type="core/embed"] .wp-block-embed__wrapper,
.post-article .wp-block-embed.alignleft .wp-block-embed__wrapper,
.post-article .wp-block-embed.alignright .wp-block-embed__wrapper {
  min-width: 280px;
}
.post-article .wp-block-cover .wp-block-embed {
  min-width: 320px;
  min-height: 240px;
}
.post-article .wp-block-embed {
  margin-bottom: 1em;
}
.post-article .wp-block-embed figcaption {
  margin-top: 0;
  margin-bottom: 0;
}
.post-article .wp-block-embed iframe {
  max-width: 100%;
}
.post-article .wp-block-embed__wrapper {
  position: relative;
}
.post-article .wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper::before {
  content: "";
  display: block;
  padding-top: 50%;
}
.post-article .wp-embed-responsive .wp-has-aspect-ratio iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.post-article .wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper::before {
  padding-top: 42.85%;
}
.post-article .wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper::before {
  padding-top: 50%;
}
.post-article .wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper::before {
  padding-top: 56.25%;
}
.post-article .wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper::before {
  padding-top: 75%;
}
.post-article .wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper::before {
  padding-top: 100%;
}
.post-article .wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper::before {
  padding-top: 177.77%;
}
.post-article .wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper::before {
  padding-top: 200%;
}
.post-article .wp-block-file {
  margin-bottom: 1.5em;
}
.post-article .wp-block-file.aligncenter {
  text-align: center;
}
.post-article .wp-block-file.alignright {
  /*rtl:ignore*/
  text-align: right;
}
.post-article .wp-block-file .wp-block-file__button {
  background: #32373c;
  border-radius: 2em;
  color: #fff;
  font-size: 0.8em;
  padding: 0.5em 1em;
}
.post-article .wp-block-file a.wp-block-file__button {
  text-decoration: none;
}
.post-article .wp-block-file a.wp-block-file__button:hover, .post-article .wp-block-file a.wp-block-file__button:visited, .post-article .wp-block-file a.wp-block-file__button:focus, .post-article .wp-block-file a.wp-block-file__button:active {
  box-shadow: none;
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
}
.post-article .wp-block-file * + .wp-block-file__button {
  margin-left: 0.75em;
}
.post-article .wp-block-gallery,
.post-article .blocks-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.post-article .wp-block-gallery .blocks-gallery-image,
.post-article .wp-block-gallery .blocks-gallery-item,
.post-article .blocks-gallery-grid .blocks-gallery-image,
.post-article .blocks-gallery-grid .blocks-gallery-item {
  margin: 0 1em 1em 0;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: calc(50% - 1em);
}
.post-article .wp-block-gallery .blocks-gallery-image:nth-of-type(even),
.post-article .wp-block-gallery .blocks-gallery-item:nth-of-type(even),
.post-article .blocks-gallery-grid .blocks-gallery-image:nth-of-type(even),
.post-article .blocks-gallery-grid .blocks-gallery-item:nth-of-type(even) {
  margin-right: 0;
}
.post-article .wp-block-gallery .blocks-gallery-image figure,
.post-article .wp-block-gallery .blocks-gallery-item figure,
.post-article .blocks-gallery-grid .blocks-gallery-image figure,
.post-article .blocks-gallery-grid .blocks-gallery-item figure {
  margin: 0;
  height: 100%;
}
@supports (position: -webkit-sticky) or (position: sticky) {
  .post-article .wp-block-gallery .blocks-gallery-image figure,
  .post-article .wp-block-gallery .blocks-gallery-item figure,
  .post-article .blocks-gallery-grid .blocks-gallery-image figure,
  .post-article .blocks-gallery-grid .blocks-gallery-item figure {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }
}
.post-article .wp-block-gallery .blocks-gallery-image img,
.post-article .wp-block-gallery .blocks-gallery-item img,
.post-article .blocks-gallery-grid .blocks-gallery-image img,
.post-article .blocks-gallery-grid .blocks-gallery-item img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
}
@supports (position: -webkit-sticky) or (position: sticky) {
  .post-article .wp-block-gallery .blocks-gallery-image img,
  .post-article .wp-block-gallery .blocks-gallery-item img,
  .post-article .blocks-gallery-grid .blocks-gallery-image img,
  .post-article .blocks-gallery-grid .blocks-gallery-item img {
    width: auto;
  }
}
.post-article .wp-block-gallery .blocks-gallery-image figcaption,
.post-article .wp-block-gallery .blocks-gallery-item figcaption,
.post-article .blocks-gallery-grid .blocks-gallery-image figcaption,
.post-article .blocks-gallery-grid .blocks-gallery-item figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-height: 100%;
  overflow: auto;
  padding: 3em 0.77em 0.7em;
  color: #fff;
  text-align: center;
  font-size: 0.8em;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.3) 70%, transparent);
  box-sizing: border-box;
  margin: 0;
}
.post-article .wp-block-gallery .blocks-gallery-image figcaption img,
.post-article .wp-block-gallery .blocks-gallery-item figcaption img,
.post-article .blocks-gallery-grid .blocks-gallery-image figcaption img,
.post-article .blocks-gallery-grid .blocks-gallery-item figcaption img {
  display: inline;
}
.post-article .wp-block-gallery figcaption,
.post-article .blocks-gallery-grid figcaption {
  flex-grow: 1;
  margin-bottom: 1em;
}
.post-article .wp-block-gallery.is-cropped .blocks-gallery-image a,
.post-article .wp-block-gallery.is-cropped .blocks-gallery-image img, .post-article .wp-block-gallery.is-cropped .blocks-gallery-item a,
.post-article .wp-block-gallery.is-cropped .blocks-gallery-item img,
.post-article .blocks-gallery-grid.is-cropped .blocks-gallery-image a,
.post-article .blocks-gallery-grid.is-cropped .blocks-gallery-image img,
.post-article .blocks-gallery-grid.is-cropped .blocks-gallery-item a,
.post-article .blocks-gallery-grid.is-cropped .blocks-gallery-item img {
  width: 100%;
}
@supports (position: -webkit-sticky) or (position: sticky) {
  .post-article .wp-block-gallery.is-cropped .blocks-gallery-image a,
  .post-article .wp-block-gallery.is-cropped .blocks-gallery-image img, .post-article .wp-block-gallery.is-cropped .blocks-gallery-item a,
  .post-article .wp-block-gallery.is-cropped .blocks-gallery-item img,
  .post-article .blocks-gallery-grid.is-cropped .blocks-gallery-image a,
  .post-article .blocks-gallery-grid.is-cropped .blocks-gallery-image img,
  .post-article .blocks-gallery-grid.is-cropped .blocks-gallery-item a,
  .post-article .blocks-gallery-grid.is-cropped .blocks-gallery-item img {
    height: 100%;
    flex: 1;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.post-article .wp-block-gallery.columns-1 .blocks-gallery-image, .post-article .wp-block-gallery.columns-1 .blocks-gallery-item,
.post-article .blocks-gallery-grid.columns-1 .blocks-gallery-image,
.post-article .blocks-gallery-grid.columns-1 .blocks-gallery-item {
  width: 100%;
  margin-right: 0;
}
@media (min-width: 600px) {
  .post-article .wp-block-gallery.columns-3 .blocks-gallery-image, .post-article .wp-block-gallery.columns-3 .blocks-gallery-item,
  .post-article .blocks-gallery-grid.columns-3 .blocks-gallery-image,
  .post-article .blocks-gallery-grid.columns-3 .blocks-gallery-item {
    width: calc(33.3333333333% - 0.6666666667em);
    margin-right: 1em;
  }
  .post-article .wp-block-gallery.columns-4 .blocks-gallery-image, .post-article .wp-block-gallery.columns-4 .blocks-gallery-item,
  .post-article .blocks-gallery-grid.columns-4 .blocks-gallery-image,
  .post-article .blocks-gallery-grid.columns-4 .blocks-gallery-item {
    width: calc(25% - 0.75em);
    margin-right: 1em;
  }
  .post-article .wp-block-gallery.columns-5 .blocks-gallery-image, .post-article .wp-block-gallery.columns-5 .blocks-gallery-item,
  .post-article .blocks-gallery-grid.columns-5 .blocks-gallery-image,
  .post-article .blocks-gallery-grid.columns-5 .blocks-gallery-item {
    width: calc(20% - 0.8em);
    margin-right: 1em;
  }
  .post-article .wp-block-gallery.columns-6 .blocks-gallery-image, .post-article .wp-block-gallery.columns-6 .blocks-gallery-item,
  .post-article .blocks-gallery-grid.columns-6 .blocks-gallery-image,
  .post-article .blocks-gallery-grid.columns-6 .blocks-gallery-item {
    width: calc(16.6666666667% - 0.8333333333em);
    margin-right: 1em;
  }
  .post-article .wp-block-gallery.columns-7 .blocks-gallery-image, .post-article .wp-block-gallery.columns-7 .blocks-gallery-item,
  .post-article .blocks-gallery-grid.columns-7 .blocks-gallery-image,
  .post-article .blocks-gallery-grid.columns-7 .blocks-gallery-item {
    width: calc(14.2857142857% - 0.8571428571em);
    margin-right: 1em;
  }
  .post-article .wp-block-gallery.columns-8 .blocks-gallery-image, .post-article .wp-block-gallery.columns-8 .blocks-gallery-item,
  .post-article .blocks-gallery-grid.columns-8 .blocks-gallery-image,
  .post-article .blocks-gallery-grid.columns-8 .blocks-gallery-item {
    width: calc(12.5% - 0.875em);
    margin-right: 1em;
  }
  .post-article .wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n), .post-article .wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n),
  .post-article .blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n),
  .post-article .blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n) {
    margin-right: 0;
  }
  .post-article .wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n), .post-article .wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n),
  .post-article .blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n),
  .post-article .blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .post-article .wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n), .post-article .wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n),
  .post-article .blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n),
  .post-article .blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n) {
    margin-right: 0;
  }
  .post-article .wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n), .post-article .wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n),
  .post-article .blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n),
  .post-article .blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n) {
    margin-right: 0;
  }
  .post-article .wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n), .post-article .wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n),
  .post-article .blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n),
  .post-article .blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n) {
    margin-right: 0;
  }
  .post-article .wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n), .post-article .wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n),
  .post-article .blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n),
  .post-article .blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n) {
    margin-right: 0;
  }
  .post-article .wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n), .post-article .wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n),
  .post-article .blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n),
  .post-article .blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n) {
    margin-right: 0;
  }
  .post-article .wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n), .post-article .wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n),
  .post-article .blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n),
  .post-article .blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n) {
    margin-right: 0;
  }
}
.post-article .wp-block-gallery .blocks-gallery-image:last-child,
.post-article .wp-block-gallery .blocks-gallery-item:last-child,
.post-article .blocks-gallery-grid .blocks-gallery-image:last-child,
.post-article .blocks-gallery-grid .blocks-gallery-item:last-child {
  margin-right: 0;
}
.post-article .wp-block-gallery.alignleft, .post-article .wp-block-gallery.alignright,
.post-article .blocks-gallery-grid.alignleft,
.post-article .blocks-gallery-grid.alignright {
  max-width: 420px;
  width: 100%;
}
.post-article .wp-block-gallery.aligncenter .blocks-gallery-item figure,
.post-article .blocks-gallery-grid.aligncenter .blocks-gallery-item figure {
  justify-content: center;
}
.post-article .wp-block-group {
  box-sizing: border-box;
}
.post-article h1.has-background,
.post-article h2.has-background,
.post-article h3.has-background,
.post-article h4.has-background,
.post-article h5.has-background,
.post-article h6.has-background {
  padding: 1.25em 2.375em;
}
.post-article .wp-block-image {
  margin-bottom: 1em;
}
.post-article .wp-block-image img {
  max-width: 100%;
}
.post-article .wp-block-image.aligncenter {
  text-align: center;
}
.post-article .wp-block-image.alignfull img, .post-article .wp-block-image.alignwide img {
  width: 100%;
}
.post-article .wp-block-image .alignleft,
.post-article .wp-block-image .alignright,
.post-article .wp-block-image .aligncenter {
  display: table;
}
.post-article .wp-block-image .alignleft > figcaption,
.post-article .wp-block-image .alignright > figcaption,
.post-article .wp-block-image .aligncenter > figcaption {
  display: table-caption;
  caption-side: bottom;
}
.post-article .wp-block-image .alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-left: 0;
  margin-right: 1em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.post-article .wp-block-image .alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-right: 0;
  margin-left: 1em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 767px) {
  .post-article .wp-block-image .alignleft,
  .post-article .wp-block-image .alignright {
    float: none;
    margin-right: 0;
    margin-left: 0;
  }
}
.post-article .wp-block-image .aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.post-article .wp-block-image figcaption {
  margin-top: 0;
  margin-bottom: 0;
}
.post-article .wp-block-image.is-style-rounded img {
  border-radius: 9999px;
}
.post-article .wp-block-image.is-style-circle-mask img {
  border-radius: 9999px;
}
@supports (-webkit-mask-image: none) or (mask-image: none) or (-webkit-mask-image: none) {
  .post-article .wp-block-image.is-style-circle-mask img {
    /* stylelint-disable */
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');
    /* stylelint-enable */
    mask-mode: alpha;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    border-radius: 0;
  }
}
.post-article .wp-block-latest-comments__comment {
  line-height: 1.1;
  list-style: none;
  margin-bottom: 1em;
}
.post-article .has-avatars .wp-block-latest-comments__comment {
  min-height: 2.25em;
  list-style: none;
}
.post-article .has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta,
.post-article .has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt {
  margin-left: 3.25em;
}
.post-article .has-dates .wp-block-latest-comments__comment, .post-article .has-excerpts .wp-block-latest-comments__comment {
  line-height: 1.5;
}
.post-article .wp-block-latest-comments__comment-excerpt p {
  font-size: 0.875em;
  line-height: 1.8;
  margin: 0.36em 0 1.4em;
}
.post-article .wp-block-latest-comments__comment-date {
  display: block;
  font-size: 0.75em;
}
.post-article .wp-block-latest-comments .avatar,
.post-article .wp-block-latest-comments__comment-avatar {
  border-radius: 1.5em;
  display: block;
  float: left;
  height: 2.5em;
  margin-right: 0.75em;
  width: 2.5em;
}
.post-article .wp-block-latest-posts.alignleft {
  /*rtl:ignore*/
  margin-right: 2em;
}
.post-article .wp-block-latest-posts.alignright {
  /*rtl:ignore*/
  margin-left: 2em;
}
.post-article .wp-block-latest-posts.wp-block-latest-posts__list {
  list-style: none;
}
.post-article .wp-block-latest-posts.wp-block-latest-posts__list li {
  clear: both;
}
.post-article .wp-block-latest-posts.is-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.post-article .wp-block-latest-posts.is-grid li {
  margin: 0 1.25em 1.25em 0;
  width: 100%;
}
@media (min-width: 600px) {
  .post-article .wp-block-latest-posts.columns-2 li {
    width: calc(50% - 1.25em + 0.625em);
  }
  .post-article .wp-block-latest-posts.columns-2 li:nth-child(2n) {
    margin-right: 0;
  }
  .post-article .wp-block-latest-posts.columns-3 li {
    width: calc(33.3333333333% - 1.25em + 0.4166666667em);
  }
  .post-article .wp-block-latest-posts.columns-3 li:nth-child(3n) {
    margin-right: 0;
  }
  .post-article .wp-block-latest-posts.columns-4 li {
    width: calc(25% - 1.25em + 0.3125em);
  }
  .post-article .wp-block-latest-posts.columns-4 li:nth-child(4n) {
    margin-right: 0;
  }
  .post-article .wp-block-latest-posts.columns-5 li {
    width: calc(20% - 1.25em + 0.25em);
  }
  .post-article .wp-block-latest-posts.columns-5 li:nth-child(5n) {
    margin-right: 0;
  }
  .post-article .wp-block-latest-posts.columns-6 li {
    width: calc(16.6666666667% - 1.25em + 0.2083333333em);
  }
  .post-article .wp-block-latest-posts.columns-6 li:nth-child(6n) {
    margin-right: 0;
  }
}
.post-article .wp-block-latest-posts__post-date,
.post-article .wp-block-latest-posts__post-author {
  display: block;
  color: #555;
  font-size: 0.8125em;
}
.post-article .wp-block-latest-posts__post-excerpt {
  margin-top: 0.5em;
  margin-bottom: 1em;
}
.post-article .wp-block-latest-posts__featured-image a {
  display: inline-block;
}
.post-article .wp-block-latest-posts__featured-image img {
  height: auto;
  width: auto;
}
.post-article .wp-block-latest-posts__featured-image.alignleft {
  /*rtl:ignore*/
  margin-right: 1em;
}
.post-article .wp-block-latest-posts__featured-image.alignright {
  /*rtl:ignore*/
  margin-left: 1em;
}
.post-article .wp-block-latest-posts__featured-image.aligncenter {
  margin-bottom: 1em;
  text-align: center;
}
.post-article .block-editor-image-alignment-control__row .components-base-control__field {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.post-article .block-editor-image-alignment-control__row .components-base-control__field .components-base-control__label {
  margin-bottom: 0;
}
.post-article ol.has-background,
.post-article ul.has-background {
  padding: 1.25em 2.375em;
}
.post-article .wp-block-media-text {
  /*!rtl:begin:ignore*/
  direction: ltr;
  /*!rtl:end:ignore*/
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 1fr;
  grid-template-columns: 50% 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  margin-bottom: 1.5em;
}
.post-article .wp-block-media-text.has-media-on-the-right {
  -ms-grid-columns: 1fr 50%;
  grid-template-columns: 1fr 50%;
}
.post-article .wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content,
.post-article .wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media {
  -ms-grid-row-align: start;
  align-self: start;
}
.post-article .wp-block-media-text .wp-block-media-text__content,
.post-article .wp-block-media-text .wp-block-media-text__media,
.post-article .wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content,
.post-article .wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media {
  -ms-grid-row-align: center;
  align-self: center;
}
.post-article .wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content,
.post-article .wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media {
  -ms-grid-row-align: end;
  align-self: end;
}
.post-article .wp-block-media-text .wp-block-media-text__media {
  /*!rtl:begin:ignore*/
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  /*!rtl:end:ignore*/
  margin: 0;
}
.post-article .wp-block-media-text .wp-block-media-text__content {
  direction: ltr;
  /*!rtl:begin:ignore*/
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  /*!rtl:end:ignore*/
  padding: 0 8% 0 8%;
  word-break: break-word;
}
.post-article .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
  /*!rtl:begin:ignore*/
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  /*!rtl:end:ignore*/
}
.post-article .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  /*!rtl:begin:ignore*/
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  /*!rtl:end:ignore*/
}
.post-article .wp-block-media-text__media img,
.post-article .wp-block-media-text__media video {
  max-width: unset;
  width: 100%;
  vertical-align: middle;
}
.post-article .wp-block-media-text.is-image-fill .wp-block-media-text__media {
  height: 100%;
  min-height: 250px;
  background-size: cover;
}
.post-article .wp-block-media-text.is-image-fill .wp-block-media-text__media > a {
  display: block;
  height: 100%;
}
.post-article .wp-block-media-text.is-image-fill .wp-block-media-text__media img {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
@media (max-width: 600px) {
  .post-article .wp-block-media-text.is-stacked-on-mobile {
    -ms-grid-columns: 100% !important;
    grid-template-columns: 100% !important;
  }
  .post-article .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .post-article .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}
.post-article .wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-navigation__container {
  color: #1e1e1e;
  background-color: #fff;
  min-width: 200px;
}
.post-article .items-justified-left > ul {
  justify-content: flex-start;
}
.post-article .items-justified-center > ul {
  justify-content: center;
}
.post-article .items-justified-right > ul {
  justify-content: flex-end;
}
.post-article .items-justified-space-between > ul {
  justify-content: space-between;
}
.post-article .wp-block-navigation-link {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
}
.post-article .wp-block-navigation-link .wp-block-navigation__container:empty {
  display: none;
}
.post-article .wp-block-navigation__container {
  list-style: none;
  margin: 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}
.post-article .is-vertical .wp-block-navigation__container {
  display: block;
}
.post-article .has-child > .wp-block-navigation-link__content {
  padding-right: 0.5em;
}
.post-article .has-child .wp-block-navigation__container {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: inherit;
  color: inherit;
  position: absolute;
  left: 0;
  top: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.1s linear;
  visibility: hidden;
}
.post-article .has-child .wp-block-navigation__container > .wp-block-navigation-link > .wp-block-navigation-link__content {
  flex-grow: 1;
}
.post-article .has-child .wp-block-navigation__container > .wp-block-navigation-link > .wp-block-navigation-link__submenu-icon {
  padding-right: 0.5em;
}
@media (min-width: 782px) {
  .post-article .has-child .wp-block-navigation__container {
    left: 1.5em;
  }
  .post-article .has-child .wp-block-navigation__container .wp-block-navigation__container {
    left: 100%;
    top: -1px;
  }
  .post-article .has-child .wp-block-navigation__container .wp-block-navigation__container::before {
    content: "";
    position: absolute;
    right: 100%;
    height: 100%;
    display: block;
    width: 0.5em;
    background: transparent;
  }
  .post-article .has-child .wp-block-navigation__container .wp-block-navigation-link__submenu-icon svg {
    transform: rotate(0);
  }
}
.post-article .has-child:hover {
  cursor: pointer;
}
.post-article .has-child:hover > .wp-block-navigation__container {
  visibility: visible;
  opacity: 1;
  display: flex;
  flex-direction: column;
}
.post-article .has-child:focus-within {
  cursor: pointer;
}
.post-article .has-child:focus-within > .wp-block-navigation__container {
  visibility: visible;
  opacity: 1;
  display: flex;
  flex-direction: column;
}
.post-article .wp-block-navigation[style*=text-decoration] .wp-block-navigation__container,
.post-article .wp-block-navigation[style*=text-decoration] .wp-block-navigation-link {
  text-decoration: inherit;
}
.post-article .wp-block-navigation[style*=text-decoration] .wp-block-navigation-link__content {
  text-decoration: inherit;
}
.post-article .wp-block-navigation[style*=text-decoration] .wp-block-navigation-link__content:focus, .post-article .wp-block-navigation[style*=text-decoration] .wp-block-navigation-link__content:active {
  text-decoration: inherit;
}
.post-article .wp-block-navigation:not([style*=text-decoration]) .wp-block-navigation-link__content {
  text-decoration: none;
}
.post-article .wp-block-navigation:not([style*=text-decoration]) .wp-block-navigation-link__content:focus, .post-article .wp-block-navigation:not([style*=text-decoration]) .wp-block-navigation-link__content:active {
  text-decoration: none;
}
.post-article .wp-block-navigation-link__content {
  color: inherit;
  padding: 0.5em 1em;
}
.post-article .wp-block-navigation-link__content + .wp-block-navigation-link__content {
  padding-top: 0;
}
.post-article .has-text-color .wp-block-navigation-link__content {
  color: inherit;
}
.post-article .wp-block-navigation-link__label {
  word-break: normal;
  overflow-wrap: break-word;
}
.post-article .wp-block-navigation-link__submenu-icon {
  height: inherit;
  padding: 0.375em 1em 0.375em 0;
}
.post-article .wp-block-navigation-link__submenu-icon svg {
  fill: currentColor;
}
@media (min-width: 782px) {
  .post-article .wp-block-navigation-link__submenu-icon svg {
    transform: rotate(90deg);
  }
}
.post-article .is-small-text {
  font-size: 0.875em;
}
.post-article .is-regular-text {
  font-size: 1em;
}
.post-article .is-large-text {
  font-size: 2.25em;
}
.post-article .is-larger-text {
  font-size: 3em;
}
.post-article .has-drop-cap:not(:focus)::first-letter {
  float: left;
  font-size: 8.4em;
  line-height: 0.68;
  font-weight: 100;
  margin: 0.05em 0.1em 0 0;
  text-transform: uppercase;
  font-style: normal;
}
.post-article p.has-background {
  padding: 1.25em 2.375em;
}
.post-article p.has-text-color a {
  color: inherit;
}
.post-article .wp-block-post-author {
  display: flex;
  flex-wrap: wrap;
}
.post-article .wp-block-post-author__byline {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.5em;
}
.post-article .wp-block-post-author__avatar {
  margin-right: 1em;
}
.post-article .wp-block-post-author__bio {
  margin-bottom: 0.7em;
  font-size: 0.7em;
}
.post-article .wp-block-post-author__content {
  flex-grow: 1;
  flex-basis: 0;
}
.post-article .wp-block-post-author__name {
  font-weight: bold;
  margin: 0;
}
.post-article .wp-block-post-comments-form input[type=submit] {
  color: #fff;
  background-color: #32373c;
  border: none;
  border-radius: 1.55em;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  font-size: 1.125em;
  padding: 0.667em 1.333em;
  text-align: center;
  text-decoration: none;
  overflow-wrap: break-word;
}
.post-article .wp-block-post-comments-form input[type=submit]:hover, .post-article .wp-block-post-comments-form input[type=submit]:focus, .post-article .wp-block-post-comments-form input[type=submit]:active, .post-article .wp-block-post-comments-form input[type=submit]:visited {
  color: #fff;
}
.post-article .wp-block-preformatted {
  white-space: pre-wrap;
}
.post-article .wp-block-pullquote {
  padding: 3em 0;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
}
.post-article .wp-block-pullquote.alignleft, .post-article .wp-block-pullquote.alignright {
  max-width: 420px;
}
.post-article .wp-block-pullquote.alignleft p, .post-article .wp-block-pullquote.alignright p {
  font-size: 1.25em;
}
.post-article .wp-block-pullquote p {
  font-size: 1.75em;
  line-height: 1.6;
}
.post-article .wp-block-pullquote cite,
.post-article .wp-block-pullquote footer {
  position: relative;
}
.post-article .wp-block-pullquote .has-text-color a {
  color: inherit;
}
.post-article .wp-block-pullquote:not(.is-style-solid-color) {
  background: none;
}
.post-article .wp-block-pullquote.is-style-solid-color {
  border: none;
}
.post-article .wp-block-pullquote.is-style-solid-color blockquote {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  max-width: 60%;
}
.post-article .wp-block-pullquote.is-style-solid-color blockquote p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2em;
}
.post-article .wp-block-pullquote.is-style-solid-color blockquote cite {
  text-transform: none;
  font-style: normal;
}
.post-article .wp-block-pullquote cite {
  color: inherit;
}
.post-article .wp-block-query-loop {
  max-width: 100%;
  list-style: none;
  padding: 0;
}
.post-article .wp-block-query-loop li {
  clear: both;
}
.post-article .wp-block-query-loop.is-flex-container {
  flex-direction: row;
  display: flex;
  flex-wrap: wrap;
}
.post-article .wp-block-query-loop.is-flex-container li {
  margin: 0 0 1.25em 0;
  width: 100%;
}
@media (min-width: 600px) {
  .post-article .wp-block-query-loop.is-flex-container li {
    margin-right: 1.25em;
  }
  .post-article .wp-block-query-loop.is-flex-container.is-flex-container.columns-2 > li {
    width: calc(50% - 1.25em + 0.625em);
  }
  .post-article .wp-block-query-loop.is-flex-container.is-flex-container.columns-2 > li:nth-child(2n) {
    margin-right: 0;
  }
  .post-article .wp-block-query-loop.is-flex-container.is-flex-container.columns-3 > li {
    width: calc(33.3333333333% - 1.25em + 0.4166666667em);
  }
  .post-article .wp-block-query-loop.is-flex-container.is-flex-container.columns-3 > li:nth-child(3n) {
    margin-right: 0;
  }
  .post-article .wp-block-query-loop.is-flex-container.is-flex-container.columns-4 > li {
    width: calc(25% - 1.25em + 0.3125em);
  }
  .post-article .wp-block-query-loop.is-flex-container.is-flex-container.columns-4 > li:nth-child(4n) {
    margin-right: 0;
  }
  .post-article .wp-block-query-loop.is-flex-container.is-flex-container.columns-5 > li {
    width: calc(20% - 1.25em + 0.25em);
  }
  .post-article .wp-block-query-loop.is-flex-container.is-flex-container.columns-5 > li:nth-child(5n) {
    margin-right: 0;
  }
  .post-article .wp-block-query-loop.is-flex-container.is-flex-container.columns-6 > li {
    width: calc(16.6666666667% - 1.25em + 0.2083333333em);
  }
  .post-article .wp-block-query-loop.is-flex-container.is-flex-container.columns-6 > li:nth-child(6n) {
    margin-right: 0;
  }
}
.post-article .wp-block-query-pagination {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.post-article .wp-block-query-pagination > .wp-block-query-pagination-next,
.post-article .wp-block-query-pagination > .wp-block-query-pagination-previous,
.post-article .wp-block-query-pagination > .wp-block-query-pagination-numbers {
  display: inline-block;
  /*rtl:ignore*/
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}
.post-article .wp-block-query-pagination > .wp-block-query-pagination-next:last-child,
.post-article .wp-block-query-pagination > .wp-block-query-pagination-previous:last-child,
.post-article .wp-block-query-pagination > .wp-block-query-pagination-numbers:last-child {
  /*rtl:ignore*/
  margin-right: 0;
}
.post-article .wp-block-quote.is-style-large, .post-article .wp-block-quote.is-large {
  margin-bottom: 1em;
  padding: 0 1em;
}
.post-article .wp-block-quote.is-style-large p, .post-article .wp-block-quote.is-large p {
  font-size: 1.5em;
  font-style: italic;
  line-height: 1.6;
}
.post-article .wp-block-quote.is-style-large cite,
.post-article .wp-block-quote.is-style-large footer, .post-article .wp-block-quote.is-large cite,
.post-article .wp-block-quote.is-large footer {
  font-size: 1.125em;
  text-align: right;
}
.post-article .wp-block-rss.wp-block-rss {
  box-sizing: border-box;
}
.post-article .wp-block-rss.alignleft {
  /*rtl:ignore*/
  margin-right: 2em;
}
.post-article .wp-block-rss.alignright {
  /*rtl:ignore*/
  margin-left: 2em;
}
.post-article .wp-block-rss.is-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}
.post-article .wp-block-rss.is-grid li {
  margin: 0 1em 1em 0;
  width: 100%;
}
@media (min-width: 600px) {
  .post-article .wp-block-rss.columns-2 li {
    width: calc(50% - 1em);
  }
  .post-article .wp-block-rss.columns-3 li {
    width: calc(33.3333333333% - 1em);
  }
  .post-article .wp-block-rss.columns-4 li {
    width: calc(25% - 1em);
  }
  .post-article .wp-block-rss.columns-5 li {
    width: calc(20% - 1em);
  }
  .post-article .wp-block-rss.columns-6 li {
    width: calc(16.6666666667% - 1em);
  }
}
.post-article .wp-block-rss__item-publish-date,
.post-article .wp-block-rss__item-author {
  display: block;
  color: #555;
  font-size: 0.8125em;
}
.post-article .wp-block-search .wp-block-search__button {
  background: #f7f7f7;
  border: 1px solid #ccc;
  padding: 0.375em 0.625em;
  color: #32373c;
  margin-left: 0.625em;
  word-break: normal;
}
.post-article .wp-block-search .wp-block-search__button.has-icon {
  line-height: 0;
}
.post-article .wp-block-search .wp-block-search__button svg {
  min-width: 1.5em;
  min-height: 1.5em;
}
.post-article .wp-block-search .wp-block-search__inside-wrapper {
  display: flex;
  flex: auto;
  flex-wrap: nowrap;
  max-width: 100%;
}
.post-article .wp-block-search .wp-block-search__label {
  width: 100%;
}
.post-article .wp-block-search .wp-block-search__input {
  flex-grow: 1;
  min-width: 3em;
  border: 1px solid #949494;
}
.post-article .wp-block-search.wp-block-search__button-only .wp-block-search__button {
  margin-left: 0;
}
.post-article .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  padding: 4px;
  border: 1px solid #949494;
}
.post-article .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
  border-radius: 0;
  border: none;
  padding: 0 0 0 0.25em;
}
.post-article .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus {
  outline: none;
}
.post-article .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button {
  padding: 0.125em 0.5em;
}
.post-article .wp-block-separator {
  margin: 3em 0;
}
.post-article .wp-block-separator.is-style-wide {
  border-bottom-width: 1px;
}
.post-article .wp-block-separator.is-style-dots {
  background: none !important;
  border: none;
  text-align: center;
  max-width: none;
  line-height: 1;
  height: auto;
}
.post-article .wp-block-separator.is-style-dots::before {
  content: "···";
  color: currentColor;
  font-size: 1.5em;
  letter-spacing: 2em;
  /*rtl:ignore*/
  padding-left: 2em;
  font-family: serif;
}
.post-article .wp-block-custom-logo {
  line-height: 0;
}
.post-article .wp-block-custom-logo .aligncenter {
  display: table;
}
.post-article .wp-block-custom-logo.is-style-rounded img {
  border-radius: 9999px;
}
.post-article .wp-block-social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-left: 0;
  padding-right: 0;
  text-indent: 0;
  margin-left: 0;
}
.post-article .wp-block-social-links .wp-social-link a,
.post-article .wp-block-social-links .wp-social-link a:hover {
  text-decoration: none;
  border-bottom: 0;
  box-shadow: none;
}
.post-article .wp-block-social-links .wp-social-link.wp-social-link.wp-social-link {
  margin: 4px 8px 4px 0;
}
.post-article .wp-block-social-links .wp-social-link a {
  padding: 0.25em;
}
.post-article .wp-block-social-links .wp-social-link svg {
  width: 1em;
  height: 1em;
}
.post-article .wp-block-social-links.has-small-icon-size {
  font-size: 16px;
}
.post-article .wp-block-social-links, .post-article .wp-block-social-links.has-normal-icon-size {
  font-size: 24px;
}
.post-article .wp-block-social-links.has-large-icon-size {
  font-size: 36px;
}
.post-article .wp-block-social-links.has-huge-icon-size {
  font-size: 48px;
}
.post-article .wp-block-social-links.aligncenter {
  justify-content: center;
  display: flex;
}
.post-article .wp-block-social-links.alignright {
  justify-content: flex-end;
}
.post-article .wp-social-link {
  display: block;
  border-radius: 9999px;
  transition: transform 0.1s ease;
  height: auto;
}
@media (prefers-reduced-motion: reduce) {
  .post-article .wp-social-link {
    transition-duration: 0s;
  }
}
.post-article .wp-social-link a {
  display: block;
  line-height: 0;
  transition: transform 0.1s ease;
}
.post-article .wp-social-link a,
.post-article .wp-social-link a:hover,
.post-article .wp-social-link a:active,
.post-article .wp-social-link a:visited,
.post-article .wp-social-link svg {
  color: currentColor;
  fill: currentColor;
}
.post-article .wp-social-link:hover {
  transform: scale(1.1);
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link {
  background-color: #f0f0f0;
  color: #444;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon {
  background-color: #f90;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp {
  background-color: #1ea0c3;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance {
  background-color: #0757fe;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen {
  background-color: #1e1f26;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart {
  background-color: #02e49b;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble {
  background-color: #e94c89;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox {
  background-color: #4280ff;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy {
  background-color: #f45800;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook {
  background-color: #1778f2;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx {
  background-color: #000;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr {
  background-color: #0461dd;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare {
  background-color: #e65678;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github {
  background-color: #24292d;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads {
  background-color: #eceadd;
  color: #382110;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google {
  background-color: #ea4434;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram {
  background-color: #f00075;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm {
  background-color: #e21b24;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin {
  background-color: #0d66c2;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon {
  background-color: #3288d4;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium {
  background-color: #02ab6c;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup {
  background-color: #f6405f;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon {
  background-color: #ff424d;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest {
  background-color: #e60122;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket {
  background-color: #ef4155;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit {
  background-color: #fe4500;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype {
  background-color: #0478d7;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat {
  background-color: #fefc00;
  color: #fff;
  stroke: #000;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud {
  background-color: #ff5600;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify {
  background-color: #1bd760;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram {
  background-color: #2aabee;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok {
  background-color: #000;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr {
  background-color: #011835;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch {
  background-color: #6440a4;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter {
  background-color: #1da1f2;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo {
  background-color: #1eb7ea;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk {
  background-color: #4680c2;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress {
  background-color: #3499cd;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp {
  background-color: #d32422;
  color: #fff;
}
.post-article .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube {
  background-color: #f00;
  color: #fff;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link {
  background: none;
  padding: 4px;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-amazon {
  color: #f90;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp {
  color: #1ea0c3;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-behance {
  color: #0757fe;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-codepen {
  color: #1e1f26;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-deviantart {
  color: #02e49b;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-dribbble {
  color: #e94c89;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-dropbox {
  color: #4280ff;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-etsy {
  color: #f45800;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-facebook {
  color: #1778f2;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx {
  color: #000;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-flickr {
  color: #0461dd;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-foursquare {
  color: #e65678;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-github {
  color: #24292d;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-goodreads {
  color: #382110;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-google {
  color: #ea4434;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-instagram {
  color: #f00075;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-lastfm {
  color: #e21b24;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-linkedin {
  color: #0d66c2;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-mastodon {
  color: #3288d4;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-medium {
  color: #02ab6c;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-meetup {
  color: #f6405f;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-patreon {
  color: #ff424d;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-pinterest {
  color: #e60122;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-pocket {
  color: #ef4155;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-reddit {
  color: #fe4500;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-skype {
  color: #0478d7;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-snapchat {
  color: #fff;
  stroke: #000;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud {
  color: #ff5600;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-spotify {
  color: #1bd760;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-telegram {
  color: #2aabee;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-tiktok {
  color: #000;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-tumblr {
  color: #011835;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-twitch {
  color: #6440a4;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-twitter {
  color: #1da1f2;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-vimeo {
  color: #1eb7ea;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-vk {
  color: #4680c2;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-wordpress {
  color: #3499cd;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-yelp {
  background-color: #d32422;
  color: #fff;
}
.post-article .wp-block-social-links.is-style-logos-only .wp-social-link-youtube {
  color: #f00;
}
.post-article .wp-block-social-links.is-style-pill-shape .wp-social-link {
  width: auto;
}
.post-article .wp-block-social-links.is-style-pill-shape .wp-social-link a {
  padding-left: 0.6666666667em;
  padding-right: 0.6666666667em;
}
.post-article .wp-block-spacer {
  clear: both;
}
.post-article p.wp-block-subhead {
  font-size: 1.1em;
  font-style: italic;
  opacity: 0.75;
}
.post-article .wp-block-tag-cloud.aligncenter {
  text-align: center;
}
.post-article .wp-block-tag-cloud.alignfull {
  padding-left: 1em;
  padding-right: 1em;
}
.post-article .wp-block-table {
  overflow-x: auto;
}
.post-article .wp-block-table table {
  width: 100%;
}
.post-article .wp-block-table .has-fixed-layout {
  table-layout: fixed;
  width: 100%;
}
.post-article .wp-block-table .has-fixed-layout td,
.post-article .wp-block-table .has-fixed-layout th {
  word-break: break-word;
}
.post-article .wp-block-table.alignleft, .post-article .wp-block-table.aligncenter, .post-article .wp-block-table.alignright {
  display: table;
  width: auto;
}
.post-article .wp-block-table.alignleft td,
.post-article .wp-block-table.alignleft th, .post-article .wp-block-table.aligncenter td,
.post-article .wp-block-table.aligncenter th, .post-article .wp-block-table.alignright td,
.post-article .wp-block-table.alignright th {
  word-break: break-word;
}
.post-article .wp-block-table .has-subtle-light-gray-background-color {
  background-color: #f3f4f5;
}
.post-article .wp-block-table .has-subtle-pale-green-background-color {
  background-color: #e9fbe5;
}
.post-article .wp-block-table .has-subtle-pale-blue-background-color {
  background-color: #e7f5fe;
}
.post-article .wp-block-table .has-subtle-pale-pink-background-color {
  background-color: #fcf0ef;
}
.post-article .wp-block-table.is-style-stripes {
  border-spacing: 0;
  border-collapse: inherit;
  background-color: transparent;
  border-bottom: 1px solid #f0f0f0;
}
.post-article .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #f0f0f0;
}
.post-article .wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd) {
  background-color: #f3f4f5;
}
.post-article .wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd) {
  background-color: #e9fbe5;
}
.post-article .wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd) {
  background-color: #e7f5fe;
}
.post-article .wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd) {
  background-color: #fcf0ef;
}
.post-article .wp-block-table.is-style-stripes th,
.post-article .wp-block-table.is-style-stripes td {
  border-color: transparent;
}
.post-article .wp-block-text-columns {
  display: flex;
}
.post-article .wp-block-text-columns.aligncenter {
  display: flex;
}
.post-article .wp-block-text-columns .wp-block-column {
  margin: 0 1em;
  padding: 0;
}
.post-article .wp-block-text-columns .wp-block-column:first-child {
  margin-left: 0;
}
.post-article .wp-block-text-columns .wp-block-column:last-child {
  margin-right: 0;
}
.post-article .wp-block-text-columns.columns-2 .wp-block-column {
  width: 50%;
}
.post-article .wp-block-text-columns.columns-3 .wp-block-column {
  width: 33.3333333333%;
}
.post-article .wp-block-text-columns.columns-4 .wp-block-column {
  width: 25%;
}
.post-article pre.wp-block-verse {
  font-family: inherit;
  overflow: auto;
  white-space: pre-wrap;
}
.post-article .wp-block-video {
  margin-left: 0;
  margin-right: 0;
}
.post-article .wp-block-video video {
  width: 100%;
}
@supports (position: -webkit-sticky) or (position: sticky) {
  .post-article .wp-block-video [poster] {
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.post-article .wp-block-video.aligncenter {
  text-align: center;
}
.post-article .wp-block-video figcaption {
  margin-top: 0.5em;
  margin-bottom: 1em;
}
.post-article .wp-block-post-featured-image a {
  display: inline-block;
}
.post-article .wp-block-post-featured-image img {
  max-width: 100%;
  height: auto;
}
.post-article .has-small-font-size {
  font-size: 0.8125em !important;
}
.post-article .has-regular-font-size,
.post-article .has-normal-font-size {
  font-size: 1em !important;
}
.post-article .has-medium-font-size {
  font-size: 1.25em !important;
}
.post-article .has-large-font-size {
  font-size: 2.25em !important;
}
.post-article .has-larger-font-size,
.post-article .has-huge-font-size {
  font-size: 2.625em !important;
}
.post-article .has-text-align-center {
  text-align: center !important;
}
.post-article .has-text-align-left {
  /*rtl:ignore*/
  text-align: left !important;
}
.post-article .has-text-align-right {
  /*rtl:ignore*/
  text-align: right !important;
}
.post-article #end-resizable-editor-section {
  display: none;
}
.post-article .aligncenter {
  clear: both;
}

:root .has-pale-pink-background-color {
  background-color: #f78da7 !important;
}

:root .has-vivid-red-background-color {
  background-color: #cf2e2e !important;
}

:root .has-luminous-vivid-orange-background-color {
  background-color: #ff6900 !important;
}

:root .has-luminous-vivid-amber-background-color {
  background-color: #fcb900 !important;
}

:root .has-light-green-cyan-background-color {
  background-color: #7bdcb5 !important;
}

:root .has-vivid-green-cyan-background-color {
  background-color: #00d084 !important;
}

:root .has-pale-cyan-blue-background-color {
  background-color: #8ed1fc !important;
}

:root .has-vivid-cyan-blue-background-color {
  background-color: #0693e3 !important;
}

:root .has-vivid-purple-background-color {
  background-color: #9b51e0 !important;
}

:root .has-white-background-color {
  background-color: #fff !important;
}

:root .has-very-light-gray-background-color {
  background-color: #eee !important;
}

:root .has-cyan-bluish-gray-background-color {
  background-color: #abb8c3 !important;
}

:root .has-very-dark-gray-background-color {
  background-color: #313131 !important;
}

:root .has-black-background-color {
  background-color: #000 !important;
}

:root .has-pale-pink-color {
  color: #f78da7 !important;
}

:root .has-vivid-red-color {
  color: #cf2e2e !important;
}

:root .has-luminous-vivid-orange-color {
  color: #ff6900 !important;
}

:root .has-luminous-vivid-amber-color {
  color: #fcb900 !important;
}

:root .has-light-green-cyan-color {
  color: #7bdcb5 !important;
}

:root .has-vivid-green-cyan-color {
  color: #00d084 !important;
}

:root .has-pale-cyan-blue-color {
  color: #8ed1fc !important;
}

:root .has-vivid-cyan-blue-color {
  color: #0693e3 !important;
}

:root .has-vivid-purple-color {
  color: #9b51e0 !important;
}

:root .has-white-color {
  color: #fff !important;
}

:root .has-very-light-gray-color {
  color: #eee !important;
}

:root .has-cyan-bluish-gray-color {
  color: #abb8c3 !important;
}

:root .has-very-dark-gray-color {
  color: #313131 !important;
}

:root .has-black-color {
  color: #000 !important;
}

:root .has-vivid-cyan-blue-to-vivid-purple-gradient-background {
  background: linear-gradient(135deg, #0693e3 0%, #9b51e0 100%) !important;
}

:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background {
  background: linear-gradient(135deg, #00d084 0%, #0693e3 100%) !important;
}

:root .has-light-green-cyan-to-vivid-green-cyan-gradient-background {
  background: linear-gradient(135deg, #7adcb4 0%, #00d082 100%) !important;
}

:root .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
  background: linear-gradient(135deg, #fcb900 0%, #ff6900 100%) !important;
}

:root .has-luminous-vivid-orange-to-vivid-red-gradient-background {
  background: linear-gradient(135deg, #ff6900 0%, #cf2e2e 100%) !important;
}

:root .has-very-light-gray-to-cyan-bluish-gray-gradient-background {
  background: linear-gradient(135deg, #eeeeee 0%, #a9b8c3 100%) !important;
}

:root .has-cool-to-warm-spectrum-gradient-background {
  background: linear-gradient(135deg, #4aeadc 0%, #9778d1 20%, #cf2aba 40%, #ee2c82 60%, #fb6962 80%, #fef84c 100%) !important;
}

:root .has-blush-light-purple-gradient-background {
  background: linear-gradient(135deg, #ffceec 0%, #9896f0 100%) !important;
}

:root .has-blush-bordeaux-gradient-background {
  background: linear-gradient(135deg, #fecda5 0%, #fe2d2d 50%, #6b003e 100%) !important;
}

:root .has-purple-crush-gradient-background {
  background: linear-gradient(135deg, #34e2e4 0%, #4721fb 50%, #ab1dfe 100%) !important;
}

:root .has-luminous-dusk-gradient-background {
  background: linear-gradient(135deg, #ffcb70 0%, #c751c0 50%, #4158d0 100%) !important;
}

:root .has-hazy-dawn-gradient-background {
  background: linear-gradient(135deg, #faaca8 0%, #dad0ec 100%) !important;
}

:root .has-pale-ocean-gradient-background {
  background: linear-gradient(135deg, #fff5cb 0%, #b6e3d4 50%, #33a7b5 100%) !important;
}

:root .has-electric-grass-gradient-background {
  background: linear-gradient(135deg, #caf880 0%, #71ce7e 100%) !important;
}

:root .has-subdued-olive-gradient-background {
  background: linear-gradient(135deg, #fafae1 0%, #67a671 100%) !important;
}

:root .has-atomic-cream-gradient-background {
  background: linear-gradient(135deg, #fdd79a 0%, #004a59 100%) !important;
}

:root .has-nightshade-gradient-background {
  background: linear-gradient(135deg, #330968 0%, #31cdcf 100%) !important;
}

:root .has-midnight-gradient-background {
  background: linear-gradient(135deg, #020381 0%, #2874fc 100%) !important;
}

:root .has-link-color a {
  color: #2C7C8D;
  color: var(--wp--style--color--link, #2C7C8D);
}

.post-article .content-article .the-content .wp-block-pullquote blockquote {
  border-left: none;
  border-top: 5px solid #2C7C8D;
  border-bottom: 5px solid #2C7C8D;
  padding: 1em;
  text-align: center;
}

.post-image {
  text-align: center;
}

figcaption, .wp-caption-text {
  margin: 0;
  font-size: 0.875em;
  padding: 0.6428571429em 1.1428571429em;
  line-height: 1.43;
  letter-spacing: -0.0107142857em;
  text-align: center;
  color: #7A7A7A;
}

.wp-block-archives-dropdown {
  margin-bottom: 1.5em;
}

.twitter-tweet {
  margin-left: auto;
  margin-right: auto;
}

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