/**
* 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-tagline {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    --time: 800ms;
    --easing: ease-out;
    --x: -2rem;
}

/*--------------------------------------------------------------
# Welcome
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 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_section p {
    position: relative;
    color: var(--white);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    margin: 0;
    padding: clamp(0.8rem, 3vw, 1.8rem) clamp(1.5rem, 2vw, 3rem);
    z-index: 1;
    container-type: inline-size;
	container-name: cta;
}

#cta_section p::before {
    content: '';
    background: linear-gradient(0deg, rgba(0,0,0,0.1), rgba(0,0,0,0.1)) 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="white" 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) 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;
    }
}