tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); // for custom logo add_theme_support( 'custom-logo', array( 'height' => 248, 'width' => 248, 'flex-height' => true, ) ); /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); // Thumbnail sizes add_image_size( 'business_booster-featured', 600, 600, true ); add_image_size( 'business_booster-featured-single', 980, 600, true ); add_editor_style('editor-style.css'); set_post_thumbnail_size( 825, 510, true ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary', 'business-booster' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); // custom logo if ( ! function_exists( 'business_booster_custom_logo' ) ) : /** * Displays the optional custom logo. * * Does nothing if the custom logo is not available. * * @since Twenty Fifteen 1.5 */ function business_booster_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } } endif; // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'business_booster_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); } endif; add_action( 'after_setup_theme', 'business_booster_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function business_booster_content_width() { $GLOBALS['content_width'] = apply_filters( 'business_booster_content_width', 640 ); } add_action( 'after_setup_theme', 'business_booster_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function business_booster_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'business-booster' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'business-booster' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar(array( 'id' => 'business-footer1', 'name' => esc_html__( 'Footer 1', 'business-booster' ), 'description' => esc_html__( 'Add widgets here.', 'business-booster' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'id' => 'business-footer2', 'name' => esc_html__( 'Footer 2', 'business-booster' ), 'description' => esc_html__( 'Add widgets here.', 'business-booster' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'id' => 'business-footer3', 'name' => esc_html__( 'Footer 3', 'business-booster' ), 'description' => esc_html__( 'Add widgets here.', 'business-booster' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'id' => 'business-footer4', 'name' => esc_html__( 'Footer 4', 'business-booster' ), 'description' => esc_html__( 'Add widgets here.', 'business-booster' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'id' => 'business-footer5', 'name' => esc_html__( 'Footer 5', 'business-booster' ), 'description' => esc_html__( 'Add widgets here.', 'business-booster' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'id' => 'business-footer6', 'name' => esc_html__( 'Footer 6', 'business-booster' ), 'description' => esc_html__( 'Add widgets here.', 'business-booster' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); } add_action( 'widgets_init', 'business_booster_widgets_init' ); /** * Enqueue scripts and styles. */ function business_booster_scripts() { wp_enqueue_style( 'bootstrap', get_template_directory_uri() .'/css/bootstrap.min.css',array(),'3.3.4' ); wp_enqueue_style( 'font-awesome', get_template_directory_uri() .'/css/font-awesome-4.7.0/css/font-awesome.min.css',array(),'4.0.3' ); wp_enqueue_style( 'business-booster-style', get_stylesheet_uri() ); wp_enqueue_style( 'business-booster-lato-font','https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i', array(), '1.0', 'all' ); wp_enqueue_script( 'business-booster-navigation', get_template_directory_uri() . '/js/navigation.js', array('jquery'), '20151215', true ); wp_enqueue_script( 'bootstrap-min-js', get_template_directory_uri() . '/js/bootstrap.min.js', array('jquery'), '3.3.5', true ); wp_enqueue_script( 'business-booster-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array('jquery'), '20151215', true ); wp_enqueue_script( 'business-booster-custom-js', get_template_directory_uri() . '/js/business-booster-custom-js.js', array('jquery'), '20151215', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'business_booster_scripts' ); // Display an optional post thumbnail. if ( ! function_exists( 'business_booster_post_thumbnail')) : function business_booster_post_thumbnail() { if ( post_password_required() || is_attachment() || ! has_post_thumbnail() ) { return; } if ( is_singular() ) : ?>
esc_attr(get_the_title()))); ?>
%2$s

', esc_url( get_permalink( get_the_ID() ) ), /* translators: %s: Name of current post */ sprintf( __( 'Continue reading "%s"', 'business-booster' ), get_the_title( get_the_ID() ) ) ); return ' … ' . $more; } add_filter('excerpt_more', 'business_booster_excerpt_more'); /*Live composer template*/ function business_booster_lc_add_new_templates( $templates ) { // Add new templates ( repeat for more templates ) $templates['home-page-new'] = array( 'title' => __('Homepage','business-booster'), 'id' => 'home-page-new', 'code' => '[{"element_type":"row","columns_spacing":"spacing","custom_class":"bb_res","show_on":"desktop tablet phone","section_instance_id":"5056662b556","custom_id":"","type":"wrapper","bg_color":"rgba(0,0,0,0)","bg_image_thumb":"disabled","bg_image":"17","bg_image_repeat":"no-repeat","bg_image_position":"center center","bg_image_attachment":"scroll","bg_image_size":"cover","bg_video":"","bg_video_overlay_color":"#000","bg_video_overlay_opacity":"0.5","border_color":"","border_width":"0","border_style":"solid","border":"top right bottom left","margin_h":"0","margin_b":"0","padding":"150","padding_h":"0","content":[{"element_type":"module_area","last":"yes","first":"no","size":"12","content":[{"css_show_on":"desktop tablet phone","content":"

PROBABLY THE BEST MULTIPURPOSE THEME

ON WORDPRESS.ORG

Lorem ipsum dolor sit amet, consectetur adipisicing elit.

","css_custom":"enabled","css_main_padding_horizontal":"57","css_main_bg_img_repeat":"repeat","css_main_bg_img_attch":"scroll","css_main_bg_img_pos":"top left","css_main_bg_img_size":"auto","css_main_border_trbl":"top right bottom left","css_main_color":"#ffffff","css_main_font_size":"16","css_main_font_weight":"400","css_main_font_family":"Open Sans","css_main_font_style":"normal","css_main_line_height":"30","css_main_text_align":"center","css_h1_font_size":"25","css_h1_font_weight":"300","css_h1_font_family":"Montserrat","css_h1_font_style":"normal","css_h1_line_height":"35","css_h1_margin_bottom":"20","css_h1_text_align":"center","css_h1_border_trbl":"top right bottom left","css_h2_color":"#ffffff","css_h2_font_size":"60","css_h2_font_weight":"900","css_h2_font_family":"Montserrat","css_h2_font_style":"normal","css_h2_line_height":"33","css_h2_margin_bottom":"24","css_h2_text_align":"center","css_h2_border_trbl":"top right bottom left","css_h3_font_size":"21","css_h3_font_weight":"400","css_h3_font_family":"Open Sans","css_h3_font_style":"normal","css_h3_line_height":"31","css_h3_margin_bottom":"15","css_h3_text_align":"left","css_h3_border_trbl":"top right bottom left","css_h4_font_size":"19","css_h4_font_weight":"400","css_h4_font_family":"Open Sans","css_h4_font_style":"normal","css_h4_line_height":"29","css_h4_margin_bottom":"15","css_h4_text_align":"left","css_h4_border_trbl":"top right bottom left","css_h5_font_size":"17","css_h5_font_weight":"400","css_h5_font_family":"Open Sans","css_h5_font_style":"normal","css_h5_line_height":"27","css_h5_margin_bottom":"15","css_h5_text_align":"left","css_h5_border_trbl":"top right bottom left","css_h6_font_size":"15","css_h6_font_weight":"400","css_h6_font_family":"Open Sans","css_h6_font_style":"normal","css_h6_line_height":"25","css_h6_margin_bottom":"15","css_h6_text_align":"left","css_h6_border_trbl":"top right bottom left","css_li_font_size":"13","css_li_font_weight":"400","css_li_font_family":"Open Sans","css_li_line_height":"22","css_ul_margin_bottom":"25","css_ul_margin_left":"25","css_ul_style":"disc","css_ol_style":"decimal","css_ul_li_margin_bottom":"10","css_li_border_trbl":"top right bottom left","css_inputs_color":"#4d4d4d","css_inputs_font_size":"13","css_inputs_font_weight":"500","css_inputs_font_family":"Open Sans","css_inputs_line_height":"23","css_inputs_margin_bottom":"15","css_inputs_padding_vertical":"10","css_inputs_padding_horizontal":"15","css_inputs_bg_color":"#fff","css_inputs_border_color":"#ddd","css_inputs_border_width":"1","css_inputs_border_trbl":"top right bottom left","css_blockquote_font_size":"13","css_blockquote_font_weight":"400","css_blockquote_font_family":"Open Sans","css_blockquote_line_height":"22","css_blockquote_text_align":"left","css_blockquote_bg_img_repeat":"repeat","css_blockquote_bg_img_attch":"scroll","css_blockquote_bg_img_pos":"top left","css_blockquote_border_trbl":"top right bottom left","css_button_bg_color":"#5890e5","css_button_bg_color_hover":"#5890e5","css_button_border_color":"#5890e5","css_button_border_color_hover":"#5890e5","css_button_border_trbl":"top right bottom left","css_button_border_radius":"3","css_button_color":"#fff","css_button_color_hover":"#fff","css_button_font_size":"13","css_button_font_weight":"500","css_button_font_family":"Open Sans","css_button_line_height":"13","css_button_padding_vertical":"10","css_button_padding_horizontal":"15","css_res_t":"enabled","css_res_t_main_font_size":"14","css_res_t_main_line_height":"22","css_res_t_main_paragraph_margin_bottom":"20","css_res_t_main_text_align":"center","css_res_t_h1_font_size":"13","css_res_t_h1_line_height":"13","css_res_t_h1_margin_bottom":"15","css_res_t_h1_text_align":"left","css_res_t_h2_font_size":"40","css_res_t_h2_line_height":"13","css_res_t_h2_margin_bottom":"25","css_res_t_h2_text_align":"center","css_res_t_h3_font_size":"13","css_res_t_h3_line_height":"13","css_res_t_h3_margin_bottom":"15","css_res_t_h3_text_align":"left","css_res_t_h4_font_size":"13","css_res_t_h4_line_height":"13","css_res_t_h4_margin_bottom":"15","css_res_t_h4_text_align":"left","css_res_t_h5_font_size":"13","css_res_t_h5_line_height":"13","css_res_t_h5_margin_bottom":"15","css_res_t_h5_text_align":"left","css_res_t_h6_font_size":"13","css_res_t_h6_line_height":"13","css_res_t_h6_margin_bottom":"15","css_res_t_h6_text_align":"left","css_res_t_li_font_size":"13","css_res_t_li_line_height":"22","css_res_t_ul_margin_bottom":"25","css_res_t_ul_margin_left":"25","css_res_t_ul_li_margin_bottom":"10","css_res_t_blockquote_font_size":"13","css_res_t_blockquote_line_height":"22","css_res_t_blockquote_text_align":"left","css_res_p":"enabled","css_res_ph_main_font_size":"14","css_res_ph_main_line_height":"22","css_res_p_main_paragraph_margin_bottom":"20","css_res_p_main_text_align":"center","css_res_ph_h1_font_size":"13","css_res_ph_h1_line_height":"13","css_res_ph_h1_margin_bottom":"15","css_res_p_h1_text_align":"left","css_res_ph_h2_font_size":"25","css_res_ph_h2_line_height":"13","css_res_p_h2_margin_bottom":"20","css_res_p_h2_text_align":"center","css_res_ph_h3_font_size":"13","css_res_ph_h3_line_height":"13","css_res_p_h3_margin_bottom":"15","css_res_p_h3_text_align":"left","css_res_ph_h4_font_size":"13","css_res_ph_h4_line_height":"13","css_res_p_h4_margin_bottom":"15","css_res_p_h4_text_align":"left","css_res_ph_h5_font_size":"13","css_res_ph_h5_line_height":"13","css_res_p_h5_margin_bottom":"15","css_res_p_h5_text_align":"left","css_res_ph_h6_font_size":"13","css_res_ph_h6_line_height":"13","css_res_p_h6_margin_bottom":"15","css_res_p_h6_text_align":"left","css_res_p_li_font_size":"13","css_res_p_li_line_height":"22","css_res_p_ul_margin_bottom":"25","css_res_p_ul_margin_left":"25","css_res_p_ul_li_margin_bottom":"10","css_res_p_blockquote_font_size":"13","css_res_p_blockquote_line_height":"22","css_res_p_blockquote_text_align":"left","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_load_preset":"none","module_instance_id":"ef2073a5980","post_id":"5","dslc_m_size":"12","module_id":"DSLC_Text_Simple","element_type":"module","last":"yes","dslc_m_size_last":"yes","module_render_nonajax":"1"},{"css_show_on":"desktop tablet phone","button_text":"CONTACT US NOW!","button_url":"#","button_target":"_self","css_align":"center","css_bg_color":"#ff6823","css_bg_color_hover":"rgba(0,0,0,0)","css_border_color":"#ff6823","css_border_color_hover":"#ff6823","css_border_width":"2","css_border_trbl":"top right bottom left ","css_border_radius":"30","css_margin_top":"36","css_padding_vertical":"16","css_padding_horizontal":"30","css_width":"inline-block","css_button_color":"#ffffff","css_button_color_hover":"#ffffff","css_button_font_size":"15","css_button_font_style":"normal","css_button_font_weight":"700","css_button_font_family":"Montserrat","button_state":"disabled","icon_pos":"left","button_icon_id":"link","css_icon_margin":"5","css_wrapper_bg_img_repeat":"repeat","css_wrapper_bg_img_attch":"scroll","css_wrapper_bg_img_pos":"top left","css_wrapper_border_trbl":"top right bottom left","css_res_t":"disabled","css_res_t_padding_vertical":"12","css_res_t_padding_horizontal":"12","css_res_t_button_font_size":"11","css_res_t_icon_margin":"5","css_res_t_align":"left","css_res_p":"disabled","css_res_p_padding_vertical":"12","css_res_p_padding_horizontal":"12","css_res_p_button_font_size":"11","css_res_p_icon_margin":"5","css_res_ph_align":"left","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_load_preset":"none","module_instance_id":"d0a8cdd0dc1","post_id":"5","dslc_m_size":"12","module_id":"DSLC_Button","element_type":"module","last":"yes","dslc_m_size_last":"yes","module_render_nonajax":"1"}]}],"dslca-img-url":"http://demobusiness.tutiixx.com/wp-content/uploads/2018/01/banner.jpg"},{"element_type":"row","columns_spacing":"spacing","custom_class":"bb_res","show_on":"desktop tablet phone","section_instance_id":"b308842ce7e","custom_id":"","type":"wrapper","bg_color":"","bg_image_thumb":"disabled","bg_image":"","bg_image_repeat":"repeat","bg_image_position":"left top","bg_image_attachment":"scroll","bg_image_size":"auto","bg_video":"","bg_video_overlay_color":"#000000","bg_video_overlay_opacity":"0","border_color":"","border_width":"0","border_style":"solid","border":"top right bottom left","margin_h":"0","margin_b":"0","padding":"80","padding_h":"0","content":[{"element_type":"module_area","last":"yes","first":"no","size":"12","content":[{"css_show_on":"desktop tablet phone","content":"
INTRODUCTION

WHAT WE DO

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

","css_custom":"enabled","css_margin_bottom":"80","css_main_padding_horizontal":"140","css_main_bg_img_repeat":"repeat","css_main_bg_img_attch":"scroll","css_main_bg_img_pos":"top left","css_main_bg_img_size":"auto","css_main_border_trbl":"top right bottom left","css_main_color":"#616161","css_main_font_size":"15","css_main_font_weight":"400","css_main_font_family":"Montserrat","css_main_font_style":"normal","css_main_line_height":"22","css_main_margin_bottom":"25","css_main_text_align":"center","css_h1_font_size":"25","css_h1_font_weight":"400","css_h1_font_family":"Open Sans","css_h1_font_style":"normal","css_h1_line_height":"35","css_h1_margin_bottom":"15","css_h1_text_align":"left","css_h1_border_trbl":"top right bottom left","css_h2_color":"#541269","css_h2_font_size":"47","css_h2_font_weight":"600","css_h2_font_family":"Montserrat","css_h2_font_style":"normal","css_h2_line_height":"33","css_h2_margin_bottom":"30","css_h2_text_align":"center","css_h2_border_trbl":"top right bottom left","css_h3_font_size":"21","css_h3_font_weight":"400","css_h3_font_family":"Open Sans","css_h3_font_style":"normal","css_h3_line_height":"31","css_h3_margin_bottom":"15","css_h3_text_align":"left","css_h3_border_trbl":"top right bottom left","css_h4_font_size":"19","css_h4_font_weight":"400","css_h4_font_family":"Open Sans","css_h4_font_style":"normal","css_h4_line_height":"29","css_h4_margin_bottom":"15","css_h4_text_align":"left","css_h4_border_trbl":"top right bottom left","css_h5_color":"#151039","css_h5_font_size":"15","css_h5_font_weight":"500","css_h5_font_family":"Montserrat","css_h5_font_style":"normal","css_h5_line_height":"15","css_h5_text_align":"center","css_h5_border_trbl":"top right bottom left","css_h6_font_size":"15","css_h6_font_weight":"400","css_h6_font_family":"Open Sans","css_h6_font_style":"normal","css_h6_line_height":"25","css_h6_margin_bottom":"15","css_h6_text_align":"left","css_h6_border_trbl":"top right bottom left","css_li_color":"#5b5b5b","css_li_font_size":"14","css_li_font_weight":"400","css_li_font_family":"Open Sans","css_li_line_height":"22","css_ul_margin_bottom":"25","css_ul_margin_left":"25","css_ul_style":"circle","css_ol_style":"decimal","css_ul_li_margin_bottom":"10","css_li_border_trbl":"top right bottom left","css_inputs_color":"#4d4d4d","css_inputs_font_size":"13","css_inputs_font_weight":"500","css_inputs_font_family":"Open Sans","css_inputs_line_height":"23","css_inputs_margin_bottom":"15","css_inputs_padding_vertical":"10","css_inputs_padding_horizontal":"15","css_inputs_bg_color":"#fff","css_inputs_border_color":"#ddd","css_inputs_border_width":"1","css_inputs_border_trbl":"top right bottom left","css_blockquote_font_size":"13","css_blockquote_font_weight":"400","css_blockquote_font_family":"Open Sans","css_blockquote_line_height":"22","css_blockquote_text_align":"left","css_blockquote_bg_img_repeat":"repeat","css_blockquote_bg_img_attch":"scroll","css_blockquote_bg_img_pos":"top left","css_blockquote_border_trbl":"top right bottom left","css_button_bg_color":"#5890e5","css_button_bg_color_hover":"#5890e5","css_button_border_color":"#5890e5","css_button_border_color_hover":"#5890e5","css_button_border_trbl":"top right bottom left","css_button_border_radius":"3","css_button_color":"#fff","css_button_color_hover":"#fff","css_button_font_size":"13","css_button_font_weight":"500","css_button_font_family":"Open Sans","css_button_line_height":"13","css_button_padding_vertical":"10","css_button_padding_horizontal":"15","css_res_t":"enabled","css_res_t_main_padding_horizontal":"30","css_res_t_main_font_size":"14","css_res_t_main_line_height":"22","css_res_t_main_paragraph_margin_bottom":"20","css_res_t_main_text_align":"center","css_res_t_h1_font_size":"13","css_res_t_h1_line_height":"13","css_res_t_h1_margin_bottom":"15","css_res_t_h1_text_align":"left","css_res_t_h2_font_size":"22","css_res_t_h2_line_height":"13","css_res_t_h2_margin_bottom":"25","css_res_t_h2_text_align":"center","css_res_t_h3_font_size":"13","css_res_t_h3_line_height":"13","css_res_t_h3_margin_bottom":"15","css_res_t_h3_text_align":"left","css_res_t_h4_font_size":"13","css_res_t_h4_line_height":"13","css_res_t_h4_margin_bottom":"15","css_res_t_h4_text_align":"left","css_res_t_h5_font_size":"13","css_res_t_h5_line_height":"13","css_res_t_h5_margin_bottom":"15","css_res_t_h5_text_align":"left","css_res_t_h6_font_size":"13","css_res_t_h6_line_height":"13","css_res_t_h6_margin_bottom":"15","css_res_t_h6_text_align":"left","css_res_t_li_font_size":"13","css_res_t_li_line_height":"22","css_res_t_ul_margin_bottom":"25","css_res_t_ul_margin_left":"25","css_res_t_ul_li_margin_bottom":"10","css_res_t_blockquote_font_size":"13","css_res_t_blockquote_line_height":"22","css_res_t_blockquote_text_align":"left","css_res_p":"enabled","css_res_ph_main_padding_horizontal":"30","css_res_ph_main_font_size":"13","css_res_ph_main_line_height":"22","css_res_p_main_paragraph_margin_bottom":"20","css_res_p_main_text_align":"center","css_res_ph_h1_font_size":"13","css_res_ph_h1_line_height":"13","css_res_ph_h1_margin_bottom":"15","css_res_p_h1_text_align":"left","css_res_ph_h2_font_size":"20","css_res_ph_h2_line_height":"24","css_res_p_h2_margin_bottom":"24","css_res_p_h2_text_align":"center","css_res_ph_h3_font_size":"13","css_res_ph_h3_line_height":"13","css_res_p_h3_margin_bottom":"15","css_res_p_h3_text_align":"left","css_res_ph_h4_font_size":"13","css_res_ph_h4_line_height":"13","css_res_p_h4_margin_bottom":"15","css_res_p_h4_text_align":"left","css_res_ph_h5_font_size":"13","css_res_ph_h5_line_height":"13","css_res_p_h5_margin_bottom":"15","css_res_p_h5_text_align":"left","css_res_ph_h6_font_size":"13","css_res_ph_h6_line_height":"13","css_res_p_h6_margin_bottom":"15","css_res_p_h6_text_align":"left","css_res_p_li_font_size":"13","css_res_p_li_line_height":"22","css_res_p_ul_margin_bottom":"25","css_res_p_ul_margin_left":"25","css_res_p_ul_li_margin_bottom":"10","css_res_p_blockquote_font_size":"13","css_res_p_blockquote_line_height":"22","css_res_p_blockquote_text_align":"left","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_load_preset":"none","module_instance_id":"1a34405e515","post_id":"5","dslc_m_size":"12","module_id":"DSLC_Text_Simple","element_type":"module","last":"yes","dslc_m_size_last":"yes","module_render_nonajax":"1"},{"css_show_on":"desktop tablet phone","title_link_target":"_self","icon_link_target":"_self","button_link":"#","button_target":"_self","button_2_target":"_self","elements":"image title content","text_align":"center","css_bg_img_repeat":"repeat","css_bg_img_attch":"scroll","css_bg_img_pos":"top left","css_border_color":"#000000","css_border_trbl":"top right bottom left","css_margin_bottom":"40","css_min_height":"0","css_wrapper_bg_img_repeat":"repeat","css_wrapper_bg_img_attch":"scroll","css_wrapper_bg_img_pos":"top left","css_wrapper_border_trbl":"top right bottom left","css_icon_text_align":"inherit","css_icon_bg_color":"#00a5df","css_icon_border_trbl":"top right bottom left","css_icon_border_radius":"100","css_icon_color":"#ffffff","icon_id":"comments","css_icon_margin_bottom":"25","icon_position":"above","css_icon_wrapper_width":"84","css_icon_width":"31","image_alt":"15","css_image_alt_align":"center","css_image_alt_border_trbl":"top right bottom left","css_image_alt_margin_bottom":"25","image_position":"above","css_title_text_align":"inherit","css_title_color":"#121035","css_title_font_size":"18","css_title_font_weight":"700","css_title_font_family":"Montserrat","css_title_line_height":"17","css_title_margin":"21","css_content_text_align":"inherit","css_content_color":"#2c2c2c","css_content_font_size":"15","css_content_font_weight":"400","css_content_font_family":"Lato","css_content_line_height":"23","css_content_right":"45","css_content_bottom":"28","css_content_left":"45","css_button_bg_color":"#00a5df","css_button_bg_color_hover":"#00a5df","css_button_border_trbl":"top right bottom left","css_button_border_color":"#d8d8d8","css_button_border_radius":"3","css_button_color":"#ffffff","css_button_color_hover":"#ffffff","css_button_font_size":"11","css_button_font_weight":"800","css_button_font_family":"Open Sans","button_pos":"bellow","css_button_padding_vertical":"13","css_button_padding_horizontal":"16","button_icon_id":"cog","css_button_icon_color":"#b0c8eb","css_button_icon_margin":"5","css_button_2_bg_color":"#5890e5","css_button_2_bg_color_hover":"#3e73c2","css_button_2_border_trbl":"top right bottom left","css_button_2_border_color":"#d8d8d8","css_button_2_border_radius":"3","css_button_2_color":"#ffffff","css_button_2_color_hover":"#ffffff","css_button_2_font_size":"11","css_button_2_font_weight":"800","css_button_2_font_family":"Open Sans","css_button_2_mleft":"5","css_button_2_padding_vertical":"13","css_button_2_padding_horizontal":"16","button_2_icon_id":"cog","css_button_2_icon_color":"#b0c8eb","css_button_2_icon_margin":"5","title":"BUSINESS","content":"This is just placeholder text. Hover over the module and click \\\"Edit Content\\\" to change it.","button_title":"CLICK TO EDIT","button_2_title":"CLICK TO EDIT","css_res_t":"disabled","css_res_t_content_width":"100","css_res_t_icon_wrapper_width":"84","css_res_t_icon_width":"31","css_res_t_title_font_size":"17","css_res_t_title_line_height":"17","css_res_t_title_margin":"21","css_res_t_content_font_size":"14","css_res_t_content_line_height":"23","css_res_t_content_margin":"28","css_res_t_button_font_size":"11","css_res_t_button_padding_vertical":"13","css_res_t_button_padding_horizontal":"16","css_res_t_button_icon_margin":"5","css_res_p":"enabled","css_res_p_margin_bottom":"30","css_res_p_content_width":"100","css_res_p_icon_wrapper_width":"84","css_res_p_icon_width":"31","css_res_p_title_font_size":"17","css_res_p_title_line_height":"17","css_res_p_title_margin":"21","css_res_p_content_font_size":"14","css_res_p_content_line_height":"23","css_res_p_content_margin":"28","css_res_p_button_font_size":"11","css_res_p_button_padding_vertical":"13","css_res_p_button_padding_horizontal":"16","css_res_p_button_icon_margin":"5","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_load_preset":"none","module_instance_id":"64b981beaec","post_id":"5","dslc_m_size":"4","module_id":"DSLC_Info_Box","element_type":"module","last":"no","dslc_m_size_last":"no","module_render_nonajax":"1"},{"css_show_on":"desktop tablet phone","title_link_target":"_self","icon_link_target":"_self","button_link":"#","button_target":"_self","button_2_target":"_self","elements":"image title content","text_align":"center","css_bg_img_repeat":"repeat","css_bg_img_attch":"scroll","css_bg_img_pos":"top left","css_border_color":"#000000","css_border_trbl":"top right bottom left","css_margin_bottom":"40","css_wrapper_bg_img_repeat":"repeat","css_wrapper_bg_img_attch":"scroll","css_wrapper_bg_img_pos":"top left","css_wrapper_border_trbl":"top right bottom left","css_icon_text_align":"inherit","css_icon_bg_color":"#00a5df","css_icon_border_trbl":"top right bottom left","css_icon_border_radius":"100","css_icon_color":"#ffffff","icon_id":"comments","css_icon_margin_bottom":"25","icon_position":"above","css_icon_wrapper_width":"84","css_icon_width":"31","image_alt":"14","css_image_alt_align":"center","css_image_alt_border_trbl":"top right bottom left","css_image_alt_margin_bottom":"25","image_position":"above","css_title_text_align":"inherit","css_title_color":"#121035","css_title_font_size":"18","css_title_font_weight":"700","css_title_font_family":"Montserrat","css_title_line_height":"17","css_title_margin":"21","css_content_text_align":"inherit","css_content_color":"#2c2c2c","css_content_font_size":"15","css_content_font_weight":"400","css_content_font_family":"Lato","css_content_line_height":"23","css_content_right":"45","css_content_bottom":"28","css_content_left":"45","css_button_bg_color":"#00a5df","css_button_bg_color_hover":"#00a5df","css_button_border_trbl":"top right bottom left","css_button_border_color":"#d8d8d8","css_button_border_radius":"3","css_button_color":"#ffffff","css_button_color_hover":"#ffffff","css_button_font_size":"11","css_button_font_weight":"800","css_button_font_family":"Open Sans","button_pos":"bellow","css_button_padding_vertical":"13","css_button_padding_horizontal":"16","button_icon_id":"cog","css_button_icon_color":"#b0c8eb","css_button_icon_margin":"5","css_button_2_bg_color":"#5890e5","css_button_2_bg_color_hover":"#3e73c2","css_button_2_border_trbl":"top right bottom left","css_button_2_border_color":"#d8d8d8","css_button_2_border_radius":"3","css_button_2_color":"#ffffff","css_button_2_color_hover":"#ffffff","css_button_2_font_size":"11","css_button_2_font_weight":"800","css_button_2_font_family":"Open Sans","css_button_2_mleft":"5","css_button_2_padding_vertical":"13","css_button_2_padding_horizontal":"16","button_2_icon_id":"cog","css_button_2_icon_color":"#b0c8eb","css_button_2_icon_margin":"5","title":"BUSINESS","content":"This is just placeholder text. Hover over the module and click \\\"Edit Content\\\" to change it.","button_title":"CLICK TO EDIT","button_2_title":"CLICK TO EDIT","css_res_t":"disabled","css_res_t_content_width":"100","css_res_t_icon_wrapper_width":"84","css_res_t_icon_width":"31","css_res_t_title_font_size":"17","css_res_t_title_line_height":"17","css_res_t_title_margin":"21","css_res_t_content_font_size":"14","css_res_t_content_line_height":"23","css_res_t_content_margin":"28","css_res_t_button_font_size":"11","css_res_t_button_padding_vertical":"13","css_res_t_button_padding_horizontal":"16","css_res_t_button_icon_margin":"5","css_res_p":"enabled","css_res_p_margin_bottom":"30","css_res_p_content_width":"100","css_res_p_icon_wrapper_width":"84","css_res_p_icon_width":"31","css_res_p_title_font_size":"17","css_res_p_title_line_height":"17","css_res_p_title_margin":"21","css_res_p_content_font_size":"14","css_res_p_content_line_height":"23","css_res_p_content_margin":"28","css_res_p_button_font_size":"11","css_res_p_button_padding_vertical":"13","css_res_p_button_padding_horizontal":"16","css_res_p_button_icon_margin":"5","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_load_preset":"none","module_instance_id":"rdg8riuv44o","post_id":"5","dslc_m_size":"4","module_id":"DSLC_Info_Box","element_type":"module","last":"no","dslc_m_size_last":"no","module_render_nonajax":"1"},{"css_show_on":"desktop tablet phone","title_link_target":"_self","icon_link_target":"_self","button_link":"#","button_target":"_self","button_2_target":"_self","elements":"image title content","text_align":"center","css_bg_img_repeat":"repeat","css_bg_img_attch":"scroll","css_bg_img_pos":"top left","css_border_color":"#000000","css_border_trbl":"top right bottom left","css_margin_bottom":"40","css_wrapper_bg_img_repeat":"repeat","css_wrapper_bg_img_attch":"scroll","css_wrapper_bg_img_pos":"top left","css_wrapper_border_trbl":"top right bottom left","css_icon_text_align":"inherit","css_icon_bg_color":"#00a5df","css_icon_border_trbl":"top right bottom left","css_icon_border_radius":"100","css_icon_color":"#ffffff","icon_id":"comments","css_icon_margin_bottom":"25","icon_position":"above","css_icon_wrapper_width":"84","css_icon_width":"31","image_alt":"13","css_image_alt_align":"center","css_image_alt_border_trbl":"top right bottom left","css_image_alt_margin_bottom":"25","image_position":"above","css_title_text_align":"inherit","css_title_color":"#121035","css_title_font_size":"18","css_title_font_weight":"700","css_title_font_family":"Montserrat","css_title_line_height":"17","css_title_margin":"21","css_content_text_align":"inherit","css_content_color":"#2c2c2c","css_content_font_size":"15","css_content_font_weight":"400","css_content_font_family":"Lato","css_content_line_height":"23","css_content_right":"45","css_content_bottom":"28","css_content_left":"45","css_button_bg_color":"#00a5df","css_button_bg_color_hover":"#00a5df","css_button_border_trbl":"top right bottom left","css_button_border_color":"#d8d8d8","css_button_border_radius":"3","css_button_color":"#ffffff","css_button_color_hover":"#ffffff","css_button_font_size":"11","css_button_font_weight":"800","css_button_font_family":"Open Sans","button_pos":"bellow","css_button_padding_vertical":"13","css_button_padding_horizontal":"16","button_icon_id":"cog","css_button_icon_color":"#b0c8eb","css_button_icon_margin":"5","css_button_2_bg_color":"#5890e5","css_button_2_bg_color_hover":"#3e73c2","css_button_2_border_trbl":"top right bottom left","css_button_2_border_color":"#d8d8d8","css_button_2_border_radius":"3","css_button_2_color":"#ffffff","css_button_2_color_hover":"#ffffff","css_button_2_font_size":"11","css_button_2_font_weight":"800","css_button_2_font_family":"Open Sans","css_button_2_mleft":"5","css_button_2_padding_vertical":"13","css_button_2_padding_horizontal":"16","button_2_icon_id":"cog","css_button_2_icon_color":"#b0c8eb","css_button_2_icon_margin":"5","title":"BUSINESS","content":"This is just placeholder text. Hover over the module and click \\\"Edit Content\\\" to change it.","button_title":"CLICK TO EDIT","button_2_title":"CLICK TO EDIT","css_res_t":"disabled","css_res_t_content_width":"100","css_res_t_icon_wrapper_width":"84","css_res_t_icon_width":"31","css_res_t_title_font_size":"17","css_res_t_title_line_height":"17","css_res_t_title_margin":"21","css_res_t_content_font_size":"14","css_res_t_content_line_height":"23","css_res_t_content_margin":"28","css_res_t_button_font_size":"11","css_res_t_button_padding_vertical":"13","css_res_t_button_padding_horizontal":"16","css_res_t_button_icon_margin":"5","css_res_p":"enabled","css_res_p_margin_bottom":"30","css_res_p_content_width":"100","css_res_p_icon_wrapper_width":"84","css_res_p_icon_width":"31","css_res_p_title_font_size":"17","css_res_p_title_line_height":"17","css_res_p_title_margin":"21","css_res_p_content_font_size":"14","css_res_p_content_line_height":"23","css_res_p_content_margin":"28","css_res_p_button_font_size":"11","css_res_p_button_padding_vertical":"13","css_res_p_button_padding_horizontal":"16","css_res_p_button_icon_margin":"5","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_load_preset":"none","module_instance_id":"75v6j1rmgm4","post_id":"5","dslc_m_size":"4","module_id":"DSLC_Info_Box","element_type":"module","last":"yes","dslc_m_size_last":"yes","module_render_nonajax":"1"},{"css_show_on":"desktop tablet phone","title_link_target":"_self","icon_link_target":"_self","button_link":"#","button_target":"_self","button_2_target":"_self","elements":"image title content","text_align":"center","css_bg_img_repeat":"repeat","css_bg_img_attch":"scroll","css_bg_img_pos":"top left","css_border_color":"#000000","css_border_trbl":"top right bottom left","css_wrapper_bg_img_repeat":"repeat","css_wrapper_bg_img_attch":"scroll","css_wrapper_bg_img_pos":"top left","css_wrapper_border_trbl":"top right bottom left","css_icon_text_align":"inherit","css_icon_bg_color":"#00a5df","css_icon_border_trbl":"top right bottom left","css_icon_border_radius":"100","css_icon_color":"#ffffff","icon_id":"comments","css_icon_margin_bottom":"25","icon_position":"above","css_icon_wrapper_width":"84","css_icon_width":"31","image_alt":"12","css_image_alt_align":"center","css_image_alt_border_trbl":"top right bottom left","css_image_alt_margin_bottom":"25","image_position":"above","css_title_text_align":"inherit","css_title_color":"#121035","css_title_font_size":"18","css_title_font_weight":"700","css_title_font_family":"Montserrat","css_title_line_height":"17","css_title_margin":"21","css_content_text_align":"inherit","css_content_color":"#2c2c2c","css_content_font_size":"15","css_content_font_weight":"400","css_content_font_family":"Lato","css_content_line_height":"23","css_content_right":"45","css_content_bottom":"28","css_content_left":"45","css_button_bg_color":"#00a5df","css_button_bg_color_hover":"#00a5df","css_button_border_trbl":"top right bottom left","css_button_border_color":"#d8d8d8","css_button_border_radius":"3","css_button_color":"#ffffff","css_button_color_hover":"#ffffff","css_button_font_size":"11","css_button_font_weight":"800","css_button_font_family":"Open Sans","button_pos":"bellow","css_button_padding_vertical":"13","css_button_padding_horizontal":"16","button_icon_id":"cog","css_button_icon_color":"#b0c8eb","css_button_icon_margin":"5","css_button_2_bg_color":"#5890e5","css_button_2_bg_color_hover":"#3e73c2","css_button_2_border_trbl":"top right bottom left","css_button_2_border_color":"#d8d8d8","css_button_2_border_radius":"3","css_button_2_color":"#ffffff","css_button_2_color_hover":"#ffffff","css_button_2_font_size":"11","css_button_2_font_weight":"800","css_button_2_font_family":"Open Sans","css_button_2_mleft":"5","css_button_2_padding_vertical":"13","css_button_2_padding_horizontal":"16","button_2_icon_id":"cog","css_button_2_icon_color":"#b0c8eb","css_button_2_icon_margin":"5","title":"BUSINESS","content":"This is just placeholder text. Hover over the module and click \\\"Edit Content\\\" to change it.","button_title":"CLICK TO EDIT","button_2_title":"CLICK TO EDIT","css_res_t":"disabled","css_res_t_content_width":"100","css_res_t_icon_wrapper_width":"84","css_res_t_icon_width":"31","css_res_t_title_font_size":"17","css_res_t_title_line_height":"17","css_res_t_title_margin":"21","css_res_t_content_font_size":"14","css_res_t_content_line_height":"23","css_res_t_content_margin":"28","css_res_t_button_font_size":"11","css_res_t_button_padding_vertical":"13","css_res_t_button_padding_horizontal":"16","css_res_t_button_icon_margin":"5","css_res_p":"enabled","css_res_p_margin_bottom":"30","css_res_p_content_width":"100","css_res_p_icon_wrapper_width":"84","css_res_p_icon_width":"31","css_res_p_title_font_size":"17","css_res_p_title_line_height":"17","css_res_p_title_margin":"21","css_res_p_content_font_size":"14","css_res_p_content_line_height":"23","css_res_p_content_margin":"28","css_res_p_button_font_size":"11","css_res_p_button_padding_vertical":"13","css_res_p_button_padding_horizontal":"16","css_res_p_button_icon_margin":"5","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_load_preset":"none","module_instance_id":"b89a465s72s","post_id":"5","dslc_m_size":"4","module_id":"DSLC_Info_Box","element_type":"module","last":"no","dslc_m_size_last":"no","module_render_nonajax":"1"},{"css_show_on":"desktop tablet phone","title_link_target":"_self","icon_link_target":"_self","button_link":"#","button_target":"_self","button_2_target":"_self","elements":"image title content","text_align":"center","css_bg_img_repeat":"repeat","css_bg_img_attch":"scroll","css_bg_img_pos":"top left","css_border_color":"#000000","css_border_trbl":"top right bottom left","css_wrapper_bg_img_repeat":"repeat","css_wrapper_bg_img_attch":"scroll","css_wrapper_bg_img_pos":"top left","css_wrapper_border_trbl":"top right bottom left","css_icon_text_align":"inherit","css_icon_bg_color":"#00a5df","css_icon_border_trbl":"top right bottom left","css_icon_border_radius":"100","css_icon_color":"#ffffff","icon_id":"comments","css_icon_margin_bottom":"25","icon_position":"above","css_icon_wrapper_width":"84","css_icon_width":"31","image_alt":"11","css_image_alt_align":"center","css_image_alt_border_trbl":"top right bottom left","css_image_alt_margin_bottom":"25","image_position":"above","css_title_text_align":"inherit","css_title_color":"#121035","css_title_font_size":"18","css_title_font_weight":"700","css_title_font_family":"Montserrat","css_title_line_height":"17","css_title_margin":"21","css_content_text_align":"inherit","css_content_color":"#2c2c2c","css_content_font_size":"15","css_content_font_weight":"400","css_content_font_family":"Lato","css_content_line_height":"23","css_content_right":"45","css_content_bottom":"28","css_content_left":"45","css_button_bg_color":"#00a5df","css_button_bg_color_hover":"#00a5df","css_button_border_trbl":"top right bottom left","css_button_border_color":"#d8d8d8","css_button_border_radius":"3","css_button_color":"#ffffff","css_button_color_hover":"#ffffff","css_button_font_size":"11","css_button_font_weight":"800","css_button_font_family":"Open Sans","button_pos":"bellow","css_button_padding_vertical":"13","css_button_padding_horizontal":"16","button_icon_id":"cog","css_button_icon_color":"#b0c8eb","css_button_icon_margin":"5","css_button_2_bg_color":"#5890e5","css_button_2_bg_color_hover":"#3e73c2","css_button_2_border_trbl":"top right bottom left","css_button_2_border_color":"#d8d8d8","css_button_2_border_radius":"3","css_button_2_color":"#ffffff","css_button_2_color_hover":"#ffffff","css_button_2_font_size":"11","css_button_2_font_weight":"800","css_button_2_font_family":"Open Sans","css_button_2_mleft":"5","css_button_2_padding_vertical":"13","css_button_2_padding_horizontal":"16","button_2_icon_id":"cog","css_button_2_icon_color":"#b0c8eb","css_button_2_icon_margin":"5","title":"BUSINESS","content":"This is just placeholder text. Hover over the module and click \\\"Edit Content\\\" to change it.","button_title":"CLICK TO EDIT","button_2_title":"CLICK TO EDIT","css_res_t":"disabled","css_res_t_content_width":"100","css_res_t_icon_wrapper_width":"84","css_res_t_icon_width":"31","css_res_t_title_font_size":"17","css_res_t_title_line_height":"17","css_res_t_title_margin":"21","css_res_t_content_font_size":"14","css_res_t_content_line_height":"23","css_res_t_content_margin":"28","css_res_t_button_font_size":"11","css_res_t_button_padding_vertical":"13","css_res_t_button_padding_horizontal":"16","css_res_t_button_icon_margin":"5","css_res_p":"enabled","css_res_p_margin_bottom":"30","css_res_p_content_width":"100","css_res_p_icon_wrapper_width":"84","css_res_p_icon_width":"31","css_res_p_title_font_size":"17","css_res_p_title_line_height":"17","css_res_p_title_margin":"21","css_res_p_content_font_size":"14","css_res_p_content_line_height":"23","css_res_p_content_margin":"28","css_res_p_button_font_size":"11","css_res_p_button_padding_vertical":"13","css_res_p_button_padding_horizontal":"16","css_res_p_button_icon_margin":"5","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_load_preset":"none","module_instance_id":"d95s1f9jcik","post_id":"5","dslc_m_size":"4","module_id":"DSLC_Info_Box","element_type":"module","last":"no","dslc_m_size_last":"no","module_render_nonajax":"1"},{"css_show_on":"desktop tablet phone","title_link_target":"_self","icon_link_target":"_self","button_link":"#","button_target":"_self","button_2_target":"_self","elements":"image title content","text_align":"center","css_bg_img_repeat":"repeat","css_bg_img_attch":"scroll","css_bg_img_pos":"top left","css_border_color":"#000000","css_border_trbl":"top right bottom left","css_wrapper_bg_img_repeat":"repeat","css_wrapper_bg_img_attch":"scroll","css_wrapper_bg_img_pos":"top left","css_wrapper_border_trbl":"top right bottom left","css_icon_text_align":"inherit","css_icon_bg_color":"#00a5df","css_icon_border_trbl":"top right bottom left","css_icon_border_radius":"100","css_icon_color":"#ffffff","icon_id":"comments","css_icon_margin_bottom":"25","icon_position":"above","css_icon_wrapper_width":"84","css_icon_width":"31","image_alt":"10","css_image_alt_align":"center","css_image_alt_border_trbl":"top right bottom left","css_image_alt_margin_bottom":"25","image_position":"above","css_title_text_align":"inherit","css_title_color":"#121035","css_title_font_size":"18","css_title_font_weight":"700","css_title_font_family":"Montserrat","css_title_line_height":"17","css_title_margin":"21","css_content_text_align":"inherit","css_content_color":"#2c2c2c","css_content_font_size":"15","css_content_font_weight":"400","css_content_font_family":"Lato","css_content_line_height":"23","css_content_right":"45","css_content_bottom":"28","css_content_left":"45","css_button_bg_color":"#00a5df","css_button_bg_color_hover":"#00a5df","css_button_border_trbl":"top right bottom left","css_button_border_color":"#d8d8d8","css_button_border_radius":"3","css_button_color":"#ffffff","css_button_color_hover":"#ffffff","css_button_font_size":"11","css_button_font_weight":"800","css_button_font_family":"Open Sans","button_pos":"bellow","css_button_padding_vertical":"13","css_button_padding_horizontal":"16","button_icon_id":"cog","css_button_icon_color":"#b0c8eb","css_button_icon_margin":"5","css_button_2_bg_color":"#5890e5","css_button_2_bg_color_hover":"#3e73c2","css_button_2_border_trbl":"top right bottom left","css_button_2_border_color":"#d8d8d8","css_button_2_border_radius":"3","css_button_2_color":"#ffffff","css_button_2_color_hover":"#ffffff","css_button_2_font_size":"11","css_button_2_font_weight":"800","css_button_2_font_family":"Open Sans","css_button_2_mleft":"5","css_button_2_padding_vertical":"13","css_button_2_padding_horizontal":"16","button_2_icon_id":"cog","css_button_2_icon_color":"#b0c8eb","css_button_2_icon_margin":"5","title":"BUSINESS","content":"This is just placeholder text. Hover over the module and click \\\"Edit Content\\\" to change it.","button_title":"CLICK TO EDIT","button_2_title":"CLICK TO EDIT","css_res_t":"disabled","css_res_t_content_width":"100","css_res_t_icon_wrapper_width":"84","css_res_t_icon_width":"31","css_res_t_title_font_size":"17","css_res_t_title_line_height":"17","css_res_t_title_margin":"21","css_res_t_content_font_size":"14","css_res_t_content_line_height":"23","css_res_t_content_margin":"28","css_res_t_button_font_size":"11","css_res_t_button_padding_vertical":"13","css_res_t_button_padding_horizontal":"16","css_res_t_button_icon_margin":"5","css_res_p":"enabled","css_res_p_margin_bottom":"30","css_res_p_content_width":"100","css_res_p_icon_wrapper_width":"84","css_res_p_icon_width":"31","css_res_p_title_font_size":"17","css_res_p_title_line_height":"17","css_res_p_title_margin":"21","css_res_p_content_font_size":"14","css_res_p_content_line_height":"23","css_res_p_content_margin":"28","css_res_p_button_font_size":"11","css_res_p_button_padding_vertical":"13","css_res_p_button_padding_horizontal":"16","css_res_p_button_icon_margin":"5","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_load_preset":"none","module_instance_id":"pq8ekmi1l0s","post_id":"5","dslc_m_size":"4","module_id":"DSLC_Info_Box","element_type":"module","last":"yes","dslc_m_size_last":"yes","module_render_nonajax":"1"},{"css_show_on":"desktop tablet phone","button_text":"KNOW MORE","button_url":"#","button_target":"_self","css_align":"center","css_bg_color":"#ff6823","css_bg_color_hover":"rgba(0,0,0,0)","css_border_color":"#ff6823","css_border_color_hover":"#ff6823","css_border_width":"2","css_border_trbl":"top right bottom left ","css_border_radius":"30","css_margin_top":"36","css_padding_vertical":"16","css_padding_horizontal":"30","css_width":"inline-block","css_button_color":"#ffffff","css_button_color_hover":"#ff6823","css_button_font_size":"15","css_button_font_style":"normal","css_button_font_weight":"700","css_button_font_family":"Montserrat","button_state":"disabled","icon_pos":"left","button_icon_id":"link","css_icon_margin":"5","css_wrapper_bg_img_repeat":"repeat","css_wrapper_bg_img_attch":"scroll","css_wrapper_bg_img_pos":"top left","css_wrapper_border_trbl":"top right bottom left","css_res_t":"disabled","css_res_t_padding_vertical":"12","css_res_t_padding_horizontal":"12","css_res_t_button_font_size":"11","css_res_t_icon_margin":"5","css_res_t_align":"left","css_res_p":"disabled","css_res_p_padding_vertical":"12","css_res_p_padding_horizontal":"12","css_res_p_button_font_size":"11","css_res_p_icon_margin":"5","css_res_ph_align":"left","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_load_preset":"none","module_instance_id":"3lpc23s7uuk","post_id":"5","dslc_m_size":"12","module_id":"DSLC_Button","element_type":"module","last":"yes","dslc_m_size_last":"yes","module_render_nonajax":"1"}]}],"dslca-img-url":""},{"element_type":"row","columns_spacing":"spacing","custom_class":"bb_res","show_on":"desktop tablet phone","section_instance_id":"a92bcc71b65","custom_id":"","type":"wrapper","bg_color":"","bg_image_thumb":"disabled","bg_image":"80","bg_image_repeat":"repeat","bg_image_position":"center center","bg_image_attachment":"scroll","bg_image_size":"cover","bg_video":"","bg_video_overlay_color":"#000000","bg_video_overlay_opacity":"0.5","border_color":"","border_width":"0","border_style":"solid","border":"top right bottom left","margin_h":"0","margin_b":"0","padding":"80","padding_h":"0","content":[{"element_type":"module_area","last":"no","first":"yes","size":"8","content":[{"css_show_on":"desktop tablet phone","content":"
INTRODUCTION

Lorem Ipsum dolor sit amet sit amet

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

Tempor incididunt ut labore et dolore magna aliqua. dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

","css_custom":"enabled","css_margin_bottom":"0","css_main_padding_vertical":"0","css_main_padding_horizontal":"0","css_main_bg_img_repeat":"repeat","css_main_bg_img_attch":"scroll","css_main_bg_img_pos":"top left","css_main_bg_img_size":"auto","css_main_border_trbl":"top right bottom left","css_main_color":"#ffffff","css_main_font_size":"15","css_main_font_weight":"400","css_main_font_family":"Montserrat","css_main_font_style":"normal","css_main_line_height":"22","css_main_margin_bottom":"25","css_main_text_align":"left","css_h1_font_size":"25","css_h1_font_weight":"400","css_h1_font_family":"Open Sans","css_h1_font_style":"normal","css_h1_line_height":"35","css_h1_margin_bottom":"15","css_h1_text_align":"left","css_h1_border_trbl":"top right bottom left","css_h2_color":"#ffffff","css_h2_font_size":"47","css_h2_font_weight":"600","css_h2_font_family":"Montserrat","css_h2_font_style":"normal","css_h2_line_height":"60","css_h2_margin_bottom":"30","css_h2_text_align":"left","css_h2_border_trbl":"top right bottom left","css_h3_font_size":"21","css_h3_font_weight":"400","css_h3_font_family":"Open Sans","css_h3_font_style":"normal","css_h3_line_height":"31","css_h3_margin_bottom":"15","css_h3_text_align":"left","css_h3_border_trbl":"top right bottom left","css_h4_font_size":"19","css_h4_font_weight":"400","css_h4_font_family":"Open Sans","css_h4_font_style":"normal","css_h4_line_height":"29","css_h4_margin_bottom":"15","css_h4_text_align":"left","css_h4_border_trbl":"top right bottom left","css_h5_color":"#ffffff","css_h5_font_size":"15","css_h5_font_weight":"500","css_h5_font_family":"Montserrat","css_h5_font_style":"normal","css_h5_line_height":"15","css_h5_text_align":"left","css_h5_border_trbl":"top right bottom left","css_h6_font_size":"15","css_h6_font_weight":"400","css_h6_font_family":"Open Sans","css_h6_font_style":"normal","css_h6_line_height":"25","css_h6_margin_bottom":"15","css_h6_text_align":"left","css_h6_border_trbl":"top right bottom left","css_li_color":"#5b5b5b","css_li_font_size":"14","css_li_font_weight":"400","css_li_font_family":"Open Sans","css_li_line_height":"22","css_ul_margin_bottom":"25","css_ul_margin_left":"25","css_ul_style":"circle","css_ol_style":"decimal","css_ul_li_margin_bottom":"10","css_li_border_trbl":"top right bottom left","css_inputs_color":"#4d4d4d","css_inputs_font_size":"13","css_inputs_font_weight":"500","css_inputs_font_family":"Open Sans","css_inputs_line_height":"23","css_inputs_margin_bottom":"15","css_inputs_padding_vertical":"10","css_inputs_padding_horizontal":"15","css_inputs_bg_color":"#fff","css_inputs_border_color":"#ddd","css_inputs_border_width":"1","css_inputs_border_trbl":"top right bottom left","css_blockquote_font_size":"13","css_blockquote_font_weight":"400","css_blockquote_font_family":"Open Sans","css_blockquote_line_height":"22","css_blockquote_text_align":"left","css_blockquote_bg_img_repeat":"repeat","css_blockquote_bg_img_attch":"scroll","css_blockquote_bg_img_pos":"top left","css_blockquote_border_trbl":"top right bottom left","css_button_bg_color":"#5890e5","css_button_bg_color_hover":"#5890e5","css_button_border_color":"#5890e5","css_button_border_color_hover":"#5890e5","css_button_border_trbl":"top right bottom left","css_button_border_radius":"3","css_button_color":"#fff","css_button_color_hover":"#fff","css_button_font_size":"13","css_button_font_weight":"500","css_button_font_family":"Open Sans","css_button_line_height":"13","css_button_padding_vertical":"10","css_button_padding_horizontal":"15","css_res_t":"enabled","css_res_t_main_padding_horizontal":"30","css_res_t_main_font_size":"14","css_res_t_main_line_height":"22","css_res_t_main_paragraph_margin_bottom":"20","css_res_t_main_text_align":"center","css_res_t_h1_font_size":"13","css_res_t_h1_line_height":"13","css_res_t_h1_margin_bottom":"15","css_res_t_h1_text_align":"left","css_res_t_h2_font_size":"22","css_res_t_h2_line_height":"13","css_res_t_h2_margin_bottom":"25","css_res_t_h2_text_align":"center","css_res_t_h3_font_size":"13","css_res_t_h3_line_height":"13","css_res_t_h3_margin_bottom":"15","css_res_t_h3_text_align":"left","css_res_t_h4_font_size":"13","css_res_t_h4_line_height":"13","css_res_t_h4_margin_bottom":"15","css_res_t_h4_text_align":"left","css_res_t_h5_font_size":"13","css_res_t_h5_line_height":"13","css_res_t_h5_margin_bottom":"15","css_res_t_h5_text_align":"left","css_res_t_h6_font_size":"13","css_res_t_h6_line_height":"13","css_res_t_h6_margin_bottom":"15","css_res_t_h6_text_align":"left","css_res_t_li_font_size":"13","css_res_t_li_line_height":"22","css_res_t_ul_margin_bottom":"25","css_res_t_ul_margin_left":"25","css_res_t_ul_li_margin_bottom":"10","css_res_t_blockquote_font_size":"13","css_res_t_blockquote_line_height":"22","css_res_t_blockquote_text_align":"left","css_res_p":"enabled","css_res_ph_main_padding_horizontal":"30","css_res_ph_main_font_size":"13","css_res_ph_main_line_height":"22","css_res_p_main_paragraph_margin_bottom":"20","css_res_p_main_text_align":"center","css_res_ph_h1_font_size":"13","css_res_ph_h1_line_height":"13","css_res_ph_h1_margin_bottom":"15","css_res_p_h1_text_align":"left","css_res_ph_h2_font_size":"20","css_res_ph_h2_line_height":"24","css_res_p_h2_margin_bottom":"24","css_res_p_h2_text_align":"center","css_res_ph_h3_font_size":"13","css_res_ph_h3_line_height":"13","css_res_p_h3_margin_bottom":"15","css_res_p_h3_text_align":"left","css_res_ph_h4_font_size":"13","css_res_ph_h4_line_height":"13","css_res_p_h4_margin_bottom":"15","css_res_p_h4_text_align":"left","css_res_ph_h5_font_size":"13","css_res_ph_h5_line_height":"13","css_res_p_h5_margin_bottom":"15","css_res_p_h5_text_align":"left","css_res_ph_h6_font_size":"13","css_res_ph_h6_line_height":"13","css_res_p_h6_margin_bottom":"15","css_res_p_h6_text_align":"left","css_res_p_li_font_size":"13","css_res_p_li_line_height":"22","css_res_p_ul_margin_bottom":"25","css_res_p_ul_margin_left":"25","css_res_p_ul_li_margin_bottom":"10","css_res_p_blockquote_font_size":"13","css_res_p_blockquote_line_height":"22","css_res_p_blockquote_text_align":"left","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_load_preset":"none","module_instance_id":"e8jgaqpud","post_id":"5","dslc_m_size":"12","module_id":"DSLC_Text_Simple","element_type":"module","last":"yes","dslc_m_size_last":"yes","module_render_nonajax":"1"},{"css_show_on":"desktop tablet phone","button_text":"KNOW MORE","button_url":"#","button_target":"_self","css_align":"left","css_bg_color":"#471262","css_bg_color_hover":"rgba(0,0,0,0)","css_border_color":"#471262","css_border_color_hover":"#471262","css_border_width":"2","css_border_trbl":"top right bottom left ","css_border_radius":"30","css_margin_top":"36","css_padding_vertical":"16","css_padding_horizontal":"30","css_width":"inline-block","css_button_color":"#ffffff","css_button_color_hover":"#ffffff","css_button_font_size":"15","css_button_font_style":"normal","css_button_font_weight":"700","css_button_font_family":"Montserrat","button_state":"disabled","icon_pos":"left","button_icon_id":"link","css_icon_margin":"5","css_wrapper_bg_img_repeat":"repeat","css_wrapper_bg_img_attch":"scroll","css_wrapper_bg_img_pos":"top left","css_wrapper_border_trbl":"top right bottom left","css_res_t":"disabled","css_res_t_padding_vertical":"12","css_res_t_padding_horizontal":"12","css_res_t_button_font_size":"11","css_res_t_icon_margin":"5","css_res_t_align":"left","css_res_p":"disabled","css_res_p_padding_vertical":"12","css_res_p_padding_horizontal":"12","css_res_p_button_font_size":"11","css_res_p_icon_margin":"5","css_res_ph_align":"left","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_load_preset":"none","module_instance_id":"1m5e5coda8","post_id":"5","dslc_m_size":"12","module_id":"DSLC_Button","element_type":"module","last":"yes","dslc_m_size_last":"yes","module_render_nonajax":"1"},{"css_show_on":"desktop tablet phone","css_custom":"enabled","css_margin_bottom":"40","css_main_bg_img_repeat":"repeat","css_main_bg_img_attch":"scroll","css_main_bg_img_pos":"top left","css_main_bg_img_size":"auto","css_main_border_trbl":"top right bottom left","css_main_color":"#ffffff","css_main_font_size":"15","css_main_font_weight":"400","css_main_font_family":"Montserrat","css_main_font_style":"normal","css_main_line_height":"22","css_main_margin_bottom":"25","css_main_text_align":"left","css_h1_font_size":"25","css_h1_font_weight":"400","css_h1_font_family":"Open Sans","css_h1_font_style":"normal","css_h1_line_height":"35","css_h1_margin_bottom":"15","css_h1_text_align":"left","css_h1_border_trbl":"top right bottom left","css_h2_color":"#ffffff","css_h2_font_size":"47","css_h2_font_weight":"600","css_h2_font_family":"Montserrat","css_h2_font_style":"normal","css_h2_line_height":"60","css_h2_margin_bottom":"30","css_h2_text_align":"left","css_h2_border_trbl":"top right bottom left","css_h3_font_size":"21","css_h3_font_weight":"400","css_h3_font_family":"Open Sans","css_h3_font_style":"normal","css_h3_line_height":"31","css_h3_margin_bottom":"15","css_h3_text_align":"left","css_h3_border_trbl":"top right bottom left","css_h4_font_size":"19","css_h4_font_weight":"400","css_h4_font_family":"Open Sans","css_h4_font_style":"normal","css_h4_line_height":"29","css_h4_margin_bottom":"15","css_h4_text_align":"left","css_h4_border_trbl":"top right bottom left","css_h5_color":"#ffffff","css_h5_font_size":"15","css_h5_font_weight":"500","css_h5_font_family":"Montserrat","css_h5_font_style":"normal","css_h5_line_height":"15","css_h5_text_align":"left","css_h5_border_trbl":"top right bottom left","css_h6_font_size":"15","css_h6_font_weight":"400","css_h6_font_family":"Open Sans","css_h6_font_style":"normal","css_h6_line_height":"25","css_h6_margin_bottom":"15","css_h6_text_align":"left","css_h6_border_trbl":"top right bottom left","css_li_color":"#5b5b5b","css_li_font_size":"14","css_li_font_weight":"400","css_li_font_family":"Open Sans","css_li_line_height":"22","css_ul_margin_bottom":"25","css_ul_margin_left":"25","css_ul_style":"circle","css_ol_style":"decimal","css_ul_li_margin_bottom":"10","css_li_border_trbl":"top right bottom left","css_inputs_color":"#4d4d4d","css_inputs_font_size":"13","css_inputs_font_weight":"500","css_inputs_font_family":"Open Sans","css_inputs_line_height":"23","css_inputs_margin_bottom":"15","css_inputs_padding_vertical":"10","css_inputs_padding_horizontal":"15","css_inputs_bg_color":"#fff","css_inputs_border_color":"#ddd","css_inputs_border_width":"1","css_inputs_border_trbl":"top right bottom left","css_blockquote_font_size":"13","css_blockquote_font_weight":"400","css_blockquote_font_family":"Open Sans","css_blockquote_line_height":"22","css_blockquote_text_align":"left","css_blockquote_bg_img_repeat":"repeat","css_blockquote_bg_img_attch":"scroll","css_blockquote_bg_img_pos":"top left","css_blockquote_border_trbl":"top right bottom left","css_button_bg_color":"#5890e5","css_button_bg_color_hover":"#5890e5","css_button_border_color":"#5890e5","css_button_border_color_hover":"#5890e5","css_button_border_trbl":"top right bottom left","css_button_border_radius":"3","css_button_color":"#fff","css_button_color_hover":"#fff","css_button_font_size":"13","css_button_font_weight":"500","css_button_font_family":"Open Sans","css_button_line_height":"13","css_button_padding_vertical":"10","css_button_padding_horizontal":"15","css_res_t":"enabled","css_res_t_main_padding_horizontal":"30","css_res_t_main_font_size":"14","css_res_t_main_line_height":"22","css_res_t_main_paragraph_margin_bottom":"20","css_res_t_main_text_align":"center","css_res_t_h1_font_size":"13","css_res_t_h1_line_height":"13","css_res_t_h1_margin_bottom":"15","css_res_t_h1_text_align":"left","css_res_t_h2_font_size":"22","css_res_t_h2_line_height":"13","css_res_t_h2_margin_bottom":"25","css_res_t_h2_text_align":"center","css_res_t_h3_font_size":"13","css_res_t_h3_line_height":"13","css_res_t_h3_margin_bottom":"15","css_res_t_h3_text_align":"left","css_res_t_h4_font_size":"13","css_res_t_h4_line_height":"13","css_res_t_h4_margin_bottom":"15","css_res_t_h4_text_align":"left","css_res_t_h5_font_size":"13","css_res_t_h5_line_height":"13","css_res_t_h5_margin_bottom":"15","css_res_t_h5_text_align":"left","css_res_t_h6_font_size":"13","css_res_t_h6_line_height":"13","css_res_t_h6_margin_bottom":"15","css_res_t_h6_text_align":"left","css_res_t_li_font_size":"13","css_res_t_li_line_height":"22","css_res_t_ul_margin_bottom":"25","css_res_t_ul_margin_left":"25","css_res_t_ul_li_margin_bottom":"10","css_res_t_blockquote_font_size":"13","css_res_t_blockquote_line_height":"22","css_res_t_blockquote_text_align":"left","css_res_p":"enabled","css_res_ph_main_padding_horizontal":"30","css_res_ph_main_font_size":"13","css_res_ph_main_line_height":"22","css_res_p_main_paragraph_margin_bottom":"20","css_res_p_main_text_align":"center","css_res_ph_h1_font_size":"13","css_res_ph_h1_line_height":"13","css_res_ph_h1_margin_bottom":"15","css_res_p_h1_text_align":"left","css_res_ph_h2_font_size":"20","css_res_ph_h2_line_height":"24","css_res_p_h2_margin_bottom":"24","css_res_p_h2_text_align":"center","css_res_ph_h3_font_size":"13","css_res_ph_h3_line_height":"13","css_res_p_h3_margin_bottom":"15","css_res_p_h3_text_align":"left","css_res_ph_h4_font_size":"13","css_res_ph_h4_line_height":"13","css_res_p_h4_margin_bottom":"15","css_res_p_h4_text_align":"left","css_res_ph_h5_font_size":"13","css_res_ph_h5_line_height":"13","css_res_p_h5_margin_bottom":"15","css_res_p_h5_text_align":"left","css_res_ph_h6_font_size":"13","css_res_ph_h6_line_height":"13","css_res_p_h6_margin_bottom":"15","css_res_p_h6_text_align":"left","css_res_p_li_font_size":"13","css_res_p_li_line_height":"22","css_res_p_ul_margin_bottom":"25","css_res_p_ul_margin_left":"25","css_res_p_ul_li_margin_bottom":"10","css_res_p_blockquote_font_size":"13","css_res_p_blockquote_line_height":"22","css_res_p_blockquote_text_align":"left","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_load_preset":"none","module_instance_id":"kn2j9iscck8","post_id":"5","dslc_m_size":"4","module_id":"DSLC_Text_Simple","element_type":"module","last":"no","dslc_m_size_last":"no","module_render_nonajax":"1"}]},{"element_type":"module_area","last":"yes","first":"no","size":"4","content":[{"css_show_on":"desktop tablet phone","title_link_target":"_self","icon_link_target":"_self","button_link":"#","button_target":"_self","button_2_target":"_self","elements":"icon title content","text_align":"center","css_bg_img_repeat":"repeat","css_bg_img_attch":"scroll","css_bg_img_pos":"top left","css_border_color":"#000000","css_border_trbl":"top right bottom left","css_wrapper_bg_img_repeat":"repeat","css_wrapper_bg_img_attch":"scroll","css_wrapper_bg_img_pos":"top left","css_wrapper_border_trbl":"top right bottom left","css_icon_text_align":"inherit","css_icon_border_trbl":"top right bottom left","css_icon_color":"#ffffff","icon_id":"angellist","css_icon_margin_bottom":"25","icon_position":"aside","css_icon_wrapper_width":"90","css_icon_width":"70","css_image_alt_align":"center","css_image_alt_border_trbl":"top right bottom left","css_image_alt_margin_bottom":"25","image_position":"above","css_title_text_align":"left","css_title_color":"#ff6823","css_title_font_size":"80","css_title_font_weight":"800","css_title_font_family":"Lato","css_title_line_height":"80","css_content_text_align":"left","css_content_color":"#ffffff","css_content_font_size":"16","css_content_font_weight":"400","css_content_font_family":"Lato","css_content_line_height":"23","css_content_bottom":"28","css_button_bg_color":"#5890e5","css_button_bg_color_hover":"#3e73c2","css_button_border_trbl":"top right bottom left","css_button_border_color":"#d8d8d8","css_button_border_radius":"3","css_button_color":"#ffffff","css_button_color_hover":"#ffffff","css_button_font_size":"11","css_button_font_weight":"800","css_button_font_family":"Open Sans","button_pos":"bellow","css_button_padding_vertical":"13","css_button_padding_horizontal":"16","button_icon_id":"cog","css_button_icon_color":"#b0c8eb","css_button_icon_margin":"5","css_button_2_bg_color":"#5890e5","css_button_2_bg_color_hover":"#3e73c2","css_button_2_border_trbl":"top right bottom left","css_button_2_border_color":"#d8d8d8","css_button_2_border_radius":"3","css_button_2_color":"#ffffff","css_button_2_color_hover":"#ffffff","css_button_2_font_size":"11","css_button_2_font_weight":"800","css_button_2_font_family":"Open Sans","css_button_2_mleft":"5","css_button_2_padding_vertical":"13","css_button_2_padding_horizontal":"16","button_2_icon_id":"cog","css_button_2_icon_color":"#b0c8eb","css_button_2_icon_margin":"5","title":"07","content":"

YEARS OF EXPERIENCE

","button_title":"CLICK TO EDIT","button_2_title":"CLICK TO EDIT","css_res_t":"disabled","css_res_t_content_width":"100","css_res_t_icon_wrapper_width":"84","css_res_t_icon_width":"31","css_res_t_title_font_size":"17","css_res_t_title_line_height":"17","css_res_t_title_margin":"21","css_res_t_content_font_size":"14","css_res_t_content_line_height":"23","css_res_t_content_margin":"28","css_res_t_button_font_size":"11","css_res_t_button_padding_vertical":"13","css_res_t_button_padding_horizontal":"16","css_res_t_button_icon_margin":"5","css_res_p":"disabled","css_res_p_content_width":"100","css_res_p_icon_wrapper_width":"84","css_res_p_icon_width":"31","css_res_p_title_font_size":"17","css_res_p_title_line_height":"17","css_res_p_title_margin":"21","css_res_p_content_font_size":"14","css_res_p_content_line_height":"23","css_res_p_content_margin":"28","css_res_p_button_font_size":"11","css_res_p_button_padding_vertical":"13","css_res_p_button_padding_horizontal":"16","css_res_p_button_icon_margin":"5","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_load_preset":"none","module_instance_id":"vfhgg9dgcps","post_id":"5","dslc_m_size":"12","module_id":"DSLC_Info_Box","element_type":"module","last":"yes","dslc_m_size_last":"yes","module_render_nonajax":"1"},{"css_show_on":"desktop tablet phone","title_link_target":"_self","icon_link_target":"_self","button_link":"#","button_target":"_self","button_2_target":"_self","elements":"icon title content","text_align":"center","css_bg_img_repeat":"repeat","css_bg_img_attch":"scroll","css_bg_img_pos":"top left","css_border_color":"#000000","css_border_trbl":"top right bottom left","css_wrapper_bg_img_repeat":"repeat","css_wrapper_bg_img_attch":"scroll","css_wrapper_bg_img_pos":"top left","css_wrapper_border_trbl":"top right bottom left","css_icon_text_align":"inherit","css_icon_border_trbl":"top right bottom left","css_icon_color":"#ffffff","icon_id":"user","css_icon_margin_bottom":"25","icon_position":"aside","css_icon_wrapper_width":"90","css_icon_width":"70","css_image_alt_align":"center","css_image_alt_border_trbl":"top right bottom left","css_image_alt_margin_bottom":"25","image_position":"above","css_title_text_align":"left","css_title_color":"#ff6823","css_title_font_size":"80","css_title_font_weight":"800","css_title_font_family":"Lato","css_title_line_height":"80","css_content_text_align":"left","css_content_color":"#ffffff","css_content_font_size":"16","css_content_font_weight":"400","css_content_font_family":"Lato","css_content_line_height":"23","css_content_bottom":"28","css_button_bg_color":"#5890e5","css_button_bg_color_hover":"#3e73c2","css_button_border_trbl":"top right bottom left","css_button_border_color":"#d8d8d8","css_button_border_radius":"3","css_button_color":"#ffffff","css_button_color_hover":"#ffffff","css_button_font_size":"11","css_button_font_weight":"800","css_button_font_family":"Open Sans","button_pos":"bellow","css_button_padding_vertical":"13","css_button_padding_horizontal":"16","button_icon_id":"cog","css_button_icon_color":"#b0c8eb","css_button_icon_margin":"5","css_button_2_bg_color":"#5890e5","css_button_2_bg_color_hover":"#3e73c2","css_button_2_border_trbl":"top right bottom left","css_button_2_border_color":"#d8d8d8","css_button_2_border_radius":"3","css_button_2_color":"#ffffff","css_button_2_color_hover":"#ffffff","css_button_2_font_size":"11","css_button_2_font_weight":"800","css_button_2_font_family":"Open Sans","css_button_2_mleft":"5","css_button_2_padding_vertical":"13","css_button_2_padding_horizontal":"16","button_2_icon_id":"cog","css_button_2_icon_color":"#b0c8eb","css_button_2_icon_margin":"5","title":"2791","content":"

SATISFIED CLIENTS

","button_title":"CLICK TO EDIT","button_2_title":"CLICK TO EDIT","css_res_t":"disabled","css_res_t_content_width":"100","css_res_t_icon_wrapper_width":"84","css_res_t_icon_width":"31","css_res_t_title_font_size":"17","css_res_t_title_line_height":"17","css_res_t_title_margin":"21","css_res_t_content_font_size":"14","css_res_t_content_line_height":"23","css_res_t_content_margin":"28","css_res_t_button_font_size":"11","css_res_t_button_padding_vertical":"13","css_res_t_button_padding_horizontal":"16","css_res_t_button_icon_margin":"5","css_res_p":"disabled","css_res_p_content_width":"100","css_res_p_icon_wrapper_width":"84","css_res_p_icon_width":"31","css_res_p_title_font_size":"17","css_res_p_title_line_height":"17","css_res_p_title_margin":"21","css_res_p_content_font_size":"14","css_res_p_content_line_height":"23","css_res_p_content_margin":"28","css_res_p_button_font_size":"11","css_res_p_button_padding_vertical":"13","css_res_p_button_padding_horizontal":"16","css_res_p_button_icon_margin":"5","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_load_preset":"none","module_instance_id":"rb8vklcn2ug","post_id":"5","dslc_m_size":"12","module_id":"DSLC_Info_Box","element_type":"module","last":"yes","dslc_m_size_last":"yes","module_render_nonajax":"1"},{"css_show_on":"desktop tablet phone","title_link_target":"_self","icon_link_target":"_self","button_link":"#","button_target":"_self","button_2_target":"_self","elements":"icon title content","text_align":"center","css_bg_img_repeat":"repeat","css_bg_img_attch":"scroll","css_bg_img_pos":"top left","css_border_color":"#000000","css_border_trbl":"top right bottom left","css_wrapper_bg_img_repeat":"repeat","css_wrapper_bg_img_attch":"scroll","css_wrapper_bg_img_pos":"top left","css_wrapper_border_trbl":"top right bottom left","css_icon_text_align":"inherit","css_icon_border_trbl":"top right bottom left","css_icon_color":"#ffffff","icon_id":"list","css_icon_margin_bottom":"25","icon_position":"aside","css_icon_wrapper_width":"90","css_icon_width":"70","css_image_alt_align":"center","css_image_alt_border_trbl":"top right bottom left","css_image_alt_margin_bottom":"25","image_position":"above","css_title_text_align":"left","css_title_color":"#ff6823","css_title_font_size":"80","css_title_font_weight":"800","css_title_font_family":"Lato","css_title_line_height":"80","css_content_text_align":"left","css_content_color":"#ffffff","css_content_font_size":"16","css_content_font_weight":"400","css_content_font_family":"Lato","css_content_line_height":"23","css_content_bottom":"28","css_button_bg_color":"#5890e5","css_button_bg_color_hover":"#3e73c2","css_button_border_trbl":"top right bottom left","css_button_border_color":"#d8d8d8","css_button_border_radius":"3","css_button_color":"#ffffff","css_button_color_hover":"#ffffff","css_button_font_size":"11","css_button_font_weight":"800","css_button_font_family":"Open Sans","button_pos":"bellow","css_button_padding_vertical":"13","css_button_padding_horizontal":"16","button_icon_id":"cog","css_button_icon_color":"#b0c8eb","css_button_icon_margin":"5","css_button_2_bg_color":"#5890e5","css_button_2_bg_color_hover":"#3e73c2","css_button_2_border_trbl":"top right bottom left","css_button_2_border_color":"#d8d8d8","css_button_2_border_radius":"3","css_button_2_color":"#ffffff","css_button_2_color_hover":"#ffffff","css_button_2_font_size":"11","css_button_2_font_weight":"800","css_button_2_font_family":"Open Sans","css_button_2_mleft":"5","css_button_2_padding_vertical":"13","css_button_2_padding_horizontal":"16","button_2_icon_id":"cog","css_button_2_icon_color":"#b0c8eb","css_button_2_icon_margin":"5","title":"4791","content":"

PROJECTS DONE

","button_title":"CLICK TO EDIT","button_2_title":"CLICK TO EDIT","css_res_t":"disabled","css_res_t_content_width":"100","css_res_t_icon_wrapper_width":"84","css_res_t_icon_width":"31","css_res_t_title_font_size":"17","css_res_t_title_line_height":"17","css_res_t_title_margin":"21","css_res_t_content_font_size":"14","css_res_t_content_line_height":"23","css_res_t_content_margin":"28","css_res_t_button_font_size":"11","css_res_t_button_padding_vertical":"13","css_res_t_button_padding_horizontal":"16","css_res_t_button_icon_margin":"5","css_res_p":"disabled","css_res_p_content_width":"100","css_res_p_icon_wrapper_width":"84","css_res_p_icon_width":"31","css_res_p_title_font_size":"17","css_res_p_title_line_height":"17","css_res_p_title_margin":"21","css_res_p_content_font_size":"14","css_res_p_content_line_height":"23","css_res_p_content_margin":"28","css_res_p_button_font_size":"11","css_res_p_button_padding_vertical":"13","css_res_p_button_padding_horizontal":"16","css_res_p_button_icon_margin":"5","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_load_preset":"none","module_instance_id":"en08t25iurg","post_id":"5","dslc_m_size":"12","module_id":"DSLC_Info_Box","element_type":"module","last":"yes","dslc_m_size_last":"yes","module_render_nonajax":"1"}]}],"dslca-img-url":"http://demobusiness.tutiixx.com/wp-content/uploads/2018/01/banner-2.jpg"},{"element_type":"row","columns_spacing":"nospacing","custom_class":"bb_res","show_on":"desktop tablet phone","section_instance_id":"d96f6j1547o","custom_id":"","type":"full","bg_color":"","bg_image_thumb":"disabled","bg_image":"","bg_image_repeat":"repeat","bg_image_position":"left top","bg_image_attachment":"scroll","bg_image_size":"auto","bg_video":"","bg_video_overlay_color":"#000000","bg_video_overlay_opacity":"0","border_color":"","border_width":"0","border_style":"solid","border":"top right bottom left","margin_h":"0","margin_b":"0","padding":"80","padding_h":"0","content":[{"element_type":"module_area","last":"yes","first":"no","size":"12","content":[{"css_show_on":"desktop tablet phone","content":"
OUR WORK

PORTFOLIO

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut

","css_custom":"enabled","css_margin_bottom":"80","css_main_padding_horizontal":"140","css_main_bg_img_repeat":"repeat","css_main_bg_img_attch":"scroll","css_main_bg_img_pos":"top left","css_main_bg_img_size":"auto","css_main_border_trbl":"top right bottom left","css_main_color":"#616161","css_main_font_size":"15","css_main_font_weight":"400","css_main_font_family":"Montserrat","css_main_font_style":"normal","css_main_line_height":"22","css_main_margin_bottom":"25","css_main_text_align":"center","css_h1_font_size":"25","css_h1_font_weight":"400","css_h1_font_family":"Open Sans","css_h1_font_style":"normal","css_h1_line_height":"35","css_h1_margin_bottom":"15","css_h1_text_align":"left","css_h1_border_trbl":"top right bottom left","css_h2_color":"#541269","css_h2_font_size":"47","css_h2_font_weight":"600","css_h2_font_family":"Montserrat","css_h2_font_style":"normal","css_h2_line_height":"33","css_h2_margin_bottom":"30","css_h2_text_align":"center","css_h2_border_trbl":"top right bottom left","css_h3_font_size":"21","css_h3_font_weight":"400","css_h3_font_family":"Open Sans","css_h3_font_style":"normal","css_h3_line_height":"31","css_h3_margin_bottom":"15","css_h3_text_align":"left","css_h3_border_trbl":"top right bottom left","css_h4_font_size":"19","css_h4_font_weight":"400","css_h4_font_family":"Open Sans","css_h4_font_style":"normal","css_h4_line_height":"29","css_h4_margin_bottom":"15","css_h4_text_align":"left","css_h4_border_trbl":"top right bottom left","css_h5_color":"#151039","css_h5_font_size":"15","css_h5_font_weight":"500","css_h5_font_family":"Montserrat","css_h5_font_style":"normal","css_h5_line_height":"15","css_h5_text_align":"center","css_h5_border_trbl":"top right bottom left","css_h6_font_size":"15","css_h6_font_weight":"400","css_h6_font_family":"Open Sans","css_h6_font_style":"normal","css_h6_line_height":"25","css_h6_margin_bottom":"15","css_h6_text_align":"left","css_h6_border_trbl":"top right bottom left","css_li_color":"#5b5b5b","css_li_font_size":"14","css_li_font_weight":"400","css_li_font_family":"Open Sans","css_li_line_height":"22","css_ul_margin_bottom":"25","css_ul_margin_left":"25","css_ul_style":"circle","css_ol_style":"decimal","css_ul_li_margin_bottom":"10","css_li_border_trbl":"top right bottom left","css_inputs_color":"#4d4d4d","css_inputs_font_size":"13","css_inputs_font_weight":"500","css_inputs_font_family":"Open Sans","css_inputs_line_height":"23","css_inputs_margin_bottom":"15","css_inputs_padding_vertical":"10","css_inputs_padding_horizontal":"15","css_inputs_bg_color":"#fff","css_inputs_border_color":"#ddd","css_inputs_border_width":"1","css_inputs_border_trbl":"top right bottom left","css_blockquote_font_size":"13","css_blockquote_font_weight":"400","css_blockquote_font_family":"Open Sans","css_blockquote_line_height":"22","css_blockquote_text_align":"left","css_blockquote_bg_img_repeat":"repeat","css_blockquote_bg_img_attch":"scroll","css_blockquote_bg_img_pos":"top left","css_blockquote_border_trbl":"top right bottom left","css_button_bg_color":"#5890e5","css_button_bg_color_hover":"#5890e5","css_button_border_color":"#5890e5","css_button_border_color_hover":"#5890e5","css_button_border_trbl":"top right bottom left","css_button_border_radius":"3","css_button_color":"#fff","css_button_color_hover":"#fff","css_button_font_size":"13","css_button_font_weight":"500","css_button_font_family":"Open Sans","css_button_line_height":"13","css_button_padding_vertical":"10","css_button_padding_horizontal":"15","css_res_t":"enabled","css_res_t_main_padding_horizontal":"30","css_res_t_main_font_size":"14","css_res_t_main_line_height":"22","css_res_t_main_paragraph_margin_bottom":"20","css_res_t_main_text_align":"center","css_res_t_h1_font_size":"13","css_res_t_h1_line_height":"13","css_res_t_h1_margin_bottom":"15","css_res_t_h1_text_align":"left","css_res_t_h2_font_size":"22","css_res_t_h2_line_height":"13","css_res_t_h2_margin_bottom":"25","css_res_t_h2_text_align":"center","css_res_t_h3_font_size":"13","css_res_t_h3_line_height":"13","css_res_t_h3_margin_bottom":"15","css_res_t_h3_text_align":"left","css_res_t_h4_font_size":"13","css_res_t_h4_line_height":"13","css_res_t_h4_margin_bottom":"15","css_res_t_h4_text_align":"left","css_res_t_h5_font_size":"13","css_res_t_h5_line_height":"13","css_res_t_h5_margin_bottom":"15","css_res_t_h5_text_align":"left","css_res_t_h6_font_size":"13","css_res_t_h6_line_height":"13","css_res_t_h6_margin_bottom":"15","css_res_t_h6_text_align":"left","css_res_t_li_font_size":"13","css_res_t_li_line_height":"22","css_res_t_ul_margin_bottom":"25","css_res_t_ul_margin_left":"25","css_res_t_ul_li_margin_bottom":"10","css_res_t_blockquote_font_size":"13","css_res_t_blockquote_line_height":"22","css_res_t_blockquote_text_align":"left","css_res_p":"enabled","css_res_ph_main_padding_horizontal":"30","css_res_ph_main_font_size":"13","css_res_ph_main_line_height":"22","css_res_p_main_paragraph_margin_bottom":"20","css_res_p_main_text_align":"center","css_res_ph_h1_font_size":"13","css_res_ph_h1_line_height":"13","css_res_ph_h1_margin_bottom":"15","css_res_p_h1_text_align":"left","css_res_ph_h2_font_size":"20","css_res_ph_h2_line_height":"24","css_res_p_h2_margin_bottom":"24","css_res_p_h2_text_align":"center","css_res_ph_h3_font_size":"13","css_res_ph_h3_line_height":"13","css_res_p_h3_margin_bottom":"15","css_res_p_h3_text_align":"left","css_res_ph_h4_font_size":"13","css_res_ph_h4_line_height":"13","css_res_p_h4_margin_bottom":"15","css_res_p_h4_text_align":"left","css_res_ph_h5_font_size":"13","css_res_ph_h5_line_height":"13","css_res_p_h5_margin_bottom":"15","css_res_p_h5_text_align":"left","css_res_ph_h6_font_size":"13","css_res_ph_h6_line_height":"13","css_res_p_h6_margin_bottom":"15","css_res_p_h6_text_align":"left","css_res_p_li_font_size":"13","css_res_p_li_line_height":"22","css_res_p_ul_margin_bottom":"25","css_res_p_ul_margin_left":"25","css_res_p_ul_li_margin_bottom":"10","css_res_p_blockquote_font_size":"13","css_res_p_blockquote_line_height":"22","css_res_p_blockquote_text_align":"left","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_load_preset":"none","module_instance_id":"fjr5fqff448","post_id":"5","dslc_m_size":"12","module_id":"DSLC_Text_Simple","element_type":"module","last":"yes","dslc_m_size_last":"yes","module_render_nonajax":"1"},{"css_show_on":"desktop tablet phone","type":"masonry","orientation":"vertical","amount":"8","pagination_type":"disabled","columns":"3","categories_operator":"IN","orderby":"date","order":"ASC","thumb_link_behaviour":"regular","title_link_behaviour":"regular","query_alter":"enabled","post_elements":"thumbnail","separator_enabled":"disabled","css_sep_border_color":"#ededed","css_sep_height":"32","css_sep_thickness":"1","css_sep_style":"dashed","css_thumb_align":"left","css_thumbnail_bg_color":"#ffffff","css_thumb_border_color":"rgba(0,0,0,0)","thumb_width":"100","css_count_bg_color":"#0f54bd","css_count_border_trbl":"top right bottom left","css_count_border_radius":"100","count_pos":"center","css_count_padding":"20","css_count_num_color":"#ffffff","css_count_num_font_size":"25","css_count_num_font_weight":"400","css_count_num_color_font_family":"Roboto","css_count_num_margin_bottom":"8","count_text":"IMAGES","css_count_txt_color":"#fff","css_count_txt_font_size":"10","css_count_txt_font_weight":"400","css_count_txt_color_font_family":"Bitter","main_location":"bellow","css_main_bg_color":"#ffffff","css_main_border_color":"#dbdbdb","css_main_text_align":"center","main_position":"center","css_main_inner_width":"100","css_title_color":"#7d7d7d","css_title_font_size":"18","css_title_font_weight":"400","css_title_font_family":"Raleway","title_line_height":"24","css_title_margin_bottom":"18","css_title_text_transform":"none","css_sep_color":"#e3e3e3","css_sep_margin_bottom":"15","excerpt_or_content":"excerpt","css_excerpt_font_size":"12","css_excerpt_font_weight":"400","css_excerpt_font_family":"Open Sans","css_excerpt_line_height":"22","excerpt_length":"25","css_button_align":"inherit","button_text":"CONTINUE READING","css_button_bg_color":"#5890e5","css_button_bg_color_hover":"#4b7bc2","css_button_border_trbl":"top right bottom left","css_button_border_radius":"3","css_button_color":"#ffffff","css_button_color_hover":"#ffffff","css_button_font_size":"11","css_button_font_weight":"800","css_button_font_family":"Lato","css_button_padding_vertical":"12","css_button_padding_horizontal":"12","css_button_icon_margin":"5","css_res_t":"disabled","css_res_t_sep_height":"32","css_res_t_thumbnail_padding_vertical":"10","css_res_t_thumbnail_padding_horizontal":"10","css_res_t_count_padding":"20","css_res_t_count_num_font_size":"25","css_res_t_count_num_margin_bottom":"8","css_res_t_count_txt_font_size":"10","css_res_t_main_padding_vertical":"20","css_res_t_main_padding_horizontal":"35","css_res_t_title_font_size":"18","css_res_t_title_line_height":"24","css_res_t_title_margin_bottom":"18","css_res_t_sep_margin_bottom":"15","css_res_t_excerpt_font_size":"12","css_res_t_excerpt_line_height":"22","css_res_p":"disabled","css_res_p_sep_height":"32","css_res_p_thumbnail_padding_vertical":"10","css_res_p_thumbnail_padding_horizontal":"10","css_res_p_count_padding":"20","css_res_p_count_num_font_size":"25","css_res_p_count_num_margin_bottom":"8","css_res_p_count_txt_font_size":"10","css_res_p_main_padding_vertical":"20","css_res_p_main_padding_horizontal":"35","css_res_p_title_font_size":"18","css_res_p_title_line_height":"24","css_res_p_title_margin_bottom":"18","css_res_p_sep_margin_bottom":"15","css_res_p_excerpt_font_size":"12","css_res_p_excerpt_line_height":"22","carousel_autoplay_hover":"false","main_heading_title":"CLICK TO EDIT","main_heading_link_title":"VIEW ALL","main_filter_title_all":"All","css_main_heading_font_size":"17","css_main_heading_font_weight":"400","css_main_heading_line_height":"37","css_main_heading_link_font_size":"11","css_main_heading_link_font_weight":"600","css_main_heading_link_padding_ver":"10","view_all_link":"#","css_main_heading_sep_color":"#4f4f4f","css_main_heading_sep_style":"dotted","css_heading_margin_bottom":"20","css_res_t_main_heading_font_size":"17","css_res_t_main_heading_line_height":"37","css_res_t_main_heading_link_font_size":"11","css_res_t_main_heading_link_padding_ver":"10","css_res_t_heading_margin_bottom":"20","css_res_p_main_heading_font_size":"17","css_res_p_main_heading_line_height":"37","css_res_p_main_heading_link_font_size":"11","css_res_p_main_heading_link_padding_ver":"10","css_res_p_heading_margin_bottom":"20","css_filter_bg_color":"#ffffff","css_filter_bg_color_active":"#5890e5","css_filter_border_color":"#e8e8e8","css_filter_border_color_active":"#5890e5","css_filter_border_width":"1","css_filter_border_trbl":"top right bottom left","css_filter_border_radius":"3","css_filter_color":"#979797","css_filter_color_active":"#ffffff","css_filter_font_size":"11","css_filter_font_weight":"700","css_filter_padding_vertical":"12","css_filter_padding_horizontal":"12","css_filter_position":"left","css_filter_spacing":"10","css_filter_margin_bottom":"20","css_res_t_filter_font_size":"11","css_res_t_filter_padding_vertical":"12","css_res_t_filter_padding_horizontal":"12","css_res_t_filter_spacing":"10","css_res_t_filter_margin_bottom":"20","css_res_p_filter_font_size":"11","css_res_p_filter_padding_vertical":"12","css_res_p_filter_padding_horizontal":"12","css_res_p_filter_spacing":"10","css_res_p_filter_margin_bottom":"20","arrows_slide_speed":"200","css_arrows_bg_color":"#c9c9c9","css_arrows_bg_color_hover":"#5890e5","css_arrows_border_radius":"3","css_arrows_color":"#ffffff","css_arrows_color_hover":"#ffffff","css_arrows_margin_top":"6","css_arrows_size":"24","css_arrows_arrow_size":"10","css_arrows_margin_bottom":"20","circles_slide_speed":"800","css_circles_color":"#b9b9b9","css_circles_color_active":"#5890e5","css_circles_margin_top":"20","css_circles_size":"7","css_circles_spacing":"3","css_pag_align":"left","css_pag_border_trbl":"top right bottom left","css_pag_item_bg_color":"#ffffff","css_pag_item_bg_color_active":"#5890e5","css_pag_item_border_color":"#e8e8e8","css_pag_item_border_color_active":"#5890e5","css_pag_item_border_width":"1","css_pag_item_border_width_active":"1","css_pag_item_border_trbl":"top right bottom left","css_pag_item_border_radius":"3","css_pag_item_color":"#979797","css_pag_item_color_active":"#ffffff","css_pag_item_font_size":"11","css_pag_item_font_weight":"700","css_pag_item_padding_vertical":"12","css_pag_item_padding_horizontal":"12","css_pag_item_spacing":"10","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_anim_hover":"none","css_anim_speed":"650","css_load_preset":"none","module_instance_id":"3b1028e74a9","post_id":"5","dslc_m_size":"12","module_id":"DSLC_Galleries","element_type":"module","last":"yes","dslc_m_size_last":"yes","module_render_nonajax":"1"}]}],"dslca-img-url":""},{"element_type":"row","columns_spacing":"spacing","custom_class":"bb_res","show_on":"desktop tablet phone","section_instance_id":"lavgb7f0bgc","custom_id":"","type":"wrapper","bg_color":"","bg_image_thumb":"disabled","bg_image":"","bg_image_repeat":"repeat","bg_image_position":"left top","bg_image_attachment":"scroll","bg_image_size":"auto","bg_video":"","bg_video_overlay_color":"#000000","bg_video_overlay_opacity":"0","border_color":"","border_width":"0","border_style":"solid","border":"bottom ","margin_h":"0","margin_b":"0","padding":"25","padding_h":"0","content":[{"element_type":"module_area","last":"yes","first":"no","size":"12","content":[{"css_show_on":"desktop tablet phone","content":"
WHAT CLIENT SAY

TESTIMONIAL

Lorem ipsum dolor sit amet, consectetur adipisicing el

","css_custom":"enabled","css_margin_bottom":"50","css_main_padding_horizontal":"140","css_main_bg_img_repeat":"repeat","css_main_bg_img_attch":"scroll","css_main_bg_img_pos":"top left","css_main_bg_img_size":"auto","css_main_border_trbl":"top right bottom left","css_main_color":"#616161","css_main_font_size":"15","css_main_font_weight":"400","css_main_font_family":"Montserrat","css_main_font_style":"normal","css_main_line_height":"22","css_main_margin_bottom":"25","css_main_text_align":"center","css_h1_font_size":"25","css_h1_font_weight":"400","css_h1_font_family":"Open Sans","css_h1_font_style":"normal","css_h1_line_height":"35","css_h1_margin_bottom":"15","css_h1_text_align":"left","css_h1_border_trbl":"top right bottom left","css_h2_color":"#541269","css_h2_font_size":"47","css_h2_font_weight":"600","css_h2_font_family":"Montserrat","css_h2_font_style":"normal","css_h2_line_height":"33","css_h2_margin_bottom":"30","css_h2_text_align":"center","css_h2_border_trbl":"top right bottom left","css_h3_font_size":"21","css_h3_font_weight":"400","css_h3_font_family":"Open Sans","css_h3_font_style":"normal","css_h3_line_height":"31","css_h3_margin_bottom":"15","css_h3_text_align":"left","css_h3_border_trbl":"top right bottom left","css_h4_font_size":"19","css_h4_font_weight":"400","css_h4_font_family":"Open Sans","css_h4_font_style":"normal","css_h4_line_height":"29","css_h4_margin_bottom":"15","css_h4_text_align":"left","css_h4_border_trbl":"top right bottom left","css_h5_color":"#151039","css_h5_font_size":"15","css_h5_font_weight":"500","css_h5_font_family":"Montserrat","css_h5_font_style":"normal","css_h5_line_height":"15","css_h5_text_align":"center","css_h5_border_trbl":"top right bottom left","css_h6_font_size":"15","css_h6_font_weight":"400","css_h6_font_family":"Open Sans","css_h6_font_style":"normal","css_h6_line_height":"25","css_h6_margin_bottom":"15","css_h6_text_align":"left","css_h6_border_trbl":"top right bottom left","css_li_color":"#5b5b5b","css_li_font_size":"14","css_li_font_weight":"400","css_li_font_family":"Open Sans","css_li_line_height":"22","css_ul_margin_bottom":"25","css_ul_margin_left":"25","css_ul_style":"circle","css_ol_style":"decimal","css_ul_li_margin_bottom":"10","css_li_border_trbl":"top right bottom left","css_inputs_color":"#4d4d4d","css_inputs_font_size":"13","css_inputs_font_weight":"500","css_inputs_font_family":"Open Sans","css_inputs_line_height":"23","css_inputs_margin_bottom":"15","css_inputs_padding_vertical":"10","css_inputs_padding_horizontal":"15","css_inputs_bg_color":"#fff","css_inputs_border_color":"#ddd","css_inputs_border_width":"1","css_inputs_border_trbl":"top right bottom left","css_blockquote_font_size":"13","css_blockquote_font_weight":"400","css_blockquote_font_family":"Open Sans","css_blockquote_line_height":"22","css_blockquote_text_align":"left","css_blockquote_bg_img_repeat":"repeat","css_blockquote_bg_img_attch":"scroll","css_blockquote_bg_img_pos":"top left","css_blockquote_border_trbl":"top right bottom left","css_button_bg_color":"#5890e5","css_button_bg_color_hover":"#5890e5","css_button_border_color":"#5890e5","css_button_border_color_hover":"#5890e5","css_button_border_trbl":"top right bottom left","css_button_border_radius":"3","css_button_color":"#fff","css_button_color_hover":"#fff","css_button_font_size":"13","css_button_font_weight":"500","css_button_font_family":"Open Sans","css_button_line_height":"13","css_button_padding_vertical":"10","css_button_padding_horizontal":"15","css_res_t":"enabled","css_res_t_main_padding_horizontal":"30","css_res_t_main_font_size":"14","css_res_t_main_line_height":"22","css_res_t_main_paragraph_margin_bottom":"20","css_res_t_main_text_align":"center","css_res_t_h1_font_size":"13","css_res_t_h1_line_height":"13","css_res_t_h1_margin_bottom":"15","css_res_t_h1_text_align":"left","css_res_t_h2_font_size":"22","css_res_t_h2_line_height":"13","css_res_t_h2_margin_bottom":"25","css_res_t_h2_text_align":"center","css_res_t_h3_font_size":"13","css_res_t_h3_line_height":"13","css_res_t_h3_margin_bottom":"15","css_res_t_h3_text_align":"left","css_res_t_h4_font_size":"13","css_res_t_h4_line_height":"13","css_res_t_h4_margin_bottom":"15","css_res_t_h4_text_align":"left","css_res_t_h5_font_size":"13","css_res_t_h5_line_height":"13","css_res_t_h5_margin_bottom":"15","css_res_t_h5_text_align":"left","css_res_t_h6_font_size":"13","css_res_t_h6_line_height":"13","css_res_t_h6_margin_bottom":"15","css_res_t_h6_text_align":"left","css_res_t_li_font_size":"13","css_res_t_li_line_height":"22","css_res_t_ul_margin_bottom":"25","css_res_t_ul_margin_left":"25","css_res_t_ul_li_margin_bottom":"10","css_res_t_blockquote_font_size":"13","css_res_t_blockquote_line_height":"22","css_res_t_blockquote_text_align":"left","css_res_p":"enabled","css_res_ph_main_padding_horizontal":"30","css_res_ph_main_font_size":"13","css_res_ph_main_line_height":"22","css_res_p_main_paragraph_margin_bottom":"20","css_res_p_main_text_align":"center","css_res_ph_h1_font_size":"13","css_res_ph_h1_line_height":"13","css_res_ph_h1_margin_bottom":"15","css_res_p_h1_text_align":"left","css_res_ph_h2_font_size":"20","css_res_ph_h2_line_height":"24","css_res_p_h2_margin_bottom":"24","css_res_p_h2_text_align":"center","css_res_ph_h3_font_size":"13","css_res_ph_h3_line_height":"13","css_res_p_h3_margin_bottom":"15","css_res_p_h3_text_align":"left","css_res_ph_h4_font_size":"13","css_res_ph_h4_line_height":"13","css_res_p_h4_margin_bottom":"15","css_res_p_h4_text_align":"left","css_res_ph_h5_font_size":"13","css_res_ph_h5_line_height":"13","css_res_p_h5_margin_bottom":"15","css_res_p_h5_text_align":"left","css_res_ph_h6_font_size":"13","css_res_ph_h6_line_height":"13","css_res_p_h6_margin_bottom":"15","css_res_p_h6_text_align":"left","css_res_p_li_font_size":"13","css_res_p_li_line_height":"22","css_res_p_ul_margin_bottom":"25","css_res_p_ul_margin_left":"25","css_res_p_ul_li_margin_bottom":"10","css_res_p_blockquote_font_size":"13","css_res_p_blockquote_line_height":"22","css_res_p_blockquote_text_align":"left","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_load_preset":"none","module_instance_id":"pcbqer97u24","post_id":"5","dslc_m_size":"12","module_id":"DSLC_Text_Simple","element_type":"module","last":"yes","dslc_m_size_last":"yes","module_render_nonajax":"1"},{"css_show_on":"desktop tablet phone","type":"carousel","amount":"4","pagination_type":"disabled","columns":"4","categories_operator":"IN","orderby":"date","order":"DESC","post_elements":"quote avatar name position","css_sep_border_color":"#ededed","css_sep_height":"32","css_sep_thickness":"1","css_sep_style":"dashed","css_main_bg_color":"#ffffff","css_main_bg_img_repeat":"repeat","css_main_bg_img_attch":"scroll","css_main_bg_img_pos":"center center","css_main_border_color":"#d8d8d8","css_main_border_width":"1","css_main_border_trbl":"top right bottom left","css_main_padding_vertical":"40","css_main_padding_horizontal":"30","css_quote_border_width":"1","css_quote_border_trbl":"bottom","css_quote_color":"#2b2b2b","css_quote_font_size":"15","css_quote_font_weight":"400","css_quote_font_family":"Montserrat","css_quote_line_height":"29","css_quote_margin":"18","css_quote_padding_bottom":"13","css_quote_text_align":"center","author_pos":"inside bottom","css_avatar_border_trbl":"top right bottom left","css_avatar_border_radius_top":"100","css_avatar_margin_right":"20","css_avatar_size":"55","css_name_color":"#2b2b2b","css_name_font_size":"14","css_name_font_weight":"700","css_name_font_family":"Montserrat","css_name_margin_bottom":"8","css_name_margin_top":"10","css_position_color":"#767676","css_position_font_size":"13","css_position_font_weight":"400","css_position_font_family":"Montserrat","css_position_lheight":"1.1","css_res_t":"disabled","css_res_t_sep_height":"32","css_res_t_main_padding_vertical":"24","css_res_t_main_padding_horizontal":"30","css_res_t_quote_font_size":"17","css_res_t_quote_line_height":"29","css_res_t_quote_margin":"18","css_res_t_quote_padding_bottom":"13","css_res_t_avatar_margin_right":"20","css_res_t_avatar_size":"55","css_res_t_name_font_size":"15","css_res_t_name_margin_bottom":"8","css_res_t_name_margin_top":"10","css_res_t_position_font_size":"11","css_res_p":"disabled","css_res_p_sep_height":"32","css_res_p_main_padding_vertical":"24","css_res_p_main_padding_horizontal":"30","css_res_p_quote_font_size":"17","css_res_p_quote_line_height":"29","css_res_p_quote_margin":"18","css_res_p_quote_padding_bottom":"13","css_res_p_avatar_margin_right":"20","css_res_p_avatar_size":"55","css_res_p_name_font_size":"15","css_res_p_name_margin_bottom":"8","css_res_p_name_margin_top":"10","css_res_p_position_font_size":"11","carousel_autoplay":"2000","carousel_autoplay_hover":"true","main_heading_title":"CLICK TO EDIT","main_heading_link_title":"VIEW ALL","main_filter_title_all":"All","css_main_heading_font_size":"17","css_main_heading_font_weight":"400","css_main_heading_line_height":"37","css_main_heading_link_font_size":"11","css_main_heading_link_font_weight":"600","css_main_heading_link_padding_ver":"10","view_all_link":"#","css_main_heading_sep_color":"#4f4f4f","css_main_heading_sep_style":"dotted","css_heading_margin_bottom":"20","css_res_t_main_heading_font_size":"17","css_res_t_main_heading_line_height":"37","css_res_t_main_heading_link_font_size":"11","css_res_t_main_heading_link_padding_ver":"10","css_res_t_heading_margin_bottom":"20","css_res_p_main_heading_font_size":"17","css_res_p_main_heading_line_height":"37","css_res_p_main_heading_link_font_size":"11","css_res_p_main_heading_link_padding_ver":"10","css_res_p_heading_margin_bottom":"20","css_filter_bg_color":"#ffffff","css_filter_bg_color_active":"#5890e5","css_filter_border_color":"#e8e8e8","css_filter_border_color_active":"#5890e5","css_filter_border_width":"1","css_filter_border_trbl":"top right bottom left","css_filter_border_radius":"3","css_filter_color":"#979797","css_filter_color_active":"#ffffff","css_filter_font_size":"11","css_filter_font_weight":"700","css_filter_padding_vertical":"12","css_filter_padding_horizontal":"12","css_filter_position":"left","css_filter_spacing":"10","css_filter_margin_bottom":"20","css_res_t_filter_font_size":"11","css_res_t_filter_padding_vertical":"12","css_res_t_filter_padding_horizontal":"12","css_res_t_filter_spacing":"10","css_res_t_filter_margin_bottom":"20","css_res_p_filter_font_size":"11","css_res_p_filter_padding_vertical":"12","css_res_p_filter_padding_horizontal":"12","css_res_p_filter_spacing":"10","css_res_p_filter_margin_bottom":"20","arrows_slide_speed":"200","css_arrows_bg_color":"#c9c9c9","css_arrows_bg_color_hover":"#5890e5","css_arrows_border_radius":"3","css_arrows_color":"#ffffff","css_arrows_color_hover":"#ffffff","css_arrows_margin_top":"6","css_arrows_size":"24","css_arrows_arrow_size":"10","css_arrows_margin_bottom":"20","circles_slide_speed":"800","css_circles_color":"#b9b9b9","css_circles_color_active":"#5890e5","css_circles_margin_top":"20","css_circles_size":"7","css_circles_spacing":"3","css_pag_align":"left","css_pag_border_trbl":"top right bottom left","css_pag_item_bg_color":"#ffffff","css_pag_item_bg_color_active":"#5890e5","css_pag_item_border_color":"#e8e8e8","css_pag_item_border_color_active":"#5890e5","css_pag_item_border_width":"1","css_pag_item_border_width_active":"1","css_pag_item_border_trbl":"top right bottom left","css_pag_item_border_radius":"3","css_pag_item_color":"#979797","css_pag_item_color_active":"#ffffff","css_pag_item_font_size":"11","css_pag_item_font_weight":"700","css_pag_item_padding_vertical":"12","css_pag_item_padding_horizontal":"12","css_pag_item_spacing":"10","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_anim_hover":"none","css_anim_speed":"650","css_load_preset":"none","module_instance_id":"832a404c31d","post_id":"5","dslc_m_size":"12","module_id":"DSLC_Testimonials","element_type":"module","last":"yes","dslc_m_size_last":"yes","module_render_nonajax":"1"}]}],"dslca-img-url":""},{"element_type":"row","columns_spacing":"spacing","custom_class":"bb_res","show_on":"desktop tablet phone","section_instance_id":"l9509mrol1","custom_id":"","type":"wrapper","bg_color":"","bg_image_thumb":"disabled","bg_image":"","bg_image_repeat":"repeat","bg_image_position":"left top","bg_image_attachment":"scroll","bg_image_size":"auto","bg_video":"","bg_video_overlay_color":"#000000","bg_video_overlay_opacity":"0","border_color":"","border_width":"0","border_style":"solid","border":"bottom ","margin_h":"0","margin_b":"0","padding":"25","padding_h":"0","content":[{"element_type":"module_area","last":"yes","first":"no","size":"12","content":[{"css_show_on":"desktop tablet phone","content":"
OUR MEMBERS

OUR TEAM

Lorem ipsum dolor sit amet, consectetur adipisicing el

","css_custom":"enabled","css_margin_top":"18","css_main_padding_vertical":"40","css_main_padding_horizontal":"140","css_main_bg_img_repeat":"repeat","css_main_bg_img_attch":"scroll","css_main_bg_img_pos":"top left","css_main_bg_img_size":"auto","css_main_border_color":"#cdcbe0","css_main_border_width":"2","css_main_border_trbl":"top ","css_main_color":"#616161","css_main_font_size":"15","css_main_font_weight":"400","css_main_font_family":"Montserrat","css_main_font_style":"normal","css_main_line_height":"22","css_main_margin_bottom":"25","css_main_text_align":"center","css_h1_font_size":"25","css_h1_font_weight":"400","css_h1_font_family":"Open Sans","css_h1_font_style":"normal","css_h1_line_height":"35","css_h1_margin_bottom":"15","css_h1_text_align":"left","css_h1_border_trbl":"top right bottom left","css_h2_color":"#541269","css_h2_font_size":"47","css_h2_font_weight":"600","css_h2_font_family":"Montserrat","css_h2_font_style":"normal","css_h2_line_height":"33","css_h2_margin_bottom":"30","css_h2_text_align":"center","css_h2_border_trbl":"top right bottom left","css_h3_font_size":"21","css_h3_font_weight":"400","css_h3_font_family":"Open Sans","css_h3_font_style":"normal","css_h3_line_height":"31","css_h3_margin_bottom":"15","css_h3_text_align":"left","css_h3_border_trbl":"top right bottom left","css_h4_font_size":"19","css_h4_font_weight":"400","css_h4_font_family":"Open Sans","css_h4_font_style":"normal","css_h4_line_height":"29","css_h4_margin_bottom":"15","css_h4_text_align":"left","css_h4_border_trbl":"top right bottom left","css_h5_color":"#151039","css_h5_font_size":"15","css_h5_font_weight":"500","css_h5_font_family":"Montserrat","css_h5_font_style":"normal","css_h5_line_height":"15","css_h5_text_align":"center","css_h5_border_trbl":"top right bottom left","css_h6_font_size":"15","css_h6_font_weight":"400","css_h6_font_family":"Open Sans","css_h6_font_style":"normal","css_h6_line_height":"25","css_h6_margin_bottom":"15","css_h6_text_align":"left","css_h6_border_trbl":"top right bottom left","css_li_color":"#5b5b5b","css_li_font_size":"14","css_li_font_weight":"400","css_li_font_family":"Open Sans","css_li_line_height":"22","css_ul_margin_bottom":"25","css_ul_margin_left":"25","css_ul_style":"circle","css_ol_style":"decimal","css_ul_li_margin_bottom":"10","css_li_border_trbl":"top right bottom left","css_inputs_color":"#4d4d4d","css_inputs_font_size":"13","css_inputs_font_weight":"500","css_inputs_font_family":"Open Sans","css_inputs_line_height":"23","css_inputs_margin_bottom":"15","css_inputs_padding_vertical":"10","css_inputs_padding_horizontal":"15","css_inputs_bg_color":"#fff","css_inputs_border_color":"#ddd","css_inputs_border_width":"1","css_inputs_border_trbl":"top right bottom left","css_blockquote_font_size":"13","css_blockquote_font_weight":"400","css_blockquote_font_family":"Open Sans","css_blockquote_line_height":"22","css_blockquote_text_align":"left","css_blockquote_bg_img_repeat":"repeat","css_blockquote_bg_img_attch":"scroll","css_blockquote_bg_img_pos":"top left","css_blockquote_border_trbl":"top right bottom left","css_button_bg_color":"#5890e5","css_button_bg_color_hover":"#5890e5","css_button_border_color":"#5890e5","css_button_border_color_hover":"#5890e5","css_button_border_trbl":"top right bottom left","css_button_border_radius":"3","css_button_color":"#fff","css_button_color_hover":"#fff","css_button_font_size":"13","css_button_font_weight":"500","css_button_font_family":"Open Sans","css_button_line_height":"13","css_button_padding_vertical":"10","css_button_padding_horizontal":"15","css_res_t":"enabled","css_res_t_main_padding_horizontal":"30","css_res_t_main_font_size":"14","css_res_t_main_line_height":"22","css_res_t_main_paragraph_margin_bottom":"20","css_res_t_main_text_align":"center","css_res_t_h1_font_size":"13","css_res_t_h1_line_height":"13","css_res_t_h1_margin_bottom":"15","css_res_t_h1_text_align":"left","css_res_t_h2_font_size":"22","css_res_t_h2_line_height":"13","css_res_t_h2_margin_bottom":"25","css_res_t_h2_text_align":"center","css_res_t_h3_font_size":"13","css_res_t_h3_line_height":"13","css_res_t_h3_margin_bottom":"15","css_res_t_h3_text_align":"left","css_res_t_h4_font_size":"13","css_res_t_h4_line_height":"13","css_res_t_h4_margin_bottom":"15","css_res_t_h4_text_align":"left","css_res_t_h5_font_size":"13","css_res_t_h5_line_height":"13","css_res_t_h5_margin_bottom":"15","css_res_t_h5_text_align":"left","css_res_t_h6_font_size":"13","css_res_t_h6_line_height":"13","css_res_t_h6_margin_bottom":"15","css_res_t_h6_text_align":"left","css_res_t_li_font_size":"13","css_res_t_li_line_height":"22","css_res_t_ul_margin_bottom":"25","css_res_t_ul_margin_left":"25","css_res_t_ul_li_margin_bottom":"10","css_res_t_blockquote_font_size":"13","css_res_t_blockquote_line_height":"22","css_res_t_blockquote_text_align":"left","css_res_p":"enabled","css_res_ph_main_padding_horizontal":"30","css_res_ph_main_font_size":"13","css_res_ph_main_line_height":"22","css_res_p_main_paragraph_margin_bottom":"20","css_res_p_main_text_align":"center","css_res_ph_h1_font_size":"13","css_res_ph_h1_line_height":"13","css_res_ph_h1_margin_bottom":"15","css_res_p_h1_text_align":"left","css_res_ph_h2_font_size":"20","css_res_ph_h2_line_height":"24","css_res_p_h2_margin_bottom":"24","css_res_p_h2_text_align":"center","css_res_ph_h3_font_size":"13","css_res_ph_h3_line_height":"13","css_res_p_h3_margin_bottom":"15","css_res_p_h3_text_align":"left","css_res_ph_h4_font_size":"13","css_res_ph_h4_line_height":"13","css_res_p_h4_margin_bottom":"15","css_res_p_h4_text_align":"left","css_res_ph_h5_font_size":"13","css_res_ph_h5_line_height":"13","css_res_p_h5_margin_bottom":"15","css_res_p_h5_text_align":"left","css_res_ph_h6_font_size":"13","css_res_ph_h6_line_height":"13","css_res_p_h6_margin_bottom":"15","css_res_p_h6_text_align":"left","css_res_p_li_font_size":"13","css_res_p_li_line_height":"22","css_res_p_ul_margin_bottom":"25","css_res_p_ul_margin_left":"25","css_res_p_ul_li_margin_bottom":"10","css_res_p_blockquote_font_size":"13","css_res_p_blockquote_line_height":"22","css_res_p_blockquote_text_align":"left","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_load_preset":"none","module_instance_id":"3ij6comdmb4","post_id":"5","dslc_m_size":"12","module_id":"DSLC_Text_Simple","element_type":"module","last":"yes","dslc_m_size_last":"yes","module_render_nonajax":"1"},{"css_show_on":"desktop tablet phone","link":"enabled","type":"grid","amount":"4","pagination_type":"disabled","columns":"4","categories_operator":"IN","orderby":"date","order":"DESC","social_link_target":"_self","post_elements":"thumbnail social title position","carousel_elements":"arrows circles","separator_enabled":"disabled","css_sep_border_color":"#ededed","css_sep_height":"32","css_sep_thickness":"1","css_sep_style":"dashed","css_thumb_align":"left","css_thumb_border_trbl":"top right bottom left","css_thumbnail_border_radius_top":"4","css_social_align":"center","css_social_bg_color":"rgba(0,0,0,0)","css_social_border_trbl":"top right bottom left","css_social_margin_bottom":"0","css_social_padding_vertical":"15","css_social_color":"#ff6724","css_social_font_size":"16","main_location":"bellow","css_main_bg_color":"#ffffff","css_main_border_color":"#e8e8e8","css_main_border_width":"0","css_main_border_radius_bottom":"0","css_main_padding_vertical":"10","css_main_padding_horizontal":"25","css_main_text_align":"center","main_position":"center","css_main_inner_width":"100","css_title_color":"#2a2a2a","css_title_font_size":"15","css_title_font_weight":"500","css_title_font_family":"Montserrat","css_title_line_height":"14","css_title_margin_bottom":"15","css_title_text_transform":"none","css_position_border_color":"#626262","css_position_border_width":"1","css_position_color":"#626262","css_position_font_size":"14","css_position_font_weight":"300","css_position_font_style":"italic","css_position_margin_bottom":"10","css_position_padding_vertical":"0","excerpt_or_content":"excerpt","css_excerpt_font_size":"13","css_excerpt_font_weight":"400","css_excerpt_line_height":"23","excerpt_length":"20","css_res_t":"disabled","css_res_t_sep_height":"32","css_res_t_social_padding_vertical":"12","css_res_t_social_font_size":"13","css_res_t_main_padding_vertical":"31","css_res_t_main_padding_horizontal":"36","css_res_t_title_font_size":"14","css_res_t_title_line_height":"14","css_res_t_title_margin_bottom":"23","css_res_t_position_font_size":"12","css_res_t_position_margin_bottom":"20","css_res_t_position_padding_vertical":"12","css_res_t_excerpt_font_size":"13","css_res_t_excerpt_line_height":"23","css_res_p":"disabled","css_res_p_sep_height":"32","css_res_p_social_padding_vertical":"12","css_res_p_social_font_size":"13","css_res_p_main_padding_vertical":"31","css_res_p_main_padding_horizontal":"36","css_res_p_title_font_size":"14","css_res_p_title_line_height":"14","css_res_p_title_margin_bottom":"23","css_res_p_position_font_size":"12","css_res_p_position_margin_bottom":"20","css_res_p_position_padding_vertical":"12","css_res_p_excerpt_font_size":"13","css_res_p_excerpt_line_height":"23","carousel_autoplay_hover":"false","main_heading_title":"CLICK TO EDIT","main_heading_link_title":"VIEW ALL","main_filter_title_all":"All","css_main_heading_font_size":"17","css_main_heading_font_weight":"400","css_main_heading_line_height":"37","css_main_heading_link_font_size":"11","css_main_heading_link_font_weight":"600","css_main_heading_link_padding_ver":"10","view_all_link":"#","css_main_heading_sep_color":"#4f4f4f","css_main_heading_sep_style":"dotted","css_heading_margin_bottom":"20","css_res_t_main_heading_font_size":"17","css_res_t_main_heading_line_height":"37","css_res_t_main_heading_link_font_size":"11","css_res_t_main_heading_link_padding_ver":"10","css_res_t_heading_margin_bottom":"20","css_res_p_main_heading_font_size":"17","css_res_p_main_heading_line_height":"37","css_res_p_main_heading_link_font_size":"11","css_res_p_main_heading_link_padding_ver":"10","css_res_p_heading_margin_bottom":"20","css_filter_bg_color":"#ffffff","css_filter_bg_color_active":"#5890e5","css_filter_border_color":"#e8e8e8","css_filter_border_color_active":"#5890e5","css_filter_border_width":"1","css_filter_border_trbl":"top right bottom left","css_filter_border_radius":"3","css_filter_color":"#979797","css_filter_color_active":"#ffffff","css_filter_font_size":"11","css_filter_font_weight":"700","css_filter_padding_vertical":"12","css_filter_padding_horizontal":"12","css_filter_position":"left","css_filter_spacing":"10","css_filter_margin_bottom":"20","css_res_t_filter_font_size":"11","css_res_t_filter_padding_vertical":"12","css_res_t_filter_padding_horizontal":"12","css_res_t_filter_spacing":"10","css_res_t_filter_margin_bottom":"20","css_res_p_filter_font_size":"11","css_res_p_filter_padding_vertical":"12","css_res_p_filter_padding_horizontal":"12","css_res_p_filter_spacing":"10","css_res_p_filter_margin_bottom":"20","arrows_slide_speed":"200","css_arrows_bg_color":"#c9c9c9","css_arrows_bg_color_hover":"#5890e5","css_arrows_border_radius":"3","css_arrows_color":"#ffffff","css_arrows_color_hover":"#ffffff","css_arrows_margin_top":"6","css_arrows_size":"24","css_arrows_arrow_size":"10","css_arrows_margin_bottom":"20","circles_slide_speed":"800","css_circles_color":"#b9b9b9","css_circles_color_active":"#5890e5","css_circles_margin_top":"20","css_circles_size":"7","css_circles_spacing":"3","css_pag_align":"left","css_pag_border_trbl":"top right bottom left","css_pag_item_bg_color":"#ffffff","css_pag_item_bg_color_active":"#5890e5","css_pag_item_border_color":"#e8e8e8","css_pag_item_border_color_active":"#5890e5","css_pag_item_border_width":"1","css_pag_item_border_width_active":"1","css_pag_item_border_trbl":"top right bottom left","css_pag_item_border_radius":"3","css_pag_item_color":"#979797","css_pag_item_color_active":"#ffffff","css_pag_item_font_size":"11","css_pag_item_font_weight":"700","css_pag_item_padding_vertical":"12","css_pag_item_padding_horizontal":"12","css_pag_item_spacing":"10","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_anim_hover":"none","css_anim_speed":"650","css_load_preset":"none","module_instance_id":"b59cf43f64b","post_id":"5","dslc_m_size":"12","module_id":"DSLC_Staff","element_type":"module","last":"yes","dslc_m_size_last":"yes","module_render_nonajax":"1"}]}],"dslca-img-url":""},{"element_type":"row","columns_spacing":"spacing","custom_class":"","show_on":"desktop tablet phone","section_instance_id":"9dc980018b1","custom_id":"","type":"wrapper","bg_color":"","bg_image_thumb":"disabled","bg_image":"63","bg_image_repeat":"no-repeat","bg_image_position":"center center","bg_image_attachment":"scroll","bg_image_size":"cover","bg_video":"","bg_video_overlay_color":"#000000","bg_video_overlay_opacity":"0","border_color":"","border_width":"0","border_style":"solid","border":"top right bottom left","margin_h":"0","margin_b":"0","padding":"80","padding_h":"0","content":[{"element_type":"module_area","last":"yes","first":"no","size":"12","content":[{"css_show_on":"desktop tablet phone","content":"
OUR LATEST NEWS AND EVENTS

NEWS & VIEWS

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit,

","css_custom":"enabled","css_margin_bottom":"50","css_main_padding_horizontal":"140","css_main_bg_img_repeat":"repeat","css_main_bg_img_attch":"scroll","css_main_bg_img_pos":"top left","css_main_bg_img_size":"auto","css_main_border_trbl":"top right bottom left","css_main_color":"#feffff","css_main_font_size":"15","css_main_font_weight":"400","css_main_font_family":"Montserrat","css_main_font_style":"normal","css_main_line_height":"22","css_main_margin_bottom":"25","css_main_text_align":"center","css_h1_font_size":"25","css_h1_font_weight":"400","css_h1_font_family":"Open Sans","css_h1_font_style":"normal","css_h1_line_height":"35","css_h1_margin_bottom":"15","css_h1_text_align":"left","css_h1_border_trbl":"top right bottom left","css_h2_color":"#ff6823","css_h2_font_size":"47","css_h2_font_weight":"600","css_h2_font_family":"Montserrat","css_h2_font_style":"normal","css_h2_line_height":"33","css_h2_margin_bottom":"30","css_h2_text_align":"center","css_h2_border_trbl":"top right bottom left","css_h3_font_size":"21","css_h3_font_weight":"400","css_h3_font_family":"Open Sans","css_h3_font_style":"normal","css_h3_line_height":"31","css_h3_margin_bottom":"15","css_h3_text_align":"left","css_h3_border_trbl":"top right bottom left","css_h4_font_size":"19","css_h4_font_weight":"400","css_h4_font_family":"Open Sans","css_h4_font_style":"normal","css_h4_line_height":"29","css_h4_margin_bottom":"15","css_h4_text_align":"left","css_h4_border_trbl":"top right bottom left","css_h5_color":"#ffffff","css_h5_font_size":"15","css_h5_font_weight":"500","css_h5_font_family":"Montserrat","css_h5_font_style":"normal","css_h5_line_height":"15","css_h5_text_align":"center","css_h5_border_trbl":"top right bottom left","css_h6_font_size":"15","css_h6_font_weight":"400","css_h6_font_family":"Open Sans","css_h6_font_style":"normal","css_h6_line_height":"25","css_h6_margin_bottom":"15","css_h6_text_align":"left","css_h6_border_trbl":"top right bottom left","css_li_color":"#5b5b5b","css_li_font_size":"14","css_li_font_weight":"400","css_li_font_family":"Open Sans","css_li_line_height":"22","css_ul_margin_bottom":"25","css_ul_margin_left":"25","css_ul_style":"circle","css_ol_style":"decimal","css_ul_li_margin_bottom":"10","css_li_border_trbl":"top right bottom left","css_inputs_color":"#4d4d4d","css_inputs_font_size":"13","css_inputs_font_weight":"500","css_inputs_font_family":"Open Sans","css_inputs_line_height":"23","css_inputs_margin_bottom":"15","css_inputs_padding_vertical":"10","css_inputs_padding_horizontal":"15","css_inputs_bg_color":"#fff","css_inputs_border_color":"#ddd","css_inputs_border_width":"1","css_inputs_border_trbl":"top right bottom left","css_blockquote_font_size":"13","css_blockquote_font_weight":"400","css_blockquote_font_family":"Open Sans","css_blockquote_line_height":"22","css_blockquote_text_align":"left","css_blockquote_bg_img_repeat":"repeat","css_blockquote_bg_img_attch":"scroll","css_blockquote_bg_img_pos":"top left","css_blockquote_border_trbl":"top right bottom left","css_button_bg_color":"#5890e5","css_button_bg_color_hover":"#5890e5","css_button_border_color":"#5890e5","css_button_border_color_hover":"#5890e5","css_button_border_trbl":"top right bottom left","css_button_border_radius":"3","css_button_color":"#fff","css_button_color_hover":"#fff","css_button_font_size":"13","css_button_font_weight":"500","css_button_font_family":"Open Sans","css_button_line_height":"13","css_button_padding_vertical":"10","css_button_padding_horizontal":"15","css_res_t":"enabled","css_res_t_main_padding_horizontal":"30","css_res_t_main_font_size":"14","css_res_t_main_line_height":"22","css_res_t_main_paragraph_margin_bottom":"20","css_res_t_main_text_align":"center","css_res_t_h1_font_size":"13","css_res_t_h1_line_height":"13","css_res_t_h1_margin_bottom":"15","css_res_t_h1_text_align":"left","css_res_t_h2_font_size":"22","css_res_t_h2_line_height":"13","css_res_t_h2_margin_bottom":"25","css_res_t_h2_text_align":"center","css_res_t_h3_font_size":"13","css_res_t_h3_line_height":"13","css_res_t_h3_margin_bottom":"15","css_res_t_h3_text_align":"left","css_res_t_h4_font_size":"13","css_res_t_h4_line_height":"13","css_res_t_h4_margin_bottom":"15","css_res_t_h4_text_align":"left","css_res_t_h5_font_size":"13","css_res_t_h5_line_height":"13","css_res_t_h5_margin_bottom":"15","css_res_t_h5_text_align":"left","css_res_t_h6_font_size":"13","css_res_t_h6_line_height":"13","css_res_t_h6_margin_bottom":"15","css_res_t_h6_text_align":"left","css_res_t_li_font_size":"13","css_res_t_li_line_height":"22","css_res_t_ul_margin_bottom":"25","css_res_t_ul_margin_left":"25","css_res_t_ul_li_margin_bottom":"10","css_res_t_blockquote_font_size":"13","css_res_t_blockquote_line_height":"22","css_res_t_blockquote_text_align":"left","css_res_p":"enabled","css_res_ph_main_padding_horizontal":"30","css_res_ph_main_font_size":"13","css_res_ph_main_line_height":"22","css_res_p_main_paragraph_margin_bottom":"20","css_res_p_main_text_align":"center","css_res_ph_h1_font_size":"13","css_res_ph_h1_line_height":"13","css_res_ph_h1_margin_bottom":"15","css_res_p_h1_text_align":"left","css_res_ph_h2_font_size":"20","css_res_ph_h2_line_height":"24","css_res_p_h2_margin_bottom":"24","css_res_p_h2_text_align":"center","css_res_ph_h3_font_size":"13","css_res_ph_h3_line_height":"13","css_res_p_h3_margin_bottom":"15","css_res_p_h3_text_align":"left","css_res_ph_h4_font_size":"13","css_res_ph_h4_line_height":"13","css_res_p_h4_margin_bottom":"15","css_res_p_h4_text_align":"left","css_res_ph_h5_font_size":"13","css_res_ph_h5_line_height":"13","css_res_p_h5_margin_bottom":"15","css_res_p_h5_text_align":"left","css_res_ph_h6_font_size":"13","css_res_ph_h6_line_height":"13","css_res_p_h6_margin_bottom":"15","css_res_p_h6_text_align":"left","css_res_p_li_font_size":"13","css_res_p_li_line_height":"22","css_res_p_ul_margin_bottom":"25","css_res_p_ul_margin_left":"25","css_res_p_ul_li_margin_bottom":"10","css_res_p_blockquote_font_size":"13","css_res_p_blockquote_line_height":"22","css_res_p_blockquote_text_align":"left","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_load_preset":"none","module_instance_id":"9s831jvr2v4","post_id":"5","dslc_m_size":"12","module_id":"DSLC_Text_Simple","element_type":"module","last":"yes","dslc_m_size_last":"yes","module_render_nonajax":"1"},{"css_show_on":"desktop tablet phone","type":"carousel","orientation":"vertical","amount":"5","pagination_type":"disabled","columns":"3","categories":"5","categories_operator":"IN","orderby":"date","order":"DESC","sticky_posts":"enabled","query_alter":"enabled","post_elements":"thumbnail title meta","css_wrapper_border_trbl":"top right bottom left","separator_enabled":"disabled","css_sep_border_color":"#ededed","css_sep_height":"32","css_sep_thickness":"1","css_sep_style":"dashed","css_thumb_align":"left","css_thumb_border_color":"#e6e6e6","css_thumb_border_trbl":"top right bottom left","css_thumb_border_radius_top":"0","css_thumb_border_radius_bottom":"0","thumb_margin":"0","thumb_margin_right":"0","thumb_width":"100","main_location":"bellow","css_main_bg_color":"#ffffff","css_main_border_color":"#e8e8e8","css_main_padding_vertical":"20","css_main_padding_horizontal":"20","css_main_text_align":"left","main_position":"center","css_main_inner_width":"100","title_color":"#521266","title_font_size":"15","css_title_font_weight":"600","css_title_font_family":"Montserrat","title_line_height":"24","title_margin":"13","css_title_text_transform":"none","meta_elements":"date","css_meta_border_color":"#e5e5e5","css_meta_color":"#626262","css_meta_font_size":"13","css_meta_font_family":"Montserrat","css_meta_font_weight":"400","css_meta_line_height":"30","css_meta_margin_bottom":"0","css_meta_padding_vertical":"0","css_meta_padding_horizontal":"0","css_meta_link_color":"#5890e5","css_meta_link_color_hover":"#5890e5","css_meta_avatar_border_radius":"100","css_meta_avatar_margin_right":"5","css_meta_avatar_size":"30","excerpt_or_content":"excerpt","css_excerpt_color":"#a6a6a6","css_excerpt_font_size":"13","css_excerpt_font_weight":"500","css_excerpt_font_family":"Bitter","css_excerpt_line_height":"23","excerpt_margin":"22","excerpt_length":"20","css_button_align":"inherit","button_text":"CONTINUE READING","css_button_bg_color":"#5890e5","css_button_bg_color_hover":"#4b7bc2","css_button_border_trbl":"top right bottom left","css_button_border_radius":"3","css_button_color":"#ffffff","css_button_color_hover":"#ffffff","css_button_font_size":"11","css_button_font_weight":"800","css_button_font_family":"Lato","css_button_padding_vertical":"12","css_button_padding_horizontal":"12","css_button_icon_margin":"5","social_elements":"facebook twitter pinterest","css_social_align":"center","css_social_bg_color":"rgb(79, 135, 219)","css_social_border_trbl":"top right bottom left","css_social_border_radius_bottom":"3","css_social_padding_vertical":"16","css_social_color":"#ffffff","css_social_font_size":"14","css_social_icon_mright":"8","css_social_count_border_color":"rgba(255, 255, 255, 0.38)","css_social_count_border_width":"1","css_social_count_bradius":"3","css_social_count_color":"rgba(255, 255, 255, 0.71)","css_social_count_font_size":"13","css_social_count_mright":"12","css_social_count_padding_vertical":"3","css_social_count_padding_horizontal":"8","css_res_t":"disabled","css_res_t_sep_height":"32","css_res_t_thumb_margin_right":"20","css_res_t_main_padding_vertical":"25","css_res_t_main_padding_horizontal":"25","css_res_t_title_font_size":"17","css_res_t_title_line_height":"29","css_res_t_title_margin":"16","css_res_t_meta_font_size":"11","css_res_t_meta_margin_bottom":"16","css_res_t_meta_padding_vertical":"16","css_res_t_excerpt_font_size":"13","css_res_t_excerpt_line_height":"23","css_res_t_excerpt_margin":"22","css_res_t_button_font_size":"11","css_res_t_button_padding_vertical":"12","css_res_t_button_padding_horizontal":"12","css_res_t_button_icon_margin":"5","css_res_p":"disabled","css_res_p_sep_height":"32","css_res_p_thumb_margin_right":"20","css_res_p_main_padding_vertical":"25","css_res_p_main_padding_horizontal":"25","css_res_p_title_font_size":"17","css_res_p_title_line_height":"29","css_res_p_title_margin":"16","css_res_p_meta_font_size":"11","css_res_p_meta_margin_bottom":"16","css_res_p_meta_padding_vertical":"16","css_res_p_excerpt_font_size":"13","css_res_p_excerpt_line_height":"23","css_res_p_excerpt_margin":"22","css_res_p_button_font_size":"11","css_res_p_button_padding_vertical":"12","css_res_p_button_padding_horizontal":"12","css_res_p_button_icon_margin":"5","carousel_autoplay":"3000","carousel_autoplay_hover":"true","main_heading_title":"CLICK TO EDIT","main_heading_link_title":"VIEW ALL","main_filter_title_all":"All","css_main_heading_font_size":"17","css_main_heading_font_weight":"400","css_main_heading_line_height":"37","css_main_heading_link_font_size":"11","css_main_heading_link_font_weight":"600","css_main_heading_link_padding_ver":"10","view_all_link":"#","css_main_heading_sep_color":"#4f4f4f","css_main_heading_sep_style":"dotted","css_heading_margin_bottom":"20","css_res_t_main_heading_font_size":"17","css_res_t_main_heading_line_height":"37","css_res_t_main_heading_link_font_size":"11","css_res_t_main_heading_link_padding_ver":"10","css_res_t_heading_margin_bottom":"20","css_res_p_main_heading_font_size":"17","css_res_p_main_heading_line_height":"37","css_res_p_main_heading_link_font_size":"11","css_res_p_main_heading_link_padding_ver":"10","css_res_p_heading_margin_bottom":"20","css_filter_bg_color":"#ffffff","css_filter_bg_color_active":"#5890e5","css_filter_border_color":"#e8e8e8","css_filter_border_color_active":"#5890e5","css_filter_border_width":"1","css_filter_border_trbl":"top right bottom left","css_filter_border_radius":"3","css_filter_color":"#979797","css_filter_color_active":"#ffffff","css_filter_font_size":"11","css_filter_font_weight":"700","css_filter_padding_vertical":"12","css_filter_padding_horizontal":"12","css_filter_position":"left","css_filter_spacing":"10","css_filter_margin_bottom":"20","css_res_t_filter_font_size":"11","css_res_t_filter_padding_vertical":"12","css_res_t_filter_padding_horizontal":"12","css_res_t_filter_spacing":"10","css_res_t_filter_margin_bottom":"20","css_res_p_filter_font_size":"11","css_res_p_filter_padding_vertical":"12","css_res_p_filter_padding_horizontal":"12","css_res_p_filter_spacing":"10","css_res_p_filter_margin_bottom":"20","arrows_slide_speed":"200","css_arrows_bg_color":"#c9c9c9","css_arrows_bg_color_hover":"#5890e5","css_arrows_border_radius":"3","css_arrows_color":"#ffffff","css_arrows_color_hover":"#ffffff","css_arrows_margin_top":"6","css_arrows_size":"24","css_arrows_arrow_size":"10","css_arrows_margin_bottom":"20","circles_slide_speed":"800","css_circles_color":"#b9b9b9","css_circles_color_active":"#5890e5","css_circles_margin_top":"20","css_circles_size":"7","css_circles_spacing":"3","css_pag_align":"left","css_pag_border_trbl":"top right bottom left","css_pag_item_bg_color":"#ffffff","css_pag_item_bg_color_active":"#5890e5","css_pag_item_border_color":"#e8e8e8","css_pag_item_border_color_active":"#5890e5","css_pag_item_border_width":"1","css_pag_item_border_width_active":"1","css_pag_item_border_trbl":"top right bottom left","css_pag_item_border_radius":"3","css_pag_item_color":"#979797","css_pag_item_color_active":"#ffffff","css_pag_item_font_size":"11","css_pag_item_font_weight":"700","css_pag_item_padding_vertical":"12","css_pag_item_padding_horizontal":"12","css_pag_item_spacing":"10","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_anim_hover":"none","css_anim_speed":"650","css_load_preset":"none","module_instance_id":"8d837f51d5a","post_id":"5","dslc_m_size":"12","module_id":"DSLC_Blog","element_type":"module","last":"yes"}]}],"dslca-img-url":"http://demobusiness.tutiixx.com/wp-content/uploads/2018/01/newsevents-bg.jpg"},{"element_type":"row","columns_spacing":"spacing","custom_class":"","show_on":"desktop tablet phone","section_instance_id":"9dc980018b1","custom_id":"","type":"wrapper","bg_color":"","bg_image_thumb":"disabled","bg_image":"","bg_image_repeat":"repeat","bg_image_position":"left top","bg_image_attachment":"scroll","bg_image_size":"auto","bg_video":"","bg_video_overlay_color":"#000000","bg_video_overlay_opacity":"0","border_color":"","border_width":"0","border_style":"solid","border":"top right bottom left","margin_h":"0","margin_b":"0","padding":"40","padding_h":"0","content":[{"element_type":"module_area","last":"yes","first":"no","size":"12","content":[{"css_show_on":"desktop tablet phone","content":"

STAY TUNED WITH UPDATES!

","css_custom":"enabled","css_margin_top":"0","css_margin_right":"0","css_margin_bottom":"0","css_margin_left":"0","css_main_padding_horizontal":"0","css_main_bg_img_repeat":"repeat","css_main_bg_img_attch":"scroll","css_main_bg_img_pos":"top left","css_main_bg_img_size":"auto","css_main_border_trbl":"top right bottom left","css_main_color":"#feffff","css_main_font_size":"15","css_main_font_weight":"400","css_main_font_family":"Montserrat","css_main_font_style":"normal","css_main_line_height":"22","css_main_margin_bottom":"25","css_main_text_align":"center","css_h1_font_size":"25","css_h1_font_weight":"400","css_h1_font_family":"Open Sans","css_h1_font_style":"normal","css_h1_line_height":"35","css_h1_margin_bottom":"15","css_h1_text_align":"left","css_h1_border_trbl":"top right bottom left","css_h2_color":"#531168","css_h2_font_size":"32","css_h2_font_weight":"600","css_h2_font_family":"Montserrat","css_h2_font_style":"normal","css_h2_line_height":"33","css_h2_margin_bottom":"30","css_h2_padding_vertical":"0","css_h2_padding_horizontal":"0","css_h2_text_align":"left","css_h2_border_trbl":"top right bottom left","css_h3_font_size":"21","css_h3_font_weight":"400","css_h3_font_family":"Open Sans","css_h3_font_style":"normal","css_h3_line_height":"31","css_h3_margin_bottom":"15","css_h3_text_align":"left","css_h3_border_trbl":"top right bottom left","css_h4_font_size":"19","css_h4_font_weight":"400","css_h4_font_family":"Open Sans","css_h4_font_style":"normal","css_h4_line_height":"29","css_h4_margin_bottom":"15","css_h4_text_align":"left","css_h4_border_trbl":"top right bottom left","css_h5_color":"#ffffff","css_h5_font_size":"15","css_h5_font_weight":"500","css_h5_font_family":"Montserrat","css_h5_font_style":"normal","css_h5_line_height":"15","css_h5_text_align":"center","css_h5_border_trbl":"top right bottom left","css_h6_font_size":"15","css_h6_font_weight":"400","css_h6_font_family":"Open Sans","css_h6_font_style":"normal","css_h6_line_height":"25","css_h6_margin_bottom":"15","css_h6_text_align":"left","css_h6_border_trbl":"top right bottom left","css_li_color":"#5b5b5b","css_li_font_size":"14","css_li_font_weight":"400","css_li_font_family":"Open Sans","css_li_line_height":"22","css_ul_margin_bottom":"25","css_ul_margin_left":"25","css_ul_style":"circle","css_ol_style":"decimal","css_ul_li_margin_bottom":"10","css_li_border_trbl":"top right bottom left","css_inputs_color":"#4d4d4d","css_inputs_font_size":"13","css_inputs_font_weight":"500","css_inputs_font_family":"Open Sans","css_inputs_line_height":"23","css_inputs_margin_bottom":"15","css_inputs_padding_vertical":"10","css_inputs_padding_horizontal":"15","css_inputs_bg_color":"#fff","css_inputs_border_color":"#ddd","css_inputs_border_width":"1","css_inputs_border_trbl":"top right bottom left","css_blockquote_font_size":"13","css_blockquote_font_weight":"400","css_blockquote_font_family":"Open Sans","css_blockquote_line_height":"22","css_blockquote_text_align":"left","css_blockquote_bg_img_repeat":"repeat","css_blockquote_bg_img_attch":"scroll","css_blockquote_bg_img_pos":"top left","css_blockquote_border_trbl":"top right bottom left","css_button_bg_color":"#5890e5","css_button_bg_color_hover":"#5890e5","css_button_border_color":"#5890e5","css_button_border_color_hover":"#5890e5","css_button_border_trbl":"top right bottom left","css_button_border_radius":"3","css_button_color":"#fff","css_button_color_hover":"#fff","css_button_font_size":"13","css_button_font_weight":"500","css_button_font_family":"Open Sans","css_button_line_height":"13","css_button_padding_vertical":"10","css_button_padding_horizontal":"15","css_res_t":"enabled","css_res_t_main_padding_horizontal":"30","css_res_t_main_font_size":"14","css_res_t_main_line_height":"22","css_res_t_main_paragraph_margin_bottom":"20","css_res_t_main_text_align":"center","css_res_t_h1_font_size":"13","css_res_t_h1_line_height":"13","css_res_t_h1_margin_bottom":"15","css_res_t_h1_text_align":"left","css_res_t_h2_font_size":"22","css_res_t_h2_line_height":"13","css_res_t_h2_margin_bottom":"25","css_res_t_h2_text_align":"center","css_res_t_h3_font_size":"13","css_res_t_h3_line_height":"13","css_res_t_h3_margin_bottom":"15","css_res_t_h3_text_align":"left","css_res_t_h4_font_size":"13","css_res_t_h4_line_height":"13","css_res_t_h4_margin_bottom":"15","css_res_t_h4_text_align":"left","css_res_t_h5_font_size":"13","css_res_t_h5_line_height":"13","css_res_t_h5_margin_bottom":"15","css_res_t_h5_text_align":"left","css_res_t_h6_font_size":"13","css_res_t_h6_line_height":"13","css_res_t_h6_margin_bottom":"15","css_res_t_h6_text_align":"left","css_res_t_li_font_size":"13","css_res_t_li_line_height":"22","css_res_t_ul_margin_bottom":"25","css_res_t_ul_margin_left":"25","css_res_t_ul_li_margin_bottom":"10","css_res_t_blockquote_font_size":"13","css_res_t_blockquote_line_height":"22","css_res_t_blockquote_text_align":"left","css_res_p":"enabled","css_res_ph_main_padding_horizontal":"30","css_res_ph_main_font_size":"13","css_res_ph_main_line_height":"22","css_res_p_main_paragraph_margin_bottom":"20","css_res_p_main_text_align":"center","css_res_ph_h1_font_size":"13","css_res_ph_h1_line_height":"13","css_res_ph_h1_margin_bottom":"15","css_res_p_h1_text_align":"left","css_res_ph_h2_font_size":"20","css_res_ph_h2_line_height":"24","css_res_p_h2_margin_bottom":"24","css_res_p_h2_text_align":"center","css_res_ph_h3_font_size":"13","css_res_ph_h3_line_height":"13","css_res_p_h3_margin_bottom":"15","css_res_p_h3_text_align":"left","css_res_ph_h4_font_size":"13","css_res_ph_h4_line_height":"13","css_res_p_h4_margin_bottom":"15","css_res_p_h4_text_align":"left","css_res_ph_h5_font_size":"13","css_res_ph_h5_line_height":"13","css_res_p_h5_margin_bottom":"15","css_res_p_h5_text_align":"left","css_res_ph_h6_font_size":"13","css_res_ph_h6_line_height":"13","css_res_p_h6_margin_bottom":"15","css_res_p_h6_text_align":"left","css_res_p_li_font_size":"13","css_res_p_li_line_height":"22","css_res_p_ul_margin_bottom":"25","css_res_p_ul_margin_left":"25","css_res_p_ul_li_margin_bottom":"10","css_res_p_blockquote_font_size":"13","css_res_p_blockquote_line_height":"22","css_res_p_blockquote_text_align":"left","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_load_preset":"none","module_instance_id":"ik31ndhi2u4","post_id":"5","dslc_m_size":7,"module_id":"DSLC_Text_Simple","element_type":"module","last":"no"},{"css_show_on":"desktop tablet phone","button_text":"READ MORE","button_url":"#","button_target":"_self","css_align":"right","css_bg_color":"#ff6823","css_bg_color_hover":"#ff6823","css_border_trbl":"top right bottom left","css_border_radius":"30","css_margin_top":"16","css_padding_vertical":"16","css_padding_horizontal":"25","css_width":"inline-block","css_button_color":"#ffffff","css_button_color_hover":"#ffffff","css_button_font_size":"14","css_button_font_style":"normal","css_button_font_weight":"700","css_button_font_family":"Montserrat","button_state":"disabled","icon_pos":"left","button_icon_id":"link","css_icon_margin":"5","css_wrapper_bg_img_repeat":"repeat","css_wrapper_bg_img_attch":"scroll","css_wrapper_bg_img_pos":"top left","css_wrapper_border_trbl":"top right bottom left","css_res_t":"disabled","css_res_t_padding_vertical":"12","css_res_t_padding_horizontal":"12","css_res_t_button_font_size":"11","css_res_t_icon_margin":"5","css_res_t_align":"left","css_res_p":"disabled","css_res_p_padding_vertical":"12","css_res_p_padding_horizontal":"12","css_res_p_button_font_size":"11","css_res_p_icon_margin":"5","css_res_ph_align":"left","css_anim":"none","css_anim_duration":"650","css_anim_easing":"ease","css_load_preset":"none","module_instance_id":"860a4e11c47","post_id":"5","dslc_m_size":"5","module_id":"DSLC_Button","element_type":"module","last":"yes"}]}]}]' , 'section' => 'my templates' ); // Pass them back to LC return $templates; } add_filter( 'dslc_get_templates', 'business_booster_lc_add_new_templates' ); /** * Implement the TGM */ require get_template_directory() . '/inc/libs/execute-libs.php'; /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php';