.ps-777cb0a1-container {
    --ps-bg-color: #1a1a1a;
    --ps-title-color: #eaeaea;
    --ps-text-1-color: #eaeaea;
    --ps-text-2-color: #eaeaea;
    --ps-button-bg: #ab9250;
    --ps-button-text: #ffffff;
    --ps-fade-duration: 1200ms;

    position: relative;
    left: 50%;
    width: 100vw;
    min-height: clamp(520px, 65vh, 760px);
    margin-left: -50vw;

    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;

    overflow: hidden;
    box-sizing: border-box;

    background-color: var(--ps-bg-color);
}

.ps-777cb0a1-container *,
.ps-777cb0a1-container *::before,
.ps-777cb0a1-container *::after {
    box-sizing: border-box;
}


/* =========================================================
   COLUMNS
========================================================= */

.ps-777cb0a1-content-col,
.ps-777cb0a1-image-col {
    position: relative;

    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
    min-width: 0;
    min-height: inherit;
}

.ps-777cb0a1-content-col {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 8%;
    overflow: hidden;
}

.ps-777cb0a1-image-col {
    overflow: hidden;
    background-color: #111111;
}


/* =========================================================
   CONTENT
========================================================= */

.ps-777cb0a1-inner-content {
    width: 100%;
    max-width: 550px;
}

.ps-777cb0a1-title {
    margin: 0 0 25px;

    font-family: "Playfair Display", Georgia, serif;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;

    color: var(--ps-title-color);
}

.ps-777cb0a1-text-1,
.ps-777cb0a1-text-2 {
    margin: 0 0 20px;

    font-family: inherit;
    font-size: 15px;
    line-height: 1.6;
}

.ps-777cb0a1-text-1 {
    color: var(--ps-text-1-color);
}

.ps-777cb0a1-text-2 {
    color: var(--ps-text-2-color);
}


/* =========================================================
   WYSIWYG TEXT INHERITANCE
========================================================= */

.ps-777cb0a1-text-1 h1,
.ps-777cb0a1-text-1 h2,
.ps-777cb0a1-text-1 h3,
.ps-777cb0a1-text-1 h4,
.ps-777cb0a1-text-1 h5,
.ps-777cb0a1-text-1 h6,
.ps-777cb0a1-text-1 p,
.ps-777cb0a1-text-1 span,
.ps-777cb0a1-text-1 li,
.ps-777cb0a1-text-1 strong,
.ps-777cb0a1-text-1 em,
.ps-777cb0a1-text-1 a,
.ps-777cb0a1-text-2 h1,
.ps-777cb0a1-text-2 h2,
.ps-777cb0a1-text-2 h3,
.ps-777cb0a1-text-2 h4,
.ps-777cb0a1-text-2 h5,
.ps-777cb0a1-text-2 h6,
.ps-777cb0a1-text-2 p,
.ps-777cb0a1-text-2 span,
.ps-777cb0a1-text-2 li,
.ps-777cb0a1-text-2 strong,
.ps-777cb0a1-text-2 em,
.ps-777cb0a1-text-2 a {
    color: inherit;
}

.ps-777cb0a1-text-1 p,
.ps-777cb0a1-text-2 p {
    margin: 0 0 16px;
}

.ps-777cb0a1-text-1 p:last-child,
.ps-777cb0a1-text-2 p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FAJITA FEATURE CONTENT
========================================================= */

.ps-777cb0a1-inner-content .fajita-features {
    color: inherit;
}

.ps-777cb0a1-inner-content .fajita-feature {
    margin-bottom: 16px;
    color: inherit;
}

.ps-777cb0a1-inner-content .fajita-feature:last-child {
    margin-bottom: 0;
}

.ps-777cb0a1-inner-content .fajita-feature h5 {
    margin: 0 0 3px;

    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;

    color: inherit;
}

.ps-777cb0a1-inner-content .fajita-feature p {
    margin: 0;

    font-size: 15px;
    line-height: 1.45;

    color: inherit;
}


/* =========================================================
   BUTTON
========================================================= */

.ps-777cb0a1-btn-wrapper {
    margin-top: 35px;
}

.ps-777cb0a1-btn {
    display: inline-block;

    padding: 14px 32px;
    border: 0;
    border-radius: 4px;

    background-color: var(--ps-button-bg);
    color: var(--ps-button-text);

    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;

    cursor: pointer;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.ps-777cb0a1-btn:hover,
.ps-777cb0a1-btn:focus {
    color: var(--ps-button-text);
    opacity: 0.9;
    transform: translateY(-1px);
    text-decoration: none;
}


/* =========================================================
   SLIDESHOW
========================================================= */

.ps-777cb0a1-slideshow {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;
    min-height: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;
}

.ps-777cb0a1-slide {
    position: absolute;
    inset: 0;
    z-index: 1;

    display: block;

    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;

    margin: 0;
    padding: 0;

    object-fit: cover;
    object-position: center center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity var(--ps-fade-duration) ease-in-out,
        visibility 0s linear var(--ps-fade-duration);

    will-change: opacity;
}

.ps-777cb0a1-slide.is-active {
    z-index: 2;

    opacity: 1;
    visibility: visible;

    transition:
        opacity var(--ps-fade-duration) ease-in-out,
        visibility 0s linear 0s;
}


/* =========================================================
   STRONG ELEMENTOR OVERRIDES
   These prevent theme and Elementor image styles from
   stacking the slideshow images vertically.
========================================================= */

.elementor-widget-problem_solver_777cb0a1
.ps-777cb0a1-container {
    position: relative !important;
    left: 50% !important;
    right: auto !important;

    display: flex !important;
    flex-flow: row nowrap !important;
    align-items: stretch !important;

    width: 100vw !important;
    min-height: clamp(520px, 65vh, 760px) !important;

    margin-left: -50vw !important;
    margin-right: 0 !important;

    overflow: hidden !important;

    background-color: var(--ps-bg-color, #1a1a1a) !important;
}

.elementor-widget-problem_solver_777cb0a1
.ps-777cb0a1-content-col,
.elementor-widget-problem_solver_777cb0a1
.ps-777cb0a1-image-col {
    position: relative !important;

    flex: 0 0 50% !important;

    width: 50% !important;
    max-width: 50% !important;
    min-width: 0 !important;

    min-height: inherit !important;
}

.elementor-widget-problem_solver_777cb0a1
.ps-777cb0a1-content-col {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;
}

.elementor-widget-problem_solver_777cb0a1
.ps-777cb0a1-image-col {
    overflow: hidden !important;
}

.elementor-widget-problem_solver_777cb0a1
.ps-777cb0a1-slideshow {
    position: absolute !important;
    inset: 0 !important;

    display: block !important;

    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;
}

.elementor-widget-problem_solver_777cb0a1
.ps-777cb0a1-slideshow
> img.ps-777cb0a1-slide {
    position: absolute !important;
    inset: 0 !important;

    display: block !important;

    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover !important;
    object-position: center center !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    transition:
        opacity var(--ps-fade-duration, 1200ms) ease-in-out,
        visibility 0s linear var(--ps-fade-duration, 1200ms) !important;
}

.elementor-widget-problem_solver_777cb0a1
.ps-777cb0a1-slideshow
> img.ps-777cb0a1-slide.is-active {
    z-index: 2 !important;

    opacity: 1 !important;
    visibility: visible !important;

    transition:
        opacity var(--ps-fade-duration, 1200ms) ease-in-out,
        visibility 0s linear 0s !important;
}


/* =========================================================
   STRONG COLOR OVERRIDES
========================================================= */

.elementor-widget-problem_solver_777cb0a1
.ps-777cb0a1-title {
    color: var(--ps-title-color, #eaeaea) !important;
}

.elementor-widget-problem_solver_777cb0a1
.ps-777cb0a1-text-1 {
    color: var(--ps-text-1-color, #eaeaea) !important;
}

.elementor-widget-problem_solver_777cb0a1
.ps-777cb0a1-text-2 {
    color: var(--ps-text-2-color, #eaeaea) !important;
}

.elementor-widget-problem_solver_777cb0a1
.ps-777cb0a1-text-1 *,
.elementor-widget-problem_solver_777cb0a1
.ps-777cb0a1-text-2 * {
    color: inherit !important;
}

.elementor-widget-problem_solver_777cb0a1
.ps-777cb0a1-btn {
    background-color: var(--ps-button-bg, #ab9250) !important;
    color: var(--ps-button-text, #ffffff) !important;
}

.elementor-widget-problem_solver_777cb0a1
.ps-777cb0a1-btn:hover,
.elementor-widget-problem_solver_777cb0a1
.ps-777cb0a1-btn:focus {
    color: var(--ps-button-text, #ffffff) !important;
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 1024px) {
    .ps-777cb0a1-container {
        min-height: 600px;
    }

    .ps-777cb0a1-content-col {
        padding: 60px 6%;
    }

    .ps-777cb0a1-title {
        font-size: 36px;
    }

    .elementor-widget-problem_solver_777cb0a1
    .ps-777cb0a1-container {
        min-height: 600px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 767px) {
    .ps-777cb0a1-container {
        left: 0;

        width: 100%;
        min-height: 0;

        margin-left: 0;

        flex-direction: column-reverse;
    }

    .ps-777cb0a1-content-col,
    .ps-777cb0a1-image-col {
        flex: 0 0 auto;

        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }

    .ps-777cb0a1-content-col {
        min-height: 0;

        padding: 42px 24px;

        align-items: flex-start;
        justify-content: flex-start;
    }

    .ps-777cb0a1-inner-content {
        max-width: 100%;
    }

    .ps-777cb0a1-image-col {
        flex-basis: 420px;

        height: 420px;
        min-height: 420px;
    }

    .ps-777cb0a1-slideshow {
        height: 100%;
        min-height: 100%;
    }

    .ps-777cb0a1-title {
        margin-bottom: 18px;
        font-size: 28px;
    }

    .ps-777cb0a1-text-1,
    .ps-777cb0a1-text-2 {
        margin-bottom: 16px;
        font-size: 14px;
    }

    .ps-777cb0a1-inner-content .fajita-feature h5 {
        font-size: 17px;
    }

    .ps-777cb0a1-inner-content .fajita-feature p {
        font-size: 14px;
    }

    .ps-777cb0a1-btn-wrapper {
        margin-top: 24px;
    }

    .ps-777cb0a1-btn {
        width: 100%;
        padding: 16px 24px;
        text-align: center;
    }

    .elementor-widget-problem_solver_777cb0a1
    .ps-777cb0a1-container {
        left: 0 !important;

        width: 100% !important;
        min-height: 0 !important;

        margin-left: 0 !important;

        flex-direction: column-reverse !important;
    }

    .elementor-widget-problem_solver_777cb0a1
    .ps-777cb0a1-content-col,
    .elementor-widget-problem_solver_777cb0a1
    .ps-777cb0a1-image-col {
        flex: 0 0 auto !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }

    .elementor-widget-problem_solver_777cb0a1
    .ps-777cb0a1-content-col {
        min-height: 0 !important;
        padding: 42px 24px !important;
    }

    .elementor-widget-problem_solver_777cb0a1
    .ps-777cb0a1-image-col {
        height: 420px !important;
        min-height: 420px !important;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .ps-777cb0a1-slide {
        transition: none !important;
    }
}