/** * Theme functions and definitions * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package Surya_Chandra */ if ( ! function_exists( 'surya_chandra_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 surya_chandra_setup() { /* * Make theme available for translation. */ load_theme_textdomain( 'surya-chandra-lite', 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' ); /* * 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 two locations. register_nav_menus( array( 'menu-1' => esc_html__( 'Primary', 'surya-chandra-lite' ), 'menu-footer' => esc_html__( 'Footer', 'surya-chandra-lite' ), 'menu-404' => esc_html__( '404 Quick Links', 'surya-chandra-lite' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'comment-form', 'comment-list', 'gallery', 'caption', ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); // Admin editor style. $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; add_editor_style( array( surya_chandra_fonts_url(), 'css/editor-style' . $min . '.css' ) ); /** * 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 for Custom Header. add_theme_support( 'custom-header', apply_filters( 'surya_chandra_custom_header_args', array( 'default-image' => get_template_directory_uri() . '/images/default-banner.jpg', 'width' => 1920, 'height' => 500, 'flex-height' => true, 'header-text' => false, ) ) ); // Register default headers. register_default_headers( array( 'default-banner' => array( 'url' => '%s/images/default-banner.jpg', 'thumbnail_url' => '%s/images/default-banner.jpg', 'description' => esc_html_x( 'Default Banner', 'header image description', 'surya-chandra-lite' ), ), ) ); // Load Supports. require trailingslashit( get_template_directory() ) . 'inc/support.php'; } endif; add_action( 'after_setup_theme', 'surya_chandra_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function surya_chandra_content_width() { $GLOBALS['content_width'] = apply_filters( 'surya_chandra_content_width', 640 ); } add_action( 'after_setup_theme', 'surya_chandra_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function surya_chandra_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Primary Sidebar', 'surya-chandra-lite' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here to appear in your primary sidebar.', 'surya-chandra-lite' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Secondary Sidebar', 'surya-chandra-lite' ), 'id' => 'sidebar-2', 'description' => esc_html__( 'Add widgets here to appear in your secondary sidebar.', 'surya-chandra-lite' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); for ( $i = 1; $i <= 4; $i++ ) { register_sidebar( array( 'name' => sprintf( esc_html__( 'Footer %d', 'surya-chandra-lite' ), $i ), 'id' => 'footer-' . $i, 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); } } add_action( 'widgets_init', 'surya_chandra_widgets_init' ); /** * Enqueue scripts and styles. */ function surya_chandra_scripts() { $theme_version = wp_get_theme()->get( 'Version' ); $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/third-party/font-awesome/css/fontawesome-all' . $min . '.css', '', '5.0.13' ); $fonts_url = surya_chandra_fonts_url(); if ( ! empty( $fonts_url ) ) { wp_enqueue_style( 'surya-chandra-google-fonts', $fonts_url, array(), null ); } wp_enqueue_style( 'surya-chandra-style', get_stylesheet_uri(), array(), $theme_version ); wp_enqueue_script( 'surya-chandra-navigation', get_template_directory_uri() . '/js/navigation.js', array( 'jquery' ), '20151215', true ); wp_localize_script( 'surya-chandra-navigation', 'suryaChandraLiteOptions', array( 'screenReaderText' => array( 'expand' => esc_html__( 'expand child menu', 'surya-chandra-lite' ), 'collapse' => esc_html__( 'collapse child menu', 'surya-chandra-lite' ), ), ) ); wp_enqueue_script( 'surya-chandra-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20151215', true ); wp_enqueue_script( 'surya-chandra-custom', get_template_directory_uri() . '/js/custom' . $min . '.js', array( 'jquery', 'imagesloaded', 'masonry' ), '1.0.0', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'surya_chandra_scripts' ); if ( ! function_exists( 'surya_chandra_blocks_support' ) ) : /** * Create add default blocks support */ function surya_chandra_blocks_support() { // Add support for Block Styles. add_theme_support( 'wp-block-styles' ); // Add support for full and wide align images. add_theme_support( 'align-wide' ); // Add support for editor styles. add_theme_support( 'editor-styles' ); // Add support for responsive embeds. add_theme_support( 'responsive-embeds' ); // Add custom editor font sizes. add_theme_support( 'editor-font-sizes', array( array( 'name' => esc_html__( 'Small', 'surya-chandra-lite' ), 'shortName' => esc_html__( 'S', 'surya-chandra-lite' ), 'size' => 14, 'slug' => 'small', ), array( 'name' => esc_html__( 'Normal', 'surya-chandra-lite' ), 'shortName' => esc_html__( 'M', 'surya-chandra-lite' ), 'size' => 18, 'slug' => 'normal', ), array( 'name' => esc_html__( 'Large', 'surya-chandra-lite' ), 'shortName' => esc_html__( 'L', 'surya-chandra-lite' ), 'size' => 42, 'slug' => 'large', ), array( 'name' => esc_html__( 'Huge', 'surya-chandra-lite' ), 'shortName' => esc_html__( 'XL', 'surya-chandra-lite' ), 'size' => 54, 'slug' => 'huge', ), ) ); // Add support for custom color scheme. add_theme_support( 'editor-color-palette', array( array( 'name' => esc_html__( 'White', 'surya-chandra-lite' ), 'slug' => 'white', 'color' => '#ffffff', ), array( 'name' => esc_html__( 'Black', 'surya-chandra-lite' ), 'slug' => 'black', 'color' => '#111111', ), array( 'name' => esc_html__( 'Gray', 'surya-chandra-lite' ), 'slug' => 'gray', 'color' => '#f4f4f4', ), array( 'name' => esc_html__( 'Blue', 'surya-chandra-lite' ), 'slug' => 'blue', 'color' => '#3a85eb', ), array( 'name' => esc_html__( 'Yellow', 'surya-chandra-lite' ), 'slug' => 'yellow', 'color' => '#e9c01e', ), ) ); } add_action( 'after_setup_theme', 'surya_chandra_blocks_support', 20 ); endif; //surya_chandra_blocks_support if ( ! function_exists( 'surya_chandra_add_blocks_style' ) ) : /** * Add Blocks Style */ function surya_chandra_add_blocks_style() { // Theme block stylesheet. wp_enqueue_style( 'surya-chandra-block-style', get_theme_file_uri( '/css/blocks.css' ), array( 'surya-chandra-style' ), date( 'Ymd-Gis', filemtime( get_template_directory() . '/css/blocks.css' ) ) ); } add_action( 'wp_enqueue_scripts', 'surya_chandra_add_blocks_style' ); endif; //surya_chandra_add_blocks_style if ( ! function_exists( 'surya_chandra_block_editor_styles' ) ) : /** * Enqueue editor styles for Blocks */ function surya_chandra_block_editor_styles() { // Block styles. wp_enqueue_style( 'surya-chandra-block-editor-style', get_theme_file_uri( '/css/editor-blocks.css' ), null, date( 'Ymd-Gis', filemtime( get_template_directory() . '/css/editor-blocks.css' ) ) ); // Add custom fonts. wp_enqueue_style( 'surya-chandra-fonts', surya_chandra_fonts_url(), array(), null ); } add_action( 'enqueue_block_editor_assets', 'surya_chandra_block_editor_styles' ); endif; //surya_chandra_block_editor_styles /** * Load init. */ require_once trailingslashit( get_template_directory() ) . 'inc/init.php'; <!doctype html> <html lang="en-ZA"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="http://gmpg.org/xfn/11"> <meta name='robots' content='max-image-preview:large' /> <link rel='dns-prefetch' href='//fonts.googleapis.com' /> <link rel='dns-prefetch' href='//www.googletagmanager.com' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://clicknloan.co.za/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fclicknloan.co.za%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://clicknloan.co.za/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fclicknloan.co.za%2F&format=xml" /> <style id='wp-img-auto-sizes-contain-inline-css' type='text/css'> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <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; } /*# sourceURL=wp-emoji-styles-inline-css */ </style> <style id='wp-block-library-inline-css' type='text/css'> :root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} /*# sourceURL=wp-block-library-inline-css */ </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} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <link rel='stylesheet' id='contact-form-7-css' href='https://clicknloan.co.za/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.9.6' type='text/css' media='all' /> <link rel='stylesheet' id='siteorigin-panels-front-css' href='https://clicknloan.co.za/wp-content/plugins/siteorigin-panels/css/front-flex.min.css?ver=2.29.17' type='text/css' media='all' /> <link rel='stylesheet' id='sow-slider-slider-css' href='https://clicknloan.co.za/wp-content/plugins/so-widgets-bundle/css/slider/slider.css?ver=1.62.1' type='text/css' media='all' /> <link rel='stylesheet' id='sow-hero-default-4fedaa37dad0-33-css' href='https://clicknloan.co.za/wp-content/uploads/siteorigin-widgets/sow-hero-default-4fedaa37dad0-33.css?ver=6.9.4' type='text/css' media='all' /> <link rel='stylesheet' id='sow-google-font-raleway-css' href='https://fonts.googleapis.com/css?family=Raleway%3A500&ver=6.9.4' type='text/css' media='all' /> <link rel='stylesheet' id='sow-headline-default-17e1631c77ca-33-css' href='https://clicknloan.co.za/wp-content/uploads/siteorigin-widgets/sow-headline-default-17e1631c77ca-33.css?ver=6.9.4' type='text/css' media='all' /> <link rel='stylesheet' id='sow-headline-default-0e44a66c1902-33-css' href='https://clicknloan.co.za/wp-content/uploads/siteorigin-widgets/sow-headline-default-0e44a66c1902-33.css?ver=6.9.4' type='text/css' media='all' /> <link rel='stylesheet' id='sow-headline-default-d9e38a4c1bcd-33-css' href='https://clicknloan.co.za/wp-content/uploads/siteorigin-widgets/sow-headline-default-d9e38a4c1bcd-33.css?ver=6.9.4' type='text/css' media='all' /> <script type="text/javascript" src="https://clicknloan.co.za/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://clicknloan.co.za/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type="text/javascript" src="https://clicknloan.co.za/wp-content/plugins/so-widgets-bundle/js/jquery.cycle.min.js?ver=1.62.1" id="sow-slider-slider-cycle2-js"></script> <script type="text/javascript" src="https://clicknloan.co.za/wp-content/plugins/so-widgets-bundle/js/slider/jquery.slider.min.js?ver=1.62.1" id="sow-slider-slider-js"></script> <link rel="https://api.w.org/" href="https://clicknloan.co.za/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://clicknloan.co.za/wp-json/wp/v2/pages/33" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://clicknloan.co.za/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.9.4" /> <link rel="canonical" href="https://clicknloan.co.za/" /> <link rel='shortlink' href='https://clicknloan.co.za/' /> <meta name="generator" content="Site Kit by Google 1.129.1" /> <!-- Google AdSense meta tags added by Site Kit --> <meta name="google-adsense-platform-account" content="ca-host-pub-2644536267352236"> <meta name="google-adsense-platform-domain" content="sitekit.withgoogle.com"> <!-- End Google AdSense meta tags added by Site Kit --> <style media="all" id="siteorigin-panels-layouts-head">/* Layout 33 */ #pgc-33-0-0 , #pgc-33-1-0 , #pgc-33-3-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-33 #panel-33-0-0-0 , #pl-33 #panel-33-3-0-0 { margin:0px 0px 0px 0px } #pg-33-0 , #pg-33-1 , #pg-33-2 , #pg-33-3 , #pl-33 .so-panel:last-of-type { margin-bottom:0px } #pl-33 #panel-33-1-0-0 , #pl-33 #panel-33-1-0-1 { margin:1px 1px 1px 1px } #pgc-33-2-0 , #pgc-33-2-1 { width:50%;width:calc(50% - ( 0.5 * 30px ) ) } #pl-33 .so-panel { margin-bottom:30px } #pg-33-0.panel-has-style > .panel-row-style, #pg-33-0.panel-no-style { -webkit-align-items:flex-start;align-items:flex-start } #panel-33-0-0-0> .panel-widget-style { padding:50px 0px 0px 0px } #pg-33-1> .panel-row-style { background-color:#ffffff;padding:0% 0% 0% 0% } #pg-33-1.panel-has-style > .panel-row-style, #pg-33-1.panel-no-style , #pg-33-2.panel-has-style > .panel-row-style, #pg-33-2.panel-no-style , #pg-33-3.panel-has-style > .panel-row-style, #pg-33-3.panel-no-style { -webkit-align-items:center;align-items:center } #pgc-33-1-0 , #pgc-33-2-0 , #pgc-33-2-1 { align-self:auto } #panel-33-1-0-0> .panel-widget-style , #panel-33-1-0-1> .panel-widget-style { padding:1px 1px 1px 1px } #pg-33-2> .panel-row-style { background-color:#171717;padding:10% 0% 10% 0% } #pg-33-3> .panel-row-style { background-color:#000000;background-image:url(https://demo.siteorigin.com/corp/files/2019/05/optimizing.jpg);background-position:center center;background-size:cover;padding:0% 0% 0% 0% } #panel-33-3-0-0> .panel-widget-style { padding:0px 0px 0px 0px } @media (max-width:780px){ #pg-33-0.panel-no-style, #pg-33-0.panel-has-style > .panel-row-style, #pg-33-0 , #pg-33-2.panel-no-style, #pg-33-2.panel-has-style > .panel-row-style, #pg-33-2 , #pg-33-3.panel-no-style, #pg-33-3.panel-has-style > .panel-row-style, #pg-33-3 { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-33-0 > .panel-grid-cell , #pg-33-0 > .panel-row-style > .panel-grid-cell , #pg-33-2 > .panel-grid-cell , #pg-33-2 > .panel-row-style > .panel-grid-cell , #pg-33-3 > .panel-grid-cell , #pg-33-3 > .panel-row-style > .panel-grid-cell { width:100%;margin-right:0 } #pgc-33-2-0 { margin-bottom:30px } #pl-33 .panel-grid-cell { padding:0 } #pl-33 .panel-grid .panel-grid-cell-empty { display:none } #pl-33 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px } #pg-33-1> .panel-row-style , #pg-33-2> .panel-row-style { padding:20% 0% 20% 0% } #panel-33-1-0-0> .panel-widget-style , #panel-33-2-0-0> .panel-widget-style , #panel-33-2-1-0> .panel-widget-style { padding:0% 5% 0% 5% } #pg-33-3> .panel-row-style { padding:20% 5% 20% 5% } } </style><link rel="icon" href="https://clicknloan.co.za/wp-content/uploads/2020/11/cropped-final-click-e1604388354636-1-32x32.png" sizes="32x32" /> <link rel="icon" href="https://clicknloan.co.za/wp-content/uploads/2020/11/cropped-final-click-e1604388354636-1-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://clicknloan.co.za/wp-content/uploads/2020/11/cropped-final-click-e1604388354636-1-180x180.png" /> <meta name="msapplication-TileImage" content="https://clicknloan.co.za/wp-content/uploads/2020/11/cropped-final-click-e1604388354636-1-270x270.png" /> <style type="text/css" id="wp-custom-css"> body, html, a, p, span, ul, li, h1, h2 { font-family: Raleway!important; color: } /* Popup Google Fonts */ @import url('//fonts.googleapis.com/css?family=Raleway:400|Montserrat:100'); /* Popup Theme 306: CNL Theme */ .pum-theme-306, .pum-theme-default-theme { background-color: rgba( 255, 255, 255, 0.80 ) } .pum-theme-306 .pum-container, .pum-theme-default-theme .pum-container { padding: 18px; border-radius: 0px; border: 2px solid #00a2b4; box-shadow: 1px 1px 3px 0px rgba( 2, 2, 2, 0.23 ); background-color: rgba( 249, 249, 249, 1.00 ) } .pum-theme-306 .pum-title, .pum-theme-default-theme .pum-title { color: #00a2b4; text-align: left; text-shadow: 0px 0px 0px rgba( 173, 173, 173, 0.23 ); font-family: Raleway; font-weight: 400; font-size: 32px; line-height: 36px } .pum-theme-306 .pum-content, .pum-theme-default-theme .pum-content { color: #8c8c8c; font-family: Raleway; font-weight: 400 } .pum-theme-306 .pum-content + .pum-close, .pum-theme-default-theme .pum-content + .pum-close { position: absolute; height: auto; width: auto; left: auto; right: 0px; bottom: auto; top: 0px; padding: 8px; color: #ffffff; font-family: inherit; font-weight: 400; font-size: 12px; line-height: 36px; border: 1px none #ffffff; border-radius: 0px; box-shadow: 1px 1px 3px 0px rgba( 2, 2, 2, 0.23 ); text-shadow: 0px 0px 0px rgba( 0, 0, 0, 0.23 ); background-color: rgba( 0, 183, 205, 1.00 ) } /* Popup Theme 312: Floating Bar - Soft Blue */ .pum-theme-312, .pum-theme-floating-bar { background-color: rgba( 255, 255, 255, 0.00 ) } .pum-theme-312 .pum-container, .pum-theme-floating-bar .pum-container { padding: 8px; border-radius: 0px; border: 1px none #000000; box-shadow: 1px 1px 3px 0px rgba( 2, 2, 2, 0.23 ); background-color: rgba( 238, 246, 252, 1.00 ) } .pum-theme-312 .pum-title, .pum-theme-floating-bar .pum-title { color: #505050; text-align: left; text-shadow: 0px 0px 0px rgba( 2, 2, 2, 0.23 ); font-family: inherit; font-weight: 400; font-size: 32px; line-height: 36px } .pum-theme-312 .pum-content, .pum-theme-floating-bar .pum-content { color: #505050; font-family: inherit; font-weight: 400 } .pum-theme-312 .pum-content + .pum-close, .pum-theme-floating-bar .pum-content + .pum-close { position: absolute; height: 18px; width: 18px; left: auto; right: 5px; bottom: auto; top: 50%; padding: 0px; color: #505050; font-family: Sans-Serif; font-weight: 700; font-size: 15px; line-height: 18px; border: 1px solid #505050; border-radius: 15px; box-shadow: 0px 0px 0px 0px rgba( 2, 2, 2, 0.00 ); text-shadow: 0px 0px 0px rgba( 0, 0, 0, 0.00 ); background-color: rgba( 255, 255, 255, 0.00 ); transform: translate(0, -50%) } /* Popup Theme 313: Content Only - For use with page builders or block editor */ .pum-theme-313, .pum-theme-content-only { background-color: rgba( 0, 0, 0, 0.70 ) } .pum-theme-313 .pum-container, .pum-theme-content-only .pum-container { padding: 0px; border-radius: 0px; border: 1px none #000000; box-shadow: 0px 0px 0px 0px rgba( 2, 2, 2, 0.00 ) } .pum-theme-313 .pum-title, .pum-theme-content-only .pum-title { color: #000000; text-align: left; text-shadow: 0px 0px 0px rgba( 2, 2, 2, 0.23 ); font-family: inherit; font-weight: 400; font-size: 32px; line-height: 36px } .pum-theme-313 .pum-content, .pum-theme-content-only .pum-content { color: #8c8c8c; font-family: inherit; font-weight: 400 } .pum-theme-313 .pum-content + .pum-close, .pum-theme-content-only .pum-content + .pum-close { position: absolute; height: 18px; width: 18px; left: auto; right: 7px; bottom: auto; top: 7px; padding: 0px; color: #000000; font-family: inherit; font-weight: 700; font-size: 20px; line-height: 20px; border: 1px none #ffffff; border-radius: 15px; box-shadow: 0px 0px 0px 0px rgba( 2, 2, 2, 0.00 ); text-shadow: 0px 0px 0px rgba( 0, 0, 0, 0.00 ); background-color: rgba( 255, 255, 255, 0.00 ) } /* Popup Theme 309: Hello Box */ .pum-theme-309, .pum-theme-hello-box { background-color: rgba( 0, 0, 0, 0.75 ) } .pum-theme-309 .pum-container, .pum-theme-hello-box .pum-container { padding: 30px; border-radius: 80px; border: 14px solid #81d742; box-shadow: 0px 0px 0px 0px rgba( 2, 2, 2, 0.00 ); background-color: rgba( 255, 255, 255, 1.00 ) } .pum-theme-309 .pum-title, .pum-theme-hello-box .pum-title { color: #2d2d2d; text-align: left; text-shadow: 0px 0px 0px rgba( 2, 2, 2, 0.23 ); font-family: Montserrat; font-weight: 100; font-size: 32px; line-height: 36px } .pum-theme-309 .pum-content, .pum-theme-hello-box .pum-content { color: #2d2d2d; font-family: inherit; font-weight: 100 } .pum-theme-309 .pum-content + .pum-close, .pum-theme-hello-box .pum-content + .pum-close { position: absolute; height: auto; width: auto; left: auto; right: -30px; bottom: auto; top: -30px; padding: 0px; color: #2d2d2d; font-family: Times New Roman; font-weight: 100; font-size: 32px; line-height: 28px; border: 1px none #ffffff; border-radius: 28px; box-shadow: 0px 0px 0px 0px rgba( 2, 2, 2, 0.23 ); text-shadow: 0px 0px 0px rgba( 0, 0, 0, 0.23 ); background-color: rgba( 255, 255, 255, 1.00 ) } /* Popup Theme 310: Cutting Edge */ .pum-theme-310, .pum-theme-cutting-edge { background-color: rgba( 0, 0, 0, 0.50 ) } .pum-theme-310 .pum-container, .pum-theme-cutting-edge .pum-container { padding: 18px; border-radius: 0px; border: 1px none #000000; box-shadow: 0px 10px 25px 0px rgba( 2, 2, 2, 0.50 ); background-color: rgba( 30, 115, 190, 1.00 ) } .pum-theme-310 .pum-title, .pum-theme-cutting-edge .pum-title { color: #ffffff; text-align: left; text-shadow: 0px 0px 0px rgba( 2, 2, 2, 0.23 ); font-family: Sans-Serif; font-weight: 100; font-size: 26px; line-height: 28px } .pum-theme-310 .pum-content, .pum-theme-cutting-edge .pum-content { color: #ffffff; font-family: inherit; font-weight: 100 } .pum-theme-310 .pum-content + .pum-close, .pum-theme-cutting-edge .pum-content + .pum-close { position: absolute; height: 24px; width: 24px; left: auto; right: 0px; bottom: auto; top: 0px; padding: 0px; color: #1e73be; font-family: Times New Roman; font-weight: 100; font-size: 32px; line-height: 24px; border: 1px none #ffffff; border-radius: 0px; box-shadow: -1px 1px 1px 0px rgba( 2, 2, 2, 0.10 ); text-shadow: -1px 1px 1px rgba( 0, 0, 0, 0.10 ); background-color: rgba( 238, 238, 34, 1.00 ) } /* Popup Theme 311: Framed Border */ .pum-theme-311, .pum-theme-framed-border { background-color: rgba( 255, 255, 255, 0.50 ) } .pum-theme-311 .pum-container, .pum-theme-framed-border .pum-container { padding: 18px; border-radius: 0px; border: 20px outset #dd3333; box-shadow: 1px 1px 3px 0px rgba( 2, 2, 2, 0.97 ) inset; background-color: rgba( 255, 251, 239, 1.00 ) } .pum-theme-311 .pum-title, .pum-theme-framed-border .pum-title { color: #000000; text-align: left; text-shadow: 0px 0px 0px rgba( 2, 2, 2, 0.23 ); font-family: inherit; font-weight: 100; font-size: 32px; line-height: 36px } .pum-theme-311 .pum-content, .pum-theme-framed-border .pum-content { color: #2d2d2d; font-family: inherit; font-weight: 100 } .pum-theme-311 .pum-content + .pum-close, .pum-theme-framed-border .pum-content + .pum-close { position: absolute; height: 20px; width: 20px; left: auto; right: -20px; bottom: auto; top: -20px; padding: 0px; color: #ffffff; font-family: Tahoma; font-weight: 700; font-size: 16px; line-height: 18px; border: 1px none #ffffff; border-radius: 0px; box-shadow: 0px 0px 0px 0px rgba( 2, 2, 2, 0.23 ); text-shadow: 0px 0px 0px rgba( 0, 0, 0, 0.23 ); background-color: rgba( 0, 0, 0, 0.55 ) } /* Popup Theme 307: Light Box */ .pum-theme-307, .pum-theme-lightbox { background-color: rgba( 0, 0, 0, 0.60 ) } .pum-theme-307 .pum-container, .pum-theme-lightbox .pum-container { padding: 18px; border-radius: 3px; border: 8px solid #000000; box-shadow: 0px 0px 30px 0px rgba( 2, 2, 2, 1.00 ); background-color: rgba( 255, 255, 255, 1.00 ) } .pum-theme-307 .pum-title, .pum-theme-lightbox .pum-title { color: #000000; text-align: left; text-shadow: 0px 0px 0px rgba( 2, 2, 2, 0.23 ); font-family: inherit; font-weight: 100; font-size: 32px; line-height: 36px } .pum-theme-307 .pum-content, .pum-theme-lightbox .pum-content { color: #000000; font-family: inherit; font-weight: 100 } .pum-theme-307 .pum-content + .pum-close, .pum-theme-lightbox .pum-content + .pum-close { position: absolute; height: 26px; width: 26px; left: auto; right: -13px; bottom: auto; top: -13px; padding: 0px; color: #ffffff; font-family: Arial; font-weight: 100; font-size: 24px; line-height: 24px; border: 2px solid #ffffff; border-radius: 26px; box-shadow: 0px 0px 15px 1px rgba( 2, 2, 2, 0.75 ); text-shadow: 0px 0px 0px rgba( 0, 0, 0, 0.23 ); background-color: rgba( 0, 0, 0, 1.00 ) } /* Popup Theme 308: Enterprise Blue */ .pum-theme-308, .pum-theme-enterprise-blue { background-color: rgba( 0, 0, 0, 0.70 ) } .pum-theme-308 .pum-container, .pum-theme-enterprise-blue .pum-container { padding: 28px; border-radius: 5px; border: 1px none #000000; box-shadow: 0px 10px 25px 4px rgba( 2, 2, 2, 0.50 ); background-color: rgba( 255, 255, 255, 1.00 ) } .pum-theme-308 .pum-title, .pum-theme-enterprise-blue .pum-title { color: #315b7c; text-align: left; text-shadow: 0px 0px 0px rgba( 2, 2, 2, 0.23 ); font-family: inherit; font-weight: 100; font-size: 34px; line-height: 36px } .pum-theme-308 .pum-content, .pum-theme-enterprise-blue .pum-content { color: #2d2d2d; font-family: inherit; font-weight: 100 } .pum-theme-308 .pum-content + .pum-close, .pum-theme-enterprise-blue .pum-content + .pum-close { position: absolute; height: 28px; width: 28px; left: auto; right: 8px; bottom: auto; top: 8px; padding: 4px; color: #ffffff; font-family: Times New Roman; font-weight: 100; font-size: 20px; line-height: 20px; border: 1px none #ffffff; border-radius: 42px; box-shadow: 0px 0px 0px 0px rgba( 2, 2, 2, 0.23 ); text-shadow: 0px 0px 0px rgba( 0, 0, 0, 0.23 ); background-color: rgba( 49, 91, 124, 1.00 ) } #pum-315 {z-index: 1999999999} </style> </head> <body class="home wp-singular page-template page-template-tpl-full-width page-template-tpl-full-width-php page page-id-33 wp-custom-logo wp-theme-surya-chandra-lite siteorigin-panels siteorigin-panels-before-js siteorigin-panels-home"> <div id="page" class="site"> <a class="skip-link screen-reader-text" href="#content">Skip to content</a> <div id="content" class="site-content"> <div class="container"> <div class="inner-wrapper"> <div id="primary" class="content-area"> <main id="main" class="site-main"> <article id="post-33" class="post-33 page type-page status-publish hentry">