/* ==========================================================================
   PXL Magma YouTube Video Header Stylesheet
   Recreating Slider Revolution "Magma – YouTube Video Header"
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --theme-primary: #ea5236;
    --magma-cream: #fff1e2;
    --magma-dark: #0a0307;
}

/* Base Full-Viewport Container */
.pxl-magma-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-color: var(--magma-dark);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    z-index: 1;
}

/* Seamless Header Integration on Home Page */
body.home.has-magma-hero #pxl-header-elementor .pxl-header-elementor-main,
body.home:has(.pxl-magma-hero) #pxl-header-elementor .pxl-header-elementor-main,
body.home.has-magma-hero #pxl-header-mobile:not(.pxl-header-mobile-fixed),
body.home:has(.pxl-magma-hero) #pxl-header-mobile:not(.pxl-header-mobile-fixed),
body.home.has-magma-hero #pxl-header-elementor #pxl-header-mobile:not(.pxl-header-mobile-fixed),
body.home:has(.pxl-magma-hero) #pxl-header-elementor #pxl-header-mobile:not(.pxl-header-mobile-fixed) {
    display: none !important;
}

body.home.has-magma-hero #pxl-header-elementor,
body.home:has(.pxl-magma-hero) #pxl-header-elementor {
    min-height: 0 !important;
    background: transparent !important;
    border: none !important;
}

.pxl-header-elementor-sticky.pxl-header-fixed {
    pointer-events: auto !important;
    z-index: 99999 !important;
}

body.home.has-magma-hero #pxl-main,
body.home:has(.pxl-magma-hero) #pxl-main {
    padding-top: 0 !important;
}

body.home.has-magma-hero .elementor-element-e68aa91,
body.home:has(.pxl-magma-hero) .elementor-element-e68aa91 {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

body.home.has-magma-hero .elementor-element-d3fbac9,
body.home:has(.pxl-magma-hero) .elementor-element-d3fbac9 {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    background: transparent !important;
}

/* --------------------------------------------------------------------------
   Video Canvas Background (Full Bleed Edge-to-Edge)
   -------------------------------------------------------------------------- */
.pxl-magma-video-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    transform: none !important;
    clip-path: none !important;
    opacity: 1 !important;
    background-color: #0a0307;
}

.pxl-magma-player-embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.pxl-magma-video-wrap iframe,
.pxl-magma-video-wrap video,
.pxl-magma-player-embed iframe,
.pxl-magma-player-container,
.pxl-magma-video-iframe,
.pxl-magma-video-html5 {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    pointer-events: none !important;
    border: none !important;
    /* CSS full-bleed cover fallback with 1.42x scale */
    width: 142vw !important;
    height: 142vh !important;
    min-width: 180vh !important;
    min-height: 58vw !important;
    max-width: none !important;
    max-height: none !important;
}

.pxl-magma-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    transition: opacity 1s ease;
}

.pxl-magma-poster.is-hidden {
    opacity: 0;
}

/* --------------------------------------------------------------------------
   Gradient Vignette Overlay (Matches Slider Revolution Reference)
   Dark at bottom-left for crisp text readability; transparent in center
   -------------------------------------------------------------------------- */
.pxl-magma-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    background: 
        /* Top shadow for header branding */
        linear-gradient(180deg, rgba(10, 3, 7, 0.7) 0%, rgba(10, 3, 7, 0) 22%),
        /* Bottom-left rich shadow behind giant text */
        radial-gradient(ellipse 85% 75% at 5% 95%, rgba(10, 3, 7, 0.95) 0%, rgba(10, 3, 7, 0.8) 25%, rgba(10, 3, 7, 0.25) 60%, rgba(10, 3, 7, 0) 80%),
        /* Bottom linear floor shadow */
        linear-gradient(0deg, rgba(10, 3, 7, 0.88) 0%, rgba(10, 3, 7, 0.3) 30%, rgba(10, 3, 7, 0) 55%),
        /* Bottom-right shadow for CTA button contrast */
        radial-gradient(circle at 95% 95%, rgba(10, 3, 7, 0.7) 0%, rgba(10, 3, 7, 0) 45%);
}

/* --------------------------------------------------------------------------
   Center Play / Pause Button (Exact 1:1 Match)
   -------------------------------------------------------------------------- */
.pxl-magma-center-play-toggle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    padding: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                background 0.3s ease, 
                border-color 0.3s ease, 
                box-shadow 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.pxl-magma-center-play-toggle:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(234, 82, 54, 0.88);
    border-color: #ea5236;
    box-shadow: 0 10px 36px rgba(234, 82, 54, 0.55);
}

.pxl-magma-center-play-toggle svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
    display: block;
    transition: transform 0.2s ease;
}

.pxl-magma-center-play-toggle .icon-play svg {
    margin-left: 3px;
}

/* --------------------------------------------------------------------------
   Top Bar: Branding & Navigation
   -------------------------------------------------------------------------- */
.pxl-magma-topbar {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 34px 75px 0;
    box-sizing: border-box;
    width: 100%;
}

.pxl-magma-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.pxl-magma-brand-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(34px, 3.6vw, 44px);
    color: #ffffff;
    letter-spacing: 1.5px;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.pxl-magma-brand-slash {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 3.4vw, 42px);
    color: var(--theme-primary, #ea5236);
    margin: 0 10px;
    line-height: 1;
}

.pxl-magma-brand-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 1.6px;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
}

.pxl-magma-nav {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 40px);
    list-style: none;
    margin: 0;
    padding: 0;
}

.pxl-magma-nav li {
    margin: 0;
    padding: 0;
}

.pxl-magma-nav a {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(15px, 1.25vw, 17px);
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.pxl-magma-nav a:hover {
    color: var(--theme-primary, #ea5236);
}

/* --------------------------------------------------------------------------
   Bottom Hero Content (Split Layout)
   -------------------------------------------------------------------------- */
.pxl-magma-content-bottom {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 75px 50px;
    box-sizing: border-box;
    width: 100%;
    gap: 40px;
}

/* Left Column: Tagline ABOVE Giant Stacked Headlines */
.pxl-magma-left {
    flex: 1;
    max-width: 68%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.pxl-magma-tagline {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(18px, 1.6vw, 24px);
    font-weight: 500;
    color: var(--magma-cream, #fff1e2);
    margin: 0 0 16px 0;
    line-height: 1.35;
    letter-spacing: 0.3px;
    opacity: 0.95;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.pxl-magma-headline-mask {
    overflow: hidden;
    display: block;
    line-height: 0.85;
}

.pxl-magma-headline-line {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(75px, 10.5vw, 160px);
    line-height: 0.85;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--magma-cream, #fff1e2);
    margin: 0;
    padding: 0;
    display: block;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.65);
}

/* Right Column: Socials & Pill CTA Button (Horizontal Inline) */
.pxl-magma-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    padding-bottom: 8px;
}

/* Social Buttons */
.pxl-magma-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pxl-magma-social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.pxl-magma-social-btn svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
    transition: transform 0.25s ease;
}

.pxl-magma-social-btn:hover {
    background: var(--theme-primary, #ea5236);
    border-color: var(--theme-primary, #ea5236);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(234, 82, 54, 0.45);
}

.pxl-magma-social-btn:hover svg {
    transform: scale(1.12);
}

/* Signature Pill CTA Button */
.pxl-magma-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 999px;
    background-color: var(--theme-primary, #ea5236);
    border: none;
    padding: 0 38px;
    height: 50px;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.3s ease, 
                background-color 0.3s ease;
    box-shadow: 0 8px 26px rgba(234, 82, 54, 0.4);
}

.pxl-magma-cta-btn:hover {
    background-color: #d64126;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(234, 82, 54, 0.55);
}

.pxl-magma-cta-text-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    height: 22px;
    line-height: 22px;
}

.pxl-magma-cta-text-normal,
.pxl-magma-cta-text-hover {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #ffffff;
    letter-spacing: 0.5px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.pxl-magma-cta-text-hover {
    position: absolute;
    inset: 0;
    transform: translateY(100%);
}

.pxl-magma-cta-btn:hover .pxl-magma-cta-text-normal {
    transform: translateY(-100%);
}

.pxl-magma-cta-btn:hover .pxl-magma-cta-text-hover {
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Sound Mute / Unmute Toggle Button (Subtle Corner Control)
   -------------------------------------------------------------------------- */
.pxl-magma-sound-toggle {
    position: absolute;
    bottom: 25px;
    right: 30px;
    z-index: 15;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    outline: none;
    padding: 0;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.pxl-magma-sound-toggle:hover {
    opacity: 1;
    border-color: var(--theme-primary, #ea5236);
    color: var(--theme-primary, #ea5236);
    transform: scale(1.08);
}

.pxl-magma-sound-toggle svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* --------------------------------------------------------------------------
   Responsive Adaptations
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .pxl-magma-topbar {
        padding: 30px 40px 0;
    }
    .pxl-magma-content-bottom {
        padding: 0 40px 40px;
    }
}

@media (max-width: 991px) {
    .pxl-magma-content-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .pxl-magma-left {
        max-width: 100%;
    }
    .pxl-magma-right {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .pxl-magma-topbar {
        padding: 20px 24px 0;
    }
    .pxl-magma-content-bottom {
        padding: 0 24px 30px;
    }
    .pxl-magma-brand-subtitle {
        display: none;
    }
    .pxl-magma-brand-slash {
        display: none;
    }
    .pxl-magma-nav {
        gap: 18px;
    }
    .pxl-magma-nav a {
        font-size: 14px;
    }
    .pxl-magma-headline-line {
        font-size: clamp(52px, 14vw, 84px);
    }
    .pxl-magma-tagline {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .pxl-magma-center-play-toggle {
        width: 48px;
        height: 48px;
    }
    .pxl-magma-center-play-toggle svg {
        width: 18px;
        height: 18px;
    }
    .pxl-magma-social-btn {
        width: 42px;
        height: 42px;
    }
    .pxl-magma-cta-btn {
        height: 44px;
        padding: 0 28px;
    }
    .pxl-magma-cta-text-normal,
    .pxl-magma-cta-text-hover {
        font-size: 14px;
    }
}

/* ==========================================================================
   Comprehensive Card Sizing, Spacing & Typography Enhancements
   Ensuring all cards fill their space and text fits & fills properly
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Feature Cards under Hero (pxl-icon-box3 / Section ec78966)
   -------------------------------------------------------------------------- */
.elementor-element-ec78966 .elementor-element-b9c5fa6,
.elementor-element-ec78966 .elementor-element-c88cdb3,
.elementor-element-ec78966 .elementor-element-d5da10a,
.elementor-element-ec78966 .elementor-element-d652a51 {
    --padding-top: 48px !important;
    --padding-bottom: 48px !important;
    --padding-left: 36px !important;
    --padding-right: 36px !important;
    padding: 48px 36px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    height: 100% !important;
    box-sizing: border-box !important;
}

.elementor-element-ec78966 .elementor-widget-pxl_icon_box,
.elementor-element-ec78966 .elementor-widget-container,
.elementor-element-ec78966 .pxl-icon-box3 {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
}

.elementor-element-ec78966 .pxl-icon-box3 .pxl-item--icon,
.pxl-icon-box3 .pxl-item--icon {
    flex-shrink: 0 !important;
}

.elementor-element-ec78966 .pxl-icon-box3 .content-right,
.pxl-icon-box3 .content-right {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 28px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

/* Remove restrictive max-widths so text fills the card */
.pxl-icon-box3 .content-right .pxl-item--title,
.elementor-element-ec78966 .pxl-icon-box3 .content-right .pxl-item--title {
    max-width: 100% !important;
    width: 100% !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.3px !important;
    margin-bottom: 14px !important;
    color: #000814 !important;
}

.pxl-icon-box3 .content-right .pxl-item--description,
.elementor-element-ec78966 .pxl-icon-box3 .content-right .pxl-item--description {
    max-width: 100% !important;
    width: 100% !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
    color: #4a505b !important;
    margin: 0 !important;
}

/* --------------------------------------------------------------------------
   2. Step Process Cards (pxl-item-box1 / Section 40ea9ee)
   -------------------------------------------------------------------------- */
.elementor-element-40ea9ee {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    width: 100% !important;
}

.elementor-element-40ea9ee .elementor-element-70b7f87,
.elementor-element-40ea9ee .elementor-element-9bc8cb2 {
    display: flex !important;
    flex-direction: row !important;
    flex: 1 1 50% !important;
    align-items: stretch !important;
}

.elementor-element-40ea9ee .elementor-element-87e2953,
.elementor-element-40ea9ee .elementor-element-c46dc63,
.elementor-element-40ea9ee .elementor-element-13e936d,
.elementor-element-40ea9ee .elementor-element-0c79c3a {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 50% !important;
    align-items: stretch !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
}

.elementor-element-40ea9ee .elementor-widget-pxl_item_box,
.elementor-element-40ea9ee .elementor-widget-container,
.elementor-element-40ea9ee .pxl-item-box,
.elementor-element-40ea9ee .item-box-item,
.elementor-element-40ea9ee .pxl-item--inner {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    width: 100% !important;
}

.elementor-element-40ea9ee .pxl-item-box1 .pxl-item--holder,
.pxl-item-box1 .pxl-item--holder {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    padding: 34px 28px !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 8, 20, 0.04) !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease !important;
    box-sizing: border-box !important;
    background-color: #ffffff !important;
}

.elementor-element-40ea9ee .pxl-item-box1 .pxl-item--holder:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(0, 8, 20, 0.08) !important;
}

.elementor-element-40ea9ee .pxl-item-box1 .conten-item,
.pxl-item-box1 .conten-item {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    width: 100% !important;
}

/* Badge (STEP 01, STEP 02, etc.) */
.pxl-item-box1 .pxl-item--text {
    align-self: flex-start !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    padding: 6px 14px !important;
    border-radius: 999px !important;
    background: #000814 !important;
    color: #ffffff !important;
    border: none !important;
    margin-bottom: 16px !important;
    text-transform: uppercase !important;
}

/* Title */
.pxl-item-box1 .pxl-item--title {
    font-size: 21px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.3px !important;
    color: #000814 !important;
    margin-bottom: 20px !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Icon Box */
.pxl-item-box1 .pxl-item--holder .pxl-item--icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 14px !important;
    margin-bottom: 20px !important;
    background-color: var(--theme-primary, #f61e26) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.pxl-item-box1 .pxl-item--holder .pxl-item--icon svg {
    width: 32px !important;
    height: 32px !important;
}

/* Content Description */
.pxl-item-box1 .pxl-item--content {
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
    color: #4a505b !important;
    max-width: 100% !important;
    width: 100% !important;
    flex-grow: 1 !important;
    margin: 0 !important;
}

/* --------------------------------------------------------------------------
   3. Vision / Tabs Cards (Section a1fd915)
   -------------------------------------------------------------------------- */
.elementor-element-a1fd915 .pxl-icon-box .pxl-item--description {
    max-width: 100% !important;
    width: 100% !important;
}

/* --------------------------------------------------------------------------
   4. Why Choose Us / Dependable Services Cards (Section 9d7f209)
   -------------------------------------------------------------------------- */
.elementor-element-9d7f209 .elementor-element-90d028d,
.elementor-element-9d7f209 .elementor-element-bd1feec,
.elementor-element-9d7f209 .elementor-element-2bfc3ad {
    padding: 34px 28px !important;
    box-sizing: border-box !important;
}

.elementor-element-9d7f209 .pxl-heading .pxl-item--title {
    max-width: 100% !important;
    width: 100% !important;
}

.elementor-element-9d7f209 .pxl-text-editor p {
    max-width: 100% !important;
    width: 100% !important;
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints for All Cards
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .elementor-element-ec78966 .elementor-element-b9c5fa6,
    .elementor-element-ec78966 .elementor-element-c88cdb3,
    .elementor-element-ec78966 .elementor-element-d5da10a,
    .elementor-element-ec78966 .elementor-element-d652a51 {
        padding: 40px 24px !important;
    }
    .elementor-element-40ea9ee .pxl-item-box1 .pxl-item--holder,
    .pxl-item-box1 .pxl-item--holder {
        padding: 28px 20px !important;
    }
}

@media (max-width: 991px) {
    .elementor-element-ec78966 .elementor-element-3ef0df3 {
        flex-direction: column !important;
    }
    .elementor-element-ec78966 .elementor-element-9f5772c,
    .elementor-element-ec78966 .elementor-element-31872d1 {
        flex-direction: row !important;
        width: 100% !important;
    }
    .elementor-element-40ea9ee {
        flex-direction: column !important;
    }
    .elementor-element-40ea9ee .elementor-element-70b7f87,
    .elementor-element-40ea9ee .elementor-element-9bc8cb2 {
        width: 100% !important;
        margin-bottom: 20px !important;
    }
}

@media (max-width: 767px) {
    .elementor-element-ec78966 .elementor-element-9f5772c,
    .elementor-element-ec78966 .elementor-element-31872d1 {
        flex-direction: column !important;
    }
    .elementor-element-ec78966 .elementor-element-b9c5fa6,
    .elementor-element-ec78966 .elementor-element-c88cdb3,
    .elementor-element-ec78966 .elementor-element-d5da10a,
    .elementor-element-ec78966 .elementor-element-d652a51 {
        padding: 30px 18px !important;
        border-right: 1px solid #0008141A !important;
        border-bottom: 1px solid #0008141A !important;
    }
    .elementor-element-40ea9ee .elementor-element-70b7f87,
    .elementor-element-40ea9ee .elementor-element-9bc8cb2 {
        flex-direction: column !important;
    }
    .elementor-element-40ea9ee .elementor-element-87e2953,
    .elementor-element-40ea9ee .elementor-element-c46dc63,
    .elementor-element-40ea9ee .elementor-element-13e936d,
    .elementor-element-40ea9ee .elementor-element-0c79c3a {
        width: 100% !important;
        margin-bottom: 16px !important;
        padding: 0 !important;
    }
}
