/**
 * Elementor Custom CSS
 * 
 * Modifies styles for the Elementor page builder plugin.
 */

/***********************************************************************************************************************
   --- Elementor Container Layout Adjustments ---
   Adjust the behaviour of elementor page layouts.
***********************************************************************************************************************/

/* Adjust Elementor "Boxed" container widths on mobile. Use "Full Width" containers for full width on all device sizes.
 ************************************/
@media(max-width: 1024px) {
    .e-con {
        --container-max-width: 90%;
    }
}
@media(max-width: 767px) {
    .e-con {
        --container-max-width: 90%;
    }
}
/************************************/

/**********************************************************************************************************************/