/* Block Styles */
.hero-banner-block {
    max-width: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: visible;
    position: relative;
    padding-top: calc(2em + 75px + 2em);
    padding-left: 2em;
    padding-right: 2em;
    font-size:clamp(12px, 1vw, 16px)
}
@media (max-width: 595px) {
    .hero-banner-block {
        padding-top: calc(2em + 55px + 2em)
    }
}

.is-desktop-preview .hero-banner-block {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
}

.hero-services {
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    margin-top: 2em;
}
.hero-service {
    width: 7em;
}

.hero-banner-title, .editor-styles-wrapper .hero-banner-title {
    font-size: clamp(4em, 10vw, 6.875em);
    font-weight: 800;
    margin: 0;
    line-height: 1;
    text-align: center;
    color: var(--primary-color, #DB3700);
    /* filter: drop-shadow(2px 4px 160px white) drop-shadow(2px 4px 160px white) drop-shadow(2px 4px 160px white) drop-shadow(2px 4px 160px white) drop-shadow(2px 4px 160px white) drop-shadow(2px 4px 160px white) drop-shadow(2px 4px 160px white) drop-shadow(2px 4px 160px white); */
    z-index:0;
    position: relative;
}
.hero-banner-content, .hero-formidable-form, .hero-button-row, .hero-services {
    /* z-index:1;
    position: relative; */
}

.hero-banner-title .hero-banner-preheading {
    display: block;
    font-size: 0.5em;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    color: var(--text-color, #2C284B);
}
.hero-banner-content {
    line-height: 1.4;
    text-align: center;
    /* max-width: 600px; */
    color: var(--text-color, #2C284B);
    text-wrap: balance;
    margin-top: 1em;
}

.hero-alignment-left :is(.hero-banner-content, .hero-banner-title) {
    text-align: left;
}
.hero-alignment-left .hero-button-row {
    justify-content: flex-start
}
.hero-alignment-right .hero-button-row {
    justify-content: flex-end
}
.hero-alignment-right :is(.hero-banner-content, .hero-banner-title) {
    text-align: right;
}

.hero-heading-size-medium {
    font-size: 9px;
}
.hero-heading-size-small {
    font-size: 7px;
}
.hero-heading-size-medium .hero-banner-preheading,
.hero-heading-size-small .hero-banner-preheading {
    font-size: 0.4em;
    margin-bottom: 0.4em
}

.hero-heading-size-medium .hero-banner-content,
.hero-heading-size-small .hero-banner-content {
    font-size: 13px;
    margin-top:2em
}

.hero-banner-content p {
    margin: 0;
    font-size: clamp(1.2em, 2vw,1.5em);
}
.hero-service-cta,.hero-service-cta:hover, .hero-service-cta:visited {
    text-decoration: none;
    display: flex;
    flex-direction:column;
    gap: 0.5em;
    align-items: center;
    color: var(--text-color, #2C284B);
    transition:.2s ease
    
}
.hero-service-cta:hover {
    transform: translateY(-2px) scale(1.05)
}
.hero-service-cta h3 {
    margin:0;
    font-size: 1em;
    text-align: center;
    line-height: 1.1;
}
.hero-service-cta img {
    width: 4em;
    height: 4em;
}
.hero-banner-image-wrapper {
    position: absolute;
    z-index:0;
    left:0;
    top:0;
    bottom:0;
    right:0;

}
.hero-banner-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit:cover;
    object-position: 50% 50%;    
}
.hero-banner-content-wrapper {
    position: relative;
    padding: clamp(3em, 5vw, 5em) 0;
    max-width: var(--content-width);
    margin: auto;
    box-sizing: border-box;
}
:is(.hero-heading-size-medium, .hero-heading-size-small) .hero-banner-content-wrapper {
    padding: clamp(7em, 5vw, 15em) 0;
}
.hero-banner-tint {
    display: none;
    position: absolute;
    width: 100%;
    height:100%;
    left:0;
    top:0;
    backdrop-filter: blur(10px)
}
.hero-always-blur-enabled .hero-banner-tint {
    display: block;
}

@media (max-width: 1229.5px) {
    .hero-banner-tint {
        display: block;
    }
}
@media (min-width: 1230px) {
    body.home .hero-banner-content-wrapper {
        padding-right: clamp(0px, calc(-14.8131267vw + 620.5706472px), 500px);
    }
}
.hero-formidable-form {
    font-size: 16px;
}
.hero-formidable-form > .frm_forms {
    background: white;
    padding: clamp(20px, 5vw, 40px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 20px;
    padding-bottom: 10px;
    margin: 2em auto 0 !important;
}
.hero-formidable-form .frm_form_fields fieldset {
     padding: 0  
}
.hero-banner-block:last-child .hero-banner-tint {
  box-shadow: inset 0 -200px 200px rgba(255,255,255,1)  
} 