/* Main Styles for Your Unique Arms Website */

/* Content Layout */
.content-container {
    padding-top: 40px;
}

.content-wrapper { 
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    padding: 30px;
    box-sizing: border-box;
    margin: auto;
    gap: 40px;
}

.contact-info {
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    color: white;
    text-align: center;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
}

.form-container p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.form-container .form-head {
    font-weight: bold;
}

/* Landing Page Styles */
.landing-page-slot {
    background: linear-gradient(to bottom, #333, #111);
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    max-width: 600px;
    margin: auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.landing-page-slot h2 {
    font-size: 22px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.landing-page-slot p {
    font-size: 16px;
    color: white;
    margin-bottom: 20px;
    text-align: center !important;
}

/* Form Styles */
#custom-waitlist .landing-page-slot input[type="text"],
#custom-waitlist .landing-page-slot input[type="email"],
#custom-waitlist .landing-page-slot input[type="number"],
#custom-waitlist .landing-page-slot button {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px !important;
    font-size: 14px;
    outline: none;
    background: #fff;
    color: #000;
    box-shadow: none;
    margin: unset;
    font-family: "Raleway", Sans-serif !important;
    border-width: 1px !important;
}

.landing-page-slot input::placeholder {
    color: #aaa;
}

#custom-waitlist .landing-page-slot button,
#custom-waitlist .landing-page-slot input[type="submit"] {
    background: #e60000 !important;
    color: white;
    border-radius: 0;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 550 !important;
    height: 42px !important;
    width: 93px !important;
    border: none !important;
    padding: .5rem 1rem !important;
    font-size: 1rem !important;
    text-align: center !important;
}

#custom-waitlist .landing-page-slot button:hover,
#custom-waitlist .landing-page-slot input[type="submit"]:hover {
    background: #ff000099 !important;
}

/* Typography */
.page-headv2 {
    color: #e63a3b;
    font-family: "Times New Roman", Times, serif;
    margin: 0 0 20px 0;
}

.company-name {
    font-size: 22px;
    font-weight: bold;
    margin-top: 20px;
    font-family: 'Trajan Pro Bold', 'Trajan Pro', Trajan, serif;
}

.taglinev2 {
    font-size: 16px;
    color: gold;
    font-family: "Times New Roman", Times, serif;
}

.tagline_v2 {
    font-weight: bold;
    font-family: "Times New Roman", Times, serif;
}

/* Logo and Images */
.illustration-img {
    display: block;
    max-width: 200px;
    height: auto;
    margin: 0 auto 0;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Exclusive Alert Styles */
.exclusive-alert-container {
    color: #fff;
    line-height: 1.8;
    text-align: center !important;
}

.exclusive-alert-container p {
    font-size: 18px;
}

.exclusive-alert {
    padding: 30px 25px 0px;
}

.exclusive-alert h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    margin: 15px auto;
    text-align: center;
}

.exclusive-alert ul {
    list-style-type: square;
}

.exclusive-alert strong {
    color: #ffffff;
    font-size: 19px;
}

.exclusive-alert ul li {
    color: #ddd;
    font-size: 18px;
    margin-bottom: 2px !important;
}

.exclusive-alert a {
    display: inline-block;
    color: #ddd;
    font-weight: bold;
    font-size: 20px;
    text-decoration: underline;
    margin-bottom: 20px;
}

.exclusive-alert a:hover {
    color: #e60000;
    text-decoration: underline;
}

.section-width {
    margin: auto;
    width: 1100px;
}

/* Divider Styles */
.elementor-widget-divider .elementor-divider-separator {
    display: flex;
    margin: 0 auto 20px;
    width: 30%;
    border-top: 3px solid red;
}

.elementor-widget-divider .elementor-divider {
    text-align: center;
    padding-block-start: 2px;
    padding-block-end: 2px;
}

/* Accordion Styles */
.accordion-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 20px;
    margin-left: unset;
}

.accordion-item1 {
    margin-bottom: 16px !important;
    border-radius: 5px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.accordion-header1 {
    padding: 15px;
    cursor: pointer;
    position: relative;
    background: rgba(230, 0, 0, 0.8);
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header1:hover {
    background: rgba(230, 0, 0, 1);
}

.accordion-header1::after {
    content: '+';
    font-size: 24px;
    position: absolute;
    right: 15px;
    transition: transform 0.3s ease;
}

.accordion-item1.active .accordion-header1::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.1s ease;
    padding: 0 15px;
    background: rgba(0, 0, 0, 0.2);
    display: block;
    transform: translateZ(0);
}

.accordion-item1.active .accordion-content {
    max-height: 1000px;
    padding: 15px;
}

.accordion-content ul {
    padding-left: 20px;
    margin: 10px 0;
}

.accordion-content li {
    color: #ddd;
    margin-bottom: 16px;
    display: list-item;        
    list-style-position: inside;
    line-height: 1.8;           
}

/* Testimonial Slider Styles */
.testimonial-slider-container1 {
    margin: 30px 0;
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 20px;
    overflow: hidden;
}

.testimonial-slide1r-title {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-slide1r {
    position: relative;
    height: 150px;
    overflow: hidden;
    width: 100%;
}

.testimonial-slide1r-track1 {
    display: flex;
    position: absolute;
    width: 300%;
    height: 100%;
    transition: transform 0.8s ease;
}

.testimonial-slide1 {
    width: 33.333%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-quote {
    color: #fff;
    font-size: 22px;
    font-style: italic;
    position: relative;
    padding: 0 20px;
    margin: 0;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    color: rgba(230, 0, 0, 0.8);
    font-size: 32px;
    font-weight: bold;
    vertical-align: middle;
    line-height: 1;
}

.testimonial-author {
    color: #ccc;
    font-size: 16px;
    margin-top: 15px;
    font-style: italic;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    display: none;
}

.slider-dot1 {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dot1.active {
    background: rgba(230, 0, 0, 0.8);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 3;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.slider-arrow:hover {
    opacity: 1;
    background: rgba(230, 0, 0, 0.8);
}

.slider-arrow-left1 {
    left: 10px;
}

.slider-arrow-right1 {
    right: 10px;
}

/* Image Slider Styles */
.slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 0 30px auto;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    background-color: #000;
    touch-action: pan-y pinch-zoom;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 500px;
    will-change: transform;
    transform: translateZ(0);
}

.slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, transparent 50%);
    z-index: 1;
}

.image-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    will-change: transform;
    transform: translateZ(0);
}

.slide:hover .image-container img {
    transform: scale(1.05);
}

.image-title {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.8) 20%);
    color: white;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 500;
    z-index: 2;
    width: auto;
    text-align: right;
    border-top-left-radius: 8px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    z-index: 100;
    transition: all 0.3s;
    opacity: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.slider-container:hover .arrow {
    opacity: 0.8;
}

.arrow:hover {
    opacity: 1 !important;
    background: rgba(230, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

/* Form Wrapper Styles */
.alpha-form-wrapper {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    margin: 0 auto;
    padding: 40px;
    margin-left: 10px;
    text-align: center;
    color: #fff;
    font-family: 'Raleway', sans-serif;
}

.alpha-form-wrapper h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.alpha-form-wrapper p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: white;
}

#custom-subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#custom-subscribe-form input {
    padding: 12px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    color: #000;
}

#custom-subscribe-form button {
    padding: 12px;
    background-color: #e60000;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

#form-success-message {
    display: none;
    text-align: center;
    padding: 40px;
    color: gold;
}

/* Footer Styles */
.custom_footer {
    margin-top: 0px !important;
}

.white {
    color: #fff !important;
    opacity: 1 !important;
}

.custom_footer .elementor-divider-separator {
    height: 2px !important;
    background-color: #e50914;
    width: 100%;
    margin: 10px 0 20px;
    display: block;
}

.email-link {
    white-space: nowrap !important;
}

.copy {
    padding: 20px 0px 10px;
}

.copy-bottom {
    align-items: center;
    justify-content: center;
    text-align: center !important;
}

.cardimg {
    float: right;
    margin-top: -60px;
}

/* Utility Classes */
.align-end {
    display: flex;
    justify-content: flex-end;
}

.h2_font {
    font-family: "Times New Roman", Times, serif;
}

.text-center {
    text-align: center !important;
}

/* Responsive Design */
@media (min-width: 768px) {
    .content-wrapper {
        flex-direction: row;
    }

    .contact-info {
        width: 45%;
        text-align: left;
    }

    .form-container {
        width: 55%;
    }
}

@media (min-width: 300px) and (max-width: 700px) {
    .illustration-img {
        height: 100px;
    }
}

@media (min-width: 300px) and (max-width: 768px) {
    .content-wrapper {
        padding: unset;
    }

    .page-headv2 {
        font-size: 22px;
    }
    
    .exclusive-alert ul {
        padding-left: unset !important;
    }
    
    .section-width {
        width: 100% !important;
    }
    
    .testimonial-quote {
        overflow-y: scroll;
        height: 150px;
    }
    
    .content-container {
        padding-top: unset;
    }

    .accordion-item1.active .accordion-content {
        max-height: 1000px;
        padding-left: 30px;
    }
    
    .align-end {
        display: flex;
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    .testimonial-quote {
        font-size: 18px;
    }
    
    .testimonial-slide1r {
        height: 180px;
    }
    
    .slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .slider {
        height: 350px;
    }
    
    .arrow {
        width: 40px;
        height: 40px;
    }
    
    .image-title {
        font-size: 16px;
        padding: 10px 15px;
    }

    .elementor-heading-title {
        margin-top: 30px !important;
        margin-bottom: 5px !important;
    }

    .elementor-element-ad53b55 {
        padding-top: -15px !important;
        margin-top: 0 !important;
    }
    
    .elementor-element-2c5299c {
        margin-top: 0.5rem !important;
    }

    .footerspace {
        padding-bottom: 20px !important;
    }

    .copy-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .copy-bottom .cardimg {
        margin-top: 20px;
    }
}

/* Background Styles */
.elementor-elementv2.elementor-element-dd8c354:not(.elementor-motion-effects-element-type-background) {
    background-image: url("./images/alphalandingpage-1-.webp");
    background-position: center center;
    background-size: cover;
}

.elementor-elementv2.elementor-element-dd8c354 {
    background-color: rgba(0, 0, 0, 0.75);
    background-blend-mode: overlay;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    /* Ensure background image is not affected by performance optimizations */
    object-fit: none !important;
    aspect-ratio: none !important;
    /* Force correct behavior and prevent any zoom effects */
    transform: none !important;
    scale: none !important;
    zoom: 1 !important;
    /* Prevent any CSS that might cause zoom */
    max-zoom: 1 !important;
    min-zoom: 1 !important;
}

/* Container and Grid System */
.container {
    max-width: 1140px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.row.justify-content-center {
    justify-content: center;
}

.col-md-3, .col-sm-6 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 499px) and (max-width: 991px) {
    .col-sm-6 {
        float: left;
        width: 50% !important;
    }
}

@media (min-width: 992px) {
    .col-md-3 {
        float: left;
        width: 25% !important;
    }
}

@media (max-width: 498px) {
    .col-lg-12 {
        float: left;
        width: 100% !important;
    }
}

@media (max-width: 767px) {
    .row.justify-content-center {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Privacy Policy and Terms Styles */
.shipping-information {
    margin-bottom: 0px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pt-30 {
    padding-top: 30px;
}

.top-heading-title {
    margin-top: 20px;
}

.list {
    padding-left: 20px;
}

.list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Font Imports */
@import url('https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700,800,900,100i,200i,300i,400i,500i,600i,700i,800i,900i&display=swap'); 
@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap');

/* Font Awesome */
@font-face { 
    font-family:"Font Awesome 5 Brands";
    font-style:normal;
    font-weight:400;
    font-display:block;
    src:url(https://use.fontawesome.com/releases/v5.3.0/webfonts/fa-brands-400.eot);
    src:url(https://use.fontawesome.com/releases/v5.3.0/webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(https://use.fontawesome.com/releases/v5.3.0/webfonts/fa-brands-400.woff2) format("woff2"),url(https://use.fontawesome.com/releases/v5.3.0/webfonts/fa-brands-400.woff) format("woff"),url(https://use.fontawesome.com/releases/v5.3.0/webfonts/fa-brands-400.ttf) format("truetype"),url(https://use.fontawesome.com/releases/v5.3.0/webfonts/fa-brands-400.svg#fontawesome) format("svg");
}

@font-face { 
    font-family:"Font Awesome 5 Free";
    font-style:normal;
    font-weight:900;
    font-display:block;
    src:url(https://use.fontawesome.com/releases/v5.3.0/webfonts/fa-solid-900.eot);
    src:url(https://use.fontawesome.com/releases/v5.3.0/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(https://use.fontawesome.com/releases/v5.3.0/webfonts/fa-solid-900.woff2) format("woff2"),url(https://use.fontawesome.com/releases/v5.3.0/webfonts/fa-solid-900.woff) format("woff"),url(https://use.fontawesome.com/releases/v5.3.0/webfonts/fa-solid-900.ttf) format("truetype"),url(https://use.fontawesome.com/releases/v5.3.0/webfonts/fa-solid-900.svg#fontawesome) format("svg");
}

/* Base Styles */
body {  
    font-family:"Raleway", Sans-serif;
    font-size:1rem;
    font-weight:400;
    line-height:1.15;
    color:#333;
}

* {
    box-sizing: border-box;
}

p {
    line-height: 24px;
}

/* Additional Footer Styles */
.pb20 {
    padding-bottom: 20px;
}

.footerspace {
    padding-bottom: 20px !important;
}

/* Elementor Footer Styles */
.custom_footer .elementor-756 .elementor-element.elementor-element-b51b400 {
    width: var(--container-widget-width, 100%) !important;
    max-width: 100% !important;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
}

.custom_footer .elementor-756 .elementor-element.elementor-element-e31ee43 {
    width: var(--container-widget-width, 100%) !important;
    max-width: 100% !important;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
}

.custom_footer .elementor-756 .elementor-element.elementor-element-d80fe22 {
    width: var(--container-widget-width, 100%) !important;
    max-width: 100% !important;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
}

.custom_footer .elementor-756 .elementor-element.elementor-element-3f56611 {
    width: var(--container-widget-width, 100%) !important;
    max-width: 100% !important;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
}

.custom_footer .elementor-756 .elementor-element.elementor-element-edd7b64 {
    width: var(--container-widget-width, 100%) !important;
    max-width: 100% !important;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
}

.custom_footer .elementor-756 .elementor-element.elementor-element-bf38b25 {
    width: var(--container-widget-width, 100%) !important;
    max-width: 100% !important;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
}

.custom_footer .elementor-756 .elementor-element.elementor-element-669457b {
    width: var(--container-widget-width, 100%) !important;
    max-width: 100% !important;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
}

.custom_footer .elementor-756 .elementor-element.elementor-element-6cc9482 {
    width: var(--container-widget-width, 100%) !important;
    max-width: 100% !important;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
}

.custom_footer .elementor-756 .elementor-element.elementor-element-ec44403 {
    width: var(--container-widget-width, 100%) !important;
    max-width: 100% !important;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
}

.custom_footer .elementor-756 .elementor-element.elementor-element-f1e8ea4 {
    width: var(--container-widget-width, 100%) !important;
    max-width: 100% !important;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
}

.custom_footer .elementor-756 .elementor-element.elementor-element-94df126 {
    width: var(--container-widget-width, 100%) !important;
    max-width: 100% !important;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
}

.custom_footer .elementor-756 .elementor-element.elementor-element-d908d7d {
    width: var(--container-widget-width, 100%) !important;
    max-width: 100% !important;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
}

.custom_footer .elementor-756 .elementor-element.elementor-element-88d8e80 {
    width: var(--container-widget-width, 100%) !important;
    max-width: 100% !important;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
}

.custom_footer .elementor-756 .elementor-element.elementor-element-c00a8c2 {
    width: var(--container-widget-width, 100%) !important;
    max-width: 100% !important;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
}

.custom_footer .elementor-756 .elementor-element.elementor-element-ad734a0 {
    width: var(--container-widget-width, 100%) !important;
    max-width: 100% !important;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
}

.custom_footer .elementor-756 .elementor-element.elementor-element-c7a7566 {
    width: var(--container-widget-width, 100%) !important;
    max-width: 100% !important;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
}

.custom_footer .elementor-756 .elementor-element.elementor-element-0c88715 {
    width: var(--container-widget-width, 100%) !important;
    max-width: 100% !important;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
}

/* Elementor Container Styles */
.custom_footer .elementor *, .custom_footer .elementor ::after, .custom_footer .elementor ::before {
    box-sizing: border-box;
}

.custom_footer .elementor-element {
    --widgets-spacing: 20px;
    word-wrap: break-word;
}

.custom_footer .e-con {
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.custom_footer .e-con-boxed {
    max-width: 1140px;
}

.custom_footer .elementor-element {
    --widgets-spacing: 20px;
    word-wrap: break-word;
}

.custom_footer .e-con.e-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.custom_footer .e-con-boxed.e-flex {
    max-width: 1140px;
}

/* Elementor Background Styles */
.custom_footer .e-con:before, .custom_footer .e-con > .elementor-background-slideshow::before, .custom_footer .e-con > .elementor-motion-effects-container > .elementor-motion-effects-layer::before, :is(.custom_footer .e-con, .custom_footer .e-con > .e-con-inner) > .elementor-background-video-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.custom_footer .e-con:before {
    z-index: 1;
}

/* Elementor Widget Styles */
.custom_footer .elementor-widget {
    word-wrap: break-word;
}

.custom_footer .elementor-widget-text-editor {
    word-wrap: break-word;
}

.custom_footer .elementor-widget:not(:last-child) {
    margin-bottom: 20px;
}

.custom_footer .e-con .elementor-widget {
    margin-bottom: 0;
}

.custom_footer .elementor-widget:not(:last-child) {
    margin-bottom: 20px;
}

.custom_footer .e-con .elementor-widget.elementor-widget {
    margin-bottom: 0;
}

/* Elementor Widget Container Styles */
.custom_footer .elementor-element .elementor-widget-container {
    margin: 0;
}

.custom_footer .e-con > .e-con-inner > .elementor-widget > .elementor-widget-container {
    margin: 0;
}

/* Elementor Widget Image Styles */
.custom_footer .elementor-widget-image {
    text-align: center;
}

/* Elementor Widget Divider Styles */
.custom_footer .elementor-widget-divider {
    --divider-border-style: solid;
    --divider-border-width: 1px;
    --divider-color: #ddd;
    --divider-border-color: #ddd;
    --divider-pattern-height: 20px;
    --divider-pattern-size: 20px;
    --divider-pattern-url: none;
    --divider-pattern-repeat: repeat-x;
}

.custom_footer .elementor-widget-divider {
    --divider-border-style: solid;
    --divider-border-width: 1px;
    --divider-color: #ddd;
    --divider-border-color: #ddd;
    --divider-pattern-height: 20px;
    --divider-pattern-size: 20px;
    --divider-pattern-url: none;
    --divider-pattern-repeat: repeat-x;
}

.custom_footer .e-con > .elementor-widget-divider {
    width: 100%;
}

/* Elementor Widget Divider Separator Styles */
.custom_footer .elementor-widget-divider .elementor-divider-separator {
    display: table;
    margin: 0 auto;
    min-width: 50px;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    --divider-border-width: 1px;
    --divider-border-color: #ddd;
    --divider-pattern-height: 20px;
    --divider-pattern-size: 20px;
    --divider-pattern-url: none;
    --divider-pattern-repeat: repeat-x;
}

.custom_footer .elementor-756 .elementor-element.elementor-element-0c88715 .elementor-divider-separator {
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    --divider-border-width: 1px;
    --divider-border-color: #ddd;
    --divider-pattern-height: 20px;
    --divider-pattern-size: 20px;
    --divider-pattern-url: none;
    --divider-pattern-repeat: repeat-x;
}

.custom_footer .elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator {
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    --divider-border-width: 1px;
    --divider-border-color: #ddd;
    --divider-pattern-height: 20px;
    --divider-pattern-size: 20px;
    --divider-pattern-url: none;
    --divider-pattern-repeat: repeat-x;
}

.custom_footer .elementor-756 .elementor-element.elementor-element-76a1675 .elementor-divider-separator {
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    --divider-border-width: 1px;
    --divider-border-color: #ddd;
    --divider-pattern-height: 20px;
    --divider-pattern-size: 20px;
    --divider-pattern-url: none;
    --divider-pattern-repeat: repeat-x;
}

.custom_footer .elementor-756 .elementor-element.elementor-element-48a77e1 .elementor-divider-separator {
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    --divider-border-width: 1px;
    --divider-border-color: #ddd;
    --divider-pattern-height: 20px;
    --divider-pattern-size: 20px;
    --divider-pattern-url: none;
    --divider-pattern-repeat: repeat-x;
}

.custom_footer .elementor-756 .elementor-element.elementor-element-6e76237 .elementor-divider-separator {
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    --divider-border-width: 1px;
    --divider-border-color: #ddd;
    --divider-pattern-height: 20px;
    --divider-pattern-size: 20px;
    --divider-pattern-url: none;
    --divider-pattern-repeat: repeat-x;
}

.custom_footer .elementor-756 .elementor-element.elementor-element-6bc0c98 .elementor-divider-separator {
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    --divider-border-width: 1px;
    --divider-border-color: #ddd;
    --divider-pattern-height: 20px;
    --divider-pattern-size: 20px;
    --divider-pattern-url: none;
    --divider-pattern-repeat: repeat-x;
}

