.duotone {
  max-width: 450px;
  position: relative;

}

.duotone::before,
.duotone::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.duotone img {
  filter: grayscale(1) brightness(120%);
}

.duotone::after {
  background: var(--base);
  mix-blend-mode: multiply;
}

.duotone::before {
  background: var(--secondary);
  mix-blend-mode: lighten;
}


/* Global header overlay styling */

[data-overlay="False"] {
    box-shadow:
     0px 5.6px 6.3px rgba(0, 0, 0, 0.03),
     0px 45px 50px rgba(0, 0, 0, 0.06);
      
}
/*Text which stands out*/

.standout {
    color: var(--primary);
    font-weight: 600;
    
}
[data-overlay="True"] {
    box-shadow: 0 0 0 0;
    position: absolute;
    top:0;
    left:0;
    right:0;
    z-index: 999;
    .header-indigo, .header-indigo__inner {
        color: white;
        background-color: transparent;
    }
    
    .brxe-nav-menu .bricks-nav-menu li a {
        color: white;
    }
}

        
// Global footer styling
[data-cta-footer="Yes"] {
    display: none!important;
}

/*WS FORM styling*/

.form--light .wsf-form .wsf-label-position-inside input.wsf-field[placeholder] + label {
  border-radius: 3px;
}