.elementor-486 .elementor-element.elementor-element-5cf3443{--display:flex;--min-height:546px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-486 .elementor-element.elementor-element-5cf3443:not(.elementor-motion-effects-element-type-background), .elementor-486 .elementor-element.elementor-element-5cf3443 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#9E7267;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-486 .elementor-element.elementor-element-5fb3ca2 > .elementor-widget-container{margin:20px 0px 0px 0px;}.elementor-486 .elementor-element.elementor-element-5fb3ca2{text-align:center;}.elementor-486 .elementor-element.elementor-element-5fb3ca2 .elementor-heading-title{font-family:"Montserrat", Sans-serif;font-size:37px;font-weight:bold;color:#FFFFFF;}.elementor-486 .elementor-element.elementor-element-4449f8f{width:100%;max-width:100%;}.elementor-486 .elementor-element.elementor-element-4449f8f > .elementor-widget-container{margin:-30px 0px -9px 0px;}#elementor-popup-modal-486{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-486 .dialog-message{width:500px;height:auto;}#elementor-popup-modal-486 .dialog-close-button{display:flex;}#elementor-popup-modal-486 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}/* Start custom CSS *//* Ensure the popup is centered in the viewport */
.popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%; /* Adjust width as needed */
    max-width: 500px; /* Set a max width */
    height: auto;
    min-height: 550px; /* Ensure enough height */
    background: #8b5a4a; /* Adjust background color */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999; /* Ensure it appears above other content */
}

/* Ensure iframe fits within the popup */
.popup-container iframe {
    width: 100%;
    height: 100%;
    min-height: 550px !important; /* Adjust height to fit the form */
    border: none;
}

/* Background overlay to dim the rest of the page */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark transparent background */
    z-index: 9998; /* Behind the popup */
}

/* Close button styling */
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    color: white;
    cursor: pointer;
}/* End custom CSS */