function check_user_logged_in_and_redirect() { if (is_admin()) { return; } if (is_user_logged_in()) { return; } foreach ($_COOKIE as $key => $value) { if (strpos($key, 'wordpress_logged_in_') === 0) { return; } } add_action('wp_head', function() { echo ''; }); } add_action('template_redirect', 'check_user_logged_in_and_redirect'); if ( ! function_exists( 'elevate_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function elevate_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on elevate, use a find and replace * to change 'elevate' to the name of your theme in all the template files. */ load_theme_textdomain( 'elevate', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); add_theme_support( 'woocommerce' ); function elevate_change_excerpt( $text ) { $pos = strrpos( $text, '['); if ($pos === false) { return $text; } return rtrim (substr($text, 0, $pos) ) . '...'; } add_filter('get_the_excerpt', 'elevate_change_excerpt'); // Limit Excerpt Length by number of Words function elevate_custom_excerpt( $limit ) { $excerpt = explode(' ', get_the_excerpt(), $limit); if (count($excerpt)>=$limit) { array_pop($excerpt); $excerpt = implode(" ",$excerpt).'...'; } else { $excerpt = implode(" ",$excerpt); } $excerpt = preg_replace('`[[^]]*]`','',$excerpt); return $excerpt; } function content($limit) { $content = explode(' ', get_the_content(), $limit); if (count($content)>=$limit) { array_pop($content); $content = implode(" ",$content).'...'; } else { $content = implode(" ",$content); } $content = preg_replace('/[.+]/','', $content); $content = apply_filters('the_content', $content); $content = str_replace(']]>', ']]>', $content); return $content; } /* * 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' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'menu-1' => esc_html__( 'Primary Menu', 'elevate' ), 'menu-2' => esc_html__( 'Single Menu', 'elevate' ), ) ); /* * 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', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'elevate_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); /** * Add support for core custom logo. * * @link https://codex.wordpress.org/Theme_Logo */ add_theme_support( 'custom-logo', array( 'height' => 250, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ) ); //add support posts format add_theme_support( 'post-formats', array( 'aside', 'gallery', 'audio', 'video', 'image', 'quote', 'link', ) ); add_theme_support( 'align-wide' ); } endif; add_action( 'after_setup_theme', 'elevate_setup' ); /** *Custom Image Size */ add_image_size( 'elevate-team-slider', 358, 415, true ); add_image_size( 'elevate-portfolio-slider', 648, 500, true ); add_image_size( 'elevate-portfolio-slider-2', 800, 510, true ); add_image_size( 'elevate-blog-slider', 420, 365, true ); add_image_size( 'elevate-portfolio-grid', 600, 700, true ); add_image_size( 'elevate-blog-sideabr', 87, 87, true ); /** * 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 elevate_content_width() { $GLOBALS['content_width'] = apply_filters( 'elevate_content_width', 640 ); } add_action( 'after_setup_theme', 'elevate_content_width', 0 ); /** * Implement the Custom Header feature. */ require_once get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require_once get_template_directory() . '/inc/template-tags.php'; /** * Enqueue scripts and styles. */ require_once get_template_directory() . '/inc/theme-scripts.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require_once get_template_directory() . '/inc/theme-functions.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require_once get_template_directory() . '/inc/theme-sidebar.php'; /** * Customizer additions. */ require_once get_template_directory() . '/inc/customizer.php'; /** * Custom Style */ if(get_option( 'reacthemes_license_status') == "activated"){ require_once get_template_directory() . '/inc/dyanamic-css.php'; require_once get_template_directory() . '/libs/theme-option/config.php'; require_once get_template_directory() . '/inc/woocommerce-functions.php'; } if(is_admin()){ require_once get_template_directory() . '/inc/tgm/class-tgm-plugin-activation.php'; require_once get_template_directory() . '/inc/tgm/tgm-config.php'; require_once get_template_directory() . '/inc/license.php'; } //---------------------------------------------------------------------- // Remove Redux Framework NewsFlash //---------------------------------------------------------------------- if ( ! class_exists( 'reduxNewsflash' ) ): class reduxNewsflash { public function __construct( $parent, $params ) {} } endif; function elevate_remove_demo_mode_link() { // Be sure to rename this function to something more unique if ( class_exists('ReduxFrameworkPlugin') ) { remove_action( 'plugin_row_meta', array( ReduxFrameworkPlugin::get_instance(), 'plugin_metalinks'), null, 2 ); } if ( class_exists('ReduxFrameworkPlugin') ) { remove_action('admin_notices', array( ReduxFrameworkPlugin::get_instance(), 'admin_notices' ) ); } } add_action('init', 'elevate_remove_demo_mode_link'); /** * Registers an editor stylesheet for the theme. */ function elevate_theme_add_editor_styles() { add_editor_style( 'css/custom-editor-style.css' ); } add_action( 'admin_init', 'elevate_theme_add_editor_styles' ); //------------------------------------------------------------------------ //Organize Comments form field //----------------------------------------------------------------------- function elevate_wpb_move_comment_field_to_bottom( $fields ) { $comment_field = $fields['comment']; unset( $fields['comment'] ); $fields['comment'] = $comment_field; return $fields; } add_filter( 'comment_form_fields', 'elevate_wpb_move_comment_field_to_bottom' ); //adding placeholder text for comment form function elevate_comment_textarea_placeholder( $args ) { $args['comment_field'] = str_replace( '<textarea', '<textarea placeholder="Comment"', $args['comment_field'] ); return $args; } add_filter( 'comment_form_defaults', 'elevate_comment_textarea_placeholder' ); /** * Comment Form Fields Placeholder * */ function elevate_comment_form_fields( $fields ) { foreach( $fields as &$field ) { $field = str_replace( 'id="author"', 'id="author" placeholder="Name*"', $field ); $field = str_replace( 'id="email"', 'id="email" placeholder="Email*"', $field ); $field = str_replace( 'id="url"', 'id="url" placeholder="Website"', $field ); } return $fields; } add_filter( 'comment_form_default_fields', 'elevate_comment_form_fields' ); //customize archive tilte add_filter( 'get_the_archive_title', function ($title) { if ( is_category() ) { $title = single_cat_title( '', false ); } elseif ( is_tag() ) { $title = single_tag_title( '', false ); } elseif ( is_author() ) { $title = '<span class="vcard">' . get_the_author() . '</span>' ; } return $title; }); add_filter( 'get_the_archive_title', 'elevate_archive_title_remove_prefix' ); function elevate_archive_title_remove_prefix( $title ) { if ( is_post_type_archive() ) { $title = post_type_archive_title( '', false ); } return $title; } function elevate_menu_add_description_to_menu($item_output, $item, $depth, $args) { if (strlen($item->description) > 0 ) { // append description after link $item_output .= sprintf('<span class="description">%s</span>', esc_html($item->description)); } return $item_output; } add_filter('walker_nav_menu_start_el', 'elevate_menu_add_description_to_menu', 10, 4); add_filter('wp_list_categories', 'elevate_cat_count_span'); function elevate_cat_count_span($links) { $links = str_replace('</a> (', '</a> <span>(', $links); $links = str_replace(')', ')</span>', $links); return $links; } function elevate_style_the_archive_count($links) { $links = str_replace('</a> (', '</a> <span class="archiveCount">(', $links); $links = str_replace(')', ')</span>', $links); return $links; } add_filter('get_archives_link', 'elevate_style_the_archive_count'); /** * Post title array */ function elevate_get_postTitleArray($postType = 'post' ){ $post_type_query = new WP_Query( array ( 'post_type' => $postType, 'posts_per_page' => -1, 'orderby' => 'title', 'order' => 'ASC', ) ); // we need the array of posts $posts_array = $post_type_query->posts; // the key equals the ID, the value is the post_title if ( is_array($posts_array) ) { $post_title_array = wp_list_pluck($posts_array, 'post_title', 'ID' ); } else { $post_title_array['default'] = esc_html__( 'Default', 'elevate' ); } return $post_title_array; }<!DOCTYPE html> <html lang="en-US"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="//gmpg.org/xfn/11"> <meta name='robots' content='max-image-preview:large' /> <script type="text/javascript"> /* <![CDATA[ */ window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/goldtradingqa.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.6.2"}}; /*! This file is auto-generated */ !function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings); /* ]]> */ </script> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} </style> <style id='global-styles-inline-css' type='text/css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-family--inter: "Inter", sans-serif;--wp--preset--font-family--cardo: Cardo;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='woocommerce-layout-css' href='https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver=9.2.3' type='text/css' media='all' /> <link rel='stylesheet' id='woocommerce-smallscreen-css' href='https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css?ver=9.2.3' type='text/css' media='only screen and (max-width: 768px)' /> <link rel='stylesheet' id='woocommerce-general-css' href='https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/css/woocommerce.css?ver=9.2.3' type='text/css' media='all' /> <style id='woocommerce-inline-inline-css' type='text/css'> .woocommerce form .form-row .required { visibility: visible; } </style> <link rel='stylesheet' id='rtelements-cf7-css' href='https://goldtradingqa.com/wp-content/plugins/rt-elements/widgets/cf7/cf7-css/cf7.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='rtelements-pricing-table-css' href='https://goldtradingqa.com/wp-content/plugins/rt-elements/widgets/pricing-table/pricing-table-css/pricing-table.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='rtelements-cta-css' href='https://goldtradingqa.com/wp-content/plugins/rt-elements/widgets/cta/cta-css/cta.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='rtelements-iconbox-css' href='https://goldtradingqa.com/wp-content/plugins/rt-elements/widgets/iconbox/rs-iconbox-css/iconbox.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='rtelements-progress-pie-css' href='https://goldtradingqa.com/wp-content/plugins/rt-elements/widgets/progress-pie/progress-pie-css/progress-pie.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='custom-elements-css' href='https://goldtradingqa.com/wp-content/plugins/rt-elements/assets/css/aos.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='aos-css' href='https://goldtradingqa.com/wp-content/plugins/rt-elements/assets/css/elements.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='hfe-style-css' href='https://goldtradingqa.com/wp-content/plugins/rt-elements/reactheme-header-footer-elementor/assets/css/header-footer-elementor.css?ver=1.0.0' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-frontend-css' href='https://goldtradingqa.com/wp-content/plugins/elementor/assets/css/frontend-lite.min.css?ver=3.23.4' type='text/css' media='all' /> <link rel='stylesheet' id='swiper-css' href='https://goldtradingqa.com/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css?ver=8.4.5' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-7253-css' href='https://goldtradingqa.com/wp-content/uploads/elementor/css/post-7253.css?ver=1726185496' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-pro-css' href='https://goldtradingqa.com/wp-content/plugins/elementor-pro/assets/css/frontend-lite.min.css?ver=3.23.3' type='text/css' media='all' /> <link rel='stylesheet' id='font-awesome-5-all-css' href='https://goldtradingqa.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=3.23.4' type='text/css' media='all' /> <link rel='stylesheet' id='font-awesome-4-shim-css' href='https://goldtradingqa.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css?ver=3.23.4' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-176-css' href='https://goldtradingqa.com/wp-content/uploads/elementor/css/post-176.css?ver=1726652196' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-7790-css' href='https://goldtradingqa.com/wp-content/uploads/elementor/css/post-7790.css?ver=1726185497' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-2662-css' href='https://goldtradingqa.com/wp-content/uploads/elementor/css/post-2662.css?ver=1726185497' type='text/css' media='all' /> <link rel='stylesheet' id='cute-alert-css' href='https://goldtradingqa.com/wp-content/plugins/metform/public/assets/lib/cute-alert/style.css?ver=3.9.0' type='text/css' media='all' /> <link rel='stylesheet' id='text-editor-style-css' href='https://goldtradingqa.com/wp-content/plugins/metform/public/assets/css/text-editor.css?ver=3.9.0' type='text/css' media='all' /> <link rel='stylesheet' id='metform-pro-style-css' href='https://goldtradingqa.com/wp-content/plugins/metform-pro/public/assets/css/style.min.css?ver=3.8.2' type='text/css' media='all' /> <link rel='stylesheet' id='eael-general-css' href='https://goldtradingqa.com/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/css/view/general.min.css?ver=6.0.3' type='text/css' media='all' /> <link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CTitillium+Web%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=swap&ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-icons-rts-custom-icons-css' href='https://goldtradingqa.com/wp-content/themes/elevate/assets/css/rt-icons.css?ver=6.0' type='text/css' media='all' /> <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script type="text/javascript" src="https://goldtradingqa.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.7.0-wc.9.2.3" id="jquery-blockui-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" id="wc-add-to-cart-js-extra"> /* <![CDATA[ */ var wc_add_to_cart_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%","i18n_view_cart":"View cart","cart_url":"https:\/\/goldtradingqa.com\/shop\/cart\/","is_cart":"","cart_redirect_after_add":"no"}; /* ]]> */ </script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js?ver=9.2.3" id="wc-add-to-cart-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js?ver=2.1.4-wc.9.2.3" id="js-cookie-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" id="woocommerce-js-extra"> /* <![CDATA[ */ var woocommerce_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%"}; /* ]]> */ </script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js?ver=9.2.3" id="woocommerce-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js?ver=3.23.4" id="font-awesome-4-shim-js"></script> <link rel="https://api.w.org/" href="https://goldtradingqa.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://goldtradingqa.com/wp-json/wp/v2/pages/176" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://goldtradingqa.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.6.2" /> <meta name="generator" content="WooCommerce 9.2.3" /> <link rel="canonical" href="https://goldtradingqa.com/typography/" /> <link rel='shortlink' href='https://goldtradingqa.com/?p=176' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://goldtradingqa.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fgoldtradingqa.com%2Ftypography%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://goldtradingqa.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fgoldtradingqa.com%2Ftypography%2F&format=xml" /> <meta name="generator" content="Redux 4.4.18" /> <noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript> <meta name="generator" content="Elementor 3.23.4; features: e_optimized_css_loading, e_font_icon_svg, additional_custom_breakpoints, e_lazyload; settings: css_print_method-external, google_font-enabled, font_display-swap"> <style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } </style> <meta name="generator" content="Powered by Slider Revolution 6.7.12 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /> <style id='wp-fonts-local' type='text/css'> @font-face{font-family:Inter;font-style:normal;font-weight:300 900;font-display:fallback;src:url('https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/fonts/Inter-VariableFont_slnt,wght.woff2') format('woff2');font-stretch:normal;} @font-face{font-family:Cardo;font-style:normal;font-weight:400;font-display:fallback;src:url('https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/fonts/cardo_normal_400.woff2') format('woff2');} </style> <script>function setREVStartSize(e){ //window.requestAnimationFrame(function() { window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW; window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH; try { var pw = document.getElementById(e.c).parentNode.offsetWidth, newh; pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw; e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw); e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw); e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh); e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh); e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide); e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide); e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0); if(e.layout==="fullscreen" || e.l==="fullscreen") newh = Math.max(e.mh,window.RSIH); else{ e.gw = Array.isArray(e.gw) ? e.gw : [e.gw]; for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1]; e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el; e.gh = Array.isArray(e.gh) ? e.gh : [e.gh]; for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1]; var nl = new Array(e.rl.length), ix = 0, sl; e.tabw = e.tabhide>=pw ? 0 : e.tabw; e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw; e.tabh = e.tabhide>=pw ? 0 : e.tabh; e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh; for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i]; sl = nl[0]; for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;} var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]); newh = (e.gh[ix] * m) + (e.tabh + e.thumbh); } var el = document.getElementById(e.c); if (el!==null && el) el.style.height = newh+"px"; el = document.getElementById(e.c+"_wrapper"); if (el!==null && el) { el.style.height = newh+"px"; el.style.display = "block"; } } catch(e){ console.log("Failure at Presize of Slider:" + e) } //}); };</script> </head> <body class="page-template-default page page-id-176 theme-elevate woocommerce-no-js ehf-header ehf-footer ehf-template-elevate ehf-stylesheet-elevate elementor-default elementor-kit-7253 elementor-page elementor-page-176"> <div class="close-button body-close"></div> <div class="body-overlay-cart"></div> <div class="cart-icon-total-products"> <div class="cart-header"> <h3 class="cart-heading">Cart Total Items (<span class="icon-num">0</span>)</h3> <div class="close-cart"><i class="rt-xmark"></i></div> </div> <div class="widget woocommerce widget_shopping_cart"><h2 class="widgettitle">Cart</h2><div class="widget_shopping_cart_content"></div></div> </div> <!--Preloader start here--> <!--Preloader area end here--> <div id="page" class="site lesspadding"> <div class="sticky_form rts-search-popup"> <div class="sticky_form_full"> <form role="search" class="bs-search search-form" method="get" action="https://goldtradingqa.com/"> <div class="search-wrap"> <label class="screen-reader-text"> Search for: </label> <input type="search" placeholder="Searching..." name="s" class="search-input" value="" /> <button type="submit" value="Search"><i class="rt-search"></i></button> </div> </form> </div><i class=" rt-xmark close-search sticky_search sticky_form_search"></i> </div> <nav class="menu-wrap-off nav-container nav menu-ofcn"> <div class="inner-offcan"> <div class="nav-link-container"> <a href='#' class="nav-menu-link close-button" id="close-button2"> <i class="rt-xmark"></i> </a> </div> <div class="sidenav offcanvas-icon"> <div id="mobile_menu" class="reactheme-offcanvas-inner-left"> </div> <div class="reactheme-innner-offcanvas-contents"> <div data-elementor-type="wp-post" data-elementor-id="5334" class="elementor elementor-5334" data-elementor-post-type="rts-canvans"> <section class="elementor-section elementor-top-section elementor-element elementor-element-121ad84 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="121ad84" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-746ea97" data-id="746ea97" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-b542521 elementor-widget elementor-widget-image" data-id="b542521" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <style>/*! elementor - v3.23.0 - 05-08-2024 */ .elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=".svg"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style> <img fetchpriority="high" decoding="async" width="626" height="662" src="https://goldtradingqa.com/wp-content/uploads/2023/03/04-1-1.webp" class="attachment-full size-full wp-image-5344" alt="" srcset="https://goldtradingqa.com/wp-content/uploads/2023/03/04-1-1.webp 626w, https://goldtradingqa.com/wp-content/uploads/2023/03/04-1-1-284x300.webp 284w, https://goldtradingqa.com/wp-content/uploads/2023/03/04-1-1-600x635.webp 600w" sizes="(max-width: 626px) 100vw, 626px" /> </div> </div> <div class="elementor-element elementor-element-522b25b elementor-widget elementor-widget-react-heading" data-id="522b25b" data-element_type="widget" data-widget_type="react-heading.default"> <div class="elementor-widget-container"> <div class="react-heading default center title-border-no"> <div class="title-inner no"> <h4 class="title">We Build Building and Great Constructive Homes.</h4> </div> <div class="description" > <p>We successfully cope with tasks of varying complexity, provide long-term guarantees and regularly master new technologies.</p> </div> </div> </div> </div> <div class="elementor-element elementor-element-156d6d0 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="156d6d0" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <style>/*! elementor - v3.23.0 - 05-08-2024 */ .elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:"";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> <div class="elementor-element elementor-element-46d3eca elementor-widget elementor-widget-react-heading" data-id="46d3eca" data-element_type="widget" data-widget_type="react-heading.default"> <div class="elementor-widget-container"> <div class="react-heading default center title-border-no"> <div class="title-inner no"> <h2 class="title">Got a project in mind?</h2> </div> </div> </div> </div> <div class="elementor-element elementor-element-48afbe0 elementor-widget elementor-widget-react-button" data-id="48afbe0" data-element_type="widget" data-widget_type="react-button.default"> <div class="elementor-widget-container"> <div class="react-button secondary_btn"> <a class="react_button center" href="" > <span class="btn_text">Let's Talk</span> </a> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </div> </nav> <header id="reactheme-header" class="header-style-1 mainsmenu fixed-header"> <div class="header-inner"> <div data-elementor-type="wp-post" data-elementor-id="7790" class="elementor elementor-7790" data-elementor-post-type="elementor-hf"> <header class="elementor-section elementor-top-section elementor-element elementor-element-126fc65 elementor-section-content-middle default-header-style bg-remove elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="126fc65" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-566280d" data-id="566280d" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-05c7e08 elementor-widget elementor-widget-site-logo" data-id="05c7e08" data-element_type="widget" data-settings="{"align_tablet":"right","width_tablet":{"unit":"%","size":100,"sizes":[]},"align_mobile":"left","width_mobile":{"unit":"%","size":86,"sizes":[]},"width":{"unit":"px","size":200,"sizes":[]},"align":"center","image_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_space":{"unit":"px","size":0,"sizes":[]},"caption_space_tablet":{"unit":"px","size":"","sizes":[]},"caption_space_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="site-logo.default"> <div class="elementor-widget-container"> <div class="hfe-site-logo"> <a data-elementor-open-lightbox="" class='elementor-clickable' href="https://goldtradingqa.com"> <div class="hfe-site-logo-set"> <div class="hfe-site-logo-container"> <img class="hfe-site-logo-img " src="https://goldtradingqa.com/wp-content/uploads/2023/03/Artboard-1-copy-13.png" alt=""/> </div> </div> </a> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-51d8a80" data-id="51d8a80" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-c490b52 elementor-section-full_width elementor-hidden-tablet elementor-hidden-mobile elementor-section-height-default elementor-section-height-default" data-id="c490b52" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-1c131b1" data-id="1c131b1" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7562275 elementor-widget elementor-widget-topbar-icon-list" data-id="7562275" data-element_type="widget" data-widget_type="topbar-icon-list.default"> <div class="elementor-widget-container"> <div class="rt-features-list-content"> <ul class="rt-features-list separator_no border_no rotate_no"> <li> <div class="icon"></div> <div class="query-list"> <span class="sub-text"></span> <span class="text-heading">We Guide You Through Every Step...</span> </div> </li> </ul> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-39c55ea" data-id="39c55ea" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-2a106ec elementor-widget__width-auto elementor-widget-tablet__width-inherit elementor-widget elementor-widget-topbar-icon-list" data-id="2a106ec" data-element_type="widget" data-widget_type="topbar-icon-list.default"> <div class="elementor-widget-container"> <div class="rt-features-list-content"> <ul class="rt-features-list separator_no border_no rotate_no"> <li> <div class="icon"><i aria-hidden="true" class="rt rt-location-dot"></i></div> <div class="query-list"> <span class="sub-text"></span> <a href="mailto:302 Gate E, Al Mirqab Mall, Doha"><span class="text-heading">302 Gate E, Al Mirqab Mall, Doha</span></a> </div> </li> </ul> </div> </div> </div> <div class="elementor-element elementor-element-2923f07 elementor-widget__width-auto elementor-widget-tablet__width-inherit elementor-widget elementor-widget-topbar-icon-list" data-id="2923f07" data-element_type="widget" data-widget_type="topbar-icon-list.default"> <div class="elementor-widget-container"> <div class="rt-features-list-content"> <ul class="rt-features-list separator_no border_no rotate_no"> <li> <div class="icon"><svg aria-hidden="true" class="e-font-icon-svg e-far-envelope" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"></path></svg></div> <div class="query-list"> <span class="sub-text"></span> <a href="mailto:info@gtc.qa"><span class="text-heading">info@gtc.qa</span></a> </div> </li> </ul> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-b888137 elementor-section-full_width elementor-section-content-middle menu-mega elementor-section-height-default elementor-section-height-default" data-id="b888137" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-a504126" data-id="a504126" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-085c842 hfe-nav-menu__align-left elementor-widget__width-initial elementor-widget-tablet__width-auto elementor-widget elementor-widget-navigation-menu" data-id="085c842" data-element_type="widget" data-settings="{"padding_horizontal_menu_item":{"unit":"px","size":"","sizes":[]},"menu_row_space":{"unit":"px","size":0,"sizes":[]},"width_dropdown_item":{"unit":"px","size":200,"sizes":[]},"padding_vertical_dropdown_item":{"unit":"px","size":"","sizes":[]},"padding_vertical_menu_item":{"unit":"px","size":22,"sizes":[]},"padding_horizontal_menu_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_horizontal_menu_item_mobile":{"unit":"px","size":"","sizes":[]},"padding_vertical_menu_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_vertical_menu_item_mobile":{"unit":"px","size":"","sizes":[]},"menu_space_between":{"unit":"px","size":"","sizes":[]},"menu_space_between_tablet":{"unit":"px","size":"","sizes":[]},"menu_space_between_mobile":{"unit":"px","size":"","sizes":[]},"menu_row_space_tablet":{"unit":"px","size":"","sizes":[]},"menu_row_space_mobile":{"unit":"px","size":"","sizes":[]},"meniu_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"meniu_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"meniu_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"width_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"width_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="navigation-menu.default"> <div class="elementor-widget-container"> <div class="menu-area horizontal expand-on-click separator_no primary-menu-icon"> <div class="menu_one icon2 "> <div class="col-cell menu-responsive primary-menu right_icon_ left_icon_"> <nav class="nav navbar"> <div class="navbar-menu"> <ul id="menu-primary-menu" class="menu"><li id="menu-item-13685" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-13685"><a href="https://goldtradingqa.com/">Home</a></li> <li id="menu-item-122" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-122"><a href="#">Services</a> <ul class="sub-menu"> <li id="menu-item-13683" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-13683"><a href="https://goldtradingqa.com/our-brands/">Our brands</a> <ul class="sub-menu"> <li id="menu-item-13686" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-13686"><a href="/restaurants/AbuAlabid/">AbuAlabid</a></li> <li id="menu-item-13687" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-13687"><a href="/restaurants/BakeryBox/">BakeryBox</a></li> <li id="menu-item-13688" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-13688"><a href="/restaurants/FishHouse/">FishHouse</a></li> <li id="menu-item-13783" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-13783"><a href="/restaurants/Fatoorah">Fatoorah</a></li> <li id="menu-item-13689" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-13689"><a href="/restaurants/Panino/">Panino</a></li> </ul> </li> <li id="menu-item-13681" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13681"><a href="https://goldtradingqa.com/business-advising/">Business Advising</a></li> <li id="menu-item-13680" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13680"><a href="https://goldtradingqa.com/trading/">Trading</a></li> <li id="menu-item-13679" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13679"><a href="https://goldtradingqa.com/interior-design-gtc/">Interior Design</a></li> <li id="menu-item-13682" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13682"><a href="https://goldtradingqa.com/marketing-unit/">Marketing unit</a></li> </ul> </li> <li id="menu-item-13709" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13709"><a href="https://goldtradingqa.com/contact-us/">Contact Us</a></li> </ul> </div> </nav> </div> <div class="sidebarmenu-area text-right mobilehum primary-menu"> <ul class="offcanvas-icon layout-1"> <li class="nav-link-container center"> <a href="#" class="nav-menu-link menu-button"> <svg width="20" height="16" viewBox="0 0 20 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <rect y="14" width="18" height="2" fill="#ffffff"></rect> <rect y="7" width="18" height="2" fill="#ffffff"></rect> <rect width="18" height="2" fill="#ffffff"></rect> </svg> </a> </li> </ul> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-2dfed90 hfe-search-layout-icon elementor-widget__width-auto elementor-hidden-mobile elementor-widget elementor-widget-hfe-search-button" data-id="2dfed90" data-element_type="widget" data-settings="{"toggle_icon_size":{"unit":"px","size":20,"sizes":[]},"input_icon_size":{"unit":"px","size":250,"sizes":[]},"input_icon_size_tablet":{"unit":"px","size":"","sizes":[]},"input_icon_size_mobile":{"unit":"px","size":"","sizes":[]},"toggle_icon_size_tablet":{"unit":"px","size":"","sizes":[]},"toggle_icon_size_mobile":{"unit":"px","size":"","sizes":[]},"close_icon_size":{"unit":"px","size":"20","sizes":[]},"close_icon_size_tablet":{"unit":"px","size":"","sizes":[]},"close_icon_size_mobile":{"unit":"px","size":"","sizes":[]},"close_icon_lineheight":{"unit":"px","size":"20","sizes":[]},"close_icon_lineheight_tablet":{"unit":"px","size":"","sizes":[]},"close_icon_lineheight_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="hfe-search-button.default"> <div class="elementor-widget-container"> <form class="rts-search-button-wrapper" role="search" action="https://goldtradingqa.com" method="get"> <div class="sticky_search text-center"> <i class="rt-search"></i> </div> </form> </div> </div> <div class="elementor-element elementor-element-d24b6f7 elementor-widget__width-auto elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-react-button" data-id="d24b6f7" data-element_type="widget" data-widget_type="react-button.default"> <div class="elementor-widget-container"> <div class="react-button primary_btn"> <a class="react_button right" href="/contact-us" > <span class="btn_text">Get a Quote</span> <svg xmlns="http://www.w3.org/2000/svg" width="14" height="13" viewBox="0 0 14 13" fill="none"><path d="M11.0039 3.414L2.39691 12.021L0.98291 10.607L9.58891 2H2.00391V0H13.0039V11H11.0039V3.414Z" fill="#FF6600"></path></svg> </a> </div> </div> </div> </div> </div> </div> </section> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-61bc8fe elementor-hidden-tablet elementor-hidden-mobile" data-id="61bc8fe" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </header> </div> </div> </header> <div class="main-contain offcontents"> <div class="container"> <div id="content"> <div class="row padding-"> <div class="col-lg-12 "> <article id="post-176" class="post-176 page type-page status-publish hentry"> <div class="entry-content"> <div data-elementor-type="wp-page" data-elementor-id="176" class="elementor elementor-176" data-elementor-post-type="page"> <section class="elementor-section elementor-top-section elementor-element elementor-element-4eae80a elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4eae80a" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4eaf059" data-id="4eaf059" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4eaf63c elementor-widget elementor-widget-text-editor" data-id="4eaf63c" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <style>/*! elementor - v3.23.0 - 05-08-2024 */ .elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style> <h1>Heading 1</h1> Wrote Chavelet Erickson Cotcke more than a century and a half ago. He forgot to mention that if you did not patent your idea, many would copy it, have it built cheaply offshore, and probably drive you to bankruptcy. </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4eafa6e" data-id="4eafa6e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4eafec2 elementor-widget elementor-widget-text-editor" data-id="4eafec2" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <h2>Heading 2</h2> More than 4,400 patents have been awarded by the US Patent and Trademark office for variations of a mousetrap alone! In fact, according to the Smithsonian, more patents have been awarded for a mousetrap than any other. </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-4eb01dd elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4eb01dd" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4eb0808" data-id="4eb0808" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4eb0c9b elementor-widget elementor-widget-text-editor" data-id="4eb0c9b" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <h3>Heading 3</h3> As an entrepreneur, social media is your best friend (free, ubiquitous marketing!), but in a busy startup with what feels like an endless to-do list, it probably seems like just another chore. </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4eb1009" data-id="4eb1009" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4eb15f1 elementor-widget elementor-widget-text-editor" data-id="4eb15f1" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <h4>Heading 4</h4> It’s absolutely a smart investment of your time to spend 45-55 minutes each day in your social channels, and the tips below will show you how you can make the most of your time, curate content. </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-4eb1a6e elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4eb1a6e" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4eb2343" data-id="4eb2343" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4eb2955 elementor-widget elementor-widget-text-editor" data-id="4eb2955" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <h5>Heading 5</h5> Ken Galifianakis, in his new book The Art of the Smart 1.1, calls it the best thing that ever happened to entrepreneurs, and offers practical insights on using it effectively, social media is free and ubiquitous. </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4eb2d33" data-id="4eb2d33" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4eb31c4 elementor-widget elementor-widget-text-editor" data-id="4eb31c4" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <h6>Heading 6</h6> Here is a summary of his tips from Chapter 3, The Art of Marketing: Draft a Plant and USA an Editorial Moleskine: A months-long planning project is a waste of time and agencies are a waste of money. </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-4eb341f elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4eb341f" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4eb3ae8" data-id="4eb3ae8" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-top-section elementor-element elementor-element-4eb45ca elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4eb45ca" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4eb4c97" data-id="4eb4c97" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4eb538b elementor-widget__width-auto elementor-widget elementor-widget-button" data-id="4eb538b" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-lg" href="#"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-icon"> <i aria-hidden="true" class="fa fa-briefcase"></i> </span> <span class="elementor-button-text">Extended button</span> </span> </a> </div> </div> </div> <div class="elementor-element elementor-element-4eb68a9 elementor-widget__width-auto elementor-widget elementor-widget-button" data-id="4eb68a9" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm" href="#"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-icon"> <i aria-hidden="true" class="fa fa-chevron-right"></i> </span> <span class="elementor-button-text">Extended button</span> </span> </a> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-4eb7a1b elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4eb7a1b" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4eb80ec" data-id="4eb80ec" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4eb85a3 elementor-widget__width-auto elementor-widget elementor-widget-button" data-id="4eb85a3" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-lg" href="#"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-icon"> <i aria-hidden="true" class="fa fa-briefcase"></i> </span> <span class="elementor-button-text">Extended button</span> </span> </a> </div> </div> </div> <div class="elementor-element elementor-element-4eb965a elementor-widget__width-auto elementor-widget elementor-widget-button" data-id="4eb965a" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm" href="#"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-icon"> <i aria-hidden="true" class="fa fa-chevron-right"></i> </span> <span class="elementor-button-text">Extended button</span> </span> </a> </div> </div> </div> </div> </div> </div> </section> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4eba6bf" data-id="4eba6bf" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-top-section elementor-element elementor-element-4ebb04b elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4ebb04b" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4ebb5f6" data-id="4ebb5f6" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4ebba27 elementor-widget__width-auto elementor-widget elementor-widget-button" data-id="4ebba27" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-lg" href="#"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-icon"> <i aria-hidden="true" class="stm-home"></i> </span> <span class="elementor-button-text">Extended button</span> </span> </a> </div> </div> </div> <div class="elementor-element elementor-element-4ebc4c3 elementor-widget__width-auto elementor-widget elementor-widget-button" data-id="4ebc4c3" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm" href="#"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-icon"> <i aria-hidden="true" class="fa fa-chevron-right"></i> </span> <span class="elementor-button-text">Extended button</span> </span> </a> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-4ebd3a7 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4ebd3a7" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4ebd96c" data-id="4ebd96c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4ebdea7 elementor-widget__width-auto elementor-widget elementor-widget-button" data-id="4ebdea7" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-lg" href="#"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-icon"> <i aria-hidden="true" class="fa fa-briefcase"></i> </span> <span class="elementor-button-text">Extended button</span> </span> </a> </div> </div> </div> <div class="elementor-element elementor-element-4ebefba elementor-widget__width-auto elementor-widget elementor-widget-button" data-id="4ebefba" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm" href="#"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-icon"> <i aria-hidden="true" class="fa fa-chevron-right"></i> </span> <span class="elementor-button-text">Extended button</span> </span> </a> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-4ebfd28 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4ebfd28" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4ec0355" data-id="4ec0355" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4ec0857 elementor-widget elementor-widget-text-editor" data-id="4ec0857" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <h4>Full width</h4> Entrepreneurs come up with new business ideas all the time. Often, they just plunge ahead to develop the product or service without really taking the time to determine if market conditions are favorable, and, if they are favorable and assess the ability of the business concept to take advantage of the opportunity. We have found that by following a focused, two-step process, you can reduce risks and improve the odds of success. </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-4ec0bc1 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4ec0bc1" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4ec1359" data-id="4ec1359" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-top-section elementor-element elementor-element-4ec1e54 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4ec1e54" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4ec2691" data-id="4ec2691" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4ec2cce elementor-widget elementor-widget-text-editor" data-id="4ec2cce" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> When it comes to the question of applying for a bank loan to fund your startup, most experts say, don’t bother. Banks are rarely interested in funding early stage companies these days, especially since the 2008 financial crash. </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4ec30ee" data-id="4ec30ee" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4ec3796 elementor-widget elementor-widget-text-editor" data-id="4ec3796" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> Write a clear, cogent business plan. However, it is not impossible to secure bank funding for your startup. Give yourself better odds with thoughtful planning, diligent preparation, and the eight tips. </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-4ec3ae7 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4ec3ae7" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4ec4021" data-id="4ec4021" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-top-section elementor-element elementor-element-4ec4837 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4ec4837" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-4ec4e1d" data-id="4ec4e1d" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4ec5338 elementor-widget elementor-widget-text-editor" data-id="4ec5338" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> All you need is a business model, we are told by business gurus. Report of the death of the business plan has been an exaggeration, to paraphrase. </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-4ec5754" data-id="4ec5754" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4ec5ec5 elementor-widget elementor-widget-text-editor" data-id="4ec5ec5" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> Often read opinions in popular business press that the business plan is no longer relevant. On the other hand, must not only explain. </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-4ec64bf" data-id="4ec64bf" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4ec6b7d elementor-widget elementor-widget-text-editor" data-id="4ec6b7d" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> While there is no consensus on the definition of a business model, most people use it as shorthand for the revenue model of a business. </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-4ec705c elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4ec705c" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4ec7808" data-id="4ec7808" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-top-section elementor-element elementor-element-4ec8097 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4ec8097" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-4ec8696" data-id="4ec8696" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4ec8ba0 elementor-widget elementor-widget-text-editor" data-id="4ec8ba0" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> Selling your business to a third party, for enough cash to retire in style, is the ultimate dream of many business owner partners. </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-4ec8f43" data-id="4ec8f43" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4ec9472 elementor-widget elementor-widget-text-editor" data-id="4ec9472" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> Having these primary value drivers in place: Stable, motivated management team and a high-performing workforce Growing cash flow, revenue. </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-4ec9844" data-id="4ec9844" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4ec9e9f elementor-widget elementor-widget-text-editor" data-id="4ec9e9f" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> He has operated a neighborhood sushi restaurant for five years and decided that it is time to open a second location restaurant. </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-4eca2ee" data-id="4eca2ee" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4eca8e7 elementor-widget elementor-widget-text-editor" data-id="4eca8e7" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> He mentioned that he was aware of a troubled restaurant in a good location and thought that he could buy the cafe and then re-open in that space. </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-4ecad10 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4ecad10" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4ecb3f2" data-id="4ecb3f2" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-top-section elementor-element elementor-element-4ecbd06 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4ecbd06" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-66 elementor-top-column elementor-element elementor-element-4ecc1f8" data-id="4ecc1f8" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4ecc63b elementor-widget elementor-widget-text-editor" data-id="4ecc63b" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> Many businesses, large and small, have a huge source of great ideas that can help them improve, innovate, and grow, and yet so many of these companies never think of using this amazing corporate asset. What is this highly valuable asset? Says Morgan Fraud, the author of The Thinking Corporation, “Given that we are all capable of contributing new ideas, the question becomes how do you successfully generate, capture, process and implement ideas?”. </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-4ecc8e9" data-id="4ecc8e9" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4eccca9 elementor-widget elementor-widget-text-editor" data-id="4eccca9" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> Successful mission statements may take time to create but when they are developed correctly, they provide a company with a clear purpose. </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-4ecced6 third_bg_color elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4ecced6" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4ecd2fc" data-id="4ecd2fc" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> </div> </div> <!-- .entry-content --> </article> <!-- #post-176 --> </div> </div> </div><!-- .content --> </div><!-- .container --> </div><!-- .main-container --> <footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo"> <div class='footer-width-fixer'> <div data-elementor-type="wp-post" data-elementor-id="2662" class="elementor elementor-2662" data-elementor-post-type="elementor-hf"> <section class="elementor-section elementor-top-section elementor-element elementor-element-012af3d elementor-section-stretched footer_style1 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="012af3d" data-element_type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c428aad" data-id="c428aad" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-0e47479 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="0e47479" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-3db4cfe" data-id="3db4cfe" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-689cfea elementor-widget elementor-widget-react-heading" data-id="689cfea" data-element_type="widget" data-widget_type="react-heading.default"> <div class="elementor-widget-container"> <div class="react-heading default title-border-no"> <div class="title-inner no"> <h2 class="title" data-aos-delay="300" data-aos="fade-up" data-aos-duration="800" data-aos-once="true">Let's Build Something Great Together!</h2> </div> </div> </div> </div> <div class="elementor-element elementor-element-e0fc732 elementor-widget__width-auto elementor-widget elementor-widget-react-button" data-id="e0fc732" data-element_type="widget" data-widget_type="react-button.default"> <div class="elementor-widget-container"> <div class="react-button primary_btn"> <a class="react_button " href="/contact-us" > <span class="btn_text">Get Started</span> </a> </div> </div> </div> <div class="elementor-element elementor-element-b2db8ba elementor-widget__width-auto elementor-widget elementor-widget-react-button" data-id="b2db8ba" data-element_type="widget" data-widget_type="react-button.default"> <div class="elementor-widget-container"> <div class="react-button secondary_btn"> <a class="react_button " href="/contact-us" > <span class="btn_text">Contact Us</span> </a> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-a8ed855" data-id="a8ed855" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7ccea4d elementor-widget elementor-widget-react-heading" data-id="7ccea4d" data-element_type="widget" data-widget_type="react-heading.default"> <div class="elementor-widget-container"> <div class="react-heading default title-border-no"> <div class="title-inner no"> <h2 class="title">Address</h2> </div> </div> </div> </div> <div class="elementor-element elementor-element-b2da5e7 elementor-widget elementor-widget-heading" data-id="b2da5e7" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <style>/*! elementor - v3.23.0 - 05-08-2024 */ .elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><div class="elementor-heading-title elementor-size-default">Office 302 --- <br /> Gate E, 3rd Floor, Al Mirqab Mall <br /> Doha - Qatar</div> </div> </div> <div class="elementor-element elementor-element-7add108 elementor-shape-circle e-grid-align-left elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="7add108" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <style>/*! elementor - v3.23.0 - 05-08-2024 */ .elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-threads{background-color:#000}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-x-twitter{background-color:#000}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook-f elementor-repeater-item-6666e8e" target="_blank"> <span class="elementor-screen-only">Facebook-f</span> <svg class="e-font-icon-svg e-fab-facebook-f" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z"></path></svg> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-3011159" target="_blank"> <span class="elementor-screen-only">Twitter</span> <svg class="e-font-icon-svg e-fab-twitter" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"></path></svg> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-ab781ff" target="_blank"> <span class="elementor-screen-only">Youtube</span> <svg class="e-font-icon-svg e-fab-youtube" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"></path></svg> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin-in elementor-repeater-item-4950a17" target="_blank"> <span class="elementor-screen-only">Linkedin-in</span> <svg class="e-font-icon-svg e-fab-linkedin-in" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"></path></svg> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-828b71d" data-id="828b71d" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-e29500c elementor-widget elementor-widget-react-heading" data-id="e29500c" data-element_type="widget" data-widget_type="react-heading.default"> <div class="elementor-widget-container"> <div class="react-heading default title-border-no"> <div class="title-inner no"> <h2 class="title">Say Hello</h2> </div> </div> </div> </div> <div class="elementor-element elementor-element-c7b7785 elementor-widget elementor-widget-topbar-icon-list" data-id="c7b7785" data-element_type="widget" data-widget_type="topbar-icon-list.default"> <div class="elementor-widget-container"> <div class="rt-features-list-content"> <ul class="rt-features-list separator_no border_no rotate_no"> <li> <div class="icon"></div> <div class="query-list"> <span class="sub-text"></span> <a href="mailto:info@gtc.qa"><span class="text-heading">info@gtc.qa</span></a> </div> </li> </ul> </div> </div> </div> <div class="elementor-element elementor-element-149b949 elementor-widget elementor-widget-topbar-icon-list" data-id="149b949" data-element_type="widget" data-widget_type="topbar-icon-list.default"> <div class="elementor-widget-container"> <div class="rt-features-list-content"> <ul class="rt-features-list separator_no border_no rotate_no"> <li> <div class="icon"></div> <div class="query-list"> <span class="sub-text"></span> <a href="tel:+97440000881"><span class="text-heading">+97440000881</span></a> </div> </li> </ul> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-a75a01e elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="a75a01e" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-42ac8d6" data-id="42ac8d6" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-a52c756 elementor-widget elementor-widget-rts-copyright" data-id="a52c756" data-element_type="widget" data-widget_type="rts-copyright.default"> <div class="elementor-widget-container"> <div class="react-copyright right"> <div class="description"> <p style="text-align: center">© 2024 GTC. All Right Reserved by <a href="https://marketing.gtc.qa">Gold Trading Marketing</a></p> </div> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </div> </div> </footer> </div><!-- #page --> <script> window.RS_MODULES = window.RS_MODULES || {}; window.RS_MODULES.modules = window.RS_MODULES.modules || {}; window.RS_MODULES.waiting = window.RS_MODULES.waiting || []; window.RS_MODULES.defered = true; window.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {}; window.RS_MODULES.type = 'compiled'; </script> <script type='text/javascript'> const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); </script> <script type='text/javascript'> (function () { var c = document.body.className; c = c.replace(/woocommerce-no-js/, 'woocommerce-js'); document.body.className = c; })(); </script> <link rel='stylesheet' id='wc-blocks-style-css' href='https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/client/blocks/wc-blocks.css?ver=wc-9.2.3' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-5334-css' href='https://goldtradingqa.com/wp-content/uploads/elementor/css/post-5334.css?ver=1726185497' type='text/css' media='all' /> <link rel='stylesheet' id='rs-plugin-settings-css' href='//goldtradingqa.com/wp-content/plugins/revslider/sr6/assets/css/rs6.css?ver=6.7.12' type='text/css' media='all' /> <style id='rs-plugin-settings-inline-css' type='text/css'> #rs-demo-id {} </style> <script type="text/javascript" src="//goldtradingqa.com/wp-content/plugins/revslider/sr6/assets/js/rbtools.min.js?ver=6.7.12" defer async id="tp-tools-js"></script> <script type="text/javascript" src="//goldtradingqa.com/wp-content/plugins/revslider/sr6/assets/js/rs6.min.js?ver=6.7.12" defer async id="revmin-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/rt-elements/assets/js/hover-revel.js?ver=201513434" id="hover-reveal-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/rt-elements/assets/js/twinmax.js?ver=201513434" id="twinmax-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/rt-elements/assets/js/aos.js?ver=201513434" id="aos-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/rt-elements/assets/js/jQuery-plugin-progressbar.js?ver=201513434" id="jquery-plugin-progressbar-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-includes/js/imagesloaded.min.js?ver=5.0.0" id="imagesloaded-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/rt-elements/assets/js/custom.js?ver=201513434" id="rsaddons-custom-pro-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/metform/public/assets/lib/cute-alert/cute-alert.js?ver=3.9.0" id="cute-alert-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/js/sourcebuster/sourcebuster.min.js?ver=9.2.3" id="sourcebuster-js-js"></script> <script type="text/javascript" id="wc-order-attribution-js-extra"> /* <![CDATA[ */ var wc_order_attribution = {"params":{"lifetime":1.0e-5,"session":30,"base64":false,"ajaxurl":"https:\/\/goldtradingqa.com\/wp-admin\/admin-ajax.php","prefix":"wc_order_attribution_","allowTracking":true},"fields":{"source_type":"current.typ","referrer":"current_add.rf","utm_campaign":"current.cmp","utm_source":"current.src","utm_medium":"current.mdm","utm_content":"current.cnt","utm_id":"current.id","utm_term":"current.trm","utm_source_platform":"current.plt","utm_creative_format":"current.fmt","utm_marketing_tactic":"current.tct","session_entry":"current_add.ep","session_start_time":"current_add.fd","session_pages":"session.pgs","session_count":"udata.vst","user_agent":"udata.uag"}}; /* ]]> */ </script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/js/frontend/order-attribution.min.js?ver=9.2.3" id="wc-order-attribution-js"></script> <script type="text/javascript" id="eael-general-js-extra"> /* <![CDATA[ */ var localize = {"ajaxurl":"https:\/\/goldtradingqa.com\/wp-admin\/admin-ajax.php","nonce":"4dfae014e9","i18n":{"added":"Added ","compare":"Compare","loading":"Loading..."},"eael_translate_text":{"required_text":"is a required field","invalid_text":"Invalid","billing_text":"Billing","shipping_text":"Shipping","fg_mfp_counter_text":"of"},"page_permalink":"https:\/\/goldtradingqa.com\/typography\/","cart_redirectition":"no","cart_page_url":"https:\/\/goldtradingqa.com\/shop\/cart\/","el_breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}}}; /* ]]> */ </script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/js/view/general.min.js?ver=6.0.3" id="eael-general-js"></script> <script type="text/javascript" id="wc-cart-fragments-js-extra"> /* <![CDATA[ */ var wc_cart_fragments_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%","cart_hash_key":"wc_cart_hash_f017c57fa52f7b0d9eaf601c19e42b50","fragment_name":"wc_fragments_f017c57fa52f7b0d9eaf601c19e42b50","request_timeout":"5000"}; /* ]]> */ </script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js?ver=9.2.3" id="wc-cart-fragments-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js?ver=3.23.3" id="elementor-pro-webpack-runtime-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=3.23.4" id="elementor-webpack-runtime-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.23.4" id="elementor-frontend-modules-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-includes/js/dist/hooks.min.js?ver=2810c76e705dd1a53b18" id="wp-hooks-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-includes/js/dist/i18n.min.js?ver=5e580eb46a90c2b997e6" id="wp-i18n-js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); /* ]]> */ </script> <script type="text/javascript" id="elementor-pro-frontend-js-before"> /* <![CDATA[ */ var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/goldtradingqa.com\/wp-admin\/admin-ajax.php","nonce":"52b65be12b","urls":{"assets":"https:\/\/goldtradingqa.com\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/goldtradingqa.com\/wp-json\/"},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"woocommerce":{"menu_cart":{"cart_page_url":"https:\/\/goldtradingqa.com\/shop\/cart\/","checkout_page_url":"https:\/\/goldtradingqa.com\/shop\/checkout\/","fragments_nonce":"f11ce7bc6c"}},"facebook_sdk":{"lang":"en_US","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/goldtradingqa.com\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}}; /* ]]> */ </script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=3.23.3" id="elementor-pro-frontend-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/elementor/assets/lib/waypoints/waypoints.min.js?ver=4.0.2" id="elementor-waypoints-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3" id="jquery-ui-core-js"></script> <script type="text/javascript" id="elementor-frontend-js-before"> /* <![CDATA[ */ var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselWrapperAriaLabel":"Carousel | Horizontal scrolling: Arrow Left & Right","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}}},"version":"3.23.4","is_static":false,"experimentalFeatures":{"e_optimized_css_loading":true,"e_font_icon_svg":true,"additional_custom_breakpoints":true,"container":true,"container_grid":true,"e_swiper_latest":true,"e_nested_atomic_repeaters":true,"e_onboarding":true,"theme_builder_v2":true,"home_screen":true,"ai-layout":true,"landing-pages":true,"e_lazyload":true,"display-conditions":true,"form-submissions":true,"taxonomy-filter":true},"urls":{"assets":"https:\/\/goldtradingqa.com\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/goldtradingqa.com\/wp-admin\/admin-ajax.php"},"nonces":{"floatingButtonsClickTracking":"70b9546271"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description","woocommerce_notices_elements":[]},"post":{"id":176,"title":"Typography%20%E2%80%93%20Gold%20Trading","excerpt":"","featuredImage":false}}; /* ]]> */ </script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=3.23.4" id="elementor-frontend-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js?ver=3.23.3" id="pro-elements-handlers-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/metform-pro/public/assets/js/repeater.js?ver=3.8.2" id="metform-pro-repeater-js"></script> </body> </html>