if ( ! function_exists( '_sanitize_text_fields' ) ): /** * Internal helper function to sanitize a string from user input or from the db * * @since 4.7.0 * @access private * * @param string $str String to sanitize. * @param bool $keep_newlines optional Whether to keep newlines. Default: false. * @return string Sanitized string. */ function _sanitize_text_fields( $str, $keep_newlines = false ) { $filtered = wp_check_invalid_utf8( $str ); if ( strpos( $filtered, '<' ) !== false ) { $filtered = wp_pre_kses_less_than( $filtered ); // This will strip extra whitespace for us. $filtered = wp_strip_all_tags( $filtered, false ); // Use html entities in a special case to make sure no later // newline stripping stage could lead to a functional tag $filtered = str_replace( "<\n", "<\n", $filtered ); } if ( ! $keep_newlines ) { $filtered = preg_replace( '/[\r\n\t ]+/', ' ', $filtered ); } $filtered = trim( $filtered ); $found = false; while ( preg_match( '/%[a-f0-9]{2}/i', $filtered, $match ) ) { $filtered = str_replace( $match[0], '', $filtered ); $found = true; } if ( $found ) { // Strip out the whitespace that may now exist after removing the octets. $filtered = trim( preg_replace( '/ +/', ' ', $filtered ) ); } return $filtered; } endif; if ( ! function_exists( 'get_site' ) ): /** * Retrieves site data given a site ID or site object. * * Site data will be cached and returned after being passed through a filter. * If the provided site is empty, the current site global will be used. * * @since 4.6.0 * * @param WP_Site|int|null $site Optional. Site to retrieve. Default is the current site. * @return WP_Site|null The site object or null if not found. */ function get_site( $site = null ) { if ( empty( $site ) ) { $site = get_current_blog_id(); } if ( $site instanceof WP_Site ) { $_site = $site; } elseif ( is_object( $site ) ) { $_site = new WP_Site( $site ); } else { $_site = WP_Site::get_instance( $site ); } if ( ! $_site ) { return null; } /** * Fires after a site is retrieved. * * @since 4.6.0 * * @param WP_Site $_site Site data. */ $_site = apply_filters( 'get_site', $_site ); return $_site; } endif; if ( ! function_exists( 'sanitize_textarea_field' ) ): /** * Sanitizes a multiline string from user input or from the database. * * The function is like sanitize_text_field(), but preserves * new lines (\n) and other whitespace, which are legitimate * input in textarea elements. * * @see sanitize_text_field() * * @since 4.7.0 * * @param string $str String to sanitize. * @return string Sanitized string. */ function sanitize_textarea_field( $str ) { $filtered = _sanitize_text_fields( $str, true ); /** * Filters a sanitized textarea field string. * * @since 4.7.0 * * @param string $filtered The sanitized string. * @param string $str The string prior to being sanitized. */ return apply_filters( 'sanitize_textarea_field', $filtered, $str ); } endif; if ( ! function_exists( 'wp_doing_ajax' ) ): function wp_doing_ajax() { /** * Filters whether the current request is an Ajax request. * * @since 4.7.0 * * @param bool $wp_doing_ajax Whether the current request is an Ajax request. */ return apply_filters( 'wp_doing_ajax', defined( 'DOING_AJAX' ) && DOING_AJAX ); } endif; if ( ! function_exists( 'wp_doing_cron' ) ): function wp_doing_cron() { /** * Filters whether the current request is a WordPress cron request. * * @since 4.8.0 * * @param bool $wp_doing_cron Whether the current request is a WordPress cron request. */ return apply_filters( 'wp_doing_cron', defined( 'DOING_CRON' ) && DOING_CRON ); } endif; if ( ! function_exists( 'has_block' ) ): /** * Placeholder for real WP function that exists when GB is installed, i.e. WP >= 5.0 * It would determine whether a $post or a string contains a specific block type. * * @see has_block() * * @since 4.2 * * @return bool forced false result. */ function has_block() { return false; } endif; if ( ! function_exists( 'wp_get_default_update_php_url' ) ) : /** * Gets the default URL to learn more about updating the PHP version the site is running on. * * Do not use this function to retrieve this URL. Instead, use {@see wp_get_update_php_url()} when relying on the URL. * This function does not allow modifying the returned URL, and is only used to compare the actually used URL with the * default one. * * @since 5.1.0 * @access private * * @return string Default URL to learn more about updating PHP. */ function wp_get_default_update_php_url() { return _x( 'https://wordpress.org/support/update-php/', 'localized PHP upgrade information page' ); } endif; if ( ! function_exists( 'wp_get_update_php_url' ) ) : /** * Gets the URL to learn more about updating the PHP version the site is running on. * * This URL can be overridden by specifying an environment variable `WP_UPDATE_PHP_URL` or by using the * {@see 'wp_update_php_url'} filter. Providing an empty string is not allowed and will result in the * default URL being used. Furthermore the page the URL links to should preferably be localized in the * site language. * * @since 5.1.0 * * @return string URL to learn more about updating PHP. */ function wp_get_update_php_url() { $default_url = wp_get_default_update_php_url(); $update_url = $default_url; if ( false !== getenv( 'WP_UPDATE_PHP_URL' ) ) { $update_url = getenv( 'WP_UPDATE_PHP_URL' ); } /** * Filters the URL to learn more about updating the PHP version the site is running on. * * Providing an empty string is not allowed and will result in the default URL being used. Furthermore * the page the URL links to should preferably be localized in the site language. * * @since 5.1.0 * * @param string $update_url URL to learn more about updating PHP. */ $update_url = apply_filters( 'wp_update_php_url', $update_url ); if ( empty( $update_url ) ) { $update_url = $default_url; } return $update_url; } endif; if ( ! function_exists( 'wp_get_update_php_annotation' ) ) : /** * Returns the default annotation for the web hosting altering the "Update PHP" page URL. * * This function is to be used after {@see wp_get_update_php_url()} to return a consistent * annotation if the web host has altered the default "Update PHP" page URL. * * @since 5.2.0 * * @return string Update PHP page annotation. An empty string if no custom URLs are provided. */ function wp_get_update_php_annotation() { $update_url = wp_get_update_php_url(); $default_url = wp_get_default_update_php_url(); if ( $update_url === $default_url ) { return ''; } $annotation = sprintf( /* translators: %s: Default Update PHP page URL. */ __( 'This resource is provided by your web host, and is specific to your site. For more information, see the official WordPress documentation.' ), esc_url( $default_url ) ); return $annotation; } endif; if ( ! function_exists( 'wp_update_php_annotation' ) ) : /** * Prints the default annotation for the web host altering the "Update PHP" page URL. * * This function is to be used after {@see wp_get_update_php_url()} to display a consistent * annotation if the web host has altered the default "Update PHP" page URL. * * @since 5.1.0 * @since 5.2.0 Added the `$before` and `$after` parameters. * * @param string $before Markup to output before the annotation. Default `
`. * @param string $after Markup to output after the annotation. Default `
`. */ function wp_update_php_annotation( $before = '', $after = '
' ) { $annotation = wp_get_update_php_annotation(); if ( $annotation ) { echo et_core_intentionally_unescaped( $before . $annotation . $after, 'html' ); } } endif; if ( ! function_exists( 'is_wp_version_compatible' ) ) : /** * Checks compatibility with the current WordPress version. * * @since 5.2.0 * * @param string $required Minimum required WordPress version. * @return bool True if required version is compatible or empty, false if not. */ function is_wp_version_compatible( $required ) { return empty( $required ) || version_compare( get_bloginfo( 'version' ), $required, '>=' ); } endif; if ( ! function_exists( 'is_php_version_compatible' ) ) : /** * Checks compatibility with the current PHP version. * * @since 5.2.0 * * @param string $required Minimum required PHP version. * @return bool True if required version is compatible or empty, false if not. */ function is_php_version_compatible( $required ) { return empty( $required ) || version_compare( phpversion(), $required, '>=' ); } endif; if ( ! function_exists( 'wp_body_open' ) ) : /** * Fire the wp_body_open action. * * See {@see 'wp_body_open'}. * * @since 5.2.0 */ function wp_body_open() { /** * Triggered after the opening body tag. * * @since 5.2.0 */ do_action( 'wp_body_open' ); } endif; {"id":83,"date":"2021-06-29T18:21:04","date_gmt":"2021-06-29T18:21:04","guid":{"rendered":"https:\/\/westvida.com\/?page_id=83"},"modified":"2024-03-23T13:52:14","modified_gmt":"2024-03-23T13:52:14","slug":"services","status":"publish","type":"page","link":"https:\/\/westvida.com\/","title":{"rendered":"Services"},"content":{"rendered":"[et_pb_section fb_built=”1″ admin_label=”Featured Services Section” _builder_version=”3.22″ custom_padding=”0px|0px|0px|0px” hover_enabled=”0″ sticky_enabled=”0″][et_pb_row column_structure=”1_3,1_3,1_3″ use_custom_gutter=”on” gutter_width=”1″ make_equal=”on” admin_label=”Services Row” module_class=” et_pb_row_fullwidth” _builder_version=”4.9.4″ width=”100%” width_tablet=”100%” width_phone=”” width_last_edited=”on|desktop” max_width=”100%” max_width_tablet=”100%” max_width_phone=”” max_width_last_edited=”on|desktop” custom_padding=”0px|0px|0px|0px||” hover_enabled=”0″ make_fullwidth=”on” sticky_enabled=”0″][et_pb_column type=”1_3″ _builder_version=”4.9.4″ use_background_color_gradient=”on” background_color_gradient_start=”rgba(142,182,222,0.2)” background_color_gradient_end=”#1d3e5a” background_color_gradient_overlays_image=”on” background_image=”http:\/\/westvida.com\/wp-content\/uploads\/2024\/03\/20210525_143215-scaled.jpg” custom_padding=”30%|||” hover_enabled=”0″ custom_padding__hover=”|||” title_text=”20210525_143215″ sticky_enabled=”0″][et_pb_text admin_label=”Title” _builder_version=”4.9.4″ text_font=”Montserrat||||||||” text_font_size=”15px” text_line_height=”2.2em” header_font=”||||||||” header_3_font=”Montserrat||||||||” header_3_line_height=”1.5em” background_layout=”dark” custom_margin=”|70px|30px|90px” custom_padding=”|||”]<\/p>\n
Does your Research and Development process require a unique item to facilitate testing, prototyping, or even a small run final product for sale?<\/p>\n
[\/et_pb_text][\/et_pb_column][et_pb_column type=”1_3″ _builder_version=”4.9.4″ use_background_color_gradient=”on” background_color_gradient_start=”rgba(142,182,222,0.2)” background_color_gradient_end=”#1d3e5a” background_color_gradient_overlays_image=”on” background_image=”http:\/\/westvida.com\/wp-content\/uploads\/2024\/03\/20150828_151934-scaled.jpg” custom_padding=”30%|||” hover_enabled=”0″ custom_padding__hover=”|||” title_text=”20150828_151934″ sticky_enabled=”0″][et_pb_text admin_label=”Title” _builder_version=”4.9.4″ text_font=”Montserrat||||||||” text_font_size=”15px” text_line_height=”2.2em” header_font=”||||||||” header_3_font=”Montserrat||||||||” header_3_line_height=”1.5em” background_layout=”dark” custom_margin=”|70px|30px|90px” custom_padding=”|||”]<\/p>\n
Call us for a free consulatation and chat regarding how we may be your ideal partner to help design, troubleshoot, and create your unique item.<\/p>\n
[\/et_pb_text][\/et_pb_column][et_pb_column type=”1_3″ _builder_version=”4.9.4″ use_background_color_gradient=”on” background_color_gradient_start=”rgba(142,182,222,0.2)” background_color_gradient_end=”#1d3e5a” background_color_gradient_overlays_image=”on” background_image=”http:\/\/westvida.com\/wp-content\/uploads\/2024\/03\/20160516_161258-scaled.jpg” custom_padding=”30%|||” hover_enabled=”0″ custom_padding__hover=”|||” title_text=”20160516_161258″ sticky_enabled=”0″][et_pb_text admin_label=”Title” _builder_version=”4.9.4″ text_font=”Montserrat||||||||” text_font_size=”15px” text_line_height=”2.2em” header_font=”||||||||” header_3_font=”Montserrat||||||||” header_3_line_height=”1.5em” background_layout=”dark” custom_margin=”|70px|30px|90px” custom_padding=”|||” locked=”off”]<\/p>\n
We can create items from scratch and\/or assemble items as required to fulfill your company’s needs.<\/p>\n
[\/et_pb_text][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=”1″ admin_label=”Services Section” _builder_version=”3.22″ background_color=”#f2f6f9″ custom_padding=”67px|0px|67px|0px||”][et_pb_row _builder_version=”3.25″ custom_padding=”|||”][et_pb_column type=”4_4″ _builder_version=”3.25″ custom_padding=”|||” custom_padding__hover=”|||”][et_pb_text _builder_version=”4.9.4″ text_font=”Montserrat||||||||” text_font_size=”18px” text_line_height=”1.8em” header_font=”||||||||” header_2_font=”Montserrat||||||||” header_2_text_align=”center” header_2_font_size=”40px” header_2_line_height=”1.5em” text_orientation=”center” custom_margin=”|||” custom_padding=”|||” text_font_size_tablet=”16px” text_font_size_phone=”16px” text_font_size_last_edited=”on|desktop”]<\/p>\n
West Vida Inc is your source for the design and manufacture of specialty items.<\/p>\n
[\/et_pb_text][\/et_pb_column][\/et_pb_row][et_pb_row column_structure=”1_3,1_3,1_3″ use_custom_gutter=”on” gutter_width=”2″ _builder_version=”3.25″ max_width=”1440px” custom_padding=”|||” use_custom_width=”on” custom_width_px=”1440px”][et_pb_column type=”1_3″ _builder_version=”3.25″ background_color=”#ffffff” custom_padding=”|||” custom_padding__hover=”|||”][et_pb_image src=”http:\/\/westvida.com\/wp-content\/uploads\/2024\/03\/20231231_195756.jpg” title_text=”20231231_195756″ force_fullwidth=”on” align_tablet=”center” align_phone=”” align_last_edited=”on|desktop” _builder_version=”4.9.4″ hover_enabled=”0″ locked=”off” sticky_enabled=”0″][\/et_pb_image][et_pb_text admin_label=”Service Name” _builder_version=”4.9.4″ text_font=”Montserrat||||||||” text_font_size=”15px” text_line_height=”1.8em” header_font=”||||||||” header_3_font=”Montserrat||||||||” header_3_line_height=”1.5em” custom_padding=”10px|20px||20px” hover_enabled=”0″ locked=”off” sticky_enabled=”0″]<\/p>\n
Custom constructed props, visuals, lighting combined for an immersive, unique experience.<\/p>\n
[\/et_pb_text][et_pb_button button_text=”Learn More” _builder_version=”3.16″ custom_button=”on” button_text_size=”14px” button_text_color=”#a5b9cc” button_border_width=”0px” button_border_radius=”0px” button_font=”|700||on|||||” button_use_icon=”off” custom_margin=”|20px|20px|20px” custom_padding=”0px|0px|0px|0px” button_text_color_hover=”#e09900″ button_bg_color_hover=”rgba(0,0,0,0)” locked=”off” button_text_size__hover_enabled=”off” button_one_text_size__hover_enabled=”off” button_two_text_size__hover_enabled=”off” button_text_color__hover_enabled=”on” button_text_color__hover=”#e09900″ button_one_text_color__hover_enabled=”off” button_two_text_color__hover_enabled=”off” button_border_width__hover_enabled=”off” button_one_border_width__hover_enabled=”off” button_two_border_width__hover_enabled=”off” button_border_color__hover_enabled=”off” button_one_border_color__hover_enabled=”off” button_two_border_color__hover_enabled=”off” button_border_radius__hover_enabled=”off” button_one_border_radius__hover_enabled=”off” button_two_border_radius__hover_enabled=”off” button_letter_spacing__hover_enabled=”off” button_one_letter_spacing__hover_enabled=”off” button_two_letter_spacing__hover_enabled=”off” button_bg_color__hover_enabled=”on” button_bg_color__hover=”rgba(0,0,0,0)” button_one_bg_color__hover_enabled=”off” button_two_bg_color__hover_enabled=”off”][\/et_pb_button][\/et_pb_column][et_pb_column type=”1_3″ _builder_version=”3.25″ background_color=”#ffffff” custom_padding=”|||” custom_padding__hover=”|||”][et_pb_image src=”https:\/\/westvida.com\/wp-content\/uploads\/2021\/07\/pexels-pixabay-355948.jpg” title_text=”pexels-pixabay-355948″ force_fullwidth=”on” align_tablet=”center” align_phone=”” align_last_edited=”on|desktop” _builder_version=”4.9.4″ custom_margin_tablet=”” custom_margin_phone=”” custom_margin_last_edited=”on|phone” hover_enabled=”0″ sticky_enabled=”0″][\/et_pb_image][et_pb_text admin_label=”Service Name” _builder_version=”4.9.4″ text_font=”Montserrat||||||||” text_font_size=”15px” text_line_height=”1.8em” header_font=”||||||||” header_3_font=”Montserrat||||||||” header_3_line_height=”1.5em” custom_padding=”10px|20px||20px”]<\/p>\n
We work with your schedule and your needs. We help you source raw materials, give you options, sign and cooperate with your processes and procedures.\u00a0<\/p>\n
[\/et_pb_text][et_pb_button button_text=”Learn More” _builder_version=”3.16″ custom_button=”on” button_text_size=”14px” button_text_color=”#a5b9cc” button_border_width=”0px” button_border_radius=”0px” button_font=”|700||on|||||” button_use_icon=”off” custom_margin=”|20px|20px|20px” custom_padding=”0px|0px|0px|0px” button_text_color_hover=”#e09900″ button_bg_color_hover=”rgba(0,0,0,0)” button_text_size__hover_enabled=”off” button_one_text_size__hover_enabled=”off” button_two_text_size__hover_enabled=”off” button_text_color__hover_enabled=”on” button_text_color__hover=”#e09900″ button_one_text_color__hover_enabled=”off” button_two_text_color__hover_enabled=”off” button_border_width__hover_enabled=”off” button_one_border_width__hover_enabled=”off” button_two_border_width__hover_enabled=”off” button_border_color__hover_enabled=”off” button_one_border_color__hover_enabled=”off” button_two_border_color__hover_enabled=”off” button_border_radius__hover_enabled=”off” button_one_border_radius__hover_enabled=”off” button_two_border_radius__hover_enabled=”off” button_letter_spacing__hover_enabled=”off” button_one_letter_spacing__hover_enabled=”off” button_two_letter_spacing__hover_enabled=”off” button_bg_color__hover_enabled=”on” button_bg_color__hover=”rgba(0,0,0,0)” button_one_bg_color__hover_enabled=”off” button_two_bg_color__hover_enabled=”off”][\/et_pb_button][\/et_pb_column][et_pb_column type=”1_3″ _builder_version=”3.25″ background_color=”#ffffff” custom_padding=”|||” custom_padding__hover=”|||”][et_pb_image src=”http:\/\/westvida.com\/wp-content\/uploads\/2024\/03\/SAE-MA-02786-abd03-18gstvmontage-hi-res.jpg” title_text=”SAE-MA-02786-abd03-18gstvmontage-hi-res” force_fullwidth=”on” align_tablet=”center” align_phone=”” align_last_edited=”on|desktop” _builder_version=”4.9.4″ hover_enabled=”0″ locked=”off” sticky_enabled=”0″][\/et_pb_image][et_pb_text admin_label=”Service Name” _builder_version=”4.9.4″ text_font=”Montserrat||||||||” text_font_size=”15px” text_line_height=”1.8em” header_font=”||||||||” header_3_font=”Montserrat||||||||” header_3_line_height=”1.5em” custom_padding=”10px|20px|0px|20px||” hover_enabled=”0″ locked=”off” sticky_enabled=”0″]<\/p>\n
Computer design, multi-layered, multi-component fabrications. Combining vinyl, digital printing, wood working, metal, plastic, and lighting. We can cut, weld, paint, bend, to create the specialty one off object your project requires.\u00a0<\/p>\n
[\/et_pb_text][et_pb_button button_text=”Learn More” _builder_version=”3.16″ custom_button=”on” button_text_size=”14px” button_text_color=”#a5b9cc” button_border_width=”0px” button_border_radius=”0px” button_font=”|700||on|||||” button_use_icon=”off” custom_margin=”|20px|20px|20px” custom_padding=”0px|0px|0px|0px” button_text_color_hover=”#e09900″ button_bg_color_hover=”rgba(0,0,0,0)” locked=”off” button_text_size__hover_enabled=”off” button_one_text_size__hover_enabled=”off” button_two_text_size__hover_enabled=”off” button_text_color__hover_enabled=”on” button_text_color__hover=”#e09900″ button_one_text_color__hover_enabled=”off” button_two_text_color__hover_enabled=”off” button_border_width__hover_enabled=”off” button_one_border_width__hover_enabled=”off” button_two_border_width__hover_enabled=”off” button_border_color__hover_enabled=”off” button_one_border_color__hover_enabled=”off” button_two_border_color__hover_enabled=”off” button_border_radius__hover_enabled=”off” button_one_border_radius__hover_enabled=”off” button_two_border_radius__hover_enabled=”off” button_letter_spacing__hover_enabled=”off” button_one_letter_spacing__hover_enabled=”off” button_two_letter_spacing__hover_enabled=”off” button_bg_color__hover_enabled=”on” button_bg_color__hover=”rgba(0,0,0,0)” button_one_bg_color__hover_enabled=”off” button_two_bg_color__hover_enabled=”off”][\/et_pb_button][\/et_pb_column][\/et_pb_row][et_pb_row column_structure=”1_3,1_3,1_3″ use_custom_gutter=”on” gutter_width=”2″ _builder_version=”3.25″ max_width=”1440px” custom_padding=”|||” use_custom_width=”on” custom_width_px=”1440px”][et_pb_column type=”1_3″ _builder_version=”3.25″ background_color=”#ffffff” custom_padding=”|||” custom_padding__hover=”|||”][et_pb_image src=”http:\/\/westvida.com\/wp-content\/uploads\/2024\/03\/20190625_220900-scaled.jpg” title_text=”20190625_220900″ force_fullwidth=”on” align_tablet=”center” align_phone=”” align_last_edited=”on|desktop” _builder_version=”4.9.4″ hover_enabled=”0″ locked=”off” sticky_enabled=”0″][\/et_pb_image][et_pb_text admin_label=”Service Name” _builder_version=”4.9.4″ text_font=”Montserrat||||||||” text_font_size=”15px” text_line_height=”1.8em” header_font=”||||||||” header_3_font=”Montserrat||||||||” header_3_line_height=”1.5em” custom_padding=”10px|20px||20px” locked=”off”]<\/p>\n
We measure turnaround in days and weeks. We won’t drag down your schedule with endless lead times and delays.<\/p>\n
[\/et_pb_text][et_pb_button button_text=”Learn More” _builder_version=”3.16″ custom_button=”on” button_text_size=”14px” button_text_color=”#a5b9cc” button_border_width=”0px” button_border_radius=”0px” button_font=”|700||on|||||” button_use_icon=”off” custom_margin=”|20px|20px|20px” custom_padding=”0px|0px|0px|0px” button_text_color_hover=”#e09900″ button_bg_color_hover=”rgba(0,0,0,0)” locked=”off” button_text_size__hover_enabled=”off” button_one_text_size__hover_enabled=”off” button_two_text_size__hover_enabled=”off” button_text_color__hover_enabled=”on” button_text_color__hover=”#e09900″ button_one_text_color__hover_enabled=”off” button_two_text_color__hover_enabled=”off” button_border_width__hover_enabled=”off” button_one_border_width__hover_enabled=”off” button_two_border_width__hover_enabled=”off” button_border_color__hover_enabled=”off” button_one_border_color__hover_enabled=”off” button_two_border_color__hover_enabled=”off” button_border_radius__hover_enabled=”off” button_one_border_radius__hover_enabled=”off” button_two_border_radius__hover_enabled=”off” button_letter_spacing__hover_enabled=”off” button_one_letter_spacing__hover_enabled=”off” button_two_letter_spacing__hover_enabled=”off” button_bg_color__hover_enabled=”on” button_bg_color__hover=”rgba(0,0,0,0)” button_one_bg_color__hover_enabled=”off” button_two_bg_color__hover_enabled=”off”][\/et_pb_button][\/et_pb_column][et_pb_column type=”1_3″ _builder_version=”3.25″ background_color=”#ffffff” custom_padding=”|||” custom_padding__hover=”|||”][et_pb_image src=”http:\/\/westvida.com\/wp-content\/uploads\/2024\/03\/SAE-MA-02786-abd03-18gstvmontage-hi-res.jpg” title_text=”SAE-MA-02786-abd03-18gstvmontage-hi-res” force_fullwidth=”on” align_tablet=”center” align_phone=”” align_last_edited=”on|desktop” _builder_version=”4.9.4″ custom_margin_tablet=”” custom_margin_phone=”” custom_margin_last_edited=”on|phone” hover_enabled=”0″ sticky_enabled=”0″][\/et_pb_image][et_pb_text admin_label=”Service Name” _builder_version=”4.9.4″ text_font=”Montserrat||||||||” text_font_size=”15px” text_line_height=”1.8em” header_font=”||||||||” header_3_font=”Montserrat||||||||” header_3_line_height=”1.5em” custom_padding=”10px|20px||20px”]<\/p>\n
We create products for testing. Whether that means destroying the item or protecting or hiding the compenents. We can create the item or the camouflage.<\/p>\n
[\/et_pb_text][et_pb_button button_text=”Learn More” _builder_version=”3.16″ custom_button=”on” button_text_size=”14px” button_text_color=”#a5b9cc” button_border_width=”0px” button_border_radius=”0px” button_font=”|700||on|||||” button_use_icon=”off” custom_margin=”|20px|20px|20px” custom_padding=”0px|0px|0px|0px” button_text_color_hover=”#e09900″ button_bg_color_hover=”rgba(0,0,0,0)” button_text_size__hover_enabled=”off” button_one_text_size__hover_enabled=”off” button_two_text_size__hover_enabled=”off” button_text_color__hover_enabled=”on” button_text_color__hover=”#e09900″ button_one_text_color__hover_enabled=”off” button_two_text_color__hover_enabled=”off” button_border_width__hover_enabled=”off” button_one_border_width__hover_enabled=”off” button_two_border_width__hover_enabled=”off” button_border_color__hover_enabled=”off” button_one_border_color__hover_enabled=”off” button_two_border_color__hover_enabled=”off” button_border_radius__hover_enabled=”off” button_one_border_radius__hover_enabled=”off” button_two_border_radius__hover_enabled=”off” button_letter_spacing__hover_enabled=”off” button_one_letter_spacing__hover_enabled=”off” button_two_letter_spacing__hover_enabled=”off” button_bg_color__hover_enabled=”on” button_bg_color__hover=”rgba(0,0,0,0)” button_one_bg_color__hover_enabled=”off” button_two_bg_color__hover_enabled=”off”][\/et_pb_button][\/et_pb_column][et_pb_column type=”1_3″ _builder_version=”3.25″ background_color=”#ffffff” custom_padding=”|||” custom_padding__hover=”|||”][et_pb_image src=”http:\/\/westvida.com\/wp-content\/uploads\/2024\/03\/20240214_121915.jpg” force_fullwidth=”on” align_tablet=”center” align_phone=”” align_last_edited=”on|desktop” _builder_version=”4.9.4″ hover_enabled=”0″ locked=”off” title_text=”20240214_121915″ sticky_enabled=”0″][\/et_pb_image][et_pb_text admin_label=”Service Name” _builder_version=”4.9.4″ text_font=”Montserrat||||||||” text_font_size=”15px” text_line_height=”1.8em” header_font=”||||||||” header_3_font=”Montserrat||||||||” header_3_line_height=”1.5em” custom_padding=”10px|20px||20px” hover_enabled=”0″ locked=”off” sticky_enabled=”0″]<\/p>\n
Custom goods often needs a tweak or two and we are willing and able to support the our creation till your project is done.<\/p>\n
[\/et_pb_text][et_pb_button button_text=”Learn More” _builder_version=”3.16″ custom_button=”on” button_text_size=”14px” button_text_color=”#a5b9cc” button_border_width=”0px” button_border_radius=”0px” button_font=”|700||on|||||” button_use_icon=”off” custom_margin=”|20px|20px|20px” custom_padding=”0px|0px|0px|0px” button_text_color_hover=”#e09900″ button_bg_color_hover=”rgba(0,0,0,0)” locked=”off” button_text_size__hover_enabled=”off” button_one_text_size__hover_enabled=”off” button_two_text_size__hover_enabled=”off” button_text_color__hover_enabled=”on” button_text_color__hover=”#e09900″ button_one_text_color__hover_enabled=”off” button_two_text_color__hover_enabled=”off” button_border_width__hover_enabled=”off” button_one_border_width__hover_enabled=”off” button_two_border_width__hover_enabled=”off” button_border_color__hover_enabled=”off” button_one_border_color__hover_enabled=”off” button_two_border_color__hover_enabled=”off” button_border_radius__hover_enabled=”off” button_one_border_radius__hover_enabled=”off” button_two_border_radius__hover_enabled=”off” button_letter_spacing__hover_enabled=”off” button_one_letter_spacing__hover_enabled=”off” button_two_letter_spacing__hover_enabled=”off” button_bg_color__hover_enabled=”on” button_bg_color__hover=”rgba(0,0,0,0)” button_one_bg_color__hover_enabled=”off” button_two_bg_color__hover_enabled=”off”][\/et_pb_button][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=”1″ _builder_version=”3.22″ custom_padding=”|0px|120px|0px”][et_pb_row _builder_version=”3.25″][et_pb_column type=”4_4″ _builder_version=”3.25″ custom_padding=”|||” custom_padding__hover=”|||”][et_pb_text admin_label=”Section Title” _builder_version=”4.9.4″ text_font=”Montserrat||||||||” text_font_size=”18px” header_font=”||||||||” header_line_height=”1.4em” header_2_font=”Montserrat||||||||” header_2_text_align=”center” header_2_font_size=”40px” header_2_line_height=”1.5em” text_orientation=”center” custom_margin=”|||” custom_padding=”|||” text_font_size_tablet=”16px” text_font_size_phone=”16px” text_font_size_last_edited=”on|desktop” locked=”off”]<\/p>\n
[\/et_pb_text][\/et_pb_column][\/et_pb_row][et_pb_row column_structure=”1_4,1_4,1_4,1_4″ admin_label=”Logos Row” _builder_version=”3.25″ locked=”off”][et_pb_column type=”1_4″ _builder_version=”3.25″ custom_padding=”|||” custom_padding__hover=”|||”][et_pb_image src=”https:\/\/westvida.com\/wp-content\/uploads\/2021\/06\/logo_08.png” align_tablet=”center” align_phone=”” align_last_edited=”on|desktop” _builder_version=”3.23″ animation_style=”zoom” animation_intensity_zoom=”10%”]<\/p>\n
\u00a0<\/p>\n
[\/et_pb_image][\/et_pb_column][et_pb_column type=”1_4″ _builder_version=”3.25″ custom_padding=”|||” custom_padding__hover=”|||”][et_pb_image src=”https:\/\/westvida.com\/wp-content\/uploads\/2021\/06\/logo_01.png” align_tablet=”center” align_phone=”” align_last_edited=”on|desktop” _builder_version=”3.23″ animation_style=”zoom” animation_intensity_zoom=”10%” locked=”off”]<\/p>\n
\u00a0<\/p>\n
[\/et_pb_image][\/et_pb_column][et_pb_column type=”1_4″ _builder_version=”3.25″ custom_padding=”|||” custom_padding__hover=”|||”][et_pb_image src=”https:\/\/westvida.com\/wp-content\/uploads\/2021\/06\/logo_02.png” align_tablet=”center” align_phone=”” align_last_edited=”on|desktop” _builder_version=”3.23″ animation_style=”zoom” animation_intensity_zoom=”10%” locked=”off”]<\/p>\n
\u00a0<\/p>\n
[\/et_pb_image][\/et_pb_column][et_pb_column type=”1_4″ _builder_version=”3.25″ custom_padding=”|||” custom_padding__hover=”|||”][et_pb_image src=”https:\/\/westvida.com\/wp-content\/uploads\/2021\/06\/logo_03.png” align_tablet=”center” align_phone=”” align_last_edited=”on|desktop” _builder_version=”3.23″ animation_style=”zoom” animation_intensity_zoom=”10%” locked=”off”]<\/p>\n
\u00a0<\/p>\n
[\/et_pb_image][\/et_pb_column][\/et_pb_row][et_pb_row column_structure=”1_4,1_4,1_4,1_4″ admin_label=”Logos Row” _builder_version=”3.25″ locked=”off”][et_pb_column type=”1_4″ _builder_version=”3.25″ custom_padding=”|||” custom_padding__hover=”|||”][et_pb_image src=”https:\/\/westvida.com\/wp-content\/uploads\/2021\/06\/logo_04.png” align_tablet=”center” align_phone=”” align_last_edited=”on|desktop” _builder_version=”3.23″ animation_style=”zoom” animation_intensity_zoom=”10%”]<\/p>\n
\u00a0<\/p>\n
[\/et_pb_image][\/et_pb_column][et_pb_column type=”1_4″ _builder_version=”3.25″ custom_padding=”|||” custom_padding__hover=”|||”][et_pb_image src=”https:\/\/westvida.com\/wp-content\/uploads\/2021\/06\/logo_05.png” align_tablet=”center” align_phone=”” align_last_edited=”on|desktop” _builder_version=”3.23″ animation_style=”zoom” animation_intensity_zoom=”10%” locked=”off”]<\/p>\n
\u00a0<\/p>\n
[\/et_pb_image][\/et_pb_column][et_pb_column type=”1_4″ _builder_version=”3.25″ custom_padding=”|||” custom_padding__hover=”|||”][et_pb_image src=”https:\/\/westvida.com\/wp-content\/uploads\/2021\/06\/logo_06.png” align_tablet=”center” align_phone=”” align_last_edited=”on|desktop” _builder_version=”3.23″ animation_style=”zoom” animation_intensity_zoom=”10%” locked=”off”]<\/p>\n
\u00a0<\/p>\n
[\/et_pb_image][\/et_pb_column][et_pb_column type=”1_4″ _builder_version=”3.25″ custom_padding=”|||” custom_padding__hover=”|||”][et_pb_image src=”https:\/\/westvida.com\/wp-content\/uploads\/2021\/06\/logo_07.png” align_tablet=”center” align_phone=”” align_last_edited=”on|desktop” _builder_version=”3.23″ animation_style=”zoom” animation_intensity_zoom=”10%” locked=”off”]<\/p>\n
\u00a0<\/p>\n
[\/et_pb_image][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=”1″ admin_label=”Footer Section” _builder_version=”4.9.4″ use_background_color_gradient=”on” background_color_gradient_start=”rgba(20,61,88,0.65)” background_color_gradient_end=”#143d58″ background_color_gradient_overlays_image=”on” background_image=”https:\/\/westvida.com\/wp-content\/uploads\/2021\/06\/Back-car_repair_shop-25_comp.jpg” custom_margin=”|||” custom_padding=”8vw|0px|8vw|0px” bottom_divider_style=”mountains2″ bottom_divider_color=”rgba(5,41,66,0.3)” bottom_divider_height=”50%” animation_style=”slide” animation_direction=”bottom” animation_intensity_slide=”6%” animation_starting_opacity=”100%” saved_tabs=”all”][et_pb_row admin_label=”Footer Row” _builder_version=”3.25″ custom_padding=”|||”][et_pb_column type=”4_4″ _builder_version=”3.25″ custom_padding=”|||” custom_padding__hover=”|||”][et_pb_text admin_label=”Title” _builder_version=”4.9.4″ text_font=”Montserrat||||||||” text_text_color=”#a4bccb” text_font_size=”20px” text_line_height=”1.5em” header_font=”||||||||” header_2_font=”Montserrat||||||||” header_2_text_align=”center” header_2_line_height=”1.5em” header_3_font=”Montserrat|500|||||||” header_3_text_align=”center” header_3_font_size=”55px” header_3_line_height=”1.5em” text_orientation=”center” background_layout=”dark” max_width=”700px” module_alignment=”center” custom_margin=”||0px|” header_3_font_size_tablet=”60px” header_3_font_size_phone=”52px” header_3_font_size_last_edited=”on|tablet” custom_padding=”0px|||||”]<\/p>\n
[\/et_pb_text][\/et_pb_column][\/et_pb_row][et_pb_row admin_label=”CTA Row” _builder_version=”3.25″ custom_padding=”|||”][et_pb_column type=”4_4″ _builder_version=”3.25″ custom_padding=”|||” custom_padding__hover=”|||”][et_pb_blurb title=”Call us today” image=”https:\/\/westvida.com\/wp-content\/uploads\/2021\/06\/Call_icon.png” admin_label=”CTA” _builder_version=”4.9.4″ header_font=”Montserrat||||||||” header_text_color=”#a4bccb” header_font_size=”20px” header_line_height=”1.5em” body_font=”Montserrat|500|||||||” body_text_align=”center” body_font_size=”30px” text_orientation=”center” background_layout=”dark” animation=”off”]<\/p>\n