/**
* Fuel Theme
* Version 6.0.6
**/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Hero
# Welcome
# CTA's
# Locations
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
@media (max-width: 68.49em) {
    #hero_section {
        min-height: unset !important;
    }

    #hero_section .hero-tagline {
        line-height: 1.3;
    }
}

@media (max-width: 600px) {
    #hero_section br {
        display: none;
    }

    #hero_section .hero-tagline {
        text-align: center !important;
        line-height: 1.3;
    }

    #hero_section .wp-block-button {
        margin: auto;
    }
}

.hero-tagline {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    --time: 800ms;
    --easing: ease-out;
    --x: -2rem;
    line-height: 1.2;
}

/*--------------------------------------------------------------
# Welcome
--------------------------------------------------------------*/
#welcome_section h2 {
    position: relative;
    padding-bottom: 0.8rem;
}

#welcome_section h2::before {
    content: '';
    width: 6rem;
    height: 1px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: calc(50% - 3rem);
}

@media (min-width: 68.5em) {
    #welcome_section h2 {
        padding-bottom: 1.2rem;
        margin-top: 3.2rem;
    }

    #welcome_section h2::before {
        width: 8rem;
        left: calc(50% - 4rem);
    }
}

/*--------------------------------------------------------------
# CTA's
--------------------------------------------------------------*/
#cta_section a {
    --y: 0;
    --time: 600ms;
    width: 100%;
}

#cta_section .cta1 {
    --i: 0;
}

#cta_section .cta2 {
    --i: 3;
}

#cta_section .cta3 {
    --i: 6;
}

#cta_section .wp-block-image {
    overflow: hidden;
}

#cta_section img {
    width: 100%;
    max-height: 23rem;
    object-position: top;
    transition: transform 1s;
}

.cta p {
    position: relative;
    color: var(--white);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    margin: 0;
    padding: clamp(0.8rem, 3vw, 1.6rem) clamp(1.5rem, 2vw, 3rem);
    z-index: 1;
    container-type: inline-size;
    container-name: cta;
    background-image: url('../images/ctaw1.jpg');
    background-size: calc(100% - 2rem) 100%;
    background-position: left top;
    background-repeat: no-repeat;
    transition: color 350ms;
    line-height: 1.5;
}

.cta2 p {
    background-image: url('../images/ctaw2.jpg');
}

.cta3 p {
    background-image: url('../images/ctaw3.jpg');
}

#cta_section p::before {
    content: '';
    background: linear-gradient(0deg, var(--tan), var(--tan)) no-repeat right bottom / var(--cta-bg-width, 4rem) 100%;
    position: absolute;
    inset: 0 0 0 0;
    transition: background-size 350ms;
    z-index: -1;
}

#cta_section p::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 40 40"><path fill="%231A1546" d="m22.5 7.5-1.79 1.74 9.48 9.51H5v2.5h25.19l-9.48 9.47 1.79 1.78L35 20 22.5 7.5Z"/></svg>');
    height: 2rem;
    width: 2rem;
    position: absolute;
    inset: 0 1rem 0 auto;
    margin: auto;
    line-height: 1;
}

#cta_section a:is(:hover, :focus) p {
    color: var(--primary-color);
}

#cta_section a:is(:hover, :focus) img {
    transform: scale(1.1)
}

#cta_section a:is(:hover, :focus) p:before {
    background-size: 100% 100%;
}

@container cta (max-width: 17.5rem) {
    #cta_section p::before {
        --cta-bg-width: 2rem;
    }

    #cta_section p::after {
        height: 1rem;
        width: 1rem;
        right: 0.5rem;
    }
}

@media (max-width: 68.49em) {
    #cta_section {
        flex-direction: column;
    }
}


/*--------------------------------------------------------------
# Locations
--------------------------------------------------------------*/
.is-layout-flex>.flex-grow {
    flex-grow: 1;
}