@import './fontello/css/fontello.css';

/*
font-family: avenir-lt-pro, sans-serif;
font-family: barlow-condensed, sans-serif;
  +600
font-family: merriweather, serif;
*/

a,b,body,div,h1,h2,h3,h4,h5,h6,hr,html,i,img,li,ol,p,span,table,tbody,td,tfoot,th,thead,tr,u,ul{border: 0;margin: 0;padding: 0;}
html,body{ height:100%;}
body{
  background:#fff;
  color: #000;
  font-family: avenir-lt-pro, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;  
  width: 100%;
  /* additional (non-theming) vars can go here */
  --nav-link-padding-y: 10px;
  --page-frame: 1352px;
}

/* BIZANGO TEXT - NEW DEFAULTS - DON'T HAVE A TOP MARGIN THAT IS NOT ZERO ON A CORE TEXT ELEMENT */
p, .p-style, li, figcaption {
  font-size:1rem;
  line-height:1.4;
  margin-top:0;
  margin-bottom:0.7em;
}
figure {
  margin: 1em 0;
}
img,
iframe:not(.playerBox) {
  max-width: 100%;
}
  
/* BIZANGO PAGE LAYOUT STRUCTURE */
.page_frame{
  box-sizing: border-box;
  margin: 0 auto;
  max-width: var(--page-frame);
  padding-left: 40px;
  padding-right: 40px;
  position:relative;
}
@media only screen and (max-width: 768px) {
  
  .page_frame {
    padding-left: 26px;
    padding-right: 26px;
  }
}

/* NAV */
.nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  display: block;
  font-family: barlow-condensed, sans-serif;
  font-size: 20px;
  font-size: clamp(14px, 1.56vw, 20px); /* Responsive */
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;  
  padding: var(--nav-link-padding-y, 10px) 20px;
  text-decoration: none;
}
.nav li {
  line-height: 1;
  margin: 0;
}
.nav > li {
  position: relative;
}
.nav > li > a:is(:hover, .current) {
  position: relative;
}
.nav > li > a:is(:hover, .current)::after {
  background-color: transparent;
  border-bottom: 4px solid #EE6B2F;
  bottom: 0;
  content: '';
  left: 20px; 
  pointer-events: none;
  position: absolute;
  right: 20px; 
  top: 0; 
}
.nav .subnav li {
  display: block;
}
.subnav {
  display: none;
  left: -9999px;
  margin: 0;
  min-width: 100%;
  position: absolute;
  top: 100%;
  white-space: nowrap;
  z-index: 1;
}
@media(hover: hover) {

  a:hover ~ ul.subnav,
  .subnav:hover {
    display: block;
  }
}
@media only screen and (min-width: 768px){

  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  li:focus-within > ul.subnav,
  .subnav:focus-within {
    display: block;
  }  
}

.logo a,
.logo a:hover,
.logo a:active,
.logo a:focus {
  text-decoration: none;
}
.logo a {
  display: block;
  padding: 10px 0;
}

/* header */
.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9;
}
.header__frame {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}
.header__nav-toggle {
  background-color: transparent;
  cursor: pointer;
  width: 35px;
  height: 21px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.line1 {
  /* Add specific styles for the first line if needed */
}
.line2 {
  /* Add specific styles for the second line if needed */
}
.line3 {
  /* Add specific styles for the third line if needed */
}
.header__nav-toggle[aria-expanded=true] .line1 {
  transform: rotate(45deg) translate(6px, 7px);
}
.header__nav-toggle[aria-expanded=true] .line2 {
  opacity: 0;
}
.header__nav-toggle[aria-expanded=true] .line3 {
  transform: rotate(-45deg) translate(6px, -7px);
}
@media only screen and (max-width: 767px){

  .header__nav {
    padding-bottom: 10px;
    padding-top: 10px;    
    text-align: right;
  }
  .header__nav-wrapper {
    background-color: white;
    display: none;
    left: 0;
    position: absolute;
    right: 0;
    text-align: left;
    top: 100%;    
    z-index: 9;
  }
  .header__nav--utility {
    display: none;
  }
  .header__nav-wrapper.toggle-show {
    display: initial;
  }
  .header .subnav {
    box-sizing: border-box;
    padding-left: 20px;
  }
}
/* hover indicator is meaningless, mobile browsers implement it */
@media only screen and ((hover: none) or (max-width: 767px)){

  .header .subnav.toggle-show {
    display: block;
    left: 0;
    position: relative;
  }
  .header .subnav-toggle {
    background-color: transparent;
    border: 0;
    height: 32px;
    position: absolute;
    right: 20px;
    top: 0;
    width: 32px;
  }
  .header .subnav-toggle:before {
    content: '+';
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .header .subnav-toggle[aria-expanded="true"]:before {
    content: '–';
  }
}
@media only screen and (hover: hover) and (min-width: 768px){

  .header .subnav-toggle {
    display: none;
  }
  .header .nav > li:hover .subnav,
  .header .nav > li:focus-within .subnav {
    left: 0;
  }  
}
@media only screen and (hover: none) and (min-width: 768px){

  .header .subnav.toggle-show {
    position: absolute;
  }
  .header .subnav-toggle {
    height: 20px;
    right: 0;
    top: 50%;
    width: 20px;
    transform: translateY(-50%);
  }
  .header .nav > li > a:hover + .subnav,
  .header .nav > li .subnav:focus-within {
    left: 0;
  }  
}
@media only screen and (min-width: 768px){

  .header {
    padding-bottom: 0;
    padding-top: 44px;
  }
  .header__frame {
    align-items: flex-start;
  }
  .header__nav-toggle,
  .header__nav-wrapper .nav--utility {
    display: none;
  }
}

/* footer */
.footer {
  padding-bottom: 3rem;
  padding-top: 0;
}
.footer .subnav {
  display: none;
}
@media only screen and (min-width: 768px){

  .footer__frame {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
  }
}
.deep-footer {
  background-color: #000;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}
.deep-footer__content {
  color: #888;
  text-align: center;
}
.deep-footer .copyright {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
#bizango{
    width:220px;height:12px;padding-bottom:20px;font-size:10px;color:#888;display:block;margin:40px auto 25px;
    background-image:url("/images/bizango-white-400x58.png");background-repeat:no-repeat;background-position:center bottom;background-size: 90px auto;
}

/* REQUIRED FOR CMS */
.help {
  background: #ddd;
  border-radius: 8px;
  color: #666;
  font-size: 13px;
  line-height: 1;
  margin: 0;
  padding: 10px;
}
.help p a {
  color: #ddd;
  text-decoration: underline;
}
.block__admin-view {
  padding-left: 42px;
}
@media only screen and (max-width: 767px){

  .bizango_cms_content [style*='text-align: right'] {
    text-align: left !important;
  }
}

/* OPTIONAL */
img.illustration{
  display:block;
  margin:0;
  margin-bottom:20px;
}

/* helpers-> clearfix */
.group:before,
.group:after {
    content: "";
    display: table;
} 
.group:after {
    clear: both;
}
.group {
    zoom: 1; /* For IE 6/7 (trigger hasLayout) */
}
.clear {
  clear:both;
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 999999;
}

/******** FROM THEMING **********/

body {
  background-color: var(--theme-page-background);
  color: var(--theme-contrast-color);
  content: var(--theme-content);
}

.public-section p,
.public-section .p-style,
.public-section li,
.public-section figcaption {
  font-size: 22px;
  font-size: clamp(16px, 1.7188vw, 22px); /* Responsive */
}
.public-section p,
.public-section .p-style {
  line-height: 136.364%;
  margin-bottom: 1.4em;
}
.public-section h6,
.public-section .h6-style,
.public-section h5,
.public-section .h5-style,
.public-section h4,
.public-section .h4-style,
.public-section h3,
.public-section .h3-style,
.public-section h2,
.public-section .h2-style,
.public-section h1,
.public-section .h1-style {
  margin-bottom:0.5em;
}
.public-section h6,
.public-section .h6-style {
  /* H6 Style */
  font-family: barlow-condensed, sans-serif;
  font-size: 20px;
  font-size: clamp(14.4px, 1.56vw, 20px); /* Responsive */
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.public-section h5,
.public-section .h5-style {
  /* H5 Style */
  font-family: avenir-lt-pro, sans-serif;
  font-size: 16px;
  font-size: clamp(12px, 1.25vw, 16px); /* Responsive */
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.public-section h4,
.public-section .h4-style {
  /* H4 Style */
  font-family: avenir-lt-pro, sans-serif;
  font-size: 25px;
  font-size: clamp(18px, 1.95vw, 25px); /* Responsive */
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.public-section h3,
.public-section .h3-style {
  /* H3 Style */
  font-family: barlow-condensed, sans-serif;
  font-size: 30px;
  font-size: clamp(21.6px, 2.34vw, 30px); /* Responsive */
  font-style: normal;
  font-weight: 400;
  line-height: 133.333%;
}
.public-section h2,
.public-section .h2-style {
  /* H2 Style */
  font-family: barlow-condensed, sans-serif;
  font-size: 40px;
  font-size: clamp(28.8px, 3.13vw, 40px); /* Responsive */
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.public-section h1,
.public-section .h1-style {
  /* H1 Style */
  font-family: barlow-condensed, sans-serif;
  font-size: 100px;
  font-size: clamp(72px, 7.81vw, 100px); /* Responsive */
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {

  .public-section .bizango_cms_content > p:last-child,
  .public-section .bizango_cms_content > .p-style:last-child {
    margin-bottom: 0;
  }
  .public-section h1,
  .public-section .h1-style {
    line-height: 80%;
  }
}


.nav {
  font-size: var(--theme-nav-font-size);
}
.nav li {
  font-family: var(--theme-font-family);
  font-weight: var(--theme-font-weight);
  text-transform: var(--theme-text-transform);
  letter-spacing: var(--theme-letter-spacing);
}

.logo {
  font-family: var(--theme-font-family);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.header {
  background-color: var(--theme-header-background); 
}
.header a {
  background-color: var(--theme-nav-background);
  color: var(--theme-nav-link-color);
  transition: background-color 0.25s linear, color 0.25s linear;
}      
.header a:hover,
.header a:focus {
  background-color: var(--theme-nav-background-hover);
  color: var(--theme-nav-link-color-hover);
}
.header__logo a {
  background-color: transparent;
}
.header__logo a:hover,
.header__logo a:focus {
  background-color: transparent;
}
.header__logo img {
  max-height: none;
  max-width: 209px;
}
.header__nav--utility {
  display: none;
}
.header__nav-toggle {
  border-color: var(--theme-nav-link-color);
  color: var(--theme-nav-link-color);
}
.header__nav .nav {
  background-color: transparent;
}    
.header .subnav {
  background-color: var(--theme-contrast-color);
}
@media only screen and (max-width: 767px){

  .header {
    padding-top: 14px;
  }
  .header__nav .header__nav-wrapper {
    background-color: var(--theme-secondary);
  }
  .header__nav .nav {
    background-color: var(--theme-nav-background);
  } 
}
@media only screen and (min-width: 768px){

  .header__nav .nav--utility {
    display: none;
  }
  .header__nav--utility {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }
  .header__logo img {
    max-height: none;
    max-width: none;
    height: auto;
    width: 306px;
    object-fit: contain;
  }
  .logo-variants--extend-logo--true .header__logo a {
    padding-bottom: 0;
  }
  .logo-variants--extend-logo--true .header__logo a img {
    margin-bottom: calc(var(--theme-logo-height, "60px") / -2);
    object-position: bottom;
  }

  .logo-variants--hide-logo--true.body_home .header__logo {
    visibility: hidden;
  }

  .nav-style-variants--separators--true .header__nav-wrapper .nav--primary > li > a {
    position: relative;
  }
  .nav-style-variants--separators--true .header__nav-wrapper .nav--primary > li > a:after {
    background-color: var(--theme-nav-link-color);
    content: '';
    height: 1em;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
  }
  .nav-style-variants--separators--true .header__nav-wrapper .nav--primary > li:last-child > a:after {
    content: none;
  }

  /* centered nav */
  .nav-style--shortcentered .header__frame {
    align-items: center;
    justify-content: center;
  }
  .nav-style--shortcentered .header__logo {
    order: 1;
    padding-left: 2%;
    padding-right: 2%;
    text-align: center;
  }
  .nav-style--shortcentered .header__nav {
    flex: 1;
    order: 0;
  }
  .nav-style--shortcentered .header__nav .nav--utility {
    display: none;
  }
  .nav-style--shortcentered .header__nav--utility {
    display: block;
    flex: 1;
    order: 2;
    position: static;
  }
  .nav-style--shortcentered .header__nav--utility .nav {
    justify-content: flex-start;
  }
  .nav-style--shortcentered.logo-variants--hide-logo--true.body_home .header__logo {
    display: none;
  }
  .nav-style--shortcentered.nav-style-variants--separators--true .header__nav-wrapper .nav--primary > li > a,
  .nav-style--shortcentered.nav-style-variants--separators--true .header__nav--utility .nav--utility > li > a {
    position: relative;
  }
  .nav-style--shortcentered.nav-style-variants--separators--true .header__nav-wrapper .nav--primary > li > a:after,
  .nav-style--shortcentered.nav-style-variants--separators--true .header__nav--utility .nav--utility > li > a:after {
    background-color: var(--theme-nav-link-color);
    content: '';
    height: 1em;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
  }
  .nav-style--shortcentered.nav-style-variants--separators--true .header__nav-wrapper .nav--primary > li:last-child > a:after,
  .nav-style--shortcentered.nav-style-variants--separators--true .header__nav--utility .nav--utility > li:last-child > a:after {
    content: none;
  }

  /* asymmetrical & horizontal nav */
  .nav-style--shortasymmetrical .header__nav,
  .nav-style--shorthorizontal .header__nav {
    /* spacing for absolutely positioned utility above */
    margin-top: 0;
  }

  /* asymmetrical nav */
  .nav-style--shortasymmetrical .header {
    background-color: transparent; 
  }
  .nav-style--shortasymmetrical .header a {
    background-color: transparent;
  }
  .nav-style--shortasymmetrical .header .subnav a {
    background-color: var(--theme-nav-background);
  }
  .nav-style--shortasymmetrical .header__nav a:hover,
  .nav-style--shortasymmetrical .header__nav a:focus,
  .nav-style--shortasymmetrical .header__nav--utility a:hover,
  .nav-style--shortasymmetrical .header__nav--utility a:focus {
    background-color: var(--theme-nav-background-hover);
  }
  .nav-style--shortasymmetrical .header__logo {
    background-color: var(--theme-header-background); 
    position: relative;
  }
  .nav-style--shortasymmetrical .header__logo:before {
    background-color: var(--theme-header-background); 
    bottom: 0;
    content: '';
    left: -9999px;
    position: absolute;
    right: 100%;
    top: 0;
  }
  .nav-style--shortasymmetrical .header__nav,
  .nav-style--shortasymmetrical .header__nav--utility {
    background-color: var(--theme-nav-background); 
  }
  .nav-style--shortasymmetrical .header__nav {
    position: relative;
  }
  .nav-style--shortasymmetrical .header__nav:after,
  .nav-style--shortasymmetrical .header__nav--utility:after {
    background-color: var(--theme-nav-background); 
    bottom: 0;
    content: '';
    left: 100%;
    position: absolute;
    top: 0;
  }
  .nav-style--shortasymmetrical .header__nav:after {
    right: -20px;
  }
  .nav-style--shortasymmetrical .header__nav--utility:after {
    right: 0;
  }
}
@media only screen and (min-width: 1263px){

  .nav-style--shortasymmetrical .header__nav:after {
    right: calc((100vw - 1222px) / -2);
  }
  .nav-style--shortasymmetrical .header__nav--utility:after {
    right: calc((100vw - 1262px) / -2);
  }
}

body.has-special-nav {
}
@media only screen and (min-width: 768px) {

  body.has-special-nav .header__frame,
  body.has-special-nav .header__frame .nav {
    flex-direction: column;
  }
  body.has-special-nav .header__frame .nav {
    align-items: flex-start;
  }
  body.has-special-nav .header__logo {
    margin-bottom: 24px;
  }
  body.has-special-nav .header__nav {
    border-left: 4px solid #EE6B2F;
  }
  body.has-special-nav .header__nav .nav > li > a {
    padding: 8px 10px;
  }
  body.has-special-nav .header__nav .nav > li > a:is(:hover, .current)::after {
    content: none;
  }
  body.has-special-nav .header__nav .nav > li > a:is(:hover, .current) {
    color: #EE6B2F;
  }
  body.has-special-nav .header__nav .subnav {
    display: none;
  }
}

.footer {
  background-color: var(--theme-footer-background);
  color: #fff;
  overflow: clip;
  position: relative;
}
.footer .block__bg-img img {
  height: 100%;
  max-width: none;
  object-fit: cover;
  width: 100%;
}
.footer__frame {
  align-items: flex-start;
  margin-bottom: 260px;
}
.footer__top-matter {
  margin-bottom: 150px;
}
.footer__logo img {
  max-height: none;
  max-width: none;
  height: auto;
  width: min(50vw, 300px);
  object-fit: contain;
}
.footer__nav--utility,
.footer .nav--utility {
  display: none;
}
.footer a {
  color: var(--theme-contrast-color);
}
.footer .nav a {
  font-size: 30px;
  font-size: clamp(18px, 2.34vw, 30px); /* Responsive */
  padding: 20px 50px;
  position: relative;
  z-index: 1;
}
.footer .nav > li > a:is(:hover, .current)::after {
  content: none;
}
.footer .nav > li > a:is(:hover, .current):not(:has(.as-button)) {
  color: #EE6B2F;
}
.footer .nav a .as-button {
  background-color: #EE6B2F;
  inset: 0;
  position: absolute;
  z-index: -1;
}
.deep-footer {
  background-color: var(--theme-deep-footer-background);
}
.deep-footer__content,
.deep-footer #bizango {
  color: var(--theme-contrast-color);
}
@media only screen and (max-width: 767px){
  .footer__frame {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {

  .footer__top-matter {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
  .footer__top-matter .bizango_cms_content :where(h1, .h1-style) {
    line-height: 70%;
  }
  body.public .footer__top-matter .bizango_cms_content :where(h1, .h1-style) {
    position: relative;
    top: -0.09em;
  }
  .footer .nav > li:last-child > a .as-button {
    right: -999px;
  }
}

/* colors */
.bizango_cms a:not(.button):not(.link-accent),
.block .element__text-link a,
.block .element__find_and_replace a,
.block .wrap-link {
  color: var(--theme-link-color);
}
.bizango_cms a:not(.button):not(.link-accent):hover,
.bizango_cms a:not(.button):not(.link-accent):focus,
.block .element__text-link a:hover,
.block .element__text-link a:focus,
.block .element__find_and_replace a:hover,
.block .element__find_and_replace a:focus,
.block .wrap-link:hover,
.block .wrap-link:focus {
  color: var(--theme-link-hover-color);
}
.block_container {
  color: var(--theme-contrast-color);
}  
.block_container .swatch__black,
.block_container .background-color__black {
  background-color: var(--theme-black);
  color: var(--theme-contrast-color);
}  
.block_container .swatch__white,
.block_container .background-color__white {
  background-color: var(--theme-white);
  color: var(--theme-contrast-color);
}  
.block_container .swatch__primary,
.block_container .background-color__primary,
.background-color__primary.parallax__yes .block__bg-img {
  background-color: var(--theme-primary);
  color: var(--theme-contrast-color);
}
.block_container .swatch__secondary,
.block_container .background-color__secondary,
.background-color__secondary.parallax__yes .block__bg-img {
  background-color: var(--theme-secondary);
  color: var(--theme-contrast-color);
}
.block_container .swatch__tertiary,
.block_container .background-color__tertiary,
.background-color__tertiary.parallax__yes .block__bg-img {
  background-color: var(--theme-tertiary);
  color: var(--theme-contrast-color);
}
.block_container .swatch__quaternary,
.block_container .background-color__quaternary,
.background-color__quaternary.parallax__yes .block__bg-img {
  background-color: var(--theme-quaternary);
  color: var(--theme-contrast-color);
}
.button-style--ghost .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .background-color__black .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .background-color__black .button:hover,
.button-style--ghost .background-color__black .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .background-color__white .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .background-color__white .button:hover,
.button-style--ghost .background-color__white .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .background-color__primary .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .background-color__primary .button:hover,
.button-style--ghost .background-color__primary .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .background-color__secondary .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .background-color__secondary .button:hover,
.button-style--ghost .background-color__secondary .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .background-color__tertiary .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .background-color__tertiary .button:hover,
.button-style--ghost .background-color__tertiary .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .background-color__quaternary .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .background-color__quaternary .button:hover,
.button-style--ghost .background-color__quaternary .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.block .bizango_cms_content *:not(a) {
  color: currentColor;
}

/* fonts & sizes */
.block {
  font-size: var(--theme-font-size);
}
@media only screen and (min-width: 768px){

  .block_type__2-column-even .all-cols-wrap [class^='col-'] {
    max-width: 600px;
  }
  .columns--3 .all-cols-wrap [class^='col-'] {
    max-width: 400px;
  }
  .block_type__2-column-bigright .all-cols-wrap {
    padding-right: 0;
  }
  .block_type__2-column-bigleft .all-cols-wrap {
    padding-left: 0;
  }    
}
.block {
  --padding-bottom: 96px;
  --padding-top: 96px;

  padding-bottom: var(--padding-bottom);
  padding-top: var(--padding-top);
}
.block--hero {
  --padding-bottom: 240px;
  --padding-top: 240px;
}
.padding-top__none {
  --padding-top: 0;
}
.padding-bottom__none {
  --padding-bottom: 0;
}  
.padding-bottom__less {
  --padding-bottom: 48px;
}
.padding-top__less {
  --padding-top: 48px;
}
.padding-bottom__normal {
  --padding-bottom: 96px;
}
.padding-top__normal {
  --padding-top: 96px;
}
.hero-padding-bottom__less,
.padding-bottom__more {
  --padding-bottom: 120px;
}
.hero-padding-top__less,
.padding-top__more {
  --padding-top: 120px;
}
.hero-padding-bottom__normal {
  --padding-bottom: 168px;
}
.hero-padding-top__normal {
  --padding-top: 168px;
}  
.hero-padding-bottom__more {
  --padding-bottom: 240px;
}
.hero-padding-top__more {
  --padding-top: 240px;
}

/* more options */
.content--narrow .page_frame {
  max-width: 760px;
}
.constrain-content__yes .page_frame {
  max-width: 880px;
}
.block--hero h1 {
  font-size: 2.5em;
}
.text-shadow-color__primary.text-shadow-opacity__light .bizango_cms_content *:not(a) {
  text-shadow: 0px 0px 4px var(--theme-primary);
}
.text-shadow-color__primary.text-shadow-opacity__heavy .bizango_cms_content *:not(a) {
  text-shadow: 0px 0px 8px var(--theme-primary);
}
.text-shadow-color__secondary.text-shadow-opacity__light .bizango_cms_content *:not(a) {
  text-shadow: 0px 0px 4px var(--theme-secondary);
}
.text-shadow-color__secondary.text-shadow-opacity__heavy .bizango_cms_content *:not(a) {
  text-shadow: 0px 0px 8px var(--theme-secondary);
}
.text-shadow-color__tertiary.text-shadow-opacity__light .bizango_cms_content *:not(a) {
  text-shadow: 0px 0px 4px var(--theme-tertiary);
}
.text-shadow-color__tertiary.text-shadow-opacity__heavy .bizango_cms_content *:not(a) {
  text-shadow: 0px 0px 8px var(--theme-tertiary);
}
.text-shadow-color__quaternary.text-shadow-opacity__light .bizango_cms_content *:not(a) {
  text-shadow: 0px 0px 4px var(--theme-quaternary);
}
.text-shadow-color__quaternary.text-shadow-opacity__heavy .bizango_cms_content *:not(a) {
  text-shadow: 0px 0px 8px var(--theme-quaternary);
}
.block.text-shadow-opacity__light .bizango_cms_content a,
.block.text-shadow-opacity__heavy .bizango_cms_content a {
  text-shadow: none;
}
@media only screen and (max-width: 767px){

  .block_container {
    color: var(--theme-contrast-color);
  }
  .block_container .mobile-background-color__black {
    background-color: var(--theme-black);
    color: var(--theme-contrast-color);
  }  
  .block_container .mobile-background-color__white {
    background-color: var(--theme-white);
    color: var(--theme-contrast-color);
  }  
  .block_container .mobile-background-color__primary {
    background-color: var(--theme-primary);
    color: var(--theme-contrast-color);
  }
  .block_container .mobile-background-color__secondary {
    background-color: var(--theme-secondary);
    color: var(--theme-contrast-color);
  }
  .block_container .mobile-background-color__tertiary {
    background-color: var(--theme-tertiary);
    color: var(--theme-contrast-color);
  }
  .block_container .mobile-background-color__quaternary {
    background-color: var(--theme-quaternary);
    color: var(--theme-contrast-color);
  }
}  

.block-border-bottom__body,
.block-border-bottom__border,
.block-border-top__body,
.block-border-top__border {
  fill: var(--theme-page-background);
}    
.below-block-background-color__black .block-border-bottom__body,
.below-block-background-color__black .block-border-bottom__border,
.above-block-background-color__black .block-border-top__body,
.above-block-background-color__black .block-border-top__border {
  fill: var(--theme-black);
}
.below-block-background-color__white .block-border-bottom__body,
.below-block-background-color__white .block-border-bottom__border,
.above-block-background-color__white .block-border-top__body,
.above-block-background-color__white .block-border-top__border {
  fill: var(--theme-white);
}
.below-block-background-color__primary .block-border-bottom__body,
.below-block-background-color__primary .block-border-bottom__border,
.above-block-background-color__primary .block-border-top__body,
.above-block-background-color__primary .block-border-top__border {
  fill: var(--theme-primary);
}
.below-block-background-color__secondary .block-border-bottom__body,
.below-block-background-color__secondary .block-border-bottom__border,
.above-block-background-color__secondary .block-border-top__body,
.above-block-background-color__secondary .block-border-top__border {
  fill: var(--theme-secondary);
}
.below-block-background-color__tertiary .block-border-bottom__body,
.below-block-background-color__tertiary .block-border-bottom__border,
.above-block-background-color__tertiary .block-border-top__body,
.above-block-background-color__tertiary .block-border-top__border {
  fill: var(--theme-tertiary);
}
.below-block-background-color__quaternary .block-border-bottom__body,
.below-block-background-color__quaternary .block-border-bottom__border,
.above-block-background-color__quaternary .block-border-top__body,
.above-block-background-color__quaternary .block-border-top__border {
  fill: var(--theme-quaternary);
}
.block.flair__on {
  border-bottom: 12px solid var(--theme-flair-color);
}
.block.flair__on.bottom-border__angle_left,
.block.flair__on.bottom-border__angle_right,
.block.flair__on.bottom-border__curve,
.block.flair__on.bottom-border__ripped,
.block.flair__on.bottom-border__chevron {
  border-bottom: none;
}
.block.flair__on.bottom-border__angle_left .block-border-bottom__border,
.block.flair__on.bottom-border__angle_right .block-border-bottom__border,
.block.flair__on.bottom-border__curve .block-border-bottom__border,
.block.flair__on.bottom-border__ripped .block-border-bottom__border,
.block.flair__on.bottom-border__chevron .block-border-bottom__border {
  fill: var(--theme-flair-color);
}

.block--testimonial.flair__on .element__text.element-0 p {
  font-size: 1.5em;
}
.block--testimonial.flair__on .element__text.element-0 .button {
  font-size: 0.6667em !important;
}
.block--testimonial.flair__on .element__text.element-1 p {
  font-size: 0.875em;
}
.block_type__book-testimonials.flair__on svg path {
  fill: var(--theme-flair-color);
}

.block_type__1-column-pop .all-cols-wrap .col-1 {
  margin-top: calc((var(--theme-padding-basis) * -4) - 80px); 
}
.block_type__1-column-pop.padding-top__none .all-cols-wrap .col-1 {
  margin-top: -80px;
}
.block_type__1-column-pop.padding-top__less .all-cols-wrap .col-1 {
  margin-top: calc((var(--theme-padding-basis) * -2) - 80px); 
}
.block_type__1-column-pop.padding-top__more .all-cols-wrap .col-1 {
  margin-top: calc((var(--theme-padding-basis) * -6) - 80px); 
}
.block_type__1-column-pop.flatten__on .all-cols-wrap .col-1 {
  margin-top: calc(var(--theme-padding-basis) * -4); 
}
.block_type__1-column-pop.padding-top__none.flatten__on .all-cols-wrap .col-1 {
  margin-top: 0; 
}
.block_type__1-column-pop.padding-top__less.flatten__on .all-cols-wrap .col-1 {
  margin-top: calc(var(--theme-padding-basis) * -2); 
}
.block_type__1-column-pop.padding-top__more.flatten__on .all-cols-wrap .col-1 {
  margin-top: calc(var(--theme-padding-basis) * -6); 
}
.block_type__1-column-pop .all-cols-wrap .col-1 {
  color: var(--theme-contrast-color);
}
.block_type__1-column-pop.pop-background-color__black .all-cols-wrap .col-1 {
  background-color: var(--theme-black);
  color: var(--theme-contrast-color);
}
.block_type__1-column-pop.pop-background-color__white .all-cols-wrap .col-1 {
  background-color: var(--theme-white);
  color: var(--theme-contrast-color);
}
.block_type__1-column-pop.pop-background-color__primary .all-cols-wrap .col-1 {
  background-color: var(--theme-primary);
  color: var(--theme-contrast-color);
}
.block_type__1-column-pop.pop-background-color__secondary .all-cols-wrap .col-1 {
  background-color: var(--theme-secondary);
  color: var(--theme-contrast-color);
}
.block_type__1-column-pop.pop-background-color__tertiary .all-cols-wrap .col-1 {
  background-color: var(--theme-tertiary);
  color: var(--theme-contrast-color);
}
.block_type__1-column-pop.pop-background-color__quaternary .all-cols-wrap .col-1 {
  background-color: var(--theme-quaternary);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__1-column-pop.pop-background-color__black .all-cols-wrap .col-1 .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__1-column-pop.pop-background-color__black .all-cols-wrap .col-1 .button:hover,
.button-style--ghost .block_type__1-column-pop.pop-background-color__black .all-cols-wrap .col-1 .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__1-column-pop.pop-background-color__white .all-cols-wrap .col-1 .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__1-column-pop.pop-background-color__white .all-cols-wrap .col-1 .button:hover,
.button-style--ghost .block_type__1-column-pop.pop-background-color__white .all-cols-wrap .col-1 .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__1-column-pop.pop-background-color__primary .all-cols-wrap .col-1 .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__1-column-pop.pop-background-color__primary .all-cols-wrap .col-1 .button:hover,
.button-style--ghost .block_type__1-column-pop.pop-background-color__primary .all-cols-wrap .col-1 .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__1-column-pop.pop-background-color__secondary .all-cols-wrap .col-1 .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__1-column-pop.pop-background-color__secondary .all-cols-wrap .col-1 .button:hover,
.button-style--ghost .block_type__1-column-pop.pop-background-color__secondary .all-cols-wrap .col-1 .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__1-column-pop.pop-background-color__tertiary .all-cols-wrap .col-1 .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__1-column-pop.pop-background-color__tertiary .all-cols-wrap .col-1 .button:hover,
.button-style--ghost .block_type__1-column-pop.pop-background-color__tertiary .all-cols-wrap .col-1 .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__1-column-pop.pop-background-color__quaternary .all-cols-wrap .col-1 .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__1-column-pop.pop-background-color__quaternary .all-cols-wrap .col-1 .button:hover,
.button-style--ghost .block_type__1-column-pop.pop-background-color__quaternary .all-cols-wrap .col-1 .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.block_type__1-column-pop.flair__on {
  border-bottom: none;
}
.block_type__1-column-pop.flair__on .all-cols-wrap .col-1 {
  box-shadow: 0 6px 10px 0 rgba(0,0,0,0.25);
}

.block_type__2-column-pop.pop-column__left .all-cols-wrap .col-1,
.block_type__2-column-pop.pop-column__right .all-cols-wrap .col-2 {
  margin-top: calc((var(--theme-padding-basis) * -4) - 80px);
}
.block_type__2-column-pop.pop-column__left.padding-top__none .all-cols-wrap .col-1,
.block_type__2-column-pop.pop-column__right.padding-top__none .all-cols-wrap .col-2 {
  margin-top: -80px;
}
.block_type__2-column-pop.pop-column__left.padding-top__less .all-cols-wrap .col-1,
.block_type__2-column-pop.pop-column__right.padding-top__less .all-cols-wrap .col-2 {
  margin-top: calc((var(--theme-padding-basis) * -2) - 80px);
}
.block_type__2-column-pop.pop-column__left.padding-top__more .all-cols-wrap .col-1,
.block_type__2-column-pop.pop-column__right.padding-top__more .all-cols-wrap .col-2 {
  margin-top: calc((var(--theme-padding-basis) * -6) - 80px); 
}
.block_type__2-column-pop.pop-column__left.flatten__on .all-cols-wrap .col-1,
.block_type__2-column-pop.pop-column__right.flatten__on .all-cols-wrap .col-2 {
  margin-top: calc(var(--theme-padding-basis) * -4);
}
.block_type__2-column-pop.pop-column__left.padding-top__none.flatten__on .all-cols-wrap .col-1,
.block_type__2-column-pop.pop-column__right.padding-top__none.flatten__on .all-cols-wrap .col-2 {
  margin-top: 0; 
}
.block_type__2-column-pop.pop-column__left.padding-top__less.flatten__on .all-cols-wrap .col-1,
.block_type__2-column-pop.pop-column__right.padding-top__less.flatten__on .all-cols-wrap .col-2 {
  margin-top: calc(var(--theme-padding-basis) * -2);
}
.block_type__2-column-pop.pop-column__left.padding-top__more.flatten__on .all-cols-wrap .col-1,
.block_type__2-column-pop.pop-column__right.padding-top__more.flatten__on .all-cols-wrap .col-2 {
  margin-top: calc(var(--theme-padding-basis) * -6);
}
.block_type__2-column-pop.pop-column__left .all-cols-wrap .col-1,
.block_type__2-column-pop.pop-column__right .all-cols-wrap .col-2 {
  color: var(--theme-contrast-color);
}
.block_type__2-column-pop.pop-column__left.pop-background-color__black .all-cols-wrap .col-1,
.block_type__2-column-pop.pop-column__right.pop-background-color__black .all-cols-wrap .col-2 {
  background-color: var(--theme-black);
  color: var(--theme-contrast-color);
}
.block_type__2-column-pop.pop-column__left.pop-background-color__white .all-cols-wrap .col-1,
.block_type__2-column-pop.pop-column__right.pop-background-color__white .all-cols-wrap .col-2 {
  background-color: var(--theme-white);
  color: var(--theme-contrast-color);
}
.block_type__2-column-pop.pop-column__left.pop-background-color__primary .all-cols-wrap .col-1,
.block_type__2-column-pop.pop-column__right.pop-background-color__primary .all-cols-wrap .col-2 {
  background-color: var(--theme-primary);
  color: var(--theme-contrast-color);
}
.block_type__2-column-pop.pop-column__left.pop-background-color__secondary .all-cols-wrap .col-1,
.block_type__2-column-pop.pop-column__right.pop-background-color__secondary .all-cols-wrap .col-2 {
  background-color: var(--theme-secondary);
  color: var(--theme-contrast-color);
}
.block_type__2-column-pop.pop-column__left.pop-background-color__tertiary .all-cols-wrap .col-1,
.block_type__2-column-pop.pop-column__right.pop-background-color__tertiary .all-cols-wrap .col-2 {
  background-color: var(--theme-tertiary);
  color: var(--theme-contrast-color);
}
.block_type__2-column-pop.pop-column__left.pop-background-color__quaternary .all-cols-wrap .col-1,
.block_type__2-column-pop.pop-column__right.pop-background-color__quaternary .all-cols-wrap .col-2 {
  background-color: var(--theme-quaternary);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__2-column-pop.pop-column__left.pop-background-color__black .all-cols-wrap .col-1 .button,
.button-style--ghost .block_type__2-column-pop.pop-column__right.pop-background-color__black .all-cols-wrap .col-2 .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__2-column-pop.pop-column__left.pop-background-color__black .all-cols-wrap .col-1 .button:hover,
.button-style--ghost .block_type__2-column-pop.pop-column__left.pop-background-color__black .all-cols-wrap .col-1 .button:focus,
.button-style--ghost .block_type__2-column-pop.pop-column__right.pop-background-color__black .all-cols-wrap .col-2 .button:hover,
.button-style--ghost .block_type__2-column-pop.pop-column__right.pop-background-color__black .all-cols-wrap .col-2 .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__2-column-pop.pop-column__left.pop-background-color__white .all-cols-wrap .col-1 .button,
.button-style--ghost .block_type__2-column-pop.pop-column__right.pop-background-color__white .all-cols-wrap .col-2 .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__2-column-pop.pop-column__left.pop-background-color__white .all-cols-wrap .col-1 .button:hover,
.button-style--ghost .block_type__2-column-pop.pop-column__left.pop-background-color__white .all-cols-wrap .col-1 .button:focus,
.button-style--ghost .block_type__2-column-pop.pop-column__right.pop-background-color__white .all-cols-wrap .col-2 .button:hover,
.button-style--ghost .block_type__2-column-pop.pop-column__right.pop-background-color__white .all-cols-wrap .col-2 .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__2-column-pop.pop-column__left.pop-background-color__primary .all-cols-wrap .col-1 .button,
.button-style--ghost .block_type__2-column-pop.pop-column__right.pop-background-color__primary .all-cols-wrap .col-2 .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__2-column-pop.pop-column__left.pop-background-color__primary .all-cols-wrap .col-1 .button:hover,
.button-style--ghost .block_type__2-column-pop.pop-column__left.pop-background-color__primary .all-cols-wrap .col-1 .button:focus,
.button-style--ghost .block_type__2-column-pop.pop-column__right.pop-background-color__primary .all-cols-wrap .col-2 .button:hover,
.button-style--ghost .block_type__2-column-pop.pop-column__right.pop-background-color__primary .all-cols-wrap .col-2 .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__2-column-pop.pop-column__left.pop-background-color__secondary .all-cols-wrap .col-1 .button,
.button-style--ghost .block_type__2-column-pop.pop-column__right.pop-background-color__secondary .all-cols-wrap .col-2 .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__2-column-pop.pop-column__left.pop-background-color__secondary .all-cols-wrap .col-1 .button:hover,
.button-style--ghost .block_type__2-column-pop.pop-column__left.pop-background-color__secondary .all-cols-wrap .col-1 .button:focus,
.button-style--ghost .block_type__2-column-pop.pop-column__right.pop-background-color__secondary .all-cols-wrap .col-2 .button:hover,
.button-style--ghost .block_type__2-column-pop.pop-column__right.pop-background-color__secondary .all-cols-wrap .col-2 .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__2-column-pop.pop-column__left.pop-background-color__tertiary .all-cols-wrap .col-1 .button,
.button-style--ghost .block_type__2-column-pop.pop-column__right.pop-background-color__tertiary .all-cols-wrap .col-2 .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__2-column-pop.pop-column__left.pop-background-color__tertiary .all-cols-wrap .col-1 .button:hover,
.button-style--ghost .block_type__2-column-pop.pop-column__left.pop-background-color__tertiary .all-cols-wrap .col-1 .button:focus,
.button-style--ghost .block_type__2-column-pop.pop-column__right.pop-background-color__tertiary .all-cols-wrap .col-2 .button:hover,
.button-style--ghost .block_type__2-column-pop.pop-column__right.pop-background-color__tertiary .all-cols-wrap .col-2 .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__2-column-pop.pop-column__left.pop-background-color__quaternary .all-cols-wrap .col-1 .button,
.button-style--ghost .block_type__2-column-pop.pop-column__right.pop-background-color__quaternary .all-cols-wrap .col-2 .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__2-column-pop.pop-column__left.pop-background-color__quaternary .all-cols-wrap .col-1 .button:hover,
.button-style--ghost .block_type__2-column-pop.pop-column__left.pop-background-color__quaternary .all-cols-wrap .col-1 .button:focus,
.button-style--ghost .block_type__2-column-pop.pop-column__right.pop-background-color__quaternary .all-cols-wrap .col-2 .button:hover,
.button-style--ghost .block_type__2-column-pop.pop-column__right.pop-background-color__quaternary .all-cols-wrap .col-2 .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);
}
.block_type__2-column-pop.flair__on {
  border-bottom: none;
}
.block_type__2-column-pop.flair__on.pop-column__left .all-cols-wrap .col-1,
.block_type__2-column-pop.flair__on.pop-column__right .all-cols-wrap .col-2 {
  box-shadow: 0 6px 10px 0 rgba(0,0,0,0.25);
}
@media only screen and (max-width: 767px){

  .block_type__2-column-pop.pop-column__right .all-cols-wrap {
    flex-direction: column-reverse;
  }
  .block_type__2-column-pop.pop-column__right .all-cols-wrap .col-1 {
    margin-bottom: 0;
  }
  .block_type__2-column-pop.pop-column__right .all-cols-wrap .col-2 {
    margin-bottom: 1rem;
  }
}

.block_type__2-column-image-pop.vertical-image-position__pop-up .all-cols-wrap .col-1 {
  margin-top: calc((var(--theme-padding-basis) * -4) - 80px); 
}
.block_type__2-column-image-pop.vertical-image-position__pop-up.padding-top__none .all-cols-wrap .col-1 {
  margin-top: -80px; 
}
.block_type__2-column-image-pop.vertical-image-position__pop-up.padding-top__less .all-cols-wrap .col-1 {
  margin-top: calc((var(--theme-padding-basis) * -2) - 80px); 
}
.block_type__2-column-image-pop.vertical-image-position__pop-up.padding-top__more .all-cols-wrap .col-1 {
  margin-top: calc((var(--theme-padding-basis) * -6) - 80px); 
}
.block_type__2-column-image-pop.vertical-image-position__top .all-cols-wrap .col-1 {
  margin-top: calc(var(--theme-padding-basis) * -4); 
}
.block_type__2-column-image-pop.vertical-image-position__top.padding-top__none .all-cols-wrap .col-1 {
  margin-top: 0; 
}
.block_type__2-column-image-pop.vertical-image-position__top.padding-top__less .all-cols-wrap .col-1 {
  margin-top: calc(var(--theme-padding-basis) * -2); 
}
.block_type__2-column-image-pop.vertical-image-position__top.padding-top__more .all-cols-wrap .col-1 {
  margin-top: calc(var(--theme-padding-basis) * -6); 
}
.block_type__2-column-image-pop.flair__on {
  border-bottom: none;
}
.block_type__2-column-image-pop.flair__on .all-cols-wrap .col-1 img,
.block_type__2-column-image-pop.flair__on .all-cols-wrap .col-1 .cropped-image {
  box-shadow: 0 6px 10px 0 rgba(0,0,0,0.25);
}
@media only screen and (min-width: 768px){

  .block_type__2-column-image-pop.vertical-image-position__push-down .all-cols-wrap .col-1 {
    padding-top: calc(var(--theme-padding-basis) * 4); 
  }
}

.block_type__story-panel.box-style__solid .col-2 {
  color: var(--theme-contrast-color);
}
.block_type__story-panel.box-style__solid.text-area-background-color__white .col-2 {
  background-color: var(--theme-white);
  color: var(--theme-contrast-color);
}
.block_type__story-panel.box-style__solid.text-area-background-color__black .col-2 {
  background-color: var(--theme-black);
  color: var(--theme-contrast-color);
}
.block_type__story-panel.box-style__solid.text-area-background-color__primary .col-2 {
  background-color: var(--theme-primary);
  color: var(--theme-contrast-color);
}
.block_type__story-panel.box-style__solid.text-area-background-color__secondary .col-2 {
  background-color: var(--theme-secondary);
  color: var(--theme-contrast-color);
}
.block_type__story-panel.box-style__solid.text-area-background-color__tertiary .col-2 {
  background-color: var(--theme-tertiary);
  color: var(--theme-contrast-color);
}
.block_type__story-panel.box-style__solid.text-area-background-color__quaternary .col-2 {
  background-color: var(--theme-quaternary);
  color: var(--theme-contrast-color);
}
.button-style--ghost .block_type__story-panel.box-style__solid.text-area-background-color__white .col-2 .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);  
}
.button-style--ghost .block_type__story-panel.box-style__solid.text-area-background-color__white .col-2 .button:hover,
.button-style--ghost .block_type__story-panel.box-style__solid.text-area-background-color__white .col-2 .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);  
}
.button-style--ghost .block_type__story-panel.box-style__solid.text-area-background-color__black .col-2 .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);  
}
.button-style--ghost .block_type__story-panel.box-style__solid.text-area-background-color__black .col-2 .button:hover,
.button-style--ghost .block_type__story-panel.box-style__solid.text-area-background-color__black .col-2 .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);  
}
.button-style--ghost .block_type__story-panel.box-style__solid.text-area-background-color__primary .col-2 .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);  
}
.button-style--ghost .block_type__story-panel.box-style__solid.text-area-background-color__primary .col-2 .button:hover,
.button-style--ghost .block_type__story-panel.box-style__solid.text-area-background-color__primary .col-2 .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);  
}
.button-style--ghost .block_type__story-panel.box-style__solid.text-area-background-color__secondary .col-2 .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);  
}
.button-style--ghost .block_type__story-panel.box-style__solid.text-area-background-color__secondary .col-2 .button:hover,
.button-style--ghost .block_type__story-panel.box-style__solid.text-area-background-color__secondary .col-2 .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);  
}
.button-style--ghost .block_type__story-panel.box-style__solid.text-area-background-color__tertiary .col-2 .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);  
}
.button-style--ghost .block_type__story-panel.box-style__solid.text-area-background-color__tertiary .col-2 .button:hover,
.button-style--ghost .block_type__story-panel.box-style__solid.text-area-background-color__tertiary .col-2 .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);  
}
.button-style--ghost .block_type__story-panel.box-style__solid.text-area-background-color__quaternary .col-2 .button {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);  
}
.button-style--ghost .block_type__story-panel.box-style__solid.text-area-background-color__quaternary .col-2 .button:hover,
.button-style--ghost .block_type__story-panel.box-style__solid.text-area-background-color__quaternary .col-2 .button:focus {
  border-color: var(--theme-contrast-color);
  color: var(--theme-contrast-color);  
}
.block_type__story-panel.box-style__outline.text-area-background-color__black .col-2 {
  border-color: var(--theme-black);
}
.block_type__story-panel.box-style__outline.text-area-background-color__white .col-2 {
  border-color: var(--theme-white);
}
.block_type__story-panel.box-style__outline.text-area-background-color__primary .col-2 {
  border-color: var(--theme-primary);
}
.block_type__story-panel.box-style__outline.text-area-background-color__secondary .col-2 {
  border-color: var(--theme-secondary);
}
.block_type__story-panel.box-style__outline.text-area-background-color__tertiary .col-2 {
  border-color: var(--theme-tertiary);
}
.block_type__story-panel.box-style__outline.text-area-background-color__quaternary .col-2 {
  border-color: var(--theme-quaternary);
}
@media only screen and (min-width: 768px){

  .block_type__story-panel.vertical-text-position__push-down .col-2 {
    margin-top: var(--theme-padding-basis);
  }
  .block_type__story-panel.vertical-text-position__pop-up .col-1 {
    margin-top: var(--theme-padding-basis);
  }
}

.block_type__book-summary .summary-nav .current {
  border-bottom-color: var(--theme-flair-color);
}

.block_type__boxes {
  padding-bottom: 0;
  padding-top: 0;
}
.block_type__boxes .box,
.block_type__boxes .admin-frame .box,
.block_type__boxes.block .box:hover,
.block_type__boxes.block .box:focus-within,
.block_type__boxes .admin-frame .hover-box.box {
  color: var(--theme-contrast-color);
}
.block_type__boxes.background-color_white .box,
.block_type__boxes.background-color__white .admin-frame .box,
.block_type__boxes.block.hover-background-color__white .box:hover,
.block_type__boxes.block.hover-background-color__white .box:focus-within,
.block_type__boxes.hover-background-color__white .admin-frame .hover-box.box {
  background-color: var(--theme-white);
  color: var(--theme-contrast-color);
}
.block_type__boxes.background-color__black .box,
.block_type__boxes.background-color__black .admin-frame .box,
.block_type__boxes.block.hover-background-color__black .box:hover,
.block_type__boxes.block.hover-background-color__black .box:focus-within,
.block_type__boxes.hover-background-color__black .admin-frame .hover-box.box {
  background-color: var(--theme-black);
  color: var(--theme-contrast-color);
}
.block_type__boxes.background-color__primary .box,
.block_type__boxes.background-color__primary .admin-frame .box,
.block_type__boxes.block.hover-background-color__primary .box:hover,
.block_type__boxes.block.hover-background-color__primary .box:focus-within,
.block_type__boxes.hover-background-color__primary .admin-frame .hover-box.box {
  background-color: var(--theme-primary);
  color: var(--theme-contrast-color);
}
.block_type__boxes.background-color__secondary .box,
.block_type__boxes.background-color__secondary .admin-frame .box,
.block_type__boxes.block.hover-background-color__secondary .box:hover,
.block_type__boxes.block.hover-background-color__secondary .box:focus-within,
.block_type__boxes.hover-background-color__secondary .admin-frame .hover-box.box {
  background-color: var(--theme-secondary);
  color: var(--theme-contrast-color);
}
.block_type__boxes.background-color__tertiary .box,
.block_type__boxes.background-color__tertiary .admin-frame .box,
.block_type__boxes.block.hover-background-color__tertiary .box:hover,
.block_type__boxes.block.hover-background-color__tertiary .box:focus-within,
.block_type__boxes.hover-background-color__tertiary .admin-frame .hover-box,
.block_type__boxes.hover-background-color__tertiary .box.admin-box {
  background-color: var(--theme-tertiary);
  color: var(--theme-contrast-color);
}
.block_type__boxes.background-color__quaternary .box,
.block_type__boxes.background-color__quaternary .admin-frame .box,
.block_type__boxes.block.hover-background-color__quaternary .box:hover,
.block_type__boxes.block.hover-background-color__quaternary .box:focus-within,
.block_type__boxes.hover-background-color__quaternary .admin-frame .hover-box {
  background-color: var(--theme-quaternary);
  color: var(--theme-contrast-color);
}

.block_type__filter-gallery .filter-sort__frame .button-grp button.active,
.block_type__filter-gallery .filter-sort__frame .button-grp .button.active {
  background-color: var(--theme-button-color-hover);
}

.block_type__faqs .windowshade-button-text {
  font-family: var(--theme-font-family);
  font-size: 1.25em;
  font-weight: var(--theme-font-weight);
  text-transform: var(--theme-text-transform);
  letter-spacing: var(--theme-letter-spacing);
}
.block_type__faqs .windowshade-button {
  color: var(--theme-contrast-color);
}
.block_type__faqs.button-background-color__white .windowshade-button {
  background-color: var(--theme-white);
  color: var(--theme-contrast-color);
}
.block_type__faqs.button-background-color__black .windowshade-button {
  background-color: var(--theme-black);
  color: var(--theme-contrast-color);
}
.block_type__faqs.button-background-color__primary .windowshade-button {
  background-color: var(--theme-primary);
  color: var(--theme-contrast-color);
}
.block_type__faqs.button-background-color__secondary .windowshade-button {
  background-color: var(--theme-secondary);
  color: var(--theme-contrast-color);
}
.block_type__faqs.button-background-color__tertiary .windowshade-button {
  background-color: var(--theme-tertiary);
  color: var(--theme-contrast-color);
}
.block_type__faqs.button-background-color__quaternary .windowshade-button {
  background-color: var(--theme-quaternary);
  color: var(--theme-contrast-color);
}

.block_type__subpage-overlay .grid-item,
.block_type__subpage-overlay .grid-item:hover,
.block_type__subpage-overlay .grid-item:focus-within {
  color: var(--theme-contrast-color);
}
.block_type__subpage-overlay.initial-background-color__white .grid-item,
.block_type__subpage-overlay.hover-background-color__white .grid-item:hover,
.block_type__subpage-overlay.hover-background-color__white .grid-item:focus-within {
  background-color: var(--theme-white);
  color: var(--theme-contrast-color);
}
.block_type__subpage-overlay.initial-background-color__black .grid-item,
.block_type__subpage-overlay.hover-background-color__black .grid-item:hover,
.block_type__subpage-overlay.hover-background-color__black .grid-item:focus-within {
  background-color: var(--theme-black);
  color: var(--theme-contrast-color);
}
.block_type__subpage-overlay.initial-background-color__primary .grid-item,
.block_type__subpage-overlay.hover-background-color__primary .grid-item:hover,
.block_type__subpage-overlay.hover-background-color__primary .grid-item:focus-within {
  background-color: var(--theme-primary);
  color: var(--theme-contrast-color);
}
.block_type__subpage-overlay.initial-background-color__secondary .grid-item,
.block_type__subpage-overlay.hover-background-color__secondary .grid-item:hover,
.block_type__subpage-overlay.hover-background-color__secondary .grid-item:focus-within {
  background-color: var(--theme-secondary);
  color: var(--theme-contrast-color);
}
.block_type__subpage-overlay.initial-background-color__tertiary .grid-item,
.block_type__subpage-overlay.hover-background-color__tertiary .grid-item:hover,
.block_type__subpage-overlay.hover-background-color__tertiary .grid-item:focus-within {
  background-color: var(--theme-tertiary);
  color: var(--theme-contrast-color);
}
.block_type__subpage-overlay.initial-background-color__quaternary .grid-item,
.block_type__subpage-overlay.hover-background-color__quaternary .grid-item:hover,
.block_type__subpage-overlay.hover-background-color__quaternary .grid-item:focus-within {
  background-color: var(--theme-quaternary);
  color: var(--theme-contrast-color);
}
.block_type__subpage-overlay.block__admin-view.initial-background-color__white .grid__item-bg,
.block_type__subpage-overlay.block__admin-view.hover-background-color__white .grid__item-bg:hover,
.block_type__subpage-overlay.block__admin-view.hover-background-color__white .grid__item-bg:focus-within {
  background-color: var(--theme-white);
  color: var(--theme-contrast-color);
}
.block_type__subpage-overlay.block__admin-view.initial-background-color__black .grid__item-bg,
.block_type__subpage-overlay.block__admin-view.hover-background-color__black .grid__item-bg:hover,
.block_type__subpage-overlay.block__admin-view.hover-background-color__black .grid__item-bg:focus-within {
  background-color: var(--theme-black);
  color: var(--theme-contrast-color);
}
.block_type__subpage-overlay.block__admin-view.initial-background-color__primary .grid__item-bg,
.block_type__subpage-overlay.block__admin-view.hover-background-color__primary .grid__item-bg:hover,
.block_type__subpage-overlay.block__admin-view.hover-background-color__primary .grid__item-bg:focus-within {
  background-color: var(--theme-primary);
  color: var(--theme-contrast-color);
}
.block_type__subpage-overlay.block__admin-view.initial-background-color__secondary .grid__item-bg,
.block_type__subpage-overlay.block__admin-view.hover-background-color__secondary .grid__item-bg:hover,
.block_type__subpage-overlay.block__admin-view.hover-background-color__secondary .grid__item-bg:focus-within {
  background-color: var(--theme-secondary);
  color: var(--theme-contrast-color);
}
.block_type__subpage-overlay.block__admin-view.initial-background-color__tertiary .grid__item-bg,
.block_type__subpage-overlay.block__admin-view.hover-background-color__tertiary .grid__item-bg:hover,
.block_type__subpage-overlay.block__admin-view.hover-background-color__tertiary .grid__item-bg:focus-within {
  background-color: var(--theme-tertiary);
  color: var(--theme-contrast-color);
}
.block_type__subpage-overlay.block__admin-view.initial-background-color__quaternary .grid__item-bg,
.block_type__subpage-overlay.block__admin-view.hover-background-color__quaternary .grid__item-bg:hover,
.block_type__subpage-overlay.block__admin-view.hover-background-color__quaternary .grid__item-bg:focus-within {
  background-color: var(--theme-quaternary);
  color: var(--theme-contrast-color);
}
.block_type__subpage-overlay.block__admin-view .grid-item,
.block_type__subpage-overlay.block__admin-view .grid-item:hover,
.block_type__subpage-overlay.block__admin-view .grid-item:focus-within {
  background: transparent;
  color: inherit;
}

.block_type__subpage-list.v1.flair__on {
  border: 0;
}
.block_type__subpage-list.v1 .grid__item-title .wrap-link:hover,
.block_type__subpage-list.v1 .grid__item-title .wrap-link:focus {
  color: var(--theme-link-hover-color);
}

.blog-block .blog-post__categories a {
  letter-spacing: 0.1em;
}
.blog-block .post__content {
  border-color: var(--theme-flair-color);
}

/* ckeditor styles */
.accent {
  display: inline-block;
  position: relative;
}
.accent:after {
  background-color: var(--theme-flair-color);
  bottom: 2px;
  content: '';
  left: -10px;
  position: absolute;
  top: 6px;
  transform: translateX(-100%);
  width: 8px;
}
.button:after {
  content: '\f105';
  content: none;
  display: inline-block;
  font-family: "fontello";
  font-size: 0.9em;
  font-style: normal;
  font-weight: normal;
  margin-left: 0.2em;      
  speak: none;     
  text-decoration: none;
  width: 1em;
}
.link-accent:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='24' viewBox='0 0 44 24' fill='none'%3E%3Cpath d='M43.0607 13.0607C43.6464 12.4749 43.6464 11.5251 43.0607 10.9393L33.5147 1.3934C32.9289 0.807614 31.9792 0.807614 31.3934 1.3934C30.8076 1.97919 30.8076 2.92893 31.3934 3.51472L39.8787 12L31.3934 20.4853C30.8076 21.0711 30.8076 22.0208 31.3934 22.6066C31.9792 23.1924 32.9289 23.1924 33.5147 22.6066L43.0607 13.0607ZM0 12L-1.31134e-07 13.5L42 13.5L42 12L42 10.5L1.31134e-07 10.5L0 12Z' fill='%23EE6B2F'/%3E%3C/svg%3E");
  content: '';
  display: inline-block;
  height: 24px;
  margin-left: 10px;
  width: 44px;
}
.button {
  background-color: var(--theme-button-color);
  color: #fff;
  display: inline-block;
  font-weight: normal;
  line-height: 1;
  margin-top: 0.7em;
  padding: 1.3131em 1.5656em;
  text-decoration: none;
  transition: background-color 0.25s linear;
}
.button-style--ghost .button {
  background-color: transparent;
  border-width: var(--theme-button-border-width);
  border-style: solid;
  border-color: var(--theme-button-color);
  color: var(--theme-button-color);
  transition: border-color 0.25s linear, color 0.25s linear;
}
.button-variants--rounded--true .button {
  border-radius: var(--theme-button-radius);
}
.button-variants--bold--true .button {
  font-weight: bold;
}
.button-variants--caps--true .button {
  font-family: barlow-condensed, sans-serif;
  font-size: 0.9em;
  text-transform: uppercase;
}
.button-variants--spaced--true .button {
  letter-spacing: 0.1em;
}
.button:hover,
.button:focus {
  color: #fff;
  text-decoration: none;
  background-color: var(--theme-button-color-hover);
}
.button-style--ghost .button:hover,
.button-style--ghost .button:focus {
  background-color: transparent;
  border-color: var(--theme-button-color-hover);
  color: var(--theme-button-color-hover);
}
.link-accent {
  color: var(--theme-link-color);
  text-decoration: none;
}
.link-accent:hover,
.link-accent:focus {
  color: var(--theme-link-hover-color);
}
.public-section .letter-spacing--wide {
  letter-spacing: 0.15em;
}
.public-section .text-transform--upper {
  text-transform: uppercase;
}
.public-section .attribution {
  font-size: 16px;
  font-size: clamp(12px, 1.25vw, 16px); /* Responsive */
  padding-top: 0.8em;
}
@media only screen and (min-width: 768px) {

  .accent:after {
    left: -19px;
  }
}

/* BLOCKS */
@media only screen and (max-width: 767px){

  .mobile-background-position__bottom .block__bg-img img {
    object-position: bottom;
  }
  .mobile-background-position__center .block__bg-img img {
    object-position: center;
  }
  .mobile-background-position__top .block__bg-img img {
    object-position: top;
  }
}

.block_type__townsend-hero {
  --page-frame: 1432px;
}
.block_type__townsend-hero .block__bg-img::before {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.40) 100%);
  content: '';
  inset: 0;
  position: absolute;
}
.block_type__townsend-hero .overlay-text .bizango_cms_content {
  color: #fff;
}
.block_type__townsend-hero .under-text .bizango_cms_content {
  color: #65879B;
}
.block_type__townsend-hero .element__text .bizango_cms_content > *:last-child {
  margin-bottom: 0;
}
body.public .block_type__townsend-hero .under-text .bizango_cms_content :where(h1, .h1-style) {
  position: relative;
  top: -0.13em;
}
@media only screen and (max-width: 767px) {
  
  .block_type__townsend-hero .block__bg-img::before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 67.29%, rgba(0, 0, 0, 0.90) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.90) 100%);
  }
  .block_type__townsend-hero .overlay-text {
    margin-bottom: 20px;
  }
  .block_type__townsend-hero .under-text {
    padding-top: 14px;
  }
}
@media only screen and (min-width: 768px) {

  /* .block_type__townsend-hero {
    margin-bottom: 64px;
  } */
}

.block_type__two-tone-2-column {
  overflow-x: clip;
}
.block_type__two-tone-2-column .col-1,
.block_type__two-tone-2-column .col-1 > * {
  position: relative;
  z-index: 1;
}
.block_type__two-tone-2-column .col-1 .bizango_cms_content :where(p, .p-style) {
  font-family: merriweather, serif;
  font-size: 30px;
  font-size: clamp(21.6px, 2.34vw, 30px); /* Responsive */
  font-style: normal;
  font-weight: 400;
  line-height: 166.6667%;
}
@media only screen and (max-width: 767px) {

    .block_type__two-tone-2-column .col-1::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='629' height='467' viewBox='0 0 629 467' fill='none'%3E%3Cg opacity='0.1'%3E%3Cpath d='M483.261 381.87H538.94C582.266 381.87 617.414 346.739 617.414 303.435V302.217H658.826V-107H-41V48.8261H483.261V381.87Z' fill='%2365879B'/%3E%3Cpath d='M235.833 85.1739V315.783C241.749 348.304 269.937 381.696 306.303 381.696H381.123V154.565C379.731 114.391 337.971 84.8261 302.649 84.8261C293.949 84.8261 245.577 84.8261 235.659 85' fill='%2365879B'/%3E%3Cpath d='M381.297 418.217H57.6577V381.87H63.3997C99.4176 381.87 127.432 349.174 133.87 317V85.3478H78.1897C34.8638 85.3478 -0.284119 120.478 -0.284119 163.783V165H-41V581.174H659V418.391H381.297V418.217Z' fill='%2365879B'/%3E%3C/g%3E%3C/svg%3E");  
      background-position: center;
      background-size: cover;
      bottom: 0;
      content: '';
      left: -26px;
      position: absolute;
      right: -26px;
      top: calc(var(--padding-top) * -1);
      width: auto;
    }
}
@media only screen and (min-width: 768px) {

  .block_type__two-tone-2-column::before {
    background-color: var(--theme-quaternary);
    bottom: 0;
    content: '';
    left: 43.7%;
    position: absolute;
    right: -9999px;
    top: 0;
  }
  .block_type__two-tone-2-column .col-2 .bizango_cms_content {
    color: var(--theme-text-color);
  }
  .block_type__two-tone-2-column::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='629' height='467' viewBox='0 0 629 467' fill='none'%3E%3Cg opacity='0.1'%3E%3Cpath d='M483.261 381.87H538.94C582.266 381.87 617.414 346.739 617.414 303.435V302.217H658.826V-107H-41V48.8261H483.261V381.87Z' fill='%2365879B'/%3E%3Cpath d='M235.833 85.1739V315.783C241.749 348.304 269.937 381.696 306.303 381.696H381.123V154.565C379.731 114.391 337.971 84.8261 302.649 84.8261C293.949 84.8261 245.577 84.8261 235.659 85' fill='%2365879B'/%3E%3Cpath d='M381.297 418.217H57.6577V381.87H63.3997C99.4176 381.87 127.432 349.174 133.87 317V85.3478H78.1897C34.8638 85.3478 -0.284119 120.478 -0.284119 163.783V165H-41V581.174H659V418.391H381.297V418.217Z' fill='%2365879B'/%3E%3C/g%3E%3C/svg%3E");  
    background-position: center;
    background-size: cover;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    right: 56.3%;
    top: 0;
    width: auto;
  }
  .block_type__two-tone-2-column .col-1 .element__text {
    max-width: 480px;
  }
  .block_type__two-tone-2-column .col-2 .element__text {
    margin-left: auto;
    max-width: 625px;
  }
}

.block_type__box-slider {
  --left-padding: 50px;
  --page-frame: 1090px;

  overflow-x: clip;
}
.block_type__box-slider .slider {
  margin-bottom: 18px;
  margin-top: 18px;
}
.block_type__box-slider .slick-list {
  overflow: visible;
}
.block_type__box-slider :is(.slick-prev, .slick-next) {
  background-color: transparent;
  height: 24px;
  opacity: 1;
  top: -33px;
  top: -20px;
  transform: translateY(-100%);
  width: 44px;
}
body.admin .block_type__box-slider :is(.slick-prev, .slick-next) {
  top: 50%;
}
.block_type__box-slider .slick-prev::before,
.block_type__box-slider .slick-next::before {
  content: none;
}
.block_type__box-slider .slick-prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='24' viewBox='0 0 44 24' fill='none'%3E%3Cpath d='M0.939339 10.9393C0.353554 11.5251 0.353554 12.4749 0.939339 13.0607L10.4853 22.6066C11.0711 23.1924 12.0208 23.1924 12.6066 22.6066C13.1924 22.0208 13.1924 21.0711 12.6066 20.4853L4.12132 12L12.6066 3.51472C13.1924 2.92893 13.1924 1.97919 12.6066 1.3934C12.0208 0.807611 11.0711 0.807611 10.4853 1.3934L0.939339 10.9393ZM44 10.5L2 10.5V13.5L44 13.5V10.5Z' fill='black'/%3E%3C/svg%3E");
  left: max(-186px, min(calc((100vw - 1090px + 20px) / -2), 0px));
}
.block_type__box-slider .slick-next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='24' viewBox='0 0 44 24' fill='none'%3E%3Cpath d='M43.0607 13.0607C43.6464 12.4749 43.6464 11.5251 43.0607 10.9393L33.5147 1.3934C32.9289 0.807614 31.9792 0.807614 31.3934 1.3934C30.8076 1.97919 30.8076 2.92893 31.3934 3.51472L39.8787 12L31.3934 20.4853C30.8076 21.0711 30.8076 22.0208 31.3934 22.6066C31.9792 23.1924 32.9289 23.1924 33.5147 22.6066L43.0607 13.0607ZM-1.31134e-07 13.5L42 13.5L42 10.5L1.31134e-07 10.5L-1.31134e-07 13.5Z' fill='black'/%3E%3C/svg%3E");
  right: max(-186px, min(calc((100vw - 1090px + 20px) / -2), 0px));
}
.block_type__box-slider .slide {
  background-color: #F3F5F7;
  box-sizing: border-box;
  margin-left: 9px;
  margin-right: 9px;
  padding: 54px 44px 44px var(--left-padding);
}
body.admin .block_type__box-slider .slide:nth-child(4n+1),
body.public .block_type__box-slider .slide:nth-child(4n+3) {
  background-color: #65879B;
  color: #fff;
}
body.admin .block_type__box-slider .slide:nth-child(4n+2),
body.public .block_type__box-slider .slide:nth-child(4n+4) {
  background-color: #2A3841;
  color: #fff;
}
body.admin .block_type__box-slider .slide:nth-child(4n+3),
body.public .block_type__box-slider .slide:nth-child(4n+1),
body.public .block_type__box-slider .slide:nth-child(4n+5) {
  background-color: #445A67;
  color: #fff;
}
body.public .block_type__box-slider .headline {
  margin-bottom: 42px;
  position: relative;
}
body.public .block_type__box-slider .headline h6,
body.public .block_type__box-slider .headline .h6-style {
  font-size: 16px;
  font-size: clamp(12px, 1.25vw, 16px); /* Responsive */
}
body.public .block_type__box-slider .headline::before {
  background-color: #EE6B2F;
  content: '';
  height: 50%;
  left: calc(var(--left-padding) * -1);
  position: absolute;
  right: calc(100% + 6px);
  top: 50%;
  transform: translateY(-50%);
}
.block_type__box-slider .main-text .bizango_cms_content p:not(:where(.h1-style, .h2-style, .h3-style, .h4-style, .h5-style, .h6-style)) {
  font-family: merriweather, serif;
  font-size: 20px;
  font-size: clamp(14px, 1.56vw, 20px); /* Responsive */
  font-weight: 400;
  line-height: 180%;
}

.block_type__testimonials {
  --quote-padding: 66px;
}
.block_type__testimonials .slick-dots {
  text-align: left;
}
.block_type__testimonials .slick-dots li button {
  background-clip: content-box;
  background-color: currentColor;
  border-color: transparent;
  border-width: 2px;
  height: 14px;
  opacity: 0.5;
  width: 14px;
}
.block_type__testimonials .slick-dots .slick-active button {
  background-color: #EE6B2F;
  background-image: none;
  border-color: currentColor;
  opacity: 1;
}
.block_type__testimonials .element__content_slider {
  position: relative;
}
.block_type__testimonials .element__content_slider .bizango_cms_content h4,
.block_type__testimonials .element__content_slider .bizango_cms_content .h4-style {
  margin-bottom: 1.1em;
}
.block_type__testimonials .element__content_slider::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='66' height='53' viewBox='0 0 66 53' fill='none'%3E%3Cg clip-path='url(%23clip0_1_199)'%3E%3Cpath d='M63.69 0C65.043 0 66 1.02688 66 2.18625C66 3.01437 65.505 3.87563 64.35 4.505C58.443 7.65188 51.612 18.5169 51.612 25.2081C61.578 24.91 65.901 33.7544 65.901 39.3194C65.901 45.9775 60.159 53 51.678 53C40.986 53 35.739 44.5531 35.739 35.4106C35.739 15.6019 58.311 0 63.69 0ZM27.951 0C29.304 0 30.261 1.02688 30.261 2.18625C30.261 3.01437 29.766 3.87563 28.611 4.505C22.704 7.65188 15.873 18.5169 15.873 25.2081C25.839 24.91 30.162 33.7544 30.162 39.3194C30.162 45.9775 24.42 53 15.939 53C5.247 53 0 44.5531 0 35.4106C0 15.6019 22.539 0 27.951 0Z' fill='%23EE6B2F'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1_199'%3E%3Crect width='66' height='53' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  content: '';
  height: 53px;
  left: calc(var(--quote-padding) * -1);
  left: -40px;
  position: absolute;
  top: 30px;
  transform: translateY(-50%);
  width: 66px;
}
@media only screen and (min-width: 768px) {

  .block_type__testimonials .element__block_bg_lazy .block__bg-img {
    right: 55%;
  }
  .block_type__testimonials.background-position__center .block__bg-img img {
    object-position: left center;
  }
  .block_type__testimonials.background-position__top .block__bg-img img {
    object-position: left top;
  }
  .block_type__testimonials.background-position__bottom .block__bg-img img {
    object-position: left bottom;
  }
  .block_type__testimonials .all-cols-wrap {
    margin-left: auto;
    width: 50%;
  }
  .block_type__testimonials .element__content_slider {
    padding-left: var(--quote-padding);
    padding-right: var(--quote-padding);
  }
}

.block_type__2-column-image-and-text {
  --page-frame: 1190px;
}
@media only screen and (max-width: 767px) {

  .block_type__2-column-image-and-text.reverse-columns__yes.columns--2 .all-cols-wrap .col-1,
  .block_type__2-column-image-and-text.reverse-columns__yes.columns--2 .all-cols-wrap .col-2 {
    order: initial;
  } 
}
@media only screen and (min-width: 768px) {
  
  .block_type__2-column-image-and-text .col-1 {
    max-width: 426px;
  }
  .block_type__2-column-image-and-text.reverse-columns__no .col-2 {
    padding-left: calc(20px + 5.5556%);
  }
  .block_type__2-column-image-and-text.reverse-columns__yes .col-2 {
    padding-right: calc(20px + 5.5556%);
  }
  .block_type__2-column-image-and-text .col-2 .add-stripe {
    position: relative;
  }
  .block_type__2-column-image-and-text .col-2 .add-stripe::before {
    background-color: #EE6B2F;
    content: '';
    height: 8px;
    position: absolute;
    top: 20px;
  }
  .block_type__2-column-image-and-text.reverse-columns__no .col-2 .add-stripe::before {
    left: calc((20px + 24%) * -1);
    right: calc(101% + 20px);
  }
  .block_type__2-column-image-and-text.reverse-columns__yes .col-2 .add-stripe::before {
    left: calc(101% + 20px);
    right: calc((20px + 24%) * -1);    
  }
}

.block_type__3-column {
  --page-frame: 1140px;
}
@media only screen and (min-width: 768px) {

  .block_type__3-column .all-cols-wrap {
    gap: 10.5%;
  }
}

.block_type__boxes {
}
.block_type__boxes .box .aspect-ratio, 
.block_type__boxes .admin-frame .hover-box .aspect-ratio,
.block_type__boxes.aspect-ratio__square .box .aspect-ratio, 
.block_type__boxes.aspect-ratio__square .admin-frame .hover-box .aspect-ratio {
    padding-bottom: 114%;
    width: 100%;
}
.block_type__boxes .box-content {
  padding: 32px 40px;
}
.block_type__boxes .box-content.align-center {
  justify-content: flex-end;
}
body.public .block_type__boxes .box__outer-frame .box-content-no-hover .bizango_cms_content::after {
  content: 'Learn more';
  font-family: barlow-condensed, sans-serif;
  font-size: 20px;
  font-size: clamp(14px, 1.56vw, 20px); /* Responsive */
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;  
}
.block_type__boxes .box-bg::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 56.57%, rgba(0, 0, 0, 0.70) 100%);
  content: '';
  inset: 0;
  position: absolute;
}
@media only screen and (hover: hover) {

  body.public .block_type__boxes .box__outer-frame .box-content-no-hover .bizango_cms_content {
    position: relative;
    transform: translateY(0);
    transition: transform 0.25s linear;
  }
  body.public .block_type__boxes .box__outer-frame:hover .box-content-no-hover .bizango_cms_content {
    transform: translateY(-50px);
  }
  body.public .block_type__boxes .box__outer-frame .box-content-no-hover .bizango_cms_content::after {
    bottom: 0;
    left: 0;
    position: absolute;
    transform: translateY(60px);
    transition: transform 0.25s linear;
  }
  body.public .block_type__boxes .box__outer-frame:hover .box-content-no-hover .bizango_cms_content::after {
    transform: translateY(43px);
  }
  body.public .block_type__boxes .box__outer-frame .box-content-no-hover .accent::after {
    transition: bottom 0.25s linear;
  }
  body.public .block_type__boxes .box__outer-frame:hover .box-content-no-hover .accent::after {
    bottom: -250px;
  }
}
@media only screen and (hover: none) {
    
  .block_type__boxes .box-content .bizango_cms_content {
    overflow: visible;
  }
  .block_type__boxes .box__link {
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {

  .block_type__boxes .box-content {
    padding: 32px 24%;
  }
}

.block_type__bio {
  --page-frame: 1190px;
}
.block_type__bio .bio-meta {
  background-color: #F3F5F7;
  color: #1E1E1E;
  padding: 20px;
}
.block_type__bio .bio-meta .bizango_cms_content p:last-child {
  margin-bottom: 0;
}
.block_type__bio .accordion {
  padding-top: 1.75em;
}
.block_type__bio .accordion-header {
  background-color: #F3F5F7;;
  margin-bottom: 12px;
  padding: 16px 55px 16px 30px;
  position: relative;
}
.block_type__bio .accordion-header .bizango_content_title {
  margin-bottom: 0;
}
.block_type__bio .ui-accordion-header:after {
  content: '+';
  display: inline-block;
  font-size: 22px;
  line-height: 1;
  position: absolute;
  right: 30px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
}
.block_type__bio .ui-accordion-header-active:after {
  content: '–';
}
.block_type__bio .accordion-panel {
  padding: 18px 30px 30px;
}
.block_type__bio .accordion-panel .bizango_cms_content p:last-child {
  margin-bottom: 0;
}
