/*
Theme Name: InnoCrate
Author: Piper Communications
Author URI: https://piper-communications.com/
Description: A responsive, semantic, HTML5, WordPress theme.
Version: 1.0
Tags: custom-menu, sticky-post, post-formats, responsive
*/
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

/* Sections
   ========================================================================== */
body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button,
input { /* 1 */
  overflow: visible;
}

button,
select { /* 1 */
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

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

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

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

[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

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

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
details {
  display: block;
}

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
template {
  display: none;
}

[hidden] {
  display: none;
}

* {
  box-sizing: border-box;
  position: relative;
}

/*! layout elements
--------------------------------*/
/*-- MENU
--------------------------------*/
#navmain {
  transition: font-size 0.1s ease;
  display: flex;
  flex-grow: 1;
  width: 100%;
  -webkit-backface-visibility: hidden;
  font-size: 1rem;
}
#navmain ul {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-backface-visibility: hidden;
}
#navmain ul li {
  border: 2px solid transparent;
  border-width: 2px 0;
}
#navmain ul li a {
  display: block;
  padding: 0.75rem;
  font-family: "museo-sans-rounded", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 900;
  text-decoration: none;
  line-height: 1;
  color: #143456;
}
#navmain ul li.current_page_item a, #navmain ul li.current-page-ancestor a {
  color: #22aae2;
}
#navmain ul li:hover > a {
  color: #22aae2;
}
#navmain ul li:hover ul li a {
  background: none;
}

.user_info {
  margin-bottom: 2px;
  border-radius: 5px;
  font-size: 1rem;
}
.user_info a {
  margin-left: 0.5rem;
}

.trigger {
  cursor: pointer;
  color: #143456;
  font-weight: 300;
}
.trigger path {
  fill: #143456;
}
.trigger:hover {
  color: #22aae2;
}
.trigger:hover path {
  fill: #22aae2;
}

@media screen and (max-width: 770px) {
  /*-- main nav
  --------------------------------*/
  #navmain {
    transform: translateX(100%);
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100vh;
    background-color: rgba(20, 52, 86, 0.1);
    z-index: 999999;
    width: 100%;
    margin: 0;
    padding: 0 0 30px;
    overflow: hidden;
    font-size: 125%;
    -webkit-overflow-scrolling: touch;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  #navmain .menu-main-menu-container {
    height: 100%;
    overflow: scroll;
    padding-bottom: 2rem;
    width: 100%;
    padding: 50px 30px 30px;
  }
  #navmain ul {
    width: 100%;
    text-align: center;
  }
  #navmain ul li {
    width: 100%;
  }
  #navmain ul li a {
    display: block;
    padding: 0.5rem 1rem;
  }
  #navmain ul li ul {
    transition: all 0.2s ease;
    font-size: 75%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
  }
  #navmain ul li.open > a {
    color: #22aae2;
  }
  #navmain ul li.open > ul {
    max-height: 1000rem;
    opacity: 1;
    padding-bottom: 1rem;
  }
  #navmain ul li:hover a {
    background: transparent;
  }
  #navmain.viz {
    transform: translateX(0);
    opacity: 1;
  }
  #slide-trigger {
    text-align: right;
    text-decoration: none;
    margin: 0;
    order: 100;
    display: flex;
    align-items: center;
    margin-left: 1rem;
  }
  #slide-trigger span {
    display: inline-block;
    line-height: 30px;
  }
  #slide-trigger:hover {
    color: #22aae2;
  }
  #slide-trigger:hover svg path {
    fill: #22aae2;
  }
  .trigger {
    display: block;
  }
  .bars, .closex {
    width: 30px;
    height: 30px;
    margin-left: 0.5rem;
  }
  .bars svg, .closex svg {
    display: block;
    width: 20px;
    height: 20px;
    margin: 5px auto;
  }
  .bars svg path, .closex svg path {
    fill: #143456;
  }
  .closex {
    display: block;
    float: right;
    border: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 300;
  }
  .closex:hover {
    color: #22aae2;
  }
  .closex:hover svg path {
    fill: #22aae2;
  }
  .no-js #slide-trigger {
    display: none;
  }
  .no-js .menu-main-menu-container {
    display: block;
  }
  .no-js .menu-main-menu-container ul li {
    float: none;
  }
  .user_info {
    display: flex;
  }
}
@media screen and (min-width: 771px) {
  #branding {
    display: flex;
  }
  #navmain {
    align-items: center;
    width: auto;
    height: 100%;
    margin: 0;
    justify-content: end;
  }
  #navmain ul li {
    display: block;
    float: left;
  }
  #navmain ul li ul {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    background: #bcbec0;
    font-size: 87.5%;
    width: 12rem;
    visibility: hidden;
    opacity: 0;
    top: calc(100% + 5px);
    z-index: 19999;
  }
  #navmain ul li ul:before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -7px;
    display: inline-block;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #bcbec0;
    border-left: 7px solid transparent;
    content: "";
  }
  #navmain ul li ul li {
    width: 100%;
  }
  #navmain ul li ul li a {
    line-height: 0;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    height: auto;
    color: #143456;
  }
  #navmain ul li ul li ul {
    transform: none;
    font-size: 87.5%;
    left: 100%;
    margin-left: 0;
    top: 0;
  }
  #navmain ul li ul li ul li a {
    font-weight: 400;
  }
  #navmain ul li ul li ul:before {
    display: none;
  }
  #navmain ul li ul li:hover > a {
    color: #22aae2;
  }
  #navmain ul li:hover > ul {
    visibility: visible;
    opacity: 1;
  }
  #navmain ul li:hover > ul li a {
    line-height: 1;
    height: auto;
  }
  #slide-trigger,
  #menuheader,
  .closex {
    display: none;
  }
  .user_info {
    margin-left: 0.75rem;
  }
  .user_info.logged_in {
    border: 1px solid #ccc;
    padding: 0.5rem 0.75rem;
  }
}
/* =12-column grid setup
--------------------------------------------------------------------*/
.grid-container {
  display: grid;
  gap: 30px;
}
/* - grid list - */
.grid-list,
.block-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 1.5rem;
  display: grid;
  gap: 30px;
  align-items: center;
}
.grid-list li,
.block-list li {
  border: 1px solid #22aae2;
  border-radius: 1rem;
  display: flex;
  padding: 1rem 0.5rem;
  text-align: center;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  height: 100%;
  line-height: 1.4;
}

.block-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.block-list li {
  width: 30%;
  height: unset;
}

@media screen and (min-width: 541px) {
  .grid-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 721px) {
  .grid-container.columns-2 {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .grid-container.footer-info {
    grid-template-columns: 9fr 3fr;
    align-items: center;
    width: 100%;
  }
}
@media screen and (min-width: 1031px) {
  .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cards {
  display: grid;
  gap: 30px;
  padding-bottom: 3rem;
}
.cards h2 {
  grid-column: 1/-1;
  margin-bottom: 0;
}

.card {
  transition: all 0.2s ease;
  background: white;
}
.card--thumb {
  transition: all 0.2s ease;
  background: #143456;
  display: flex;
}
.card--thumb a {
  width: 100%;
  color: white !important;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 125%;
  line-height: 1;
}
.card--thumb img {
  display: block;
  width: 100%;
}
.card--title {
  font-size: 110%;
}
.card.project {
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(34, 170, 226, 0.5);
  overflow: hidden;
}
.card.project .card--title a {
  display: block;
  padding: 0 1rem;
}
.card.project .card--thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.card.project .card--thumb img {
  transition: all 0.2s ease;
  aspect-ratio: 16/9;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.card.project:hover {
  box-shadow: 0 0 20px #22aae2;
}
.card.project:hover .card--thumb {
  background: #22aae2;
}
.card.project:hover .card--thumb a {
  color: white;
}
.card.project:hover .card--thumb img {
  scale: 110%;
}
.card.guide {
  text-align: center;
}
.card.guide .card--thumb {
  transition: all 0.2s ease;
  box-shadow: 0 0 20px rgba(34, 170, 226, 0.5);
}
.card.guide .card--thumb a {
  border: 1px solid #143456;
}
.card.guide .card--thumb a:hover {
  border-color: #22aae2;
}
.card.guide .card--thumb img {
  aspect-ratio: 3/4;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.card.guide:hover .card--thumb {
  box-shadow: 0 0 20px #22aae2;
}

@media screen and (min-width: 341px) {
  .cards.guides {
    grid-template-columns: repeat(2, 4fr);
  }
}
@media screen and (min-width: 541px) {
  .cards {
    grid-template-columns: repeat(2, 6fr);
  }
  .cards.guides {
    grid-template-columns: repeat(3, 4fr);
  }
}
@media screen and (min-width: 771px) {
  .cards {
    grid-template-columns: repeat(3, 4fr);
  }
  .cards.guides {
    grid-template-columns: repeat(4, 4fr);
  }
  .card--title {
    font-size: 120%;
  }
}
/* hero
---------------------*/
.hero {
  padding: 10% 10vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  background-position-x: 50%;
  background-position-y: 50%;
  overflow: hidden;
  display: flex;
  min-height: 50vh;
  align-items: center;
  color: white;
  justify-content: center;
  text-align: center;
}
.hero--content {
  z-index: 2;
  animation-delay: 0.1s;
}
.hero--content * {
  color: white !important;
}
.hero--poster {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero--poster::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  content: "";
  display: block;
  text-indent: 1111%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 100;
  background-color: transparent;
  background-image: linear-gradient(90deg, black, #22aae2);
  z-index: 1;
  opacity: 0.6;
}
.hero--title {
  font-size: 10vw;
}
.hero--text {
  font-weight: 900;
  font-size: 112%;
}
.hero a.button {
  margin-right: 1rem;
}
.hero .dot {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 2;
}
.hero .dot::after {
  display: block;
  content: "";
  border-radius: 50%;
  background: white;
  position: absolute;
}
.hero .dot1::after {
  width: 9vw;
  height: 9vw;
  top: -2vw;
  left: -6vw;
}
.hero .dot2::after {
  width: 20vw;
  height: 20vw;
  top: 2vw;
  right: -16vw;
}
.hero .dot3::after {
  width: 10vw;
  height: 10vw;
  bottom: -5vw;
  right: -5vw;
}
.hero .dot4::after {
  width: 22vw;
  height: 22vw;
  bottom: -16vw;
  left: -5vw;
}

@media screen and (min-width: 771px) {
  .hero--title {
    font-size: 8vw;
  }
}
@media screen and (min-width: 1031px) {
  .hero--title {
    font-size: 6vw;
  }
}
/* credit card icons ------------------------------------------------------*/
.gform_wrapper .gform_card_icon_container {
  margin: 8px 0 6px 0;
  height: 32px;
}
.gform_wrapper div.gform_card_icon {
  margin-right: 4px;
  text-indent: -9000px;
  background-image: url(../images/gf-creditcard-icons.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 32px;
  float: left;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_visa {
  background-position: 0 0;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_mastercard {
  background-position: -36px 0;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_amex {
  background-position: -72px 0;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_discover {
  background-position: -108px 0;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_maestro {
  background-position: -144px 0;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_jcb {
  background-position: -180px 0;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_visa {
  background-position: 0 -32px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_mastercard {
  background-position: -36px -32px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_amex {
  background-position: -72px -32px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_discover {
  background-position: -108px -32px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_maestro {
  background-position: -144px -32px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_jcb {
  background-position: -180px -32px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_visa {
  background-position: 0 -64px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_mastercard {
  background-position: -36px -64px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_amex {
  background-position: -72px -64px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_discover {
  background-position: -108px -64px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_maestro {
  background-position: -144px -64px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_jcb {
  background-position: -180px -64px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_visa {
  background-position: 0 -192px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_mastercard {
  background-position: -36px -192px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_amex {
  background-position: -72px -192px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_discover {
  background-position: -108px -192px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_maestro {
  background-position: -144px -192px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_jcb {
  background-position: -180px -192px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_visa {
  background-position: 0 -224px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_mastercard {
  background-position: -36px -224px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_amex {
  background-position: -72px -224px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_discover {
  background-position: -108px -224px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_maestro {
  background-position: -144px -224px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_jcb {
  background-position: -180px -224px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_visa {
  background-position: 0 -256px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_mastercard {
  background-position: -36px -256px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_amex {
  background-position: -72px -256px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_discover {
  background-position: -108px -256px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_maestro {
  background-position: -144px -256px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_jcb {
  background-position: -180px -256px;
}
.gform_wrapper .gform_card_icon_container input[type=radio]#gform_payment_method_creditcard {
  float: left;
  position: relative;
  top: 4px !important;
}
.gform_wrapper .ginput_complex .ginput_cardinfo_left,
.gform_wrapper .ginput_complex .ginput_cardinfo_right {
  min-height: 43px;
  position: relative;
  float: left;
}
.gform_wrapper .ginput_complex .ginput_cardinfo_left label,
.gform_wrapper .ginput_complex .ginput_cardinfo_right label {
  white-space: nowrap !important;
}
.gform_wrapper .ginput_complex .ginput_cardinfo_left {
  width: 50%;
  margin-right: 1%;
}
.gform_wrapper .ginput_complex .ginput_cardinfo_left span.ginput_card_expiration_container {
  position: relative;
  display: block;
  min-width: 160px !important;
}
.gform_wrapper .ginput_complex .ginput_cardinfo_left select.ginput_card_expiration.ginput_card_expiration_month {
  margin-right: 4px;
}
.gform_wrapper .ginput_complex .ginput_cardinfo_right {
  min-width: 85px !important;
}
.gform_wrapper .ginput_complex .ginput_cardinfo_right input.ginput_card_security_code {
  width: 4em !important;
  float: left;
}
.gform_wrapper .ginput_complex .ginput_cardinfo_right label {
  clear: both;
}
.gform_wrapper .ginput_complex .ginput_cardinfo_right span.ginput_card_security_code_icon {
  width: 32px;
  height: 23px;
  background-image: url(../images/gf-creditcard-icons.png);
  background-repeat: no-repeat;
  background-position: 0 -128px;
  position: relative;
  top: -1px;
  left: 6px;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
}
.gform_wrapper .ginput_complex span.ginput_cardextras {
  display: block;
  overflow: hidden;
}
.gform_wrapper .ginput_complex select.ginput_card_expiration.ginput_card_expiration_month,
.gform_wrapper .ginput_complex select.ginput_card_expiration.ginput_card_expiration_year {
  width: 48% !important;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
}
.gform_wrapper .right_label .gform_fileupload_multifile,
.gform_wrapper .left_label .gform_fileupload_multifile {
  margin-left: 31%;
}
.gform_wrapper .gform_delete {
  vertical-align: middle;
  cursor: pointer;
}
.gform_wrapper .gform_fileupload_multifile .gform_drop_area {
  padding: 25px;
  border: 2px dashed #ddd;
  text-align: center;
  color: #aaa;
  margin-bottom: 10px;
}

/*-- form elements
--------------------------------*/
form {
  display: block;
}

fieldset {
  border: 0;
  padding: 0;
}
fieldset legend {
  font-weight: 500;
  margin-bottom: 0.5rem;
}
fieldset.field_description_below label {
  display: none;
}

label {
  display: block;
  margin-bottom: 0.2em;
  font-weight: 500 !important;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=search],
input[type=password],
textarea,
select {
  border-radius: 7px;
  font-family: "museo-sans", helvetica, arial, sans-serif;
  font-size: 100% !important;
  display: block;
  width: 100%;
  max-width: 700px;
  border: 1px solid #ccc;
  padding: 1rem !important;
  height: 3em;
}

::-moz-placeholder {
  color: #999999;
}

::placeholder {
  color: #999999;
}

input:focus, textarea:focus, select:focus {
  background: #ffe;
}

input[type=submit],
input[type=button],
.button,
button {
  border-radius: 2rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  text-align: center;
  width: auto;
  padding: 0.75rem 1.2em;
  font-weight: 900;
  background: #143456;
  color: white;
  border: 2px solid #50b849;
  text-decoration: none;
  cursor: pointer;
}
input[type=submit]:hover, input[type=submit].active,
input[type=button]:hover,
input[type=button].active,
.button:hover,
.button.active,
button:hover,
button.active {
  background: #22aae2;
  color: white;
  box-shadow: 0 0 10px rgba(34, 170, 226, 0.5);
}
input[type=submit].reversed,
input[type=button].reversed,
.button.reversed,
button.reversed {
  background: white;
  color: primary;
}
textarea {
  max-width: none;
  height: auto;
}

select {
  width: auto;
  padding: 0 0.75em;
}

/*-- Gravity forms specific styles
--------------------------------*/
.gform_wrapper {
  /* Class for labelling required form items */
  /*-- datepicker input
  --------------------------------*/
}
.gform_wrapper .gf_progressbar_wrapper {
  display: none;
}
.gform_wrapper .gfield_radio label,
.gform_wrapper .gfield_checkbox label,
.gform_wrapper .ginput_container_consent label {
  display: inline-block;
  clear: right;
  margin-left: 0.5em;
  font-weight: initial;
}
.gform_wrapper input.small {
  width: 20%;
  min-width: 20px;
  max-width: 100px;
}
.gform_wrapper .zipcode input {
  min-width: 60px;
  max-width: 100px;
}
.gform_wrapper .gform_fields,
.gform_wrapper .gfield_radio,
.gform_wrapper .gfield_checkbox {
  list-style: none;
  padding: 0;
}
.gform_wrapper .gfield {
  *zoom: 1;
  margin-bottom: 1rem;
}
.gform_wrapper .gfield::before, .gform_wrapper .gfield::after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
.gform_wrapper .gfield_radio li,
.gform_wrapper .gfield_checkbox li {
  margin-bottom: 0;
}
.gform_wrapper .gfield_description {
  margin-top: 0.5rem;
}
.gform_wrapper .reqtxt, .gform_wrapper .emailreqtxt {
  font-size: 90%;
  color: #bd071a;
  font-style: italic;
}
.gform_wrapper .totalfield {
  display: inline-block;
  border: 2px solid #bcbec0;
  padding: 0.5rem;
}
.gform_wrapper .totalfield label, .gform_wrapper .totalfield .ginput_container {
  display: inline-block;
  margin-right: 0.5rem;
}
.gform_wrapper .totalfield .ginput_container {
  font-weight: 900;
}
.gform_wrapper .ginput_total {
  border: none;
  font-weight: 900;
}
.gform_wrapper .required, .gform_wrapper .validation_error {
  color: #bd071a;
}
.gform_wrapper .validation_error, .gform_wrapper .validation_message,
.gform_wrapper .gform_confirmation_message {
  background: rgba(202, 10, 55, 0.1);
  padding: 1rem;
  border-left: 3px solid #c03;
  margin-bottom: 1rem;
}
.gform_wrapper .gform_confirmation_message {
  color: #3e754d;
  background: rgba(62, 117, 77, 0.1);
  border-color: #3e754d;
}
.gform_wrapper .validation_message {
  font-size: 75%;
  padding: 0.5rem 1rem;
  font-style: italic;
  color: #3e754d;
}
.gform_wrapper .ginput_complex span {
  display: block;
}
.gform_wrapper .ginput_complex span label {
  font-weight: 500;
}
.gform_wrapper .ginput_complex.ginput_container_address span.address_state select {
  width: 100%;
}
.gform_wrapper .ginput_complex.ginput_container_address span.address_zip {
  width: 17%;
  min-width: 120px;
}
.gform_wrapper .ginput_complex .ginput_password .password_input_container,
.gform_wrapper .ginput_complex .ginput_password label {
  width: 100%;
  clear: both;
}
.gform_wrapper .ginput_container_date input.datepicker,
.gform_wrapper .ginput_container_date .ui-datepicker-trigger {
  display: inline-block;
}
.gform_wrapper .ginput_container_date input.datepicker {
  max-width: 200px;
  background-image: url(images/icons/calendar-alt.svg);
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: 0.5em center;
  padding-left: 2em;
}
.gform_wrapper .ginput_container_date .ui-datepicker-trigger {
  margin-left: 0.5rem;
}

/*-- datepicker div
--------------------------------*/
div#ui-datepicker-div {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  padding: 0.5rem;
  border: 1px solid #bcbec0;
  background: rgba(255, 255, 255, 0.9);
  width: 200px;
  font-size: 87%;
}
div#ui-datepicker-div a {
  text-decoration: none;
}
div#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev,
div#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next,
div#ui-datepicker-div .ui-datepicker-header .ui-datepicker-month,
div#ui-datepicker-div .ui-datepicker-header .ui-datepicker-year {
  float: left;
  width: auto;
  max-width: 50%;
  text-transform: uppercase;
}
div#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title {
  width: 100%;
  float: left;
  border: 1px solid #bcbec0;
  border-width: 1px 0;
  padding: 0.5rem 0;
}
div#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next,
div#ui-datepicker-div .ui-datepicker-header .ui-datepicker-year {
  float: right;
  text-align: right;
  clear: right;
}
div#ui-datepicker-div .ui-datepicker-header .ui-datepicker-month,
div#ui-datepicker-div .ui-datepicker-header .ui-datepicker-year {
  text-transform: none;
}
div#ui-datepicker-div table.ui-datepicker-calendar {
  width: 100%;
}
div#ui-datepicker-div table.ui-datepicker-calendar td {
  text-align: center;
}

@media screen and (min-width: 341px) {
  .gform_wrapper .ginput_complex span {
    display: block;
    float: left;
    width: 49%;
  }
  .gform_wrapper .ginput_complex span:first-of-type {
    margin-right: 2%;
  }
}
@media screen and (max-width: 770px) {
  .gform_wrapper .ginput_complex span.address_city, .gform_wrapper .ginput_complex span.address_state {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (min-width: 771px) {
  .gform_wrapper .ginput_complex.ginput_container_address span.address_city {
    clear: left;
    margin-right: 2%;
  }
  .gform_wrapper .ginput_complex.ginput_container_address span.address_state {
    width: 30%;
    margin-right: 2%;
  }
}
/*-- Social links, etc
--------------------------------*/
ul.socials {
  font-size: 26px;
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.socials li {
  display: inline-flex;
  background-color: transparent;
  width: 34px;
  height: 34px;
}
ul.socials li a {
  text-align: center;
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px;
}
ul.socials li svg {
  display: block;
  width: 100%;
  max-height: 100%;
  margin: auto;
}
ul.socials li path {
  fill: #143456;
}
ul.socials li.share-facebook:hover a {
  color: #3b5998;
}
ul.socials li.share-instagram:hover a {
  color: #d62976;
}
ul.socials li.share-linkedin:hover a {
  color: #0073a5;
}
ul.socials li.share-twitter:hover a {
  color: black;
}
ul.socials li.share-youtube:hover a {
  color: #bf0900;
}
ul.socials li.share-email:hover a {
  color: #666;
}

/* Slider */
#slider {
  padding: 0;
  list-style: none;
  overflow: hidden;
  position: relative;
}
#slider .slide-content {
  height: 0;
  width: 100%;
  padding-bottom: 50%;
  overflow: hidden;
  position: relative;
}
#slider .slide-content img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
}
#slider .slide-content .slide-text {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 0.5em;
  color: #fff;
}

.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next {
  transition: all 0.2s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  height: 40px;
  width: 40px;
  line-height: 0px;
  cursor: pointer;
  background: transparent;
  padding: 0;
  border: none;
  outline: none;
  opacity: 0.7;
  z-index: 1001;
  color: white;
}
.slick-prev path,
.slick-next path {
  fill: white;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  opacity: 1;
}
.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.7;
}

.slick-prev {
  left: -35px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -35px;
}
#slider:hover .slick-prev {
  left: 5px;
}

.slick-next {
  right: -35px;
}
[dir=rtl] .slick-next {
  left: -35px;
  right: auto;
}
#slider:hover .slick-next {
  right: 5px;
}

/* Dots */
.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: 0;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  border-color: white;
  opacity: 1;
}
.slick-dots li button:before {
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  line-height: 10px;
  text-align: center;
  background-color: black;
  opacity: 0.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border: 2px solid black;
}
.slick-dots li.slick-active button:before {
  background-color: white;
  opacity: 1;
}

@media print {
  /* =============================================================================
     Print Styles
     ========================================================================== */
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  body {
    font-size: 11pt;
    margin: 0.5in;
  }
  a, a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  } /* Don't show links for images, or javascript/internal links */
  pre, block quote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  } /* h5bp.com/t */
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3, .collapse .collapse-heading {
    orphans: 3;
    widows: 3;
  }
  h2, h3, .collapse .collapse-heading {
    page-break-after: avoid;
  }
  #branding {
    position: relative !important;
    padding: 1rem 0;
    border-bottom: 1px solid #ccc;
    height: auto !important;
  }
  #branding #logo {
    width: auto;
    max-width: 100%;
  }
  #branding #logo a {
    text-indent: 0;
    padding: 0;
    height: auto;
    color: #999;
    font-weight: 900;
  }
  #branding #logo a img {
    width: 100%;
  }
  #branding #logo a:after {
    display: none;
  }
  #primary {
    float: left;
    padding: 0;
  }
  #shim {
    height: 0 !important;
  }
  nav,
  #slide-trigger,
  .sharing-module {
    display: none !important;
  }
  h2, h3, .collapse .collapse-heading {
    page-break-after: avoid;
  }
  article {
    page-break-before: always;
  }
  ul, img {
    page-break-inside: avoid;
  }
}
/* HTML definitions */
body {
  margin: 0;
  padding: 0;
  background-color: white;
  font-family: "museo-sans", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #333;
}
body.dropped {
  overflow: hidden;
}

::-moz-selection {
  background: #143456;
  color: white;
  text-shadow: none;
}

::selection {
  background: #143456;
  color: white;
  text-shadow: none;
}

a {
  transition: all 0.2s ease;
  color: #143456;
  font-weight: 900;
  text-decoration: underline;
}
a:visited {
  color: #143456;
}
a:hover {
  color: #50b849;
  text-decoration: none;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}
a.button {
  border-radius: 2rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  text-align: center;
  width: auto;
  padding: 0.75rem 1.2em;
  font-weight: 900;
  background: #143456;
  color: white;
  border: 2px solid #50b849;
  text-decoration: none;
  cursor: pointer;
}
a.button:hover, a.button.active {
  background: #22aae2;
  color: white;
  box-shadow: 0 0 10px rgba(34, 170, 226, 0.5);
}
a.button.reversed {
  background: white;
  color: primary;
}
button, .wp-block-button__link,
.wp-element-button {
  border-radius: 2rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  text-align: center;
  width: auto;
  padding: 0.75rem 1.2em;
  font-weight: 900;
  background: #143456;
  color: white;
  border: 2px solid #50b849;
  text-decoration: none;
  cursor: pointer;
}
button:hover, button.active, .wp-block-button__link:hover, .wp-block-button__link.active,
.wp-element-button:hover,
.wp-element-button.active {
  background: #22aae2;
  color: white;
  box-shadow: 0 0 10px rgba(34, 170, 226, 0.5);
}
button.reversed, .wp-block-button__link.reversed,
.wp-element-button.reversed {
  background: white;
  color: primary;
}
path {
  transition: all 0.2s ease;
}

h1, h2, h3, .collapse .collapse-heading, h4, h5, h6 {
  font-family: "museo-sans-rounded", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  line-height: 1.1;
  color: #22aae2;
  margin: 0 0 1rem 0;
}
h1 a, h1 a:visited, h2 a, h2 a:visited, h3 a, .collapse .collapse-heading a, h3 a:visited, h4 a, h4 a:visited, h5 a, h5 a:visited, h6 a, h6 a:visited {
  text-decoration: none;
  font-weight: inherit;
}

h1 {
  font-size: 250%;
  font-weight: 900;
}

h2 {
  font-size: 180%;
}

h3, .collapse .collapse-heading {
  font-size: 120%;
}

h4 {
  font-size: 112.5%;
}

h5 {
  font-size: 106.25%;
}

h6 {
  font-size: 100%;
}

p, ul, ol, hr {
  margin: 0 0 1.5em 0;
}

ul {
  padding-left: 2em;
}

hr {
  clear: both;
  border: 0;
  border-top: 1px solid #bcbec0;
}
hr.clr {
  visibility: hidden;
  height: 0;
  width: 0;
  margin: 0;
  border: 0;
}

iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  box-shadow: 0 0 20px rgba(34, 170, 226, 0.5);
}

/*!-- STRUCTURE
--------------------------------*/
#page, #branding, #bottom {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
}

.contain {
  margin: 0 auto;
  position: relative;
  width: 80%;
  max-width: 1056px;
  clear: both;
}

#page {
  background: white;
}

#main {
  padding: 0;
}

#primary {
  width: 100%;
  padding: 4rem 0;
}

#bottom,
#sidebar {
  font-size: 87.5%;
  line-height: 1.3;
}

#sidebar #tertiary,
#sidebar .widget {
  border-bottom: 0;
  margin-bottom: 1rem;
}
#sidebar #tertiary:last-child,
#sidebar .widget:last-child {
  margin-right: 0;
}

.band {
  padding: 3rem 0;
}

/*-- HEADER
--------------------------------*/
#branding {
  background: white;
  z-index: 10000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#branding #logo {
  margin: 0 2rem 0 0;
  width: 50%;
  max-width: 320px;
}
#branding #logo a {
  display: flex;
}
#branding #logo img {
  width: 100%;
  height: auto;
}

/*-- Footer
--------------------------------*/
#bottom {
  background: white;
  border-top: 1px solid #143456;
  padding: 3rem 0;
}
#bottom .partners {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
#bottom .partners img {
  max-width: 130px;
}
#bottom .footer-info .socials {
  justify-self: end;
  width: 100%;
}

#footnav ul {
  list-style: none;
  margin-right: 0;
  padding: 0;
  float: right;
}
#footnav ul li {
  display: inline;
  margin: 0;
}
#footnav ul li:after {
  content: "  |  ";
}
#footnav ul li:last-child:after {
  content: "" !important;
}

/* =parallax components on main
--------------------------------------------------------------------*/
.px {
  position: fixed;
  background-image: url("images/bg-dots.svg");
  background-size: 25vw 22.1vw;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#px-1 {
  background-position: -17vw 20%;
}

#px-2 {
  background-position: 91vw 101%;
}

/*-- headers and overlays and banners
--------------------------------*/
.overlink {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  content: "";
  display: block;
  text-indent: 1111%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 100;
}

.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  content: "";
  display: block;
  text-indent: 1111%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 100;
}

.page-header {
  background: #143456;
  padding: 4rem 0;
}
.page-header .post-meta {
  font-size: 0.86rem;
  color: #22aae2;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.page-header h1 {
  margin-bottom: 0;
}

.banner.bg-blue {
  background: #143456;
  color: white;
}
.banner.bg-blue a {
  color: white;
}

/*-- Content
--------------------------------*/
/* Add " (PDF)" text after links that go to PDFs */
/* If file size specified as data attribute, use that too */
.post {
  margin: 0 0 1rem;
  padding: 0 0 1rem 0;
  border-bottom: 2px solid #efefef;
}

.entry-meta {
  clear: both;
  display: block;
  font-size: 75%;
  margin-bottom: 1rem;
  color: #707070;
}

#content nav {
  display: block;
  overflow: hidden;
}
#content nav.nav-previous {
  float: left;
  width: 50%;
}
#content nav.nav-next {
  float: right;
  text-align: right;
  width: 50%;
}
#content nav #nav-above {
  display: none;
}
#content nav #nav-below {
  margin: 1rem 0;
}
#content nav article.last-child,
#content nav .single .post {
  border: 0;
}

.paged #content #nav-above,
.single #content #nav-above {
  display: block;
}

/* Image Attachments */
.image-attachment div.entry-meta {
  float: left;
}
.image-attachment nav {
  float: right;
  margin: 0 0 1rem 0;
}
.image-attachment .entry-content {
  clear: both;
}
.image-attachment .entry-content .entry-attachment {
  background: #bcbec0;
  margin: 0 0 1rem;
  padding: 1rem;
  text-align: center;
}
.image-attachment .entry-content .attachment {
  display: block;
  margin: 0 auto;
  text-align: center;
}

/* Images */
p img {
  margin-bottom: 0.5rem;
}

img.size-auto,
img.size-full,
img.size-large,
img.size-medium,
.attachment img,
.widget-area img,
.wp-caption {
  max-width: 100%; /* When images are too wide for containing element, force them to fit. */
  height: auto; /* Override height to match resized width for correct aspect ratio. */
}

img.alignleft {
  margin-right: 1rem;
}

img.alignright {
  margin-left: 1rem;
}

.wp-caption {
  padding: 0.5rem;
  text-align: center;
}

.wp-caption img {
  margin: 0.25rem;
}
.wp-caption .wp-caption-text {
  margin: 0.5rem;
}

#primary ul {
  overflow: hidden;
}

/*-- Alignment
--------------------------------*/
.alignleft, .alignright {
  display: inline;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

/*-- alerts
--------------------------------*/
.alert, .validation_error,
.gform_confirmation_message {
  *zoom: 1;
  border-radius: 7px;
  border: 1px solid #707070;
  background: #bcbec0;
  padding: 2rem;
  margin-bottom: 2rem;
}
.alert::before, .alert::after, .validation_error::before, .validation_error::after,
.gform_confirmation_message::before,
.gform_confirmation_message::after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
.alert *, .validation_error *,
.gform_confirmation_message * {
  color: #333;
}

.warning, .validation_error {
  background: #f2dede;
  border-color: #bd071a;
}

.ok,
.gform_confirmation_message {
  background: #dff0d9;
  border-color: #3e754d;
}

.validation_message {
  font-weight: 700;
  color: #a00;
}

/*-- Accessibility
--------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text,
.assistive-text,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/*-- alert boxes
--------------------------------*/
.alert {
  *zoom: 1;
  border-radius: 7px;
  border: 1px solid #707070;
  background: #bcbec0;
  padding: 2rem;
  margin-bottom: 2rem;
}
.alert::before, .alert::after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}

.warning {
  background: #f2dede;
  border-color: #bd071a;
}

.ok {
  background: #dff0d9;
  border-color: #3e754d;
}

/*-- Widgets
--------------------------------*/
.widget {
  display: block;
  margin-bottom: 1rem;
}

.widget-area .widget_search {
  overflow: hidden;
}
.widget-area .widget_search input {
  float: left;
}

/* =collapsible div
--------------------------------------------------------------------*/
.collapse {
  opacity: 1 !important;
  padding: 0.5rem 0 0.5rem 0;
  border-bottom: 1px solid #bcbec0;
}
.collapse .collapse-heading,
.collapse .collapse-content {
  padding: 0.5rem 0;
  margin: 0;
}
.collapse .collapse-heading {
  cursor: pointer;
}
.collapse .collapse-heading span {
  display: inline-block;
}
.collapse .collapse-heading .indicator {
  font-size: 0.8em;
  margin-left: 1em;
}
.collapse .collapse-heading:hover {
  color: #143456;
}
.collapse .collapse-heading.open .indicator-inner {
  transform: rotate(90deg);
}
.collapse .collapse-content {
  opacity: 1 !important;
}
.collapse .collapse-content .collapse-content-inner {
  opacity: 1 !important;
}
.collapse .collapse-content .collapse-content-inner * {
  opacity: 1 !important;
}

/* =videos
--------------------------------------------------------------------*/
.fluid-width-video-wrapper {
  aspect-ratio: 16/9;
}
.fluid-width-video-wrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.wp-embed-aspect-16-9 .wp-block-embed__wrapper {
  aspect-ratio: 16/9;
}
.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}

/* =special layout styles
--------------------------------------------------------------------*/
.block-offset {
  clip-path: polygon(0px 2vw, 100% 0px, 100% 100%, 0px calc(100% - 2vw));
  padding: 8vw 10%;
  margin: 4vw 0;
  background-color: #143456;
  color: white;
  width: 100vw;
  margin-left: -50vw;
  left: 50%;
}
.block-offset .grid-container {
  max-width: 1400px;
  margin: 0 auto;
}
.block-offset img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* =controls
--------------------------------------------------------------------*/
.inline_buttons {
  grid-column: 1/-1;
  grid-column: 1/-1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.inline_buttons a, .inline_buttons button {
  display: inline-flex;
}

/* =media queries
--------------------------------------------------------------------*/
@media screen and (max-width: 770px) {
  body {
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
  }
  body.dropped {
    margin-left: -100%;
  }
  #logo {
    padding: 0;
  }
  .page-header {
    padding: 2rem 0;
  }
}
@media screen and (min-width: 771px) {
  #primary.has-sidebar {
    width: 8fr;
    margin: 0;
  }
  #sidebar {
    width: 4fr;
  }
}
@media screen and (max-width: 768px) and (max-height: 1024px) { /* thinking about smaller screens now */ }

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