@charset "UTF-8";
/*!
Theme Name: Wrap Compliance
Theme URI: http://www.wrapcompliance.org
Author: Joe Tan (Openbox9)

DO NOT EDIT style.css DIRECTLY. 

Use style.scss.
*/
:root {
  --gutter: calc((100vw - 1200px) / 2);
  --scrollbarWidth: 0px;
  --viewportWidth: calc(100vw - var(--scrollbarWidth, 0));
  --blockMargin: 8rem;
}
@media screen and (max-width: 1324.1379310345px) {
  :root {
    --gutter: 4.6875vw;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --blockMargin: 6rem;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-7px);
  }
}
@keyframes pulse {
  0% {
    margin-bottom: 0px;
    opacity: 0;
  }
  10% {
    margin-bottom: 0px;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    margin-bottom: -15px;
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  90% {
    margin-bottom: 0px;
    opacity: 0;
  }
  100% {
    margin-bottom: 0px;
    opacity: 0;
  }
}
@keyframes loading {
  100% {
    background-position: 0px -570px;
  }
}
@keyframes loop {
  from {
    transform: translate(0%, 0%);
  }
  to {
    transform: translate(-50%, 0%);
  }
}
/*
Author: Joe Tan (joetan54@gmail.com)

Copyright (c) 2018 Joe Tan
THIS CODE MAY NOT BE REDISTRIBUTED WITHOUT EXPLICIT PERMISSION
*/
xmp {
  margin: 0 0 1em;
  background: yellow;
  color: #000;
  overflow: hidden;
  font-size: 10px;
}

img.sample {
  background: #00aaee;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: aileron, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  color: #444;
  text-align: left;
  min-width: 320px;
  overflow-anchor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-ligatures: no-common-ligatures;
}

html {
  overflow-y: scroll;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background: #1A2C59;
}

body {
  padding: 0 0 0px 0;
  background: #fff;
}
body.rtl {
  direction: rtl;
  unicode-bidi: embed;
  text-align: right;
}

strong,
b {
  font-weight: bold;
}

em,
i {
  font-style: italic;
}

em strong,
strong em {
  font-weight: bold;
  font-style: italic;
}

.hidden {
  display: block;
  position: absolute;
  top: -10000px;
  height: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  visibility: hidden;
}

.clear {
  clear: both;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.entity {
  font-family: "Lucida Sans Unicode", "Arial Unicode MS", Arial, Helvetica, sans-serif;
}

.text-sans-serif {
  font-family: aileron, sans-serif;
}

.text-serif {
  font-family: Times, serif;
}

.text-headline {
  font-family: aileron, sans-serif;
}

.text-cursive {
  font-family: cursive;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-aligncenter,
.text-center {
  text-align: center;
}

.text-alignright,
.text-right {
  text-align: right;
}

.text-alignleft,
.text-left {
  text-align: left;
}

.text-justify {
  text-align: justify;
}

.text-white {
  color: white;
}

.text-black {
  color: black;
}

.text-red {
  color: red;
}

.text-green {
  color: green;
}

.text-blue {
  color: blue;
}

.text-light-blue {
  color: #C1C2E1;
}

.text-orange {
  color: #D87454;
}

.text-yellow {
  color: #D1AB49;
}

.text-navy-blue {
  color: navy;
}

.text-teal {
  color: teal;
}

.text-purple {
  color: purple;
}

.text-gray {
  color: #767676;
}

.text-silver {
  color: silver;
}

.text-dark-gray {
  color: gray;
}

.text-nowrap {
  white-space: nowrap;
}

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

img[align=left],
img.alignleft {
  margin: 0 15px 15px 0;
}

img[align=right],
img.alignright {
  margin: 0 0 15px 15px;
}

img.aligncenter {
  display: block;
  margin: 0 auto 15px auto;
}

img.circle {
  border-radius: 50%;
}

img,
a > img {
  border: 0;
}

a {
  color: #6669A0;
  text-decoration: none;
  transition: all 0.1s linear;
}
a:hover {
  text-decoration: underline;
}
a.more {
  white-space: nowrap;
}

iframe {
  max-width: 100%;
}
.fb_iframe_widget iframe {
  max-width: none;
}

.clickable {
  cursor: pointer;
}

.anchor:before {
  content: "";
  display: block;
  height: 120px;
  margin: -120px 0 0;
}

th,
td {
  border: 0;
}

.toggle {
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .mobile-only,
  .desktop-hide {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .mobile-hide,
  .desktop-only {
    display: none !important;
  }
}
.fb_iframe_widget,
.fb_iframe_widget > span {
  max-width: 100%;
  width: 100%;
}

.has-background.has-light-blue-background-color {
  background-color: #C1C2E1;
}
.has-background.has-dark-blue-background-color {
  background-color: #1A2C59;
}
.has-background.has-orange-background-color {
  background-color: #D87454;
}
.has-background.has-light-yellow-background-color {
  background-color: #F8E3AB;
}
.has-background.has-yellow-background-color {
  background-color: #D1AB49;
}
.has-background.has-light-purple-background-color {
  background-color: #F1F1FF;
}
.has-background.has-black-background-color {
  background-color: black;
}
.has-background.has-text-style-background-color {
  background-color: #444;
}
.has-background.has-dark-gray-background-color {
  background-color: gray;
}
.has-background.has-gray-background-color {
  background-color: #767676;
}
.has-background.has-light-gray-background-color {
  background-color: #f4f4f4;
}
.has-background.has-white-background-color {
  background-color: white;
}

p.has-background {
  max-width: 700px;
  margin: auto;
}

.has-text-color.has-light-blue-color {
  color: #C1C2E1;
}
.has-text-color.has-dark-blue-color {
  color: #1A2C59;
}
.has-text-color.has-orange-color {
  color: #D87454;
}
.has-text-color.has-light-yellow-color {
  color: #F8E3AB;
}
.has-text-color.has-yellow-color {
  color: #D1AB49;
}
.has-text-color.has-light-purple-color {
  color: #F1F1FF;
}
.has-text-color.has-black-color {
  color: black;
}
.has-text-color.has-text-style-color {
  color: #444;
}
.has-text-color.has-dark-gray-color {
  color: gray;
}
.has-text-color.has-gray-color {
  color: #767676;
}
.has-text-color.has-light-gray-color {
  color: #f4f4f4;
}
.has-text-color.has-white-color {
  color: white;
}

input[type=submit],
input[type=button],
button,
.button,
.btn {
  position: relative;
  display: inline-block;
  margin: 0em 0 0;
  padding: 0.75rem 1.5rem;
  font-family: aileron, sans-serif;
  font-size: 0.889rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  color: #1A2C59;
  background: #D1AB49;
  background-clip: padding-box;
  border-radius: 50px;
  border: 0;
  text-decoration: none;
  transition: all 0.2s linear;
}
input[type=submit] > span,
input[type=button] > span,
button > span,
.button > span,
.btn > span {
  margin-left: 5px;
}
input[type=submit].aligncenter, input[type=submit].center,
input[type=button].aligncenter,
input[type=button].center,
button.aligncenter,
button.center,
.button.aligncenter,
.button.center,
.btn.aligncenter,
.btn.center {
  display: block;
  max-width: 250px;
  margin: 0 auto 1em;
}
input[type=submit]:hover,
input[type=button]:hover,
button:hover,
.button:hover,
.btn:hover {
  background: #F8E3AB;
  text-decoration: none;
}
input[type=submit].loading:after,
input[type=button].loading:after,
button.loading:after,
.button.loading:after,
.btn.loading:after {
  position: absolute;
  right: -40px;
  top: 50%;
  margin: -15px 0 0 0;
  display: block;
  background: url(images/loading.png) no-repeat center top;
  width: 30px;
  height: 30px;
  content: " ";
  animation: loading 1s steps(19) infinite;
}
input[type=submit].done,
input[type=button].done,
button.done,
.button.done,
.btn.done {
  cursor: default;
  color: #555;
  border-color: #555;
}
input[type=submit].done:hover,
input[type=button].done:hover,
button.done:hover,
.button.done:hover,
.btn.done:hover {
  color: #555;
  background: none;
}

button[type=reset] {
  border: 3px solid #F1F1FF;
  background: none;
  color: #6669a0;
}
button[type=reset]:hover {
  background: #F1F1FF;
}

button.unstyled,
.button.unstyled {
  padding: 3px 5px;
  background: none;
  color: #363636;
  font-size: 100%;
  font-family: arial, sans-serif;
  background: #eee;
  background-image: linear-gradient(top, #ffffff 0%, #eeeeee 100%);
  border: 1px solid #ccc;
  border-radius: 3px;
}

button.unstyled:hover {
  background: #eeeeee;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
textarea {
  margin: 0;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: 30px;
  background: #fff;
  font-size: 1rem;
  line-height: 1;
  height: 1rem;
  font-family: aileron, sans-serif;
}

textarea {
  width: 100%;
}

.input.select {
  position: relative;
  padding: 0;
  background: none;
  box-sizing: border-box;
  cursor: pointer;
}
.input.select .label {
  min-width: 100px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding: 0.75rem 4rem 0.75rem 1.5rem;
  font-size: 0.889rem;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.64px;
  border-radius: 50px;
  background: #1A2C59;
  border: 2px solid #1A2C59;
  box-sizing: border-box;
  color: white;
  transition: background-color 0.25s ease, min-width 0.25s ease, border-radius 0.25s ease, border 0.25s ease;
}
.input.select .label:after {
  font-size: 1.6em;
  margin-top: -0.03em;
  padding-top: 0;
}
.input.select .label:after {
  font-family: "FontAwesome";
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none !important;
  content: "\f107";
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translate(0, -50%);
  padding-top: 3px;
}
.input.select .options {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease, border 0.25s ease, opacity 0.25s ease;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin: -1.3rem 0 0;
  padding: 0 0.5rem 0 1rem;
  border-radius: 0 0 18px 18px;
  border: 2px solid transparent;
  border-top-width: 0;
  box-sizing: border-box;
  background: #1A2C59;
  color: #E4E4F7;
  font-size: 0.889rem;
  line-height: 1.1;
  opacity: 0;
}
.input.select .options .option {
  display: block;
  margin: 0 0 0.9em;
  font-weight: 700;
  line-height: 1.25;
}
.input.select .options .option.selected {
  color: #D1AB49;
}
.input.select .options .option:last-child {
  margin-bottom: 0;
}
.input.select .options .option:hover {
  color: #D1AB49;
}
.input.select:hover .label {
  background: #353783;
  color: #E4E4F7;
  border: 2px solid #353783;
}
.input.select.on .label {
  min-width: 200px;
  background: #1A2C59;
  border-bottom-color: transparent;
  border: 2px solid #1A2C59;
}
.input.select.on .options {
  max-height: -moz-fit-content;
  max-height: fit-content;
  padding-top: 1.75rem;
  padding-bottom: 1rem;
  border-color: #1A2C59;
  opacity: 1;
}
.input.select.on .options .option {
  width: 190px;
}
.input.select select {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border: 0;
  background: 0;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .input.select select {
    z-index: 100;
    width: 100%;
    height: 100%;
    visibility: visible;
  }
  .input.select .option {
    display: none !important;
  }
}

.main-content .gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 24px;
}
.main-content .gform_wrapper.gravity-theme input[type=color],
.main-content .gform_wrapper.gravity-theme input[type=date],
.main-content .gform_wrapper.gravity-theme input[type=datetime-local],
.main-content .gform_wrapper.gravity-theme input[type=datetime],
.main-content .gform_wrapper.gravity-theme input[type=email],
.main-content .gform_wrapper.gravity-theme input[type=month],
.main-content .gform_wrapper.gravity-theme input[type=number],
.main-content .gform_wrapper.gravity-theme input[type=password],
.main-content .gform_wrapper.gravity-theme input[type=search],
.main-content .gform_wrapper.gravity-theme input[type=tel],
.main-content .gform_wrapper.gravity-theme input[type=text],
.main-content .gform_wrapper.gravity-theme input[type=time],
.main-content .gform_wrapper.gravity-theme input[type=url],
.main-content .gform_wrapper.gravity-theme input[type=week],
.main-content .gform_wrapper.gravity-theme select,
.main-content .gform_wrapper.gravity-theme textarea {
  border-radius: 10px;
  min-height: 45px;
  padding: 15px;
}
.main-content .gform_wrapper.gravity-theme .gform_footer,
.main-content .gform_wrapper.gravity-theme .gform_page_footer {
  margin-top: 20px;
}

.main-content .gform_wrapper.gravity-theme select {
  background: url("data:image/svg+xml,<svg height='10px' width='10px' viewBox='0 0 16 16' fill='%23000000' xmlns='http://www.w3.org/2000/svg'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>") no-repeat;
  background-position: calc(100% - 0.75rem) center !important;
  background-color: white;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  padding: 0;
  padding-right: 2rem !important;
  padding-left: 1rem;
  border: none;
}

#overlay-mask {
  display: block;
  position: fixed;
  z-index: 199999;
  top: 0%;
  left: 0;
  width: 0%;
  height: 100%;
  transition: background 0.5s ease-in-out;
  /*&:after {
      display: block;
      content: ' ';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 0%;
      background: rgba(black, 0.4);
      @include transition(height $overlayDelay $overlayEase);
  }*/
}
#overlay-mask:before {
  display: none;
  content: " ";
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -15px;
  width: 30px;
  height: 30px;
  background: url(images/loading.png) no-repeat center top;
  animation: loading 1s steps(19) infinite;
}
body.overlay-loading #overlay-mask, body.overlay-init #overlay-mask {
  top: 0%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}
body.overlay-loading #overlay-mask:before {
  display: block;
}
body.overlay-on #overlay-mask:before {
  display: none;
}
body.overlay-on #overlay-mask:after {
  height: 100%;
}

#overlay {
  box-sizing: border-box;
  display: none;
  position: fixed;
  z-index: 200000;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  margin: 0 auto;
  padding: 100px 0;
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
body.overlay-init #overlay {
  display: block;
  transform: translate(0, -100%);
}
body.overlay-on #overlay {
  transform: translate(0, 0%);
  opacity: 1;
}
#overlay .layout {
  position: relative;
  z-index: 200002;
  display: block;
  margin: 0 auto;
  max-width: 900px;
}
#overlay .layout > .block-content {
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
#overlay .team-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 2em;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 4em auto 4em;
  grid-template-rows: 150px 150px auto minmax(0px, 1fr) 2em;
  grid-template-areas: ". bio ." ". bio ." ". bio ." ". blocks ." ". . .";
  color: white;
}
@media screen and (max-width: 900px) {
  #overlay .team-wrap {
    grid-template-columns: 4vw auto 4vw;
  }
}
#overlay .team-wrap:before {
  content: " ";
  display: block;
  background: #1A2C59;
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 2;
  grid-row-end: 6;
  border-radius: 1rem;
}
@media screen and (max-width: 900px) {
  #overlay .team-wrap:before {
    border-radius: 0;
  }
}
#overlay .team-wrap.has-no-photo {
  grid-template-rows: 2em auto minmax(0px, 1fr) 2em;
  grid-template-areas: ". . ." ". bio ." ". blocks ." ". . .";
}
#overlay .team-wrap.has-no-photo:before {
  grid-row-start: 1;
}
#overlay .team-wrap .team-bio {
  position: relative;
  z-index: 1;
  grid-area: bio;
}
#overlay .team-wrap .team-bio .position {
  color: #D1AB49;
  font-weight: 600;
}
#overlay .team-wrap .team-bio .contact {
  color: inherit;
}
#overlay .team-wrap .team-bio .contact a {
  color: inherit;
}
#overlay .team-wrap .page-blocks {
  position: relative;
  z-index: 1;
  grid-area: blocks;
  padding: 0 0 2em;
}
#overlay .team-wrap .block-posts {
  position: relative;
  z-index: 1;
  margin: 5em 0 0;
  border-top: 0;
  padding: 0;
}
#overlay .team-wrap .block-posts h5 {
  margin: 0 0 3em;
  color: #D1AB49;
  text-align: center;
  text-transform: uppercase;
}
#overlay .team-wrap .block-posts .query-posts {
  --gap: 1em;
  display: block;
}
#overlay .team-wrap .block-posts .query-posts > .hentry {
  width: auto;
  grid-template-columns: auto 2em 30px 10px;
  grid-template-areas: "title . more .";
  align-items: center;
  padding: 1em 0 0;
  margin: 1em 0 0;
}
#overlay .team-wrap .block-posts .query-posts > .hentry:first-child {
  margin-top: 0;
}
#overlay .team-wrap .block-posts .query-posts > .hentry .title {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
}
#overlay .team-wrap .block-posts .query-posts > .hentry .content {
  display: none;
}
#overlay .team-wrap .block-posts .query-posts > .hentry .more {
  width: 30px;
  height: 30px;
  color: inherit;
}
#overlay .team-wrap .block-posts .query-posts .hentry.empty {
  display: none;
}
#overlay .team-wrap h1, #overlay .team-wrap h2, #overlay .team-wrap h3, #overlay .team-wrap h4, #overlay .team-wrap h5, #overlay .team-wrap h6 {
  color: inherit;
}
#overlay .close {
  box-sizing: border-box;
  position: absolute;
  z-index: 200001;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  padding: 25px 25px 0 0;
  background: rgba(0, 0, 0, 0.01);
  text-align: right;
  color: white;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: aileron, sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
#overlay .close span {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

#alert {
  position: relative;
  z-index: 1101;
  padding-top: 0.5em;
  padding-bottom: 1.5em;
  background: #1A2C59;
  color: #E4E4F7;
  text-align: center;
  transition: all 0.25s ease;
}
#alert.initialized {
  display: block !important;
}
#alert.initialized.user-removed {
  display: none !important;
}
#alert .toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em 0;
  margin: 0;
}
#alert .toggle .icon {
  width: 35px;
  font-size: 35px;
  line-height: 1;
  transition: transform 0.25s ease;
  transform: scaleY(1);
  text-align: center;
  margin-top: 3px;
}
#alert .toggle .icon.close {
  font-size: 30px;
}
#alert .toggle h1 {
  flex-grow: 1;
  margin: 0;
  line-height: 1;
  transition: font-size 0.25s ease;
  font-size: 1.75rem;
  color: #D1AB49;
  padding-left: 35px;
  margin-top: -3px;
}
#alert .block-content {
  position: relative;
  max-height: 300px;
  max-width: 1024px;
  overflow: hidden;
  transition: all 0.25s ease;
  margin: 0 auto;
}
#alert .wp-block-buttons {
  justify-content: center;
}
#alert .wp-block-buttons > .wp-block-button {
  margin-left: 1em;
  margin-right: 1em;
}
body.alert-close #alert:not(.preview) {
  padding: 0;
}
body.alert-close #alert:not(.preview) .toggle h1 {
  font-size: 1.4rem;
}
body.alert-close #alert:not(.preview) .toggle .icon {
  transform: scaleY(-1);
  display: block;
}
body.alert-close #alert:not(.preview) .toggle .icon.close {
  display: none;
}
body.alert-close #alert:not(.preview) .block-content {
  max-height: 0;
}
body #alert {
  position: relative;
  width: 100%;
}
body #alert .toggle {
  padding: 0.5em 4.6875%;
}
body #alert:not(.alert-close) .icon.fa-angle-up {
  display: none;
}
@media screen and (min-width: 1024px) {
  body #alert .toggle {
    padding: 0.5em 1.5em;
  }
}
@media screen and (max-width: 1024px) {
  #alert {
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    overflow: hidden;
    max-height: 50vh;
  }
  body.menu-on #alert {
    max-height: 0;
  }
}

#header {
  --logo-size: 170px;
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
}
body.admin-bar #header {
  border-top: 32px solid #fff;
}
@media screen and (max-width: 782px) {
  body.admin-bar #header {
    border-top-width: 46px;
  }
}
#header.initialized {
  transition: all 0.4s ease-in-out;
}
#header.initialized .layout {
  transition: padding 0.4s ease-in-out;
}
#header.initialized .block-logo {
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}
#header.initialized .block-logo a {
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
}
#header.initialized .block-top {
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}
body.scrolled2 #header {
  --logo-size: 120px;
}
#header .layout {
  position: relative;
  padding: 1.5em 0;
  /*
  display:grid;
  grid-template-columns: auto 1fr auto auto;
  grid-template-rows: auto 1fr auto auto 1fr;
  grid-template-areas:
      "top top top top"
      "logo . . ."
      "logo nav nav toggle"
      "logo subnav subnav toggle"
      "logo . . .";
  */
}
body.scrolled2 #header .layout {
  padding-top: 1em;
  padding-bottom: 1em;
}
body.scrolled #header .layout {
  padding: 0.5em 0;
}
#header .block-logo {
  position: relative;
  z-index: 1;
  grid-area: logo;
  line-height: 1;
  align-self: center;
  opacity: 1;
  transform: translate(0, 0);
  width: var(--logo-size, 170px);
}
#header .block-logo a {
  position: relative;
  display: block;
  padding: 0;
  width: var(--logo-size, 170px);
  height: var(--logo-size, 170px);
}
#header .block-logo a:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(images/logo-white.svg) no-repeat 50% 50%;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
#header .block-logo img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.4s ease-in-out;
}
#header .block-top {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: end;
  font-size: 0.72em;
  letter-spacing: 0.3px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #6669A0;
  opacity: 1;
  transform: translate(0, 0);
  z-index: 1012;
}
.home #header .block-top, .single #header .block-top, .archive-page #header .block-top {
  color: #767676;
}
#header .block-top a {
  color: inherit;
}
#header .block-top ul,
#header .block-top li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#header .block-top > ul {
  display: flex;
  align-items: center;
  justify-content: end;
  margin: 0 0 0 auto;
}
#header .block-top > ul > li {
  position: relative;
  margin: 0;
  padding: 0 1em 0 1em;
  border-left: 2px solid #C1C2E1;
}
#header .block-top > ul > li > a,
#header .block-top > ul > li > .a {
  display: inline-flex;
  align-items: center;
  padding: 0.6em 0.6em 0.2em;
  line-height: 1;
  transition: 0.25s ease;
  text-decoration: none;
}
#header .block-top > ul > li > a:hover,
#header .block-top > ul > li > .a:hover {
  text-decoration: none;
  color: #1A2C59;
  transition: 0.25s ease;
}
#header .block-top > ul > li > a .icon,
#header .block-top > ul > li > .a .icon {
  display: inline-block;
  margin: 0 0.35em 0 0;
  width: 1.2em;
  height: 1.2em;
  fill: currentColor;
  stroke-width: 0;
}
#header .block-top > ul > li:last-child {
  padding-right: 0;
}
#header .block-top > ul > li:last-child > .a,
#header .block-top > ul > li:last-child > a {
  padding-right: 0;
}
#header .block-top > ul > li:first-child {
  border-left: 0;
}
#header .block-top .language-switcher {
  position: relative;
}
#header .block-top .language-switcher .current-language {
  position: relative;
  z-index: 1;
}
#header .block-top .language-switcher ul {
  display: none;
  position: absolute;
  top: 0%;
  right: -2px;
  min-width: calc(100% + 2px);
  padding: 3em 2em 1.5em 1.7em;
  border-radius: 0 0 1em 1em;
  background: #C1C2E1;
  font-size: 0.77rem;
  color: inherit;
  font-weight: 600;
  text-transform: none;
}
#header .block-top .language-switcher ul li {
  margin: 0 0 0.75em;
}
#header .block-top .language-switcher ul li:last-child {
  margin-bottom: 0;
}
#header .block-top .language-switcher ul li a {
  text-decoration: none;
}
#header .block-top .language-switcher ul li a:hover {
  text-decoration: underline;
}
#header .block-top .language-switcher:hover {
  color: #1A2C59;
}
#header .block-top .language-switcher:hover ul {
  display: block;
}
@media screen and (max-width: 767px) {
  #header .block-top .language-switcher ul {
    padding: 0 0.3em;
  }
}
@media screen and (max-width: 500px) {
  #header .block-top {
    font-size: 0.7em;
    margin-bottom: 1em;
  }
  #header .block-top ul li {
    border-left-width: 1px;
  }
}
#header .block-nav {
  position: absolute;
  right: 0;
  bottom: 50%;
  opacity: 1;
  transform: translate(0, 0);
  transition: bottom 0.4s ease-in-out, opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  z-index: 1011;
  color: #1A2C59;
  white-space: nowrap;
}
body.has-subnav.scrolled2 #header .block-nav {
  bottom: 38%;
}
body.no-subnav.scrolled2 #header .block-nav {
  bottom: 30%;
}
#header .block-nav a {
  font-weight: 600;
  color: inherit;
}
#header .block-nav ul,
#header .block-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#header .block-nav > ul {
  position: relative;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}
#header .block-nav > ul > li {
  position: relative;
  margin: 0;
  padding: 0 0.8em;
}
#header .block-nav > ul > li:after {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #C1C2E1;
}
body.no-subnav #header .block-nav > ul > li:after {
  display: none;
}
#header .block-nav > ul > li > a {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0.8rem 0em;
  text-decoration: none;
}
#header .block-nav > ul > li > a:after {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: #D87454;
  transition: width 0.25s ease;
}
#header .block-nav > ul > li > a:hover:after {
  width: 100%;
}
#header .block-nav > ul > li:first-child {
  padding-left: 0;
}
#header .block-nav > ul > li:last-child {
  padding-right: 0;
}
#header .block-nav > ul > li > ul {
  display: none;
}
#header .block-nav > ul > li.selected > a:after {
  width: 100%;
}
#header .block-search {
  position: absolute;
  z-index: 1016;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  margin: 0 0 0 -50vw;
  box-sizing: border-box;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(0, -150%);
  transition: transform 0.5s;
  background: #1A2C59;
  color: white;
}
@media screen and (max-width: 1024px), (max-height: 600px) {
  #header .block-search {
    height: 100vh;
  }
}
body.search-on #header .block-search {
  transform: translate(0, 0%);
}
#header .block-search .block-input {
  display: flex;
  align-items: center;
  width: 800px;
  max-width: 100%;
  border-bottom: 1px solid currentColor;
}
#header .block-search .block-input input[type=text] {
  flex-grow: 1;
  width: 100%;
  padding: 0.5em 0;
  background: none;
  border: 0;
  border-radius: 0;
  outline: 0;
  color: inherit;
}
#header .block-search .block-input ::-webkit-input-placeholder {
  color: white;
}
#header .block-search .block-input :-moz-placeholder {
  color: white;
}
#header .block-search .block-input ::-moz-placeholder {
  color: white;
}
#header .block-search .block-input :-ms-input-placeholder {
  color: white;
}
#header .block-search .block-input button[type=reset] {
  position: relative;
  background: none;
  border: 0;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  border-radius: 0;
  cursor: pointer;
  color: inherit;
}
#header .block-search .block-input button[type=reset]:before, #header .block-search .block-input button[type=reset]:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 2px;
  margin: -1px 0 0;
  background: currentColor;
  transform-origin: 50% 50%;
}
#header .block-search .block-input button[type=reset]:before {
  transform: rotate(-45deg);
}
#header .block-search .block-input button[type=reset]:after {
  transform: rotate(45deg);
}
#header .block-subnav {
  position: absolute;
  right: 0;
  top: 50%;
  opacity: 1;
  transform: translate(0, 0);
  transition: top 0.4s ease-in-out, opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}
body.has-subnav.scrolled2 #header .block-subnav {
  top: 60%;
}
#header .block-page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -250%);
  opacity: 0;
  width: 60%;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  text-align: center;
  font-weight: 700;
  font-family: aileron, sans-serif;
  line-height: 1.2;
  color: #1A2C59;
}
#header .block-page-title a {
  display: block;
  color: inherit;
  text-decoration: none;
}
#header .block-toggle {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  color: #1A2C59;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
#header .block-toggle .a,
#header .block-toggle .toggle {
  margin-left: 0.5em;
  color: inherit;
  text-decoration: none;
}
#header .block-toggle .a .icon,
#header .block-toggle .toggle .icon {
  display: block;
  width: 25px;
  height: 25px;
  stroke-width: 0;
  fill: currentColor;
}
#header .block-toggle .toggle.menu {
  position: relative;
  z-index: -1;
  width: 30px;
  margin: 0;
  align-items: center;
  opacity: 1;
}
#header .block-toggle .toggle.menu .icon {
  position: relative;
  width: 26px;
  height: 25px;
  font-size: 30px;
  line-height: 30px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  transform: rotate(0deg);
  opacity: 1;
  margin-left: 2px;
}
#header .block-toggle .toggle.menu .icon:before, #header .block-toggle .toggle.menu .icon:after {
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  top: 50%;
}
#header .block-toggle .toggle.menu .icon:before {
  border: 2px solid currentColor;
  height: 21px;
  border-width: 3px 0;
  margin: -11px 0 0;
}
#header .block-toggle .toggle.menu .icon:after {
  height: 3px;
  background: currentColor;
  margin: -2px 0 0;
}
#header .block-toggle .toggle.menu:before, #header .block-toggle .toggle.menu:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  height: 3px;
  margin: -2px 0 0;
  transform-origin: 50% 50%;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  background: currentColor;
}
#header .block-toggle .toggle.menu:before {
  transform: rotate(-45deg);
}
#header .block-toggle .toggle.menu:after {
  transform: rotate(-135deg);
}
body.menu-on #header .block-toggle .toggle.menu .icon {
  opacity: 0;
  transform: rotate(-45deg);
}
body.menu-on #header .block-toggle .toggle.menu:before {
  transform: rotate(-135deg);
  opacity: 1;
}
body.menu-on #header .block-toggle .toggle.menu:after {
  transform: rotate(-225deg);
  opacity: 1;
}
#header .block-top-mobile {
  top: auto;
  bottom: 0;
}
#header .block-nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  bottom: auto;
  box-sizing: border-box;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  opacity: 0;
  transform: translate(0, -100%);
  color: white;
  padding: 30px 0 0.25em;
  white-space: normal;
}
#header .block-nav-mobile .block-top {
  position: relative;
  top: auto;
  right: 0.6em;
  padding: 0 0 1em;
  opacity: 1 !important;
  transform: none !important;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}
#header .block-nav-mobile .block-top a {
  font-weight: 700;
}
#header .block-nav-mobile .block-top a:hover,
#header .block-nav-mobile .block-top .a:hover {
  color: white;
}
#header .block-nav-mobile .block-top ul {
  padding-bottom: 3em;
}
#header .block-nav-mobile .block-top .language-switcher .a:hover,
#header .block-nav-mobile .block-top .language-switcher a:hover {
  color: #1A2C59;
}
#header .block-nav-mobile .block-top .language-switcher ul {
  top: auto;
  bottom: -3em;
  padding: 1.5em 1.5em 6em;
  border-radius: 1em 1em 0 0;
}
#header .block-nav-mobile ul,
#header .block-nav-mobile li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#header .block-nav-mobile > ul {
  display: block;
  padding: 0 0 0.25em;
  margin: 0 50px 0 0;
  width: auto;
  max-height: calc(100vh - 50px - 4em);
  overflow: auto;
  flex-grow: 1;
}
#header .block-nav-mobile > ul > li {
  padding: 0;
  margin: 0 0 0.5em;
}
#header .block-nav-mobile > ul > li:last-child {
  margin-bottom: 0;
}
#header .block-nav-mobile > ul > li:after {
  display: none;
}
#header .block-nav-mobile > ul > li > a {
  display: inline-block;
  font-size: 1.2em;
  padding: 0.5rem 0;
  text-decoration: none;
}
#header .block-nav-mobile > ul > li .v {
  display: inline-block;
  position: absolute;
  z-index: 1;
  width: 1em;
  height: 1em;
  margin: 0.1em 0 0 0.3em;
  font-size: 1.4em;
  line-height: 0.8;
  text-align: center;
  transition: transform 0.25s ease;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
}
#header .block-nav-mobile > ul > li .v:after {
  font-family: "FontAwesome";
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none !important;
  content: "\f105";
}
#header .block-nav-mobile > ul > li.selected .v {
  transform: rotate(90deg);
}
#header .block-nav-mobile > ul > li > ul {
  display: none;
  color: #C1C2E1;
  margin-bottom: 2em;
}
#header .block-nav-mobile > ul > li > ul > li {
  margin: 0.5em 0;
}
#header .block-nav-mobile > ul > li > ul > li.selected {
  color: #D1AB49;
  padding-top: 0.3em;
}
#header .block-nav-mobile > ul > li > ul > li.selected > a {
  font-weight: bold;
  color: #D1AB49;
}
#header .block-nav-mobile > ul > li.selected > ul {
  display: block;
}
@media screen and (max-height: 800px) {
  #header .block-nav-mobile > ul > li {
    margin-bottom: 0.25em;
  }
  #header .block-nav-mobile > ul > li > a {
    padding: 0.25rem 0;
  }
  #header .block-nav-mobile > ul > li > ul {
    font-size: 0.9em;
  }
}
@media screen and (max-height: 700px) {
  #header .block-nav-mobile > ul > li {
    margin-bottom: 0.1em;
  }
  #header .block-nav-mobile > ul > li > a {
    padding: 0.1rem 0;
    font-size: 1em;
  }
  #header .block-nav-mobile > ul > li > ul {
    font-size: 0.8em;
  }
}
#header #nav-toggle-mobile {
  display: none;
}
@media screen and (max-width: 1024px), (max-height: 600px) {
  #header {
    --logo-size: 80px;
    background: #F1F1FF;
    --logo-size: 100px;
  }
  .single #header, .archive-page #header {
    background: #f4f4f4;
  }
  #header .layout {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  #header .block-nav-mobile {
    display: flex;
    flex-direction: column;
  }
  #header .block-top,
  #header .block-nav,
  #header .block-subnav {
    transform: translate(0, -100%);
    opacity: 0;
  }
  #header .block-toggle {
    opacity: 1;
    z-index: 1101;
  }
  #header:before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    background: #1A2C59;
    transition: height 0.4s ease-in-out, opacity 0.4s ease-in-out;
  }
  #header #nav-toggle {
    display: none;
  }
  #header #nav-toggle-mobile {
    display: block;
  }
}
body.scrolled2:not(.scroll-top) #header {
  background-color: #F1F1FF;
}
body.scrolled2:not(.scroll-top).single #header, body.scrolled2:not(.scroll-top).archive-page #header {
  background-color: #f4f4f4;
}
body.scrolled #header {
  --logo-size: 80px;
  background: #F1F1FF;
}
.single body.scrolled #header, .archive-page body.scrolled #header {
  background: #f4f4f4;
}
body.scrolled #header .layout {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
body.scrolled #header .block-nav-mobile {
  display: flex;
  flex-direction: column;
}
body.scrolled #header .block-top,
body.scrolled #header .block-nav,
body.scrolled #header .block-subnav {
  transform: translate(0, -100%);
  opacity: 0;
}
body.scrolled #header .block-toggle {
  opacity: 1;
  z-index: 1101;
}
body.scrolled #header:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  background: #1A2C59;
  transition: height 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
body.scrolled #header .block-page-title {
  opacity: 1;
  transform: translate(-50%, -50%);
}
body.menu-on.scrolled #header:before {
  opacity: 1;
  height: 100vh;
}
body.menu-on.scrolled #header .block-toggle {
  color: white;
}
body.menu-on.scrolled #header .block-logo {
  opacity: 0;
  transform: translate(0, -100%);
}
body.menu-on.scrolled #header .block-nav-mobile {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 1024px), (max-height: 600px) {
  body.menu-on #header:before {
    opacity: 1;
    height: 100vh;
  }
  body.menu-on #header .block-toggle {
    color: white;
  }
  body.menu-on #header .block-logo {
    opacity: 0;
    transform: translate(0, -100%);
  }
  body.menu-on #header .block-nav-mobile {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 767px) {
  body.scrolled.single #header .block-page-title {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  #header {
    --logo-size: 70px;
  }
  body.scrolled #header {
    --logo-size: 70px;
  }
  #header body.scroll-top {
    --logo-size: 100px;
  }
}

#nav {
  /*
      @mixin hamburger-menu() {
          color:inherit;

          > ul {
              display:block;
              max-height:calc(100vh - 150px - 4em);
              overflow:auto;
              padding:0 0 0.25em;
              > li {
                  padding:0;
                  margin:0 0 .5em;
                  &:last-child {
                      margin-bottom:0;
                  }
                  &:after {
                      display:none;
                  }
                  > a {
                      display:inline-block;
                      font-size: 1.2em;
                      padding:.5rem 0;
                      &:after {
                          //display:none;
                      }
                  }

                  > ul {
                      display:none;
                      color: $color-light-blue;
                      > li {
                          margin:.5em 0;
                          &.selected {
                              color: $color-yellow;
                              padding-top: .3em;
                              > a {
                                  font-weight:bold;
                              }
                          }
                      }
                  }
                  &.selected {
                      > ul {
                          display:block;
                      }
                  }
              }
          }
      }
  */
}

#top-subnav {
  display: none;
  padding: 0.8rem 0 0;
  font-size: 0.85em;
  color: #6669A0;
}
#top-subnav.on {
  display: block;
}
#top-subnav a {
  color: inherit;
}
#top-subnav ul,
#top-subnav li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#top-subnav > ul {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  justify-content: flex-end;
  padding: 0 0 1em;
  text-align: right;
}
#top-subnav > ul > li {
  margin: 0 0 0 1.5em;
}
#top-subnav > ul > li a {
  text-decoration: none;
  transition: 0.25s ease;
}
#top-subnav > ul > li a:hover {
  transition: 0.25s ease;
  color: #1A2C59;
}
#top-subnav > ul > li.current-menu-item {
  color: #1A2C59;
}
#top-subnav > ul > li.current-menu-item > a {
  font-weight: 600;
}

.theme-block.related + #footer {
  background: #f4f4f4;
}

#footer {
  overflow: hidden;
  position: relative;
  z-index: 11;
  margin: 0 0;
  padding: calc(var(--blockMargin, 6rem) * 0.75) 0 0;
  color: #E4E4F7;
}
#footer:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0px;
  left: 50%;
  width: 150%;
  height: 300px;
  margin: 0 0 0 -75%;
  background: #1A2C59;
  border-radius: 50% 50% 0 0;
}
@media screen and (max-width: 1200px) {
  #footer:before {
    width: 1800px;
    margin-left: -900px;
  }
}
#footer:after {
  content: " ";
  display: block;
  position: absolute;
  top: 299px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1A2C59;
}
#footer .heading {
  color: inherit;
}
#footer .wrap {
  position: relative;
}
#footer .layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 200px 1fr 1fr auto;
  -moz-column-gap: 2em;
       column-gap: 2em;
  grid-template-rows: auto calc(var(--blockMargin, 4rem) * 0.5) auto auto;
  grid-template-areas: "logo contact newsletter newsletter" ". . . ." "address address address social" "copyright-links copyright-links copyright-links copyright-links";
}
@media screen and (max-width: 1200px) {
  #footer .layout {
    grid-template-columns: 200px 1fr auto;
    grid-template-areas: "logo contact contact" "logo . ." "logo newsletter newsletter" ". . ." "address address social" "copyright-links copyright-links copyright-links";
    grid-template-rows: auto 1.5em auto calc(var(--blockMargin, 8rem) * 1) auto auto;
  }
}
@media screen and (min-width: 1200px) {
  #footer .layout .block-contact .heading {
    max-width: 260px;
  }
}
@media screen and (max-width: 767px) {
  #footer .layout {
    grid-template-columns: 200px 1fr auto;
    grid-template-areas: "logo logo logo" "contact contact contact" "newsletter newsletter newsletter" "social social social" "address address address" "copyright-links copyright-links copyright-links";
    grid-template-rows: auto;
  }
  #footer .layout .block-logo {
    margin: 0 auto 2em;
  }
  #footer .layout .block-logo a img {
    width: 150px;
  }
  #footer .layout .block-contact {
    margin: 0 auto 2.5em;
    text-align: center;
    line-height: 1.25;
  }
  #footer .layout .block-contact .heading {
    margin-bottom: 0.75em;
  }
  #footer .layout .block-newsletter {
    margin: 0 auto 2.75em;
    text-align: center;
  }
  #footer .layout .block-newsletter h3 {
    margin-bottom: 0.25em;
  }
  #footer .layout .block-newsletter p {
    line-height: 1.4;
    margin: 0 auto 1.25em;
  }
  #footer .layout .block-social {
    margin: 0 auto 0.75em;
  }
  #footer .layout .block-social .social-icons li {
    margin: 0 0.4em;
  }
  #footer .layout .block-address {
    margin: 0 auto 1em;
    text-align: center;
  }
  #footer .layout .block-copyright-links {
    text-align: center;
    padding: 1.5em 0;
  }
  #footer .layout .block-copyright-links:before {
    margin-bottom: 1.5em;
  }
}
@media screen and (max-width: 600px) {
  #footer .layout {
    grid-template-columns: auto;
    grid-template-areas: "logo logo" "contact contact" "newsletter newsletter" "social social" "address address" "copyright-links copyright-links";
  }
}
#footer .block-logo {
  grid-area: logo;
}
#footer .block-logo a {
  display: inline-block;
}
#footer .block-logo a img {
  width: 176px;
}
#footer .block-contact {
  grid-area: contact;
}
#footer .block-contact .heading {
  margin-bottom: 0.55em;
}
#footer .block-newsletter {
  grid-area: newsletter;
}
#footer .block-newsletter form {
  max-width: 500px;
}
#footer .block-newsletter .inputs {
  display: flex;
}
#footer .block-newsletter .inputs input[type=email] {
  flex-grow: 1;
  margin-right: 1em;
}
@media screen and (max-width: 500px) {
  #footer .block-newsletter .inputs {
    display: block;
  }
  #footer .block-newsletter .inputs input[type=email] {
    width: calc(100% - 2em);
    margin-right: 0;
  }
  #footer .block-newsletter .inputs button {
    margin: 1em 0 0;
  }
}
#footer .block-address {
  grid-area: address;
  font-size: 0.8em;
  align-self: center;
}
#footer .block-address a {
  color: inherit;
  text-decoration: none;
}
#footer .block-address a:hover {
  color: #D1AB49;
  text-decoration: none;
}
#footer .block-social {
  grid-area: social;
}
#footer .block-social .social-icons li {
  background: #E4E4F7;
  height: 34px;
  width: 34px;
  border-radius: 50%;
  text-align: center;
  margin: 0 0.25em;
  transition: 0.25s ease;
}
#footer .block-social .social-icons li:hover {
  background: #D1AB49;
}
#footer .block-social a {
  color: #1A2C59;
  display: inline-block;
  font-size: 20px;
  margin-top: 2px;
}
#footer .block-social svg {
  display: inline-block;
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke-width: 0;
}
#footer .block-copyright-links {
  position: relative;
  grid-area: copyright-links;
  padding: 1em 0;
  text-transform: uppercase;
  font-size: 0.667em;
  font-weight: 700;
  color: #9595AC;
  letter-spacing: 0.5px;
}
#footer .block-copyright-links a {
  color: inherit;
  text-decoration: none;
}
#footer .block-copyright-links a:hover {
  color: #C1C2E1;
  text-decoration: none;
}
#footer .block-copyright-links:before {
  position: relative;
  content: " ";
  display: block;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-bottom: 1em;
  height: 2px;
  background: #3D4E79;
  opacity: 0.5;
}
@media screen and (min-width: 1800px) {
  #footer .block-copyright-links:before {
    width: 1800px;
    margin-left: -900px;
  }
}

#banner {
  position: relative;
  margin: 0 0 calc(var(--blockMargin, 4rem) * 0.5);
}

#banner.post {
  margin-top: calc(var(--wrap-padding-top) * -1);
}
@media screen and (min-width: 1800px) {
  #banner.post {
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
  }
}
#banner.post .layout {
  display: grid;
  grid-template-columns: 1fr 3em 600px 600px 3em 1fr;
  grid-template-rows: 200px minmax(200px, 1fr) auto auto 2em calc(var(--blockMargin, 3.2rem) * 0.4);
  grid-template-areas: ". . .     .     .     ." ". . .     image image image" ". . title image image image" ". . meta  image image image" ". . .     image image image" ". . .     image image image";
}
#banner.post .layout:before {
  content: " ";
  display: block;
  position: relative;
  z-index: 0;
  background: #f4f4f4;
  grid-column-start: 2;
  grid-column-end: -1;
  grid-row-start: 1;
  grid-row-end: 6;
  border-radius: 0 0 0 15px;
}
#banner.post .block-title,
#banner.post .block-meta,
#banner.post .block-image {
  position: relative;
  z-index: 1;
}
#banner.post .block-title {
  grid-area: title;
  padding: 0em 2em 0 2rem;
  font-size: 2rem;
  max-width: 800px;
}
#banner.post .block-meta {
  grid-area: meta;
  padding: 0 2em 1rem 2rem;
  font-size: 0.88rem;
  text-transform: uppercase;
  color: #353783;
  font-weight: bold;
  letter-spacing: 0.5px;
}
#banner.post .block-meta a {
  color: inherit;
  text-decoration: none;
}
#banner.post .block-meta a:hover {
  text-decoration: underline;
}
#banner.post .block-meta .icon {
  margin-right: 5px;
}
#banner.post .block-image {
  grid-area: image;
}
#banner.post .block-image img {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 1324.1379310345px) {
  #banner.post .layout {
    grid-template-columns: 4.6875vw 1fr 1fr 4.6875vw;
    grid-template-areas: ". .     .     ." ". .     image image" ". title image image" ". meta  image image" ". .     image image" ". .     image image";
  }
  #banner.post .layout:before {
    grid-column-start: 1;
    border-radius: 0;
  }
}
@media screen and (max-width: 767px) {
  #banner.post .layout {
    grid-template-rows: 200px 1fr auto auto 1em;
    grid-template-areas: ". . . ." ". image image ." ". title title ." ". meta meta ." ". . . .";
  }
  #banner.post .block-title {
    padding: 1rem 0 0;
  }
  #banner.post .block-meta {
    padding-left: 0;
  }
  #banner.post .block-image img {
    border-radius: 20px;
  }
}
#banner.post.no-image .layout {
  grid-template-rows: 200px minmax(200px, 1fr) auto auto 2em auto;
  grid-template-areas: ". . .     .     .     ." ". . .     .     .     ." ". . title title . ." ". . meta  meta meta ." ". . .     .     .     ." ". . .     .     .     .";
}
@media screen and (max-width: 1324.1379310345px) {
  #banner.post.no-image .layout {
    grid-template-areas: ". .     .     ." ". .     .     ." ". title title ." ". meta  meta ." ". .     .     ." ". .     .     .";
  }
}
@media screen and (max-width: 767px) {
  #banner.post.no-image .layout {
    grid-template-areas: ". . . ." ". . . ." ". title title ." ". meta meta ." ". . . .";
  }
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1324.1379310345px) {
  .wrap {
    margin: 0 4.6875%;
  }
}

#wrap {
  --wrap-padding-top: 300px;
  position: relative;
  padding: var(--wrap-padding-top, 300px) 0 0;
}
@media screen and (max-width: 940px) {
  #wrap {
    --wrap-padding-top: 250px;
  }
}
@media screen and (max-width: 700px) {
  #wrap {
    --wrap-padding-top: 200px;
  }
}

.theme-block {
  position: relative;
  margin: calc(var(--blockMargin, 8rem) * 1) 0;
}
.theme-block:first-child {
  margin-top: 0;
}
.theme-block:last-child {
  margin-bottom: 0;
}
.theme-block.full-width {
  left: 50%;
  width: 100vw;
  width: var(--viewportWidth, 100vw);
  margin-left: -50vw;
  margin-left: calc(var(--viewportWidth, 100vw) / -2);
}

.main-content {
  --main-content-margin-bottom: calc(var(--blockMargin, 8rem) * 1);
  position: relative;
  z-index: 10;
  min-height: 50vh;
  margin: 0 0 var(--main-content-margin-bottom);
  padding: 0;
  --page-blocks-width: 900px;
}
body.single .main-content {
  --page-blocks-width: 700px;
}
.main-content .page-blocks {
  max-width: var(--page-blocks-width);
  margin-left: auto;
  margin-right: auto;
}
body.error404 .main-content {
  min-height: 25vh;
}

.social-icons {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.social-icons li {
  margin: 0 0 0 5px;
}

.block-posts {
  position: relative;
  margin: calc(var(--blockMargin, 8rem) * 1) 0 0;
  padding: calc(var(--blockMargin, 2rem) * 0.25) 0 0;
  border-top: 2px solid #F1F1FF;
}
.block-posts .query-posts {
  margin-bottom: 2em;
}
@media screen and (min-width: 1324.1379310345px) {
  .main-content > .wrap .page-blocks > .block-posts {
    left: 50%;
    width: 1200px;
    margin-left: -600px;
  }
}

.theme-block.filters {
  position: relative;
  z-index: 20;
  margin-top: calc(var(--blockMargin, 2.4rem) * 0.3);
  margin-bottom: calc(var(--blockMargin, 2.4rem) * 0.3);
}
.theme-block.filters .filters {
  display: flex;
  justify-content: center;
  align-items: center;
}
.theme-block.filters .filters label {
  font-size: 0.889rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.64px;
  color: #1A2C59;
  margin-right: 0.4em;
}
.theme-block.filters .filter {
  position: relative;
  z-index: 1;
  margin: 0 0 0 1.25em;
  min-width: 230px;
}
.theme-block.filters .filter.on {
  z-index: 10;
}
.theme-block.filters button {
  margin: 0 0 0 1.25em;
}
.theme-block.filters .block-meta {
  margin: 1em 0 0;
  text-align: center;
  font-size: 0.8em;
}
body.search-results .theme-block.filters .block-meta, body.search-no-results .theme-block.filters .block-meta {
  display: none;
}
@media screen and (max-width: 767px) {
  .theme-block.filters .filters {
    display: block;
  }
  .theme-block.filters .filters label {
    display: block;
    text-align: center;
    margin-bottom: 1em;
  }
  .theme-block.filters .filter {
    margin: 0 0 1em;
  }
  .theme-block.filters button {
    text-align: center;
    width: 100%;
    margin: 0;
  }
}

.theme-block.featured {
  margin-bottom: calc(var(--blockMargin, 4rem) * 0.5);
  background: #F1F1FF;
  border-radius: 15px;
  padding: 2em;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .theme-block.featured {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    border-radius: 0;
  }
}
@media screen and (min-width: 1025px) {
  .theme-block.featured .posts {
    display: grid;
    grid-template-columns: 50% auto;
    grid-template-areas: "one two" "one three";
    -moz-column-gap: 2em;
         column-gap: 2em;
  }
}
.theme-block.featured .block-title {
  grid-area: title;
}
.theme-block.featured .hentry:nth-child(1) {
  grid-area: one;
  display: block;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.theme-block.featured .hentry:nth-child(1) .thumbnail {
  position: relative;
  top: auto;
  left: auto;
  width: auto;
  height: auto;
  padding: 0 0 70%;
  margin: 0 0 1em;
}
.theme-block.featured .hentry:nth-child(1) .more {
  display: none;
}
.theme-block.featured .hentry:nth-child(2) {
  grid-area: two;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 1025px) {
  .theme-block.featured .hentry:nth-child(2) {
    margin-top: 0;
  }
}
.theme-block.featured .hentry:nth-child(3) {
  grid-area: three;
}

.theme-block.meta-bottom {
  max-width: var(--page-blocks-width);
  margin: calc(var(--blockMargin, 3.2rem) * 0.4) auto 0;
  font-size: 0.88em;
  font-weight: bold;
  text-transform: uppercase;
  color: #6669A0;
}
.theme-block.meta-bottom a {
  color: inherit;
  text-decoration: none;
}
.theme-block.meta-bottom a:hover {
  text-decoration: underline;
}

.theme-block.related {
  padding: calc(var(--blockMargin, 4rem) * 0.5) 0;
  margin: calc(var(--blockMargin, -4rem) * -0.5) 0 0;
  background: #f4f4f4;
}
.theme-block.related .layout {
  max-width: 1000px;
  margin: 0 auto;
}
.theme-block.related .block-title {
  margin: 0 0 calc(var(--blockMargin, 4rem) * 0.5);
  text-align: center;
  text-transform: uppercase;
  color: #6669A0;
  font-size: 1.22rem;
}
.theme-block.related .block-related {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 calc(var(--blockMargin, 4rem) * 0.5);
}
.theme-block.related .block-related .hentry {
  width: 47%;
  margin: 0 0 2em;
}
@media screen and (max-width: 767px) {
  .theme-block.related .block-related {
    display: block;
  }
  .theme-block.related .block-related .hentry {
    width: auto;
    margin: 0 0 1em;
  }
}

.theme-block.team-bio {
  margin: 0 0 2em;
  text-align: center;
}
.theme-block.team-bio .photo {
  display: block;
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto 1.75rem;
  background: #f4f4f4;
  border-radius: 50%;
}
.theme-block.team-bio .photo img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 30%;
     object-position: 50% 30%;
  border-radius: 50%;
}
.theme-block.team-bio .name {
  max-width: 900px;
  margin: 0 auto 0.5rem;
  line-height: 1;
}
.theme-block.team-bio .position {
  font-size: 1.16em;
}
.theme-block.team-bio .company {
  font-style: italic;
  font-size: 1em;
  opacity: 0.8;
}
.theme-block.team-bio .contact {
  margin: 0.5em 0 0;
  display: flex;
  gap: 0.4em;
  align-items: center;
  justify-content: center;
}
.theme-block.team-bio .contact a {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.inline-sep {
  margin: 0 0.5em;
}

.inline-search {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  text-align: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.inline-search input[type=text] {
  border: 1px solid currentColor;
  width: 100%;
}

.home h1 strong,
.home .h1 strong,
.home h3 strong,
.home .h3 strong {
  font-weight: inherit;
  position: relative;
  background-color: revert;
}
.home h1 strong:after,
.home .h1 strong:after,
.home h3 strong:after,
.home .h3 strong:after {
  content: " ";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  min-height: 0.2rem;
  height: 0.15em;
  margin: 0.1rem 0 0;
  background-color: #D87454;
}
.home h1 strong:after,
.home .h1 strong:after {
  margin-top: 0;
}

.gform_wrapper.gravity-theme .gfield_description a {
  text-decoration: none;
}
.gform_wrapper.gravity-theme .gfield_description a:hover {
  text-decoration: underline;
}

.hentry {
  position: relative;
}

.hentry.empty {
  opacity: 0;
  visibility: hidden;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.hentry.excerpt {
  --padding-top: 1.5em;
  display: grid;
  grid-template-columns: auto 4em 60px;
  grid-template-rows: auto 1fr;
  grid-template-areas: "title . more" "excerpt . more";
  border-top: 2px solid #C1C2E1;
  padding: var(--padding-top) 0 0;
  margin: 1.5em 0 0;
}
.hentry.excerpt.has-post-thumbnail:not(.has-hidden-post-thumbnail) {
  grid-template-columns: 300px 2em 1fr 4em 60px;
  grid-template-areas: "image . title . more" "image . excerpt . more";
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .hentry.excerpt {
    grid-template-columns: auto 2em 60px;
  }
}
.hentry.excerpt.featured {
  grid-template-columns: auto 3em 60px !important;
  grid-template-areas: "image image image" "title .     more" "excerpt .   more" !important;
  border-top: 0;
  padding-top: 0;
  border-bottom: 2px solid #C1C2E1;
  padding-bottom: var(--padding-top);
}
.hentry.excerpt.featured .thumbnail {
  padding-bottom: 66.6666666667%;
  margin-bottom: 1.25em;
}
.hentry.excerpt.featured:first-child {
  margin-top: 0;
}
.hentry.excerpt.featured:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.hentry.excerpt .thumbnail {
  position: relative;
  grid-area: image;
  display: block;
  width: auto;
  min-height: calc(var(--thumbnail-width) * 0.66);
}
.hentry.excerpt .thumbnail img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .hentry.excerpt .thumbnail {
    padding: 0 0 60%;
    margin-bottom: 1em;
  }
}
.hentry.excerpt.has-tags {
  --padding-top: 2.6em;
}
.hentry.excerpt.has-tags.has-post-thumbnail {
  --padding-top: 3em;
}
.hentry.excerpt.has-tags.has-hidden-post-thumbnail {
  --padding-top: 2.6em;
}
.hentry.excerpt .tags {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: flex;
  margin-top: -2px;
}
.hentry.excerpt .tags .tag {
  margin: 0 2px 0 0;
  padding: 0.64em 1em;
  font-size: 0.77em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.4px;
  background: #1A2C59;
  border-radius: 0 0 5px 5px;
  color: white;
  text-transform: uppercase;
}
.hentry.excerpt .tags .tag.date {
  background: #D87454;
}
.hentry.excerpt .title {
  grid-area: title;
}
.hentry.excerpt .title a {
  display: block;
}
.hentry.excerpt .content {
  grid-area: excerpt;
  font-size: 0.9em;
}
.hentry.excerpt .more {
  position: relative;
  display: inline-block;
  grid-area: more;
  color: #D87454;
  width: 60px;
  height: 60px;
  border: 3px solid currentColor;
  border-radius: 50%;
  transform: translate(0px, 0);
  transition: all 0.25s ease;
}
.hentry.excerpt .more svg {
  display: block;
  position: relative;
  top: 25%;
  left: 25%;
  width: 50%;
  height: 50%;
  stroke: currentColor;
  stroke-width: 0;
  fill: currentColor;
}
.hentry.excerpt:hover .more {
  background: #D87454;
  border-color: #D87454;
  color: white;
  transform: translate(6px, 0);
}
@media screen and (max-width: 767px) {
  .hentry.excerpt {
    display: block;
  }
  .hentry.excerpt .more {
    margin-top: 1em;
    width: 40px;
    height: 40px;
    border-width: 2px;
  }
}
.query-posts.has-columns .hentry.excerpt {
  display: block;
}
.query-posts.has-columns .hentry.excerpt .thumbnail {
  margin: 0 0 0.5em;
  height: 200px;
}
.query-posts.has-columns .hentry.excerpt .more {
  margin-top: 1em;
}

.hentry.excerpt.related {
  grid-template-columns: auto;
  grid-template-areas: "title";
}
.hentry.excerpt.related.has-post-thumbnail {
  grid-template-columns: 150px 1em 1fr;
  grid-template-areas: "image . title";
}
.hentry.excerpt.related .thumbnail {
  min-height: 120px;
}
.hentry.excerpt.related .title {
  font-size: 1.2rem;
}

.hentry.team .name {
  line-height: 1.15;
  font-size: 1.38rem;
  margin-bottom: 0.25em;
}
.hentry.team .photo {
  display: block;
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 0 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
  transform: translateZ(0);
}
.hentry.team .photo img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 30%;
     object-position: 50% 30%;
  border-radius: 50%;
  transition: transform 0.25s ease;
  transform: scale(1, 1);
}
.hentry.team .photo:hover img {
  transform: scale(1.05, 1.05);
}
@media screen and (max-width: 500px) {
  .hentry.team .photo {
    margin: 0 auto 1.5rem;
  }
}
.hentry.team .position {
  font-size: 1.16em;
  color: #6669A0;
  font-weight: 600;
  line-height: 1.25;
}
.hentry.team .company {
  font-style: italic;
  font-size: 1em;
  color: #767676;
  line-height: 1.4;
}

.hentry.search {
  margin-bottom: 1.75rem;
}
.hentry.search .title {
  margin: 0 0 0.25em;
}
.hentry.search .url {
  font-size: 0.8em;
}

/* General page styles */ /* General single post styles */ /* @group Pagination */
.posts-nav {
  top: 5em;
  clear: both;
  margin: 4em 0 2em;
  white-space: nowrap;
}
.posts-nav.max-page-1 {
  display: none;
}
.posts-nav.no-ajax {
  visibility: visible;
}
.posts-nav.ajax-pager {
  visibility: visible;
  text-align: center;
}
.posts-nav:after {
  content: " ";
  display: block;
  clear: both;
}
.posts-nav ul {
  margin: 0;
  padding: 0;
  text-align: center;
}
.posts-nav ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px 0 0;
  padding: 0;
  list-style: none;
  color: #aaa;
}
.posts-nav ul li.page_info {
  display: none;
}
.posts-nav ul li a {
  display: block;
  padding: 0.5em 0.7em;
  line-height: normal;
  text-decoration: none;
  border: 0;
}
.posts-nav ul li a:hover {
  color: white;
  background: #767676;
}
.posts-nav ul li.active_page {
  color: white;
  background: blue;
}
.posts-nav ul li.active_page a {
  padding: 0.5em 1em;
  color: #fff;
}

@media screen and (max-width: 700px) {
  .posts-nav {
    top: 0;
    margin-left: -10px;
    margin-right: -10px;
    font-size: 12px;
  }
  .posts-nav ul li {
    margin-right: 3px;
  }
}
.posts-nav.ajax-pager {
  text-align: center;
}
.posts-nav.ajax-pager .button.done {
  color: #b7b6bf;
  cursor: default;
  background: none;
}

/* @end */
/*
Styles loaded into backend Gutenberg admin and front end
*/
.has-padding-top {
  padding-top: calc(var(--blockMargin, 8rem) * 1) !important;
}

.has-padding-bottom {
  padding-bottom: calc(var(--blockMargin, 8rem) * 1) !important;
}

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

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

.has-margin-top {
  margin-top: calc(var(--blockMargin, 8rem) * 1) !important;
}

.has-margin-bottom {
  margin-bottom: calc(var(--blockMargin, 8rem) * 1) !important;
}

.has-half-margin-top {
  margin-top: calc(var(--blockMargin, 4rem) * 0.5) !important;
}

.has-half-margin-bottom {
  margin-bottom: calc(var(--blockMargin, 4rem) * 0.5) !important;
}

.has-neg-margin-top {
  margin-top: calc(var(--blockMargin, -8rem) * -1) !important;
}

.has-neg-margin-bottom {
  margin-bottom: calc(var(--blockMargin, -8rem) * -1) !important;
}

.has-neg-half-margin-top {
  margin-top: calc(var(--blockMargin, -4rem) * -0.5) !important;
}

.has-neg-half-margin-bottom {
  margin-bottom: calc(var(--blockMargin, -4rem) * -0.5) !important;
}

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

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

.has-auto-margin-horizontal {
  margin-left: auto !important;
  margin-right: auto !important;
}

.has-max-width-400 {
  max-width: 400px;
}
.has-max-width-400.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-500 {
  max-width: 500px;
}
.has-max-width-500.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-600 {
  max-width: 600px;
}
.has-max-width-600.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-700 {
  max-width: 700px;
}
.has-max-width-700.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-800 {
  max-width: 800px;
}
.has-max-width-800.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-900 {
  max-width: 900px;
}
.has-max-width-900.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-1000 {
  max-width: 1000px;
}
.has-max-width-1000.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-1100 {
  max-width: 1100px;
}
.has-max-width-1100.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-1200 {
  max-width: 1200px;
}
.has-max-width-1200.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.query-posts {
  position: relative;
  width: 100%;
}
.query-posts .extended-info {
  margin: calc(var(--blockMargin, 4rem) * 0.5) auto;
  width: 100%;
}
.query-posts .no-results {
  margin: calc(var(--blockMargin, 4rem) * 0.5) auto;
  width: 100% !important;
  margin-left: 0 !important;
  text-align: center;
}
.query-posts .hentry.promo-wide {
  margin-top: 4em;
  margin-bottom: 4em;
}
.query-posts .hentry.empty.static {
  order: 10000 !important;
}
.query-posts .hentry.wp-block-button,
.query-posts .hentry.heading {
  width: 100% !important;
}
.query-posts .hentry.wp-block-button {
  margin-top: calc(var(--blockMargin, 2rem) * 0.25);
  text-align: right;
}

.query-posts.one-across {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.query-posts.one-across.with-promos {
  display: flex;
  flex-direction: column;
}
.query-posts.one-across.with-promos > .hentry.promo-wide {
  order: -50 !important;
}
.query-posts.one-across.with-promos > .hentry:nth-child(1),
.query-posts.one-across.with-promos > .hentry:nth-child(2),
.query-posts.one-across.with-promos > .hentry:nth-child(3),
.query-posts.one-across.with-promos > .hentry:nth-child(4),
.query-posts.one-across.with-promos > .hentry:nth-child(5),
.query-posts.one-across.with-promos > .hentry:nth-child(6) {
  order: -100;
}

.query-posts.two-across {
  --gap: 3em;
  display: inline-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--gap));
  margin-left: calc(-1 * var(--gap));
  width: calc(100% + var(--gap));
}
.query-posts.two-across > .hentry:not(.promo-wide) {
  margin-top: var(--gap);
  margin-left: var(--gap);
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .query-posts.two-across {
    flex-direction: column;
    margin-left: 0;
    width: 100%;
  }
  .query-posts.two-across > .hentry:not(.promo-wide) {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .query-posts.two-across > .hentry:not(.promo-wide) {
    width: calc(50% - var(--gap));
  }
}

.query-posts.three-across {
  --gap: 3em;
  display: inline-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--gap));
}
.query-posts.three-across > .hentry:not(.promo-wide) {
  margin-top: var(--gap);
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .query-posts.three-across {
    flex-direction: column;
    margin-left: 0;
    width: 100%;
  }
  .query-posts.three-across > .hentry:not(.promo-wide) {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .query-posts.three-across > .hentry:not(.promo-wide) {
    width: calc(50% - 2em);
  }
}
@media screen and (min-width: 1024px) {
  .query-posts.three-across > .hentry:not(.promo-wide) {
    width: calc(33.333% - 1.5em);
  }
}

.query-posts.four-across {
  display: inline-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem 1.3rem;
}
.query-posts.four-across > .hentry {
  flex-basis: calc(25% - 1rem);
}
@media screen and (max-width: 500px) {
  .query-posts.four-across {
    justify-content: center;
    text-align: center;
  }
  .query-posts.four-across > .hentry {
    flex-basis: 100%;
  }
  .query-posts.four-across > .hentry.empty {
    display: none;
  }
}

.wp-block-column .query-posts > .hentry {
  flex-basis: calc(50% - 1rem);
}
.wp-block-column .query-posts > .hentry.empty {
  display: none;
}
@media screen and (max-width: 767px) {
  .wp-block-column .query-posts > .hentry {
    flex-basis: 100%;
  }
}

@media screen and (min-width: 768px) {
  #share-tab {
    position: absolute;
    z-index: 100;
    right: 0;
    top: 0vh;
    color: white;
    line-height: 1;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
  }
  #share-tab.fixed {
    position: fixed;
    top: 200px !important;
  }
  #share-tab > a.toggle {
    transform-origin: 100% 0%;
    transform: rotate(90deg) translate(100%, 0);
    line-height: 44px;
    height: 44px;
    width: 80px;
  }
  body.share-on #share-tab ul {
    z-index: 1;
    opacity: 1;
    margin-top: 0;
    max-height: 500px;
    overflow: visible;
  }
}
#share-tab > a.toggle {
  display: inline-block;
  padding: 0;
  text-align: center;
  background: #F1F1FF;
  color: #353783;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 0.7em 0.7em;
}
#share-tab > a.toggle:hover {
  background-color: #d8d8ff;
}
#share-tab ul, #share-tab li {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
#share-tab ul {
  position: absolute;
  right: 0;
  top: 110px;
  width: 44px;
  padding: 5px 0;
  background: #F1F1FF;
  text-align: center;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  margin: -30px 0 0 0;
  max-height: 0px;
  overflow: hidden;
  border-radius: 0;
}
#share-tab ul:before {
  position: absolute;
  top: -6px;
  left: 50%;
  margin: 0 0 0 -6px;
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border: 6px solid #F1F1FF;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 0;
}
#share-tab ul > li > a {
  display: block;
  padding: 15px 0;
  color: #353783;
  font-size: 16px;
}
#share-tab ul > li > a:hover {
  background-color: #d8d8ff;
}
@media screen and (max-width: 767px) {
  #share-tab {
    display: flex;
    justify-content: left;
    align-items: left;
    padding: 1em 0;
    margin: 1em 0 0;
    border-top: 2px solid #C1C2E1;
  }
  #share-tab > a.toggle {
    padding: 8px 6px 0 0;
    margin: 0;
    line-height: 18px;
    background: none;
    color: #6669A0;
    font-size: 0.88em;
    font-weight: 700;
    border-radius: 5px;
  }
  #share-tab > a.toggle:hover {
    background: none;
  }
  #share-tab ul {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    padding: 0;
    margin: 0 5px;
    max-height: none;
    opacity: 1;
    background: none;
  }
  #share-tab ul li {
    display: inline-block;
  }
  #share-tab ul li a {
    padding: 8px 10px;
    line-height: 18px;
    font-size: 20px;
    min-width: 20px;
    margin: 0 1px;
  }
  #share-tab ul li a:hover {
    border-radius: 5px;
  }
}

.slick-slider .slick-list {
  position: relative;
  overflow: hidden;
}
.slick-slider .slick-track:after {
  content: " ";
  display: block;
  clear: both;
}
.slick-slider .slick-slide {
  display: block;
  white-space: normal;
}

.slick-arrow {
  position: relative;
  z-index: 10000;
  cursor: pointer;
}
.slick-arrow .icon {
  transition: all 0.25s ease;
}
.slick-arrow.next:hover .icon.arrow-right {
  transform: translate(3px, 0);
}
.slick-arrow.prev:hover .icon.arrow-left {
  transform: translate(-3px, 0);
}

.slick-dots {
  display: block;
  margin: 1em 0.5em 0 0.5em;
  padding: 0;
  list-style: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.slick-dots li {
  display: inline-block;
  margin: 0 0.25em;
  max-width: 25px;
  width: 100%;
  flex-grow: 1;
}
.slick-dots li button {
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.7);
  text-indent: -10000px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 0;
}
.slick-dots li.slick-active button {
  background: #D87454;
}
@media screen and (max-width: 600px) {
  .slick-dots li {
    margin: 0 0.2em;
  }
}

.wp-block-theme-blocks-promotion {
  --content-padding: calc(var(--blockMargin, 4rem) * 0.5);
  position: relative;
  margin-bottom: calc(var(--blockMargin, 12rem) * 1.5);
}
.page-blocks > .wp-block-theme-blocks-promotion:last-child {
  margin-bottom: calc(var(--blockMargin, 16rem) * 2);
}
.wp-block-theme-blocks-promotion .layout {
  position: relative;
  z-index: 1;
  grid-template-columns: 30% auto;
  grid-template-areas: "image content";
  align-items: center;
  -moz-column-gap: var(--content-padding);
       column-gap: var(--content-padding);
  background-color: #F8E3AB;
  border-radius: 15px;
}
@media screen and (min-width: 1025px) {
  .wp-block-theme-blocks-promotion .layout {
    display: grid;
  }
}
.wp-block-theme-blocks-promotion .block-content {
  position: relative;
  z-index: 1;
  padding: var(--content-padding);
  grid-area: content;
}
.wp-block-theme-blocks-promotion .block-image {
  position: relative;
  z-index: 1;
  grid-area: image;
  height: 100%;
}
.wp-block-theme-blocks-promotion .block-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  border-radius: 15px 0 0 15px;
}
.wp-block-theme-blocks-promotion .wp-block-button > .wp-block-button__link:hover {
  background-color: #1A2C59;
  color: #F8E3AB;
}
@media screen and (min-width: 1025px) {
  .wp-block-theme-blocks-promotion .block-content {
    padding: var(--content-padding) var(--content-padding) var(--content-padding) 0;
  }
  .wp-block-theme-blocks-promotion.is-style-content-left .layout {
    grid-template-columns: auto 30%;
    grid-template-areas: "content image";
  }
  .wp-block-theme-blocks-promotion.is-style-content-left .block-content {
    padding-right: 0;
    padding-left: var(--content-padding);
  }
  .wp-block-theme-blocks-promotion.is-style-content-left .block-image img {
    border-radius: 0 15px 15px 0;
  }
}
@media screen and (max-width: 1024px) {
  .wp-block-theme-blocks-promotion {
    padding: 0;
  }
  .wp-block-theme-blocks-promotion .block-image {
    height: auto;
    min-height: 0;
    padding: 0 0 75%;
  }
  .wp-block-theme-blocks-promotion .block-image img {
    border-radius: 15px 15px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-promotion .block-content {
    padding: var(--content-padding);
  }
}
@media screen and (max-width: 500px) {
  .wp-block-theme-blocks-promotion {
    --content-padding: calc(var(--blockMargin, 2.4rem) * 0.3);
  }
}

.wp-block-theme-blocks-posts {
  position: relative;
}
.wp-block-theme-blocks-posts .query-posts {
  width: 100%;
}

.theme-block.wp-block-theme-blocks-posts {
  margin-bottom: calc(var(--blockMargin, 6rem) * 0.75);
  margin-top: calc(var(--blockMargin, 4.8rem) * 0.6);
}
.theme-block.wp-block-theme-blocks-posts:first-child {
  margin-top: 0;
}
.theme-block.wp-block-theme-blocks-posts:last-child {
  margin-bottom: 0;
}

.wp-block-theme-blocks-media-text {
  overflow: hidden;
  padding: calc(var(--blockMargin, 8.8rem) * 1.1) 0;
  background: #1A2C59;
  color: #E4E4F7;
}
.wp-block-theme-blocks-media-text h1, .wp-block-theme-blocks-media-text h2, .wp-block-theme-blocks-media-text h3, .wp-block-theme-blocks-media-text h4,
.wp-block-theme-blocks-media-text .wp-block-button.is-style-text-link {
  color: inherit;
}
.wp-block-theme-blocks-media-text .layout,
.wp-block-theme-blocks-media-text > .block-editor-inner-blocks > .block-editor-block-list__layout {
  display: grid;
  grid-template-columns: 5fr 1fr 6fr;
  grid-template-areas: "content . embed";
  align-items: center;
}
.wp-block-theme-blocks-media-text .block-content {
  grid-area: content;
  padding-right: 0;
  padding-left: 4.6875vw;
}
.wp-block-theme-blocks-media-text .block-embed {
  grid-area: embed;
}
.wp-block-theme-blocks-media-text .block-embed .wp-block-embed,
.wp-block-theme-blocks-media-text .block-embed .wp-block-image {
  margin: 0;
}
.wp-block-theme-blocks-media-text .block-embed .wp-block-image {
  display: block;
  position: relative;
}
.wp-block-theme-blocks-media-text .block-embed .wp-block-image img {
  display: block;
}
.wp-block-theme-blocks-media-text .block-embed .wp-block-image figcaption {
  display: none;
}
.wp-block-theme-blocks-media-text .block-embed img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media screen and (min-width: 768px) {
  .wp-block-theme-blocks-media-text.is-style-content-right .layout,
  .wp-block-theme-blocks-media-text.is-style-content-right > .block-editor-inner-blocks > .block-editor-block-list__layout {
    grid-template-columns: 5fr 1fr 6fr;
    grid-template-areas: "embed . content";
  }
}
.wp-block-theme-blocks-media-text.is-style-content-right .block-content {
  padding-left: 0;
  padding-right: 4.6875vw;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-media-text {
    padding: 0 0 calc(var(--blockMargin, 6rem) * 0.75);
  }
  .wp-block-theme-blocks-media-text .layout,
  .wp-block-theme-blocks-media-text > .block-editor-inner-blocks > .block-editor-block-list__layout {
    grid-template-columns: auto;
    grid-template-areas: "embed" "content";
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 0;
  }
  .wp-block-theme-blocks-media-text .block-content {
    padding: 0;
    margin-top: calc(var(--blockMargin, 4rem) * 0.5);
    margin-right: 4.6875vw;
    margin-left: 4.6875vw;
  }
}

.theme-block.wp-block-theme-blocks-media-text .block-embed {
  position: relative;
}
@media screen and (min-width: 768px) {
  .theme-block.wp-block-theme-blocks-media-text .block-embed .wp-block-embed {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: red;
  }
  .theme-block.wp-block-theme-blocks-media-text .block-embed .wp-block-embed__wrapper {
    padding: 0 !important;
    width: 100%;
    height: 100%;
  }
  .theme-block.wp-block-theme-blocks-media-text .block-embed a.embed.play,
  .theme-block.wp-block-theme-blocks-media-text .block-embed .oembed.iframe {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .theme-block.wp-block-theme-blocks-media-text .block-embed .wp-block-embed {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
  }
  .theme-block.wp-block-theme-blocks-media-text .block-embed .wp-block-embed__wrapper {
    /*
    > a.embed {
        position:relative;
        width:auto;
        height:0;
    }
    */
  }
}

.wp-block-theme-blocks-hero {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  padding: calc(var(--blockMargin, 16rem) * 2) 0;
}
.wp-block-theme-blocks-hero:first-child {
  margin-top: calc(var(--wrap-padding-top) * -0.6);
}
.wp-block-theme-blocks-hero .layout {
  min-height: 30vh;
  display: flex;
  align-items: center;
}
.wp-block-theme-blocks-hero .block-content {
  position: relative;
  z-index: 1;
  max-width: 50%;
}
.wp-block-theme-blocks-hero .block-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.wp-block-theme-blocks-hero .block-image img {
  position: absolute;
  right: 0;
  width: 60%;
  height: 100%;
  top: calc(var(--blockMargin, -2rem) * -0.25);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 100% 100%;
     object-position: 100% 100%;
}
@media screen and (max-width: 1024px) {
  .wp-block-theme-blocks-hero {
    padding-top: calc(var(--blockMargin, 12rem) * 1.5);
  }
  .wp-block-theme-blocks-hero .block-content {
    max-width: 70%;
  }
  .wp-block-theme-blocks-hero .block-image img {
    width: 90%;
    top: calc(var(--blockMargin, 4rem) * 0.5);
  }
}
@media screen and (max-width: 600px) {
  .wp-block-theme-blocks-hero .block-content {
    max-width: none;
  }
}

.wp-block-theme-blocks-hero + .theme-block {
  margin-top: -5em;
}
@media screen and (max-width: 1024px) {
  .wp-block-theme-blocks-hero + .theme-block {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-hero + .theme-block {
    margin-top: 6em;
  }
}

.wp-block-theme-blocks-page-banner {
  position: relative;
  text-align: center;
  overflow: hidden;
  margin-bottom: calc(var(--blockMargin, 2.8rem) * 0.35);
  background: white;
  --background-color: #F1F1FF;
}
.wp-block-theme-blocks-page-banner.archive, .wp-block-theme-blocks-page-banner:first-child {
  margin-top: calc(var(--wrap-padding-top) * -1);
}
.wp-block-theme-blocks-page-banner.archive {
  --background-color: #f4f4f4;
}
.wp-block-theme-blocks-page-banner .layout {
  display: grid;
  grid-template-areas: "." "title" "content" "image" "image";
  grid-template-rows: var(--wrap-padding-top) auto 1fr auto auto;
}
.wp-block-theme-blocks-page-banner.no-image .block-content {
  padding-bottom: calc(var(--blockMargin, 4rem) * 0.5);
}
.wp-block-theme-blocks-page-banner .block-title {
  position: relative;
  z-index: 1;
  grid-area: title;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-theme-blocks-page-banner .block-image {
  grid-area: image;
  position: relative;
  z-index: 1;
  margin: 2em 0 0;
}
.wp-block-theme-blocks-page-banner .block-image .image {
  position: relative;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-theme-blocks-page-banner .block-image img {
  display: block;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.wp-block-theme-blocks-page-banner .block-content {
  grid-area: content;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-theme-blocks-page-banner .block-content img {
  max-height: 250px;
  width: auto;
}
.wp-block-theme-blocks-page-banner .block-background {
  position: relative;
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 5;
}
.wp-block-theme-blocks-page-banner .block-background:before, .wp-block-theme-blocks-page-banner .block-background:after {
  background: var(--background-color);
}
.wp-block-theme-blocks-page-banner .block-background:before {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 110vw;
  margin-left: -55vw;
  height: 200px;
  border-radius: 0 0 50% 50%;
}
@media screen and (max-width: 1200px) {
  .wp-block-theme-blocks-page-banner .block-background:before {
    width: 1320px;
    margin-left: -660px;
  }
}
.wp-block-theme-blocks-page-banner .block-background:after {
  content: " ";
  display: block;
  position: absolute;
  bottom: 199px;
  left: 50%;
  width: 100vw;
  height: 100%;
  margin: 0 0 0 -50vw;
}
.wp-block-theme-blocks-page-banner.is-style-flat .block-background:before {
  display: none;
}
.wp-block-theme-blocks-page-banner.is-style-flat .block-background:after {
  bottom: 0;
}

.wp-block-theme-blocks-step {
  --border-radius: 15px;
  --top-padding-width: calc(var(--blockMargin, 4rem) * 0.5);
  --right-padding-width: calc(var(--blockMargin, 4rem) * 0.5);
  --bottom-padding-width: calc(var(--blockMargin, 3.6rem) * 0.45);
  --left-padding-width: 140px;
  margin-top: calc(var(--blockMargin, 2rem) * 0.25);
  margin-bottom: calc(var(--blockMargin, 2rem) * 0.25);
  padding: var(--top-padding-width) var(--right-padding-width) var(--bottom-padding-width) 0;
  border-radius: var(--border-radius);
  background: #1A2C59;
  color: #E4E4F7;
}
.wp-block-theme-blocks-step h1, .wp-block-theme-blocks-step h2, .wp-block-theme-blocks-step h3, .wp-block-theme-blocks-step h4, .wp-block-theme-blocks-step h5, .wp-block-theme-blocks-step h6, .wp-block-theme-blocks-step .heading {
  color: inherit;
}
.wp-block-theme-blocks-step .layout {
  display: grid;
  grid-template-columns: var(--left-padding-width) 1fr;
  grid-template-areas: "step content";
}
.wp-block-theme-blocks-step .block-step {
  grid-area: step;
  margin: -0.25em 0 0;
  color: #D1AB49;
  text-align: center;
  font-size: 4.44rem;
  line-height: 1;
  font-weight: 600;
}
.wp-block-theme-blocks-step .block-content {
  grid-area: content;
}
.wp-block-theme-blocks-step .block-content > .expand-content {
  margin-left: calc(var(--left-padding-width) * -1);
  margin-right: calc(var(--right-padding-width) * -1);
  font-size: 0.89em;
}
.wp-block-theme-blocks-step .block-content > .expand-content h3 {
  font-size: 1.3rem;
  color: #1A2C59;
}
.wp-block-theme-blocks-step .block-content > .expand-content > .wp-block-group {
  padding: calc(var(--blockMargin, 2.4rem) * 0.3) calc(var(--blockMargin, 2.4rem) * 0.3) calc(var(--blockMargin, 2.4rem) * 0.3) var(--left-padding-width);
}
.wp-block-theme-blocks-step .block-content > .expand-content:last-child {
  margin-bottom: calc(var(--bottom-padding-width) * -1);
}
.wp-block-theme-blocks-step .block-content > .expand-content:last-child > .wp-block-group {
  border-radius: 0 0 calc(var(--border-radius) - 1px) calc(var(--border-radius) - 1px);
}
.wp-block-theme-blocks-step .block-content > .expand-content p a {
  color: #6669A0;
  text-decoration: none;
}
.wp-block-theme-blocks-step .block-content > .expand-content p a:hover {
  text-decoration: underline;
}
.wp-block-theme-blocks-step .block-content > .wp-block-group {
  padding: calc(var(--blockMargin, 2.4rem) * 0.3) calc(var(--blockMargin, 2.4rem) * 0.3) calc(var(--blockMargin, 2.4rem) * 0.3) var(--left-padding-width);
  margin-left: calc(var(--left-padding-width) * -1);
  margin-right: calc(var(--blockMargin, -4rem) * -0.5);
}
.wp-block-theme-blocks-step .block-content > .wp-block-group:last-child {
  margin-bottom: calc(var(--bottom-padding-width) * -1);
  border-radius: 0 0 calc(var(--border-radius) - 1px) calc(var(--border-radius) - 1px);
}
.wp-block-theme-blocks-step .block-content p a {
  color: #D1AB49;
  text-decoration: none;
}
.wp-block-theme-blocks-step .block-content p a:hover {
  text-decoration: underline;
}
.wp-block-theme-blocks-step .wp-block-columns,
.wp-block-theme-blocks-step .wp-block-group {
  margin-top: 1em;
  margin-bottom: 1em;
}
.wp-block-theme-blocks-step .wp-block-columns:last-child,
.wp-block-theme-blocks-step .wp-block-group:last-child {
  margin-bottom: 0;
}
.wp-block-theme-blocks-step .is-style-expandable {
  margin-bottom: 0;
  padding-bottom: 0;
  border-top-color: #D1AB49;
}
.wp-block-theme-blocks-step .is-style-expandable:hover {
  color: #D1AB49;
}
.wp-block-theme-blocks-step .is-style-expandable:focus {
  color: #D1AB49;
  text-decoration: none;
}
.wp-block-theme-blocks-step .is-style-expandable.opened {
  margin-bottom: 0.5em;
  padding-bottom: 1em;
}
@media screen and (max-width: 830px) {
  .wp-block-theme-blocks-step .wp-block-columns {
    display: block;
  }
  .wp-block-theme-blocks-step .wp-block-column {
    margin-left: 0 !important;
  }
  .wp-block-theme-blocks-step .wp-block-column + .wp-block-column {
    margin-top: calc(var(--blockMargin, 2rem) * 0.25) !important;
  }
}
@media screen and (max-width: 600px) {
  .wp-block-theme-blocks-step {
    --left-padding-width: calc(var(--blockMargin, 4rem) * 0.5);
    padding-left: var(--left-padding-width);
  }
  .wp-block-theme-blocks-step .layout {
    display: block;
  }
  .wp-block-theme-blocks-step .block-step {
    text-align: left;
    margin-bottom: 0.25em;
  }
}
@media screen and (max-width: 500px) {
  .wp-block-theme-blocks-step {
    --top-padding-width: 2.5rem;
    --right-padding-width: 1rem;
    --left-padding-width: 1.5rem;
    --bottom-padding-width: 2rem;
  }
}

.wp-block-theme-blocks-tabs {
  position: relative;
  margin-bottom: 2em;
  z-index: 1;
}
.wp-block-theme-blocks-tabs .layout {
  display: flex;
  justify-content: center;
}
.wp-block-theme-blocks-tabs .block-tabs {
  --border-radius: 20px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  border: 2px solid #1A2C59;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: white;
}
.wp-block-theme-blocks-tabs .block-tabs .tab {
  display: block;
  padding: 0.5em 2em;
  color: #1A2C59;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  background: white;
  flex-grow: 1;
}
.wp-block-theme-blocks-tabs .block-tabs .tab.selected, .wp-block-theme-blocks-tabs .block-tabs .tab:hover {
  background: #1A2C59;
  color: white;
}
.wp-block-theme-blocks-page-banner + .wp-block-theme-blocks-tabs {
  margin-top: calc(var(--blockMargin, -2.8rem) * -0.35);
  margin-bottom: calc(var(--blockMargin, 4rem) * 0.5);
  transform: translate(0, -50%);
}
@media screen and (max-width: 700px) {
  .wp-block-theme-blocks-page-banner + .wp-block-theme-blocks-tabs {
    transform: translate(0, -1.3em);
  }
}

.wp-block-theme-blocks-tabs + .wp-block-theme-blocks-tabbed-content {
  margin-top: calc(var(--blockMargin, 4rem) * 0.5);
}

.wp-block-theme-blocks-tabbed-content .block-slide {
  display: none;
}
.wp-block-theme-blocks-tabbed-content .block-slide.selected {
  display: block;
}
.wp-block-theme-blocks-tabbed-content .theme-block {
  margin-top: calc(var(--blockMargin, 4rem) * 0.5);
  margin-bottom: calc(var(--blockMargin, 4rem) * 0.5);
}
.wp-block-theme-blocks-tabbed-content .theme-block:first-child {
  margin-top: 0;
}
.wp-block-theme-blocks-tabbed-content .theme-block:last-child {
  margin-bottom: 0;
}
.wp-block-theme-blocks-tabbed-content .theme-block.wp-block-group.is-style-full-width > .wp-block-group__inner-container {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1324.1379310345px) {
  .wp-block-theme-blocks-tabbed-content .theme-block.wp-block-group.is-style-full-width > .wp-block-group__inner-container {
    margin: 0 4.6875%;
  }
}

.wp-block-theme-blocks-team {
  margin: calc(var(--blockMargin, 2rem) * 0.25) 0;
}
.wp-block-theme-blocks-team:first-child {
  margin-top: 0;
}
.wp-block-theme-blocks-team:last-child {
  margin-bottom: 0;
}

.wp-block-theme-blocks-featured-posts {
  position: relative;
}
.wp-block-theme-blocks-featured-posts > .wrap > .layout {
  background: #F1F1FF;
  border-radius: 15px;
  padding: 2em 3em 2.5em;
  box-sizing: border-box;
  margin-bottom: 2em;
}
.wp-block-theme-blocks-featured-posts .block-title {
  margin: 0 0 1.25rem;
}
@media screen and (min-width: 960px) {
  .wp-block-theme-blocks-featured-posts .block-columns {
    display: grid;
    gap: 2.5em;
    grid-template-columns: repeat(2, 1fr);
  }
  .wp-block-theme-blocks-featured-posts .block-columns > .column:first-child {
    border-right: 2px solid #C1C2E1;
    padding-right: 2.5em;
  }
}
@media screen and (max-width: 959px) {
  .wp-block-theme-blocks-featured-posts .block-columns .column + .column {
    border-top: 2px solid #C1C2E1;
    padding-top: 1.5em;
    margin-top: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-featured-posts {
    background: #F1F1FF;
  }
  .wp-block-theme-blocks-featured-posts > .wrap > .layout {
    background: none;
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
  }
}

.wp-block-buttons {
  margin-bottom: 1em;
}
.wp-block-buttons:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .wp-block-buttons > .wp-block-button,
  .wp-block-buttons > .wp-block-button.wp-block-button {
    margin-right: 0.75em;
  }
}
.wp-block-buttons > .wp-block-button:last-child,
.wp-block-buttons > .wp-block-button.wp-block-button:last-child {
  margin-right: 0;
}
.wp-block-buttons.is-content-justification-center > .wp-block-button {
  margin-right: 0.5em;
  margin-left: 0.5em;
}
p + .wp-block-buttons {
  margin-top: 1.5em;
}
.page-blocks > p:not([class*=has-]) + .wp-block-buttons, .is-before-paragraph + .wp-block-buttons, p + .wp-block-buttons {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.theme-block .page-blocks > p:not([class*=has-]) + .wp-block-buttons, .theme-block .is-before-paragraph + .wp-block-buttons, .theme-block p + .wp-block-buttons {
  max-width: none;
}

.wp-block-button {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.wp-block-button > .wp-block-button__link {
  position: relative;
  margin: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 0;
  text-decoration: none;
  font-size: 0.889rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  opacity: 1;
  text-align: center;
  text-transform: uppercase;
  transition: 0.25s ease;
}
.wp-block-button > .wp-block-button__link .icon {
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  height: 20px;
  margin: -3px 0 0 0.5em;
  color: currentColor;
  stroke: currentColor;
  stroke-width: 0;
  fill: currentColor;
  border: 0px solid currentColor;
  transition: all 0.25s ease;
}
.clickable:hover .wp-block-button > .wp-block-button__link .icon, .wp-block-button > .wp-block-button__link:hover .icon {
  transform: translate(3px, 0);
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link {
  background: #D1AB49;
  color: #1A2C59;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-light-blue-color {
  color: #C1C2E1;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-dark-blue-color {
  color: #1A2C59;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-orange-color {
  color: #D87454;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-light-yellow-color {
  color: #F8E3AB;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-yellow-color {
  color: #D1AB49;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-light-purple-color {
  color: #F1F1FF;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-black-color {
  color: black;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-text-style-color {
  color: #444;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-dark-gray-color {
  color: gray;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-gray-color {
  color: #767676;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-light-gray-color {
  color: #f4f4f4;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-white-color {
  color: white;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-light-blue-background-color {
  background-color: #C1C2E1;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-dark-blue-background-color {
  background-color: #1A2C59;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-orange-background-color {
  background-color: #D87454;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-light-yellow-background-color {
  background-color: #F8E3AB;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-yellow-background-color {
  background-color: #D1AB49;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-light-purple-background-color {
  background-color: #F1F1FF;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-black-background-color {
  background-color: black;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-text-style-background-color {
  background-color: #444;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-dark-gray-background-color {
  background-color: gray;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-gray-background-color {
  background-color: #767676;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-light-gray-background-color {
  background-color: #f4f4f4;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link.has-white-background-color {
  background-color: white;
}
.wp-block-button:not(.is-style-outline, .is-style-text-link) > .wp-block-button__link:hover {
  background: #F8E3AB;
}
.wp-block-button.is-style-arrow > .wp-block-button__link {
  display: inline-flex;
  padding: 0;
}
.wp-block-button.is-style-arrow > .wp-block-button__link > .label {
  display: inline-block;
  padding: 0.75rem 1em 0.75rem 2em;
}
.wp-block-button.is-style-arrow > .wp-block-button__link > .i {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.25);
  padding: 0 1.2em 0 1em;
  margin: 0 0 0 0.5em;
  border-radius: 0 100% 100% 0;
  -webkit-clip-path: ellipse(50% 100% at 50% 50%);
          clip-path: ellipse(50% 100% at 50% 50%);
}
.wp-block-button.is-style-arrow > .wp-block-button__link .icon {
  margin: 0;
}
.wp-block-button.is-style-text-link {
  color: #1A2C59;
}
.has-red-background-color .wp-block-button.is-style-text-link {
  color: white;
}
.wp-block-button.is-style-text-link > .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  background: none;
  border-radius: none;
  padding: 0;
  color: inherit;
  text-transform: none;
}
@media only screen and (max-width: 430px) {
  .wp-block-button.is-style-text-link > .wp-block-button__link {
    font-size: 0.7em;
  }
}
.wp-block-button.is-style-text-link > .wp-block-button__link > .label {
  display: inline-block;
}
@media only screen and (max-width: 430px) {
  .wp-block-button.is-style-text-link > .wp-block-button__link > .label {
    text-align: left;
  }
}
.wp-block-button.is-style-text-link > .wp-block-button__link .i {
  display: inline-block;
  width: 1em;
  height: 1em;
  padding: 0.3em 0.5em 0.4em;
}
.wp-block-button.is-style-text-link > .wp-block-button__link .icon {
  margin: -3px 0 0;
}
.wp-block-button.is-style-outline > .wp-block-button__link {
  background: none;
  border: 2px solid currentColor;
}
.wp-block-button.is-style-outline > .wp-block-button__link:hover {
  background-color: #D1AB49;
  border-color: #D1AB49;
  color: #1A2C59 !important;
}
.wp-block-button.is-style-outline > .wp-block-button__link .icon {
  border: 0;
}
.wp-block-button.is-style-outline > .wp-block-button__link.has-light-blue-color {
  color: #C1C2E1;
}
.wp-block-button.is-style-outline > .wp-block-button__link.has-dark-blue-color {
  color: #1A2C59;
}
.wp-block-button.is-style-outline > .wp-block-button__link.has-orange-color {
  color: #D87454;
}
.wp-block-button.is-style-outline > .wp-block-button__link.has-light-yellow-color {
  color: #F8E3AB;
}
.wp-block-button.is-style-outline > .wp-block-button__link.has-yellow-color {
  color: #D1AB49;
}
.wp-block-button.is-style-outline > .wp-block-button__link.has-light-purple-color {
  color: #F1F1FF;
}
.wp-block-button.is-style-outline > .wp-block-button__link.has-black-color {
  color: black;
}
.wp-block-button.is-style-outline > .wp-block-button__link.has-text-style-color {
  color: #444;
}
.wp-block-button.is-style-outline > .wp-block-button__link.has-dark-gray-color {
  color: gray;
}
.wp-block-button.is-style-outline > .wp-block-button__link.has-gray-color {
  color: #767676;
}
.wp-block-button.is-style-outline > .wp-block-button__link.has-light-gray-color {
  color: #f4f4f4;
}
.wp-block-button.is-style-outline > .wp-block-button__link.has-white-color {
  color: white;
}
.has-background .wp-block-button.is-style-outline > .wp-block-button__link:hover {
  background-color: white;
  color: red !important;
  border: 2px solid white;
}
.wp-block-button.no-arrow > .wp-block-button__link .icon.css-arrow {
  display: none;
}
.wp-block-button.is-style-giant {
  display: block;
  width: 100%;
}
.wp-block-button.is-style-giant > .wp-block-button__link {
  display: flex;
  align-items: center;
  padding: 1em 1.5em;
  border-radius: 15px;
  font-size: 2em;
  background: #F8E3AB;
  text-transform: none;
  text-align: left;
  transition: transform 0.25s ease;
}
.wp-block-button.is-style-giant > .wp-block-button__link > .label {
  display: inline-block;
  flex-grow: 1;
}
.wp-block-button.is-style-giant > .wp-block-button__link > .i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
  min-width: 1.5em;
  margin: 0 0 0 0.5em;
  border-radius: 50%;
  color: #D87454;
  border: 3px solid currentColor;
  transition: transform 0.25s ease;
}
.wp-block-columns .wp-block-button.is-style-giant > .wp-block-button__link > .i {
  border: 2px solid currentColor;
}
.wp-block-button.is-style-giant > .wp-block-button__link .icon {
  margin: 0;
  width: 0.75em;
  height: 0.75em;
}
.wp-block-button.is-style-giant > .wp-block-button__link:hover {
  background: #1A2C59;
  color: #E4E4F7;
}
.wp-block-button.is-style-giant > .wp-block-button__link:hover > .i {
  transform: translate(5px, 0);
  background: #F8E3AB;
  border-color: #F8E3AB;
  color: #1A2C59;
}
.wp-block-button.is-style-giant > .wp-block-button__link:hover .icon {
  transform: none;
}
@media screen and (max-width: 600px) {
  .wp-block-button.is-style-giant > .wp-block-button__link {
    padding: 0.5em 0.75em;
    display: block;
    text-align: center;
  }
  .wp-block-button.is-style-giant > .wp-block-button__link > .i {
    margin: 0.5em auto 0 auto;
  }
}

.wp-block-columns {
  --gap: 2rem;
  position: relative;
  margin-top: var(--gap);
  margin-bottom: var(--gap);
  gap: var(--gap);
}
.wp-block-columns:first-child {
  margin-top: 0;
}
.wp-block-columns:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 781px) {
  .wp-block-columns {
    display: block;
  }
  .wp-block-columns .wp-block-column {
    margin-left: auto;
    margin-right: auto;
  }
}
.wp-block-columns > .wp-block-column {
  position: relative;
}
.wp-block-columns > .wp-block-column p a {
  text-decoration: none;
}
.wp-block-columns > .wp-block-column p a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .wp-block-columns > .wp-block-column.has-padding-left {
    padding-left: 2em;
  }
  .wp-block-columns > .wp-block-column.has-padding-left > .wp-block-image {
    margin-left: -2em;
  }
  .wp-block-columns > .wp-block-column.has-padding-right {
    padding-right: 2em;
  }
  .wp-block-columns > .wp-block-column.has-padding-right > .wp-block-image {
    margin-right: -2em;
  }
}

.wp-block-columns.is-style-separators .wp-block-column:not(:first-child):before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: -4rem;
  width: 1px;
  height: 100%;
  background-color: currentColor;
  opacity: 0.5;
}
@media screen and (max-width: 781px) {
  .wp-block-columns.is-style-separators .wp-block-column {
    margin-left: 0;
  }
  .wp-block-columns.is-style-separators .wp-block-column:not(:first-child):before {
    display: none;
  }
}

.wp-block-columns.three-up {
  text-align: center;
}
.wp-block-columns.three-up figure + h2 {
  margin-top: 0.75em;
  margin-bottom: 0.25em;
}
.wp-block-columns.three-up .is-style-subtitle {
  line-height: 1.35;
}
.wp-block-columns.three-up h3 {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-embed {
  position: relative;
  margin: 2em 0;
  padding: 0;
}
.wp-block-embed:first-child {
  margin-top: 0;
}
.wp-block-embed:last-child {
  margin-top: 0;
}

.wp-block-embed.is-type-video.wp-embed-aspect-16-9,
.wp-block-embed.is-type-video.wp-embed-aspect-4-3 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-embed.is-type-video.wp-embed-aspect-16-9 > .wp-block-embed__wrapper,
.wp-block-embed.is-type-video.wp-embed-aspect-4-3 > .wp-block-embed__wrapper {
  position: relative;
  padding: 0 0 56.25%;
}
.wp-block-embed.is-type-video.wp-embed-aspect-16-9 > .wp-block-embed__wrapper > iframe,
.wp-block-embed.is-type-video.wp-embed-aspect-4-3 > .wp-block-embed__wrapper > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.wp-block-embed.is-type-video.wp-embed-aspect-16-9 > .wp-block-embed__wrapper > a.embed,
.wp-block-embed.is-type-video.wp-embed-aspect-4-3 > .wp-block-embed__wrapper > a.embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.wp-block-embed.is-type-video.wp-embed-aspect-16-9 > .wp-block-embed__wrapper > a.embed img,
.wp-block-embed.is-type-video.wp-embed-aspect-4-3 > .wp-block-embed__wrapper > a.embed img {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  border-radius: 10px;
}
.wp-block-embed.is-type-video.wp-embed-aspect-16-9 > .wp-block-embed__wrapper > a.embed:before,
.wp-block-embed.is-type-video.wp-embed-aspect-4-3 > .wp-block-embed__wrapper > a.embed:before {
  content: " ";
  display: block;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background: linear-gradient(0deg, rgba(0, 128, 0, 0.4), rgba(0, 128, 0, 0));
  opacity: 1;
  transition: all 0.25s ease;
  border-radius: 10px;
}
.wp-block-embed.is-type-video.wp-embed-aspect-16-9 > .wp-block-embed__wrapper > a.embed:after,
.wp-block-embed.is-type-video.wp-embed-aspect-4-3 > .wp-block-embed__wrapper > a.embed:after {
  font-family: "FontAwesome";
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none !important;
  content: "\f04b";
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  margin: -50px 0 0 -50px;
  background: rgba(0, 128, 0, 0.95);
  color: green;
  font-size: 40px;
  border-radius: 50%;
  text-align: center;
  transition: all 0.25s;
  text-indent: 5px;
}
.wp-block-embed.is-type-video.wp-embed-aspect-16-9 > .wp-block-embed__wrapper > a.embed:hover:after,
.wp-block-embed.is-type-video.wp-embed-aspect-4-3 > .wp-block-embed__wrapper > a.embed:hover:after {
  background: green;
}
.wp-block-embed.is-type-video.wp-embed-aspect-16-9 > .wp-block-embed__wrapper > a.embed:hover:before,
.wp-block-embed.is-type-video.wp-embed-aspect-4-3 > .wp-block-embed__wrapper > a.embed:hover:before {
  opacity: 0;
}
.wp-block-embed.is-type-video.wp-embed-aspect-16-9 > figcaption,
.wp-block-embed.is-type-video.wp-embed-aspect-4-3 > figcaption {
  font-family: aileron, sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  cursor: pointer;
}
@media screen and (min-width: 600px) {
  .wp-block-embed.is-type-video.wp-embed-aspect-16-9 > figcaption,
  .wp-block-embed.is-type-video.wp-embed-aspect-4-3 > figcaption {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    margin: 50px 0 0;
    transform: translate(-50%, 0%);
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    font-size: 30px;
  }
}

.wp-block-group {
  position: relative;
  margin-top: calc(var(--blockMargin, 5rem) * 0.625);
  margin-bottom: calc(var(--blockMargin, 5rem) * 0.625);
}
.wp-block-group:first-child {
  margin-top: 0;
}
.wp-block-group:last-child {
  margin-bottom: 0;
}
.wp-block-group > .wp-block-group__inner-container {
  position: relative;
  z-index: 1;
}

/*
.wp-block-group.has-background-image {
    padding:block-margin(1) 0;
    > .block-background {
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:100%;
        img {
            display:block;
            position:absolute;
            top:0;
            left:0;
            width:100%;
            height:100%;
            object-fit:cover;
        }
    }
    > .wp-block-group__inner-container {
        max-width: $max-page-width;
        margin-left:auto;
        margin-right:auto;
        @media screen and (max-width: $max-page-width / ( 1 - ($gutter * 2) )) {
            margin-left: ($gutter * 100%);
            margin-right: ($gutter * 100%);
        }
    }
}
*/
.page-blocks > .wp-block-group.is-style-full-width > .wp-block-group__inner-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1324.1379310345px) {
  .page-blocks > .wp-block-group.is-style-full-width > .wp-block-group__inner-container {
    margin-left: 4.6875%;
    margin-right: 4.6875%;
  }
}

.page-blocks > .wp-block-group.is-style-full-content-width {
  left: 50%;
  width: 1260px;
  margin-left: -630px;
  padding: 60px 0;
}
@media screen and (max-width: 1260px) {
  .page-blocks > .wp-block-group.is-style-full-content-width {
    width: 100vw;
    margin-left: -50vw;
    border-radius: 0 !important;
  }
}
.page-blocks > .wp-block-group.is-style-full-content-width > .wp-block-group__inner-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1324.1379310345px) {
  .page-blocks > .wp-block-group.is-style-full-content-width > .wp-block-group__inner-container {
    margin-left: 4.6875%;
    margin-right: 4.6875%;
  }
}

.page-blocks > .wp-block-group.has-background {
  position: relative;
  padding-top: calc(var(--blockMargin, 4rem) * 0.5);
  padding-bottom: calc(var(--blockMargin, 4rem) * 0.5);
}
.page-blocks > .wp-block-group.has-background.theme-block {
  border-radius: 1rem;
}
.page-blocks > .wp-block-group.has-background.theme-block.is-style-full-width {
  border-radius: 0;
}
.page-blocks > .wp-block-group.has-background.theme-block:last-child {
  --bottom-offset: 50px;
  margin-bottom: calc(var(--main-content-margin-bottom) * -1 - var(--bottom-offset));
}
@media screen and (min-width: 768px) {
  .page-blocks > .wp-block-group.has-background.theme-block:not(.full-width) > .wp-block-group__inner-container {
    padding-left: calc(var(--blockMargin, 5.6rem) * 0.7);
    padding-right: calc(var(--blockMargin, 5.6rem) * 0.7);
  }
}
@media screen and (max-width: 1324.1379310345px) {
  .page-blocks > .wp-block-group.has-background.theme-block.is-style-full-width, .page-blocks > .wp-block-group.has-background.theme-block.is-style-full-content-width {
    padding-left: 4.6875vw;
    padding-right: 4.6875vw;
  }
  .page-blocks > .wp-block-group.has-background.theme-block.is-style-full-width > .wp-block-group__inner-container, .page-blocks > .wp-block-group.has-background.theme-block.is-style-full-content-width > .wp-block-group__inner-container {
    margin-left: 0;
    margin-right: 0;
  }
}
.page-blocks > .wp-block-group.has-background.has-small-margin {
  padding: calc(var(--blockMargin, 6rem) * 0.75) calc(var(--blockMargin, 6rem) * 0.75) calc(var(--blockMargin, 5.2rem) * 0.65);
}
.page-blocks > .wp-block-group.has-background.has-rounded-corners {
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .page-blocks > .wp-block-group.has-background {
    padding: calc(var(--blockMargin, 2rem) * 0.25);
  }
}

.wp-block-group.theme-block.is-style-introduction {
  margin-bottom: calc(var(--blockMargin, 4rem) * 0.5);
}
.wp-block-group.theme-block.is-style-introduction > .wp-block-group__inner-container {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 772.4137931034px) {
  .wp-block-group.theme-block.is-style-introduction > .wp-block-group__inner-container {
    margin-left: 4.6875%;
    margin-right: 4.6875%;
  }
}

.theme-block.is-style-full-width + .wp-block-group.theme-block.is-style-introduction {
  margin-top: calc(var(--blockMargin, -8rem) * -1);
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading {
  margin: 0 0 0.5rem 0;
  padding: 0;
  clear: both;
  font-family: aileron, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.35;
  color: #1A2C59;
}
h1.inline,
h2.inline,
h3.inline,
h4.inline,
h5.inline,
h6.inline,
.heading.inline {
  display: inline;
  margin-right: 1em;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.heading a {
  text-decoration: none;
  color: inherit;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
.heading:first-child {
  margin-top: 0;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
.heading:last-child {
  margin-bottom: 0;
}
h1.has-text-align-center,
h2.has-text-align-center,
h3.has-text-align-center,
h4.has-text-align-center,
h5.has-text-align-center,
h6.has-text-align-center,
.heading.has-text-align-center {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
h1 .icon,
h2 .icon,
h3 .icon,
h4 .icon,
h5 .icon,
h6 .icon,
.heading .icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 0;
  fill: currentColor;
}
h1.is-before-paragraph,
h2.is-before-paragraph,
h3.is-before-paragraph,
h4.is-before-paragraph,
h5.is-before-paragraph,
h6.is-before-paragraph,
.heading.is-before-paragraph {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.theme-block h1.is-before-paragraph,
.theme-block h2.is-before-paragraph,
.theme-block h3.is-before-paragraph,
.theme-block h4.is-before-paragraph,
.theme-block h5.is-before-paragraph,
.theme-block h6.is-before-paragraph,
.theme-block .heading.is-before-paragraph {
  max-width: none;
}
h1 span strong,
h2 span strong,
h3 span strong,
h4 span strong,
h5 span strong,
h6 span strong,
.heading span strong {
  background-color: #F8E3AB;
}

h1,
.h1 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  line-height: 1.2;
}

h2,
.h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.22;
}
h2.is-style-arrow,
.h2.is-style-arrow {
  font-size: 1.667rem;
}
@media screen and (min-width: 1200px) {
  h2.is-style-arrow,
  .h2.is-style-arrow {
    padding-right: 2em;
  }
}

h3,
.h3 {
  font-size: 1.6rem;
  line-height: 1.25;
}

h4,
.h4 {
  font-size: 1.38rem;
}

h5,
.h5 {
  font-size: 1.16rem;
}

h6,
.h6 {
  font-size: 0.889rem;
  text-transform: uppercase;
}

h2 + h3 + p {
  margin-top: 1.5em;
}

@media screen and (max-width: 767px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br,
  .h1 br,
  .h2 br,
  .h3 br,
  .h4 br,
  .h5 br,
  .h6 br {
    display: none;
  }
  h1,
  .h1 {
    font-size: 2.1rem;
  }
  h2,
  .h2 {
    font-size: 1.6rem;
  }
  h3,
  .h3 {
    font-size: 1.3rem;
  }
}
[class*=wp-block]:not(.wp-block-heading) + h1, [class*=wp-block]:not(.wp-block-heading) + h2,
[class*=theme-block] + h1,
[class*=theme-block] + h2,
p + h1,
p + h2,
ol + h1,
ol + h2,
ul + h1,
ul + h2 {
  margin-top: calc(var(--blockMargin, 4rem) * 0.5);
}

[class*=wp-block]:not(.wp-block-heading) + h3,
[class*=theme-block] + h3,
p + h3,
ol + h3,
ul + h3 {
  margin-top: calc(var(--blockMargin, 2rem) * 0.25);
}

[class*=wp-block]:not(.wp-block-heading) + h4, [class*=wp-block]:not(.wp-block-heading) + h5, [class*=wp-block]:not(.wp-block-heading) + h6,
[class*=theme-block] + h4,
[class*=theme-block] + h5,
[class*=theme-block] + h6,
p + h4,
p + h5,
p + h6,
ol + h4,
ol + h5,
ol + h6,
ul + h4,
ul + h5,
ul + h6 {
  margin-top: calc(var(--blockMargin, 2rem) * 0.25);
}

.is-style-expandable {
  cursor: pointer;
  position: relative;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-right: 1.5em;
  transition: all 0.25s ease;
  border-top: 2px solid currentColor;
  /*
  &:before {
      position: absolute;
      display: inline-block;
      content:' ';
      right: 0;
      top: 1em;
      width:1em;
      height:1em;
      background:currentColor;
      clip-path: polygon(
          25% calc(100% - 2px),
          calc(100% - 4px) calc(100% - 2px),
          0 2px,
          2px 0,
          calc(100% - 2px) calc(100% - 4px),
          calc(100% - 2px) 25%,
          100% 25%,
          100% 100%,
          25% 100%
      );
      //@include icon-font('plus');
      transition: transform $hover-transition;
      transform:rotate(-45deg);

      //@include transform(rotate(90deg));
      font-size: 1em;
  }
  */
}
@media screen and (max-width: 767px) {
  .is-style-expandable {
    padding-top: 0.7em;
    padding-bottom: 0.7em;
  }
}
.is-style-expandable:hover {
  color: #D87454;
}
.is-style-expandable:hover span strong {
  background-color: #1A2C59;
}
.is-style-expandable .text {
  text-decoration: none;
}
.is-style-expandable .icon {
  position: absolute;
  top: 1em;
  right: 0;
  transition: transform 0.25s ease;
}
.is-style-expandable:focus {
  outline: none;
  text-decoration: underline;
}
.is-style-expandable.has-gold-arrow-color {
  border-top-color: #D1AB49;
}
.is-style-expandable.has-gold-arrow-color .icon {
  color: #D1AB49;
}
.is-style-expandable.has-arrow-down .icon {
  transform: rotate(90deg);
}
.is-style-expandable.opened .icon {
  transform: rotate(-90deg);
}
@media screen and (min-width: 768px) {
  body.theme .is-style-expandable.mobile-expand {
    cursor: default;
    padding-top: 0;
    border-top: 0;
  }
  body.theme .is-style-expandable.mobile-expand:before {
    display: none;
  }
  body.theme .is-style-expandable.mobile-expand + .expand-content {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  body.theme .is-style-expandable.mobile-expand {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    padding-top: 2rem;
  }
  body.theme .is-style-expandable.mobile-expand:before {
    margin-top: 2rem;
  }
}

.is-style-expandable-button {
  display: inline-block;
  border-top: 0;
  margin: 0 0 1rem !important;
  padding: 0.75em 1.5em;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  opacity: 1;
  text-align: center;
  text-transform: uppercase;
  transition: 0.25s ease;
  background: #D1AB49;
  color: #1A2C59;
  text-decoration: none;
}
.is-style-expandable-button:focus {
  text-decoration: none;
}
.is-style-expandable-button:hover, .is-style-expandable-button.opened {
  color: #1A2C59;
  background-color: #F8E3AB;
  text-decoration: none;
}
.is-style-expandable-button + .expand-content {
  margin-left: 2em;
  padding-left: 1em;
  border-left: 2px solid #1A2C59;
}

.expand-content {
  display: none;
  margin: 0 0 1.5em 0;
}
.expand-content + .is-style-expandable {
  margin-top: 1em;
}
.expand-content p a {
  text-decoration: none;
}
.expand-content p a:hover {
  text-decoration: underline;
}

h1.is-style-arrow > a,
h2.is-style-arrow > a,
h3.is-style-arrow > a,
h4.is-style-arrow > a,
h5.is-style-arrow > a,
h6.is-style-arrow > a {
  color: red;
}
h1.is-style-arrow .icon,
h2.is-style-arrow .icon,
h3.is-style-arrow .icon,
h4.is-style-arrow .icon,
h5.is-style-arrow .icon,
h6.is-style-arrow .icon {
  display: inline-block;
  margin: 0 0 0 0.5rem;
  width: 0.8em;
  height: 0.7em;
  transition: all 0.25s ease;
}
h1.is-style-arrow a:hover .icon,
h2.is-style-arrow a:hover .icon,
h3.is-style-arrow a:hover .icon,
h4.is-style-arrow a:hover .icon,
h5.is-style-arrow a:hover .icon,
h6.is-style-arrow a:hover .icon {
  transform: translate(5px, 0);
}

.page-blocks > ul:not([class*=has-]),
.page-blocks > ol:not([class*=has-]) {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

p {
  margin: 0 0 1em 0;
}
p:last-child {
  margin-bottom: 0;
}

p.has-drop-cap:not(:focus)::first-letter {
  color: red;
  font-size: 4em;
  font-weight: 600;
  line-height: 1;
}

p.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}
.wp-block-column p.has-text-align-center {
  max-width: 400px;
}

/*
.has-small-font-size {
	font-size:.88em;
}
p.is-style-intro,
.has-medium-font-size {
	font-size:1.16em;
	margin-bottom: 1.2em;
}
.has-large-font-size {
	font-size:1.6em;
}
*/
p.is-style-intro {
  font-size: var(--wp-preset--font-size--medium, 1.16em);
  color: #1A2C59;
  font-weight: 600;
}

p.is-style-subtitle {
  font-size: var(--wp-preset--font-size--medium, 1.34em);
  color: #1A2C59;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  p.is-style-subtitle {
    line-height: 1.45;
  }
}

.page-blocks > p:not([class*=has-]) {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.page-blocks > p:not([class*=has-]) a {
  text-decoration: none;
}
.page-blocks > p:not([class*=has-]) a:hover {
  text-decoration: underline;
}

.wp-block-quote {
  margin: calc(var(--blockMargin, 2rem) * 0.25) 2em;
  padding: 0 2em;
  border: 0;
  border-left: 3px solid #C1C2E1;
  font-size: 1.27em;
  line-height: 1.15;
  font-weight: bold;
  line-height: 1.5;
  color: #D87454;
}
.wp-block-quote:first-child {
  margin-top: 0;
}
.wp-block-quote:last-child {
  margin-bottom: 0;
}
.wp-block-quote p {
  margin: 0;
}
.wp-block-quote p + p {
  margin-top: 0.5rem;
}
.wp-block-quote cite {
  display: block;
  padding-top: 0.6em;
  font-size: 0.8rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wp-block-quote cite:before {
  content: "–";
  margin: 0 0.25em 0 0;
}
.wp-block-quote.has-text-align-center p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .wp-block-quote {
    font-size: 1em;
  }
}

.wp-block-separator {
  margin: calc(var(--blockMargin, 2rem) * 0.25) auto;
  width: 100%;
  border: 2px solid currentColor;
  border-width: 2px 0 0;
  color: #D1AB49;
  height: 0;
}

.wp-block-cover,
.wp-block-cover.is-light {
  padding: calc(var(--blockMargin, 8rem) * 1) 0;
}
.wp-block-cover > .wp-block-cover__inner-container,
.wp-block-cover.is-light > .wp-block-cover__inner-container {
  position: relative;
  max-width: 900px;
  box-sizing: border-box;
  padding: calc(var(--blockMargin, 8rem) * 1);
  margin-left: auto;
  margin-right: auto;
  border-radius: 15px;
  background: #1A2C59;
  color: #E4E4F7;
}
@media screen and (max-width: 993.1034482759px) {
  .wp-block-cover > .wp-block-cover__inner-container,
  .wp-block-cover.is-light > .wp-block-cover__inner-container {
    margin: 0 4.6875%;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-cover,
  .wp-block-cover.is-light {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 0;
  }
  .wp-block-cover > .wp-block-cover__image-background,
  .wp-block-cover > .wp-block-cover__background,
  .wp-block-cover.is-light > .wp-block-cover__image-background,
  .wp-block-cover.is-light > .wp-block-cover__background {
    display: none;
  }
  .wp-block-cover > .wp-block-cover__inner-container,
  .wp-block-cover.is-light > .wp-block-cover__inner-container {
    margin-left: auto;
    margin-right: auto;
    padding: calc(var(--blockMargin, 4rem) * 0.5);
    border-radius: 0;
  }
}
@media screen and (max-width: 450px) {
  .wp-block-cover > .wp-block-cover__inner-container,
  .wp-block-cover.is-light > .wp-block-cover__inner-container {
    padding: calc(var(--blockMargin, 2rem) * 0.25);
  }
}

.wp-block-media-text-wrap.full-width {
  box-sizing: border-box;
  padding: 0 4.6875vw;
}
.wp-block-media-text-wrap.full-width > .wp-block-media-text {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
hr + .wp-block-media-text-wrap.full-width {
  margin-top: 0;
}

.wp-block-media-text {
  margin-left: auto;
  margin-right: auto;
  -moz-column-gap: calc(var(--blockMargin, 4rem) * 0.5);
       column-gap: calc(var(--blockMargin, 4rem) * 0.5);
  row-gap: calc(var(--blockMargin, 2rem) * 0.25);
}
.wp-block-media-text > .wp-block-media-text__media img {
  border-radius: 1rem;
}
.wp-block-media-text > .wp-block-media-text__content {
  padding-left: 0;
  padding-right: 0;
}

.wp-block-image {
  position: relative;
  margin: calc(var(--blockMargin, 4rem) * 0.5) 0;
}
.wp-block-image:first-child {
  margin-top: 0;
}
.wp-block-image:last-child {
  margin-bottom: 0;
}
.wp-block-image img {
  display: block;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .wp-block-image img {
    margin: 0 auto;
  }
}
.wp-block-image figcaption {
  position: relative;
  display: block;
  margin: 0.5em 0 0;
  padding: 0;
  text-align: left;
  font-style: italic;
  font-size: 0.8rem;
  opacity: 0.8;
}
.wp-block-image.hide-caption figcaption {
  display: none;
}
.wp-block-image.alignleft, .wp-block-image .alignleft {
  margin: 0.5em 2em 1em 0;
}
.wp-block-image.alignright, .wp-block-image .alignright {
  margin: 0.5em 0 1em 2em;
}
h2 + .wp-block-image, h3 + .wp-block-image {
  margin: 0;
}

.wp-block-gallery {
  margin: calc(var(--blockMargin, 6rem) * 0.75) 0;
}
.wp-block-gallery .blocks-gallery-grid {
  gap: 0.5rem;
}

.wp-block-gallery.is-style-carousel {
  --aspect-ratio: 620/884;
  position: relative;
  display: block;
  margin: calc(var(--blockMargin, 6rem) * 0.75) 0;
}
.wp-block-gallery.is-style-carousel:first-child {
  margin-top: 0;
}
.wp-block-gallery.is-style-carousel:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1590px) {
  .wp-block-gallery.is-style-carousel {
    margin-left: calc(var(--blockMargin, -12rem) * -1.5);
    margin-right: calc(var(--blockMargin, -12rem) * -1.5);
  }
}
.wp-block-gallery.is-style-carousel .block-slides {
  position: relative;
  display: block;
}
.wp-block-gallery.is-style-carousel figure.wp-block-image {
  position: relative;
  white-space: normal;
  display: block;
  margin: 0;
  /*
  height:0;
  width:auto;


  */
}
.wp-block-gallery.is-style-carousel figure.wp-block-image .image {
  position: relative;
  padding: 0 0 calc(var(--aspect-ratio) * 100%);
  border-radius: 1rem;
}
.wp-block-gallery.is-style-carousel figure.wp-block-image .image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.wp-block-gallery.is-style-carousel figure.wp-block-image figcaption {
  max-width: 700px;
  margin: 0.5rem 0 0 0;
  padding: 0 5em 0 0;
}
.wp-block-gallery.is-style-carousel .slick-track {
  display: flex;
  align-items: flex-start;
}
.wp-block-gallery.is-style-carousel .pager {
  position: absolute;
  z-index: 1;
  top: var(--image-height, calc(100% - 1em));
  right: 0;
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
}
.wp-block-gallery.is-style-carousel .nav {
  display: none;
}
.wp-block-gallery.is-style-carousel .nav.slick-arrow {
  display: block;
}
.wp-block-gallery.is-style-carousel .slick-dots {
  position: absolute;
  z-index: 10000;
  bottom: 1em;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
}
.wp-block-gallery.is-style-carousel .slick-arrow {
  --arrow-size: 3em;
  font-size: 1.2rem;
  color: #D87454;
  width: var(--arrow-size);
  height: var(--arrow-size);
  border-radius: 50%;
  background: rgba(244, 244, 244, 0);
  transition: background-color 0.25s ease;
  border: 2px solid #D87454;
}
.wp-block-gallery.is-style-carousel .slick-arrow .icon {
  display: block;
  position: absolute;
  top: 25%;
  left: 25%;
  background: no-repeat 50% 50%;
  width: 50%;
  height: 50%;
}
.wp-block-gallery.is-style-carousel .slick-arrow.next .icon {
  background-image: url(images/icon-arrow-right-orange.svg);
}
.wp-block-gallery.is-style-carousel .slick-arrow.prev .icon {
  background-image: url(images/icon-arrow-left-orange.svg);
}
.wp-block-gallery.is-style-carousel .slick-arrow {
  position: absolute;
  top: calc(var(--image-height) / 2);
  transform: translate(0, -50%);
}
.wp-block-gallery.is-style-carousel .slick-arrow.next {
  left: 100%;
  padding: 0 0 0 0;
  margin: 0 0 0 calc(var(--arrow-size) * 0.66);
}
.wp-block-gallery.is-style-carousel .slick-arrow.prev {
  right: 100%;
  padding: 0 0 0 0;
  margin: 0 calc(var(--arrow-size) * 0.66) 0 0;
}
@media screen and (max-width: 1249px) {
  .wp-block-gallery.is-style-carousel {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .wp-block-gallery.is-style-carousel .slick-arrow {
    --arrow-size:2em;
  }
}
@media screen and (max-width: 900px) {
  .wp-block-gallery.is-style-carousel {
    max-width: none;
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
  }
  .wp-block-gallery.is-style-carousel .slick-arrow {
    display: none !important;
  }
  .wp-block-gallery.is-style-carousel figure.wp-block-image .image {
    border-radius: 0;
  }
  .wp-block-gallery.is-style-carousel figure.wp-block-image figcaption {
    padding-left: 4.6875vw;
    padding-right: calc(4.6875vw + 5em);
  }
  .wp-block-gallery.is-style-carousel .pager {
    right: 4.6875vw;
  }
}

.page-styleguide h3.expandable {
  margin-bottom: 1em;
}
.page-styleguide .wp-block-group.section {
  margin: 40px 0;
}
.page-styleguide .wp-block-group.section .usage {
  color: #999;
  margin: 20px 0 30px 20px;
  font-style: italic;
}
.page-styleguide .circle {
  width: 115px;
  height: 115px;
  margin: 9px;
  display: inline-block;
  text-align: center;
  font-size: 80%;
  font-weight: 500;
  border-radius: 50%;
}
.page-styleguide .circle:before {
  content: "";
  height: 35px;
  position: relative;
  display: block;
}
.page-styleguide .circle.border {
  border: 1px solid gray;
}
.page-styleguide .circle p {
  margin-top: 37px;
}
.page-styleguide .circle.first {
  margin-left: 0;
}
.page-styleguide .circle.last {
  margin-right: 0;
}
.page-styleguide .circle.primary1 {
  background-color: #1A2C59;
}
.page-styleguide .circle.primary2 {
  background-color: #353783;
}
.page-styleguide .circle.primary3 {
  background-color: #6669A0;
}
.page-styleguide .circle.primary4 {
  background-color: #C1C2E1;
}
.page-styleguide .circle.primary5 {
  background-color: #F1F1FF;
}
.page-styleguide .circle.primary6 {
  background-color: #D87454;
}
.page-styleguide .circle.primary7 {
  background-color: #D1AB49;
}
.page-styleguide .circle.primary8 {
  background-color: #F8E3AB;
}
.page-styleguide .circle.primary9 {
  background-color: #767676;
}
.page-styleguide .circle.primary10 {
  background-color: #444;
}/*# sourceMappingURL=style.css.map */