/** * themesflat functions and definitions * * @package themesflat */ //remove_theme_mods(); define( 'THEMESFLAT_DIR', trailingslashit( get_template_directory() )) ; define( 'THEMESFLAT_LINK', trailingslashit( get_template_directory_uri() ) ); if ( ! function_exists( 'themesflat_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 themesflat_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on burger, use a find and replace * to change 'finance' to the name of your theme in all the template files */ load_theme_textdomain( 'finance', THEMESFLAT_DIR . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); // Content width global $content_width; if ( ! isset( $content_width ) ) { $content_width = 1170; /* pixels */ } /* * 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 http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ add_theme_support( 'post-thumbnails' ); add_image_size( 'themesflat-recent-news-thumb', 106, 73, true ); add_image_size( 'themesflat-portfolio-thumb', 370, 245, true ); add_image_size( 'themesflat-blog', 770, 367, true ); add_image_size( 'themesflat-gallery-portfolio', 570, 320, true ); add_image_size( 'themesflat-blog-shortcode', 370, 247, true ); //Get thumbnail url function themesflat_thumbnail_url($size){ global $post; if( $size== '' ) { $url = wp_get_attachment_url( get_post_thumbnail_id($post->ID) ); return esc_url($url); } else { $url = wp_get_attachment_image_src( get_post_thumbnail_id(get_the_ID()), $size); return esc_url($url[0]); } } // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'finance' ), 'footer' => esc_html__( 'Footer Menu', 'finance' ), 'bottom' => esc_html__( 'Bottom Menu', 'finance' ) ) ); /* * 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', ) ); /* * Enable support for Post Formats. * See http://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array( 'aside', 'image', 'gallery', 'video', 'quote', 'link', ) ); // Set up the WordPress core custom background feature. $args = array( 'default-color' => 'ffffff', 'default-image' => '', ); add_theme_support( 'custom-background', $args ); // Custom stylesheet to the TinyMCE visual editor function themesflat_add_editor_styles() { add_editor_style( 'css/editor-style.css' ); } add_action( 'admin_init', 'themesflat_add_editor_styles' ); } endif; // themesflat_setup add_action( 'after_setup_theme', 'themesflat_setup' ); function themesflat_wpfilesystem() { include_once (ABSPATH . '/wp-admin/includes/file.php'); WP_Filesystem(); } /** * Register widget area. * * @link http://codex.wordpress.org/Function_Reference/register_sidebar */ function themesflat_widgets_init() { //Sidebar for Blog register_sidebar( array( 'name' => esc_html__( 'Blog Sidebar', 'finance' ), 'id' => 'sidebar-blog', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'finance' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); //Sidebar for Page register_sidebar( array( 'name' => esc_html__( 'Page Sidebar', 'finance' ), 'id' => 'sidebar-page', 'description' => esc_html__( 'Add widgets here to appear in your sidebar Page.', 'finance' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); //Header Sidebar register_sidebar( array( 'name' => esc_html__( 'Header Sidebar', 'finance' ), 'id' => 'sidebar-header', 'description' => esc_html__( 'Add widgets here to appear in your Header Sidebar.', 'finance' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); //Sidebar for Home register_sidebar( array( 'name' => esc_html__( 'Home Sidebar', 'finance' ), 'id' => 'sidebar-home', 'description' => esc_html__( 'Add widgets here to appear in your sidebar Home.', 'finance' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); //Sidebar for before footer register_sidebar( array( 'name' => esc_html__( 'Before Footer Sidebar', 'finance' ), 'id' => 'sidebar-before-footer', 'description' => esc_html__( 'Add widgets here to appear in your Before Footer Sidebar.', 'finance' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); //Sidebar footer register_sidebar( array( 'name' => esc_html__( 'Footer Widget 1', 'finance' ), 'id' => 'footer-1', 'description' => esc_html__( 'Add widgets here to appear in your sidebar Footer1.', 'finance' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Widget 2', 'finance' ), 'id' => 'footer-2', 'description' => esc_html__( 'Add widgets here to appear in your sidebar Footer2.', 'finance' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Widget 3', 'finance' ), 'id' => 'footer-3', 'description' => esc_html__( 'Add widgets here to appear in your sidebar Footer3.', 'finance' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Widget 4', 'finance' ), 'id' => 'footer-4', 'description' => esc_html__( 'Add widgets here to appear in your sidebar Footer4.', 'finance' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer custom menu', 'finance' ), 'id' => 'fb-custom-menu', 'description' => esc_html__( 'Add widgets here to appear in your sidebar Footer custom menu.', 'finance' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Services siderbar', 'finance' ), 'id' => 'services', 'description' => esc_html__( 'Add widgets here to appear in your sidebar Services', 'finance' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); //Register the front page widgets register_widget( 'Themesflat_Flicker' ); register_widget( 'Themesflat_Recent_Post' ); register_widget( 'Themesflat_Categories' ); } add_action( 'widgets_init', 'themesflat_widgets_init' ); /** * Load the front page widgets. */ require THEMESFLAT_DIR . "widgets/themesflat_flickr.php"; require THEMESFLAT_DIR . "widgets/themesflat_recent_post.php"; require THEMESFLAT_DIR . "widgets/themesflat_categories.php"; require THEMESFLAT_DIR . "inc/options/options.php"; require THEMESFLAT_DIR . "inc/options/options-definition.php"; require_once(THEMESFLAT_DIR .'inc/options/controls/dropdown-sidebars.php'); require_once(THEMESFLAT_DIR .'inc/options/controls/typography.php'); require_once(THEMESFLAT_DIR .'inc/options/controls/radio-images.php'); require THEMESFLAT_DIR . "inc/admin/sample-data.php"; function themesflat_get_style($style) { return str_replace('italic', 'i', $style); } function themesflat_fonts_url() { $fonts_url = ''; $body_font_name = themesflat_get_json('body_font_name'); $headings_font_name = themesflat_get_json('headings_font_name'); $menu_font_name = themesflat_get_json('menu_font_name'); $font_families = array(); /* * Translators: If there are characters in your language that are not supported * by Poppins, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Poppins font: on or off', 'finance' ) ) { if ( '' != $body_font_name ) { $font_families[] = $body_font_name['family'].':'.themesflat_get_style($body_font_name['style']); } else { $font_families[] = 'Poppins:300,400,500,600,700'; } } /* * Translators: If there are characters in your language that are not supported * by Poppins, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Poppins font: on or off', 'finance' ) ) { if ( '' != $headings_font_name ) { $font_families[] = $headings_font_name['family'].':'.themesflat_get_style($headings_font_name['style']); } else { $font_families[] = 'Poppins:300,400,500,600,700'; } } /* * Translators: If there are characters in your language that are not supported * by Poppins, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Poppins font: on or off', 'finance' ) ) { if ( '' != $menu_font_name ) { $font_families[] = $menu_font_name['family'].':'.themesflat_get_style($menu_font_name['style']); } else { $font_families[] = 'Poppins:300,400,500,600,700'; } } $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), ); $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ); return esc_url_raw( $fonts_url ); } function themesflat_scripts_styles() { wp_enqueue_style( 'themesflat-theme-slug-fonts', themesflat_fonts_url(), array(), null ); } add_action( 'wp_enqueue_scripts', 'themesflat_scripts_styles' ); /** * Enqueue scripts and styles. */ function themesflat_scripts() { // Theme stylesheet. wp_enqueue_style( 'themesflat-main', THEMESFLAT_LINK . 'css/main.css' ); wp_enqueue_style( 'themesflat-style', get_stylesheet_uri() ); wp_enqueue_style( 'font-fontawesome', THEMESFLAT_LINK . 'css/font-awesome.css' ); wp_enqueue_style( 'font-ionicons', THEMESFLAT_LINK . 'css/ionicons.min.css' ); wp_enqueue_style( 'flexslider', THEMESFLAT_LINK . 'css/flexslider.css' ); // Load the Internet Explorer specific stylesheet. wp_enqueue_style( 'ie9', THEMESFLAT_LINK . 'css/ie.css'); wp_style_add_data( 'ie9', 'conditional', 'lte IE 9' ); wp_enqueue_style( 'animate', THEMESFLAT_LINK . 'css/animate.css' ); wp_enqueue_style( 'responsive', THEMESFLAT_LINK . 'css/responsive.css' ); wp_enqueue_script( 'themesflat-flexslider', THEMESFLAT_LINK . 'js/jquery.flexslider-min.js', array(),'2.5.0', true ); // Load the html5 shiv.. wp_enqueue_script( 'html5', THEMESFLAT_LINK . 'js/html5shiv.js', array('jquery'), '1.3.0' ,true); wp_enqueue_script( 'respond', THEMESFLAT_LINK . 'js/respond.min.js', array(), '1.3.0',true); wp_enqueue_script( 'easing', THEMESFLAT_LINK . 'js/jquery.easing.js', array(),'1.3' ,true); wp_enqueue_script( 'waypoints', THEMESFLAT_LINK . 'js/jquery-waypoints.js', array(),'1.3' ,true); wp_enqueue_script( 'match', THEMESFLAT_LINK . 'js/matchMedia.js', array(),'1.2',true); wp_enqueue_script( 'fitvids', THEMESFLAT_LINK . 'js/jquery.fitvids.js', array(),'1.1',true); wp_enqueue_script( 'popup', THEMESFLAT_LINK . 'js/jquery.magnific-popup.min.js', array(),'1.1',true); wp_enqueue_script( 'carousel', THEMESFLAT_LINK . 'js/owl.carousel.js', array(),'1.1',true); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply', array(),'2.0.4',true ); } // Load the main js wp_enqueue_script( 'themesflat-main', THEMESFLAT_LINK . 'js/main.js', array(),'2.0.4',true); } add_action( 'wp_enqueue_scripts', 'themesflat_scripts' ); /** * Enqueue Bootstrap */ function themesflat_enqueue_bootstrap() { wp_enqueue_style( 'bootstrap', THEMESFLAT_LINK . 'css/bootstrap.css', array(), true ); } add_action( 'wp_enqueue_scripts', 'themesflat_enqueue_bootstrap', 9 ); /** * Set up the WordPress core custom header feature. * * @uses themesflat_header_style() */ function themesflat_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'themesflat_custom_header_args', array( 'default-image' => '', 'width' => 1920, 'height' => 250, 'flex-height' => true, 'wp-head-callback' => 'themesflat_header_style' ) ) ); } add_action( 'after_setup_theme', 'themesflat_custom_header_setup' ); if ( ! function_exists( 'themesflat_header_style' ) ) : /** * Styles the header image and text displayed on the blog * * @see themesflat_custom_header_setup(). */ function themesflat_header_style() { if (themesflat_meta('enable_custom_header_style') == 1): $images = themesflat_decode(themesflat_meta( 'header_image')); $header_images = '.page-title { background-image: url('. wp_get_attachment_image_src($images[0],'flat-page-title')[0].');}'; else: if ( get_header_image() != "" ) { $header_images = '.page-title { background-image: url('. get_header_image().');}'; } else { $header_images = '.page-title { background-image: url('.THEMESFLAT_LINK.'images/page-title.jpg) ; }'; } endif; wp_add_inline_style( 'themesflat-style', $header_images ); } add_action( 'wp_enqueue_scripts', 'themesflat_header_style' ); endif; // themesflat_header_style // Customizer additions. require THEMESFLAT_DIR . 'inc/customizer.php'; // Revo Slider require THEMESFLAT_DIR . 'inc/revo-slider.php'; // metabox-options require THEMESFLAT_DIR . 'inc/metabox-options.php'; // Helpers require THEMESFLAT_DIR . 'inc/helpers.php'; // Struct require THEMESFLAT_DIR . 'inc/structure.php'; // Breadcrumbs additions. require THEMESFLAT_DIR . 'inc/breadcrumb.php'; // Pagination additions. require THEMESFLAT_DIR . 'inc/pagination.php'; // Custom template tags for this theme. require THEMESFLAT_DIR . 'inc/template-tags.php'; // Style. require THEMESFLAT_DIR . 'inc/styles.php'; // Required plugins require_once THEMESFLAT_DIR . 'inc/plugins/class-tgm-plugin-activation.php'; // Plugin Activation require_once THEMESFLAT_DIR . 'inc/plugins/plugins.php'; <!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="http://gmpg.org/xfn/11"> <link rel="pingback" href="https://youthofkhudunabari.org.np/xmlrpc.php"> <meta name='robots' content='max-image-preview:large' /> <link rel="alternate" type="application/rss+xml" title="Youth of khudunabari » Home Comments Feed" href="https://youthofkhudunabari.org.np/home/feed/" /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://youthofkhudunabari.org.np/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fyouthofkhudunabari.org.np%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://youthofkhudunabari.org.np/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fyouthofkhudunabari.org.np%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> <link rel='stylesheet' id='vc_extend_shortcode-css' href='https://youthofkhudunabari.org.np/wp-content/plugins/themesflat/assets/css/shortcodes.css?ver=6.9.4' type='text/css' media='all' /> <link rel='stylesheet' id='vc_extend_style-css' href='https://youthofkhudunabari.org.np/wp-content/plugins/themesflat/assets/css/shortcodes-3rd.css?ver=6.9.4' type='text/css' media='all' /> <link rel='stylesheet' id='formidable-css' href='https://youthofkhudunabari.org.np/wp-content/plugins/formidable/css/formidableforms.css?ver=3161430' type='text/css' media='all' /> <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='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> <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,rgb(6,147,227) 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,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 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--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 rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}: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-term-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-term-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;} /*# sourceURL=global-styles-inline-css */ </style> <link rel='stylesheet' id='sp-news-public-css' href='https://youthofkhudunabari.org.np/wp-content/plugins/sp-news-and-widget/assets/css/wpnw-public.css?ver=5.0.6' type='text/css' media='all' /> <link rel='stylesheet' id='dashicons-css' href='https://youthofkhudunabari.org.np/wp-includes/css/dashicons.min.css?ver=6.9.4' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-icons-css' href='https://youthofkhudunabari.org.np/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.47.0' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-frontend-css' href='https://youthofkhudunabari.org.np/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.35.7' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-5-css' href='https://youthofkhudunabari.org.np/wp-content/uploads/elementor/css/post-5.css?ver=1775917030' type='text/css' media='all' /> <link rel='stylesheet' id='widget-heading-css' href='https://youthofkhudunabari.org.np/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=3.35.7' type='text/css' media='all' /> <link rel='stylesheet' id='swiper-css' href='https://youthofkhudunabari.org.np/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='e-swiper-css' href='https://youthofkhudunabari.org.np/wp-content/plugins/elementor/assets/css/conditionals/e-swiper.min.css?ver=3.35.7' type='text/css' media='all' /> <link rel='stylesheet' id='widget-image-css' href='https://youthofkhudunabari.org.np/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=3.35.7' type='text/css' media='all' /> <link rel='stylesheet' id='widget-video-css' href='https://youthofkhudunabari.org.np/wp-content/plugins/elementor/assets/css/widget-video.min.css?ver=3.35.7' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-15-css' href='https://youthofkhudunabari.org.np/wp-content/uploads/elementor/css/post-15.css?ver=1775917030' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-gf-roboto-css' href='https://fonts.googleapis.com/css?family=Roboto:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic&display=auto' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-gf-robotoslab-css' href='https://fonts.googleapis.com/css?family=Roboto+Slab:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic&display=auto' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-icons-shared-0-css' href='https://youthofkhudunabari.org.np/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css?ver=5.15.3' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-icons-fa-regular-css' href='https://youthofkhudunabari.org.np/wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.min.css?ver=5.15.3' type='text/css' media='all' /> <!--n2css--><!--n2js--><script type="text/javascript" src="https://youthofkhudunabari.org.np/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://youthofkhudunabari.org.np/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type="text/javascript" src="https://youthofkhudunabari.org.np/wp-content/plugins/themesflat/includes/portfolio//lib/js/isotope.min.js?ver=1" id="themesflat-isotope-js"></script> <script type="text/javascript" src="https://youthofkhudunabari.org.np/wp-content/plugins/themesflat/includes/portfolio//lib/js/imagesloaded.min.js?ver=1" id="themesflat-imagesloaded-js"></script> <link rel="https://api.w.org/" href="https://youthofkhudunabari.org.np/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://youthofkhudunabari.org.np/wp-json/wp/v2/pages/15" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://youthofkhudunabari.org.np/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.9.4" /> <link rel="canonical" href="https://youthofkhudunabari.org.np/" /> <link rel='shortlink' href='https://youthofkhudunabari.org.np/' /> <style id="essential-blocks-global-styles"> :root { --eb-global-primary-color: #101828; --eb-global-secondary-color: #475467; --eb-global-tertiary-color: #98A2B3; --eb-global-text-color: #475467; --eb-global-heading-color: #1D2939; --eb-global-link-color: #444CE7; --eb-global-background-color: #F9FAFB; --eb-global-button-text-color: #FFFFFF; --eb-global-button-background-color: #101828; --eb-gradient-primary-color: linear-gradient(90deg, hsla(259, 84%, 78%, 1) 0%, hsla(206, 67%, 75%, 1) 100%); --eb-gradient-secondary-color: linear-gradient(90deg, hsla(18, 76%, 85%, 1) 0%, hsla(203, 69%, 84%, 1) 100%); --eb-gradient-tertiary-color: linear-gradient(90deg, hsla(248, 21%, 15%, 1) 0%, hsla(250, 14%, 61%, 1) 100%); --eb-gradient-background-color: linear-gradient(90deg, rgb(250, 250, 250) 0%, rgb(233, 233, 233) 49%, rgb(244, 243, 243) 100%); --eb-tablet-breakpoint: 1024px; --eb-mobile-breakpoint: 767px; } </style><meta name="generator" content="Elementor 3.35.7; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-auto"> <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> <style type="text/css" id="wp-custom-css"> /* CSS For News Section */ .news .news-title a { font-size: 14px; line-height: 16px; color: #f15810; text-decoration: none !important; } .news-col-1 .news-inner-wrap-view, .news-col-list .news-inner-wrap-view { padding-bottom: 2px; margin-bottom: 2px; } .news-more-link {display:none;} .news_pagination {display:none;} .news-thumb {display:none;} #header {background:white;} .flat-top { background-color: #167ac6 !important; font-size: 17px; } #mainnav ul.sub-menu { background-color: #1d6a63; } #mainnav > ul > li > a{ padding: 0 10px 0 10px; } .header.header-style1, .nav.header-style2, .wrap-header-style3{ background-color: #18ba60ad; } .header-style2 .nav-wrap{ width: 100%; } #mainnav ul.sub-menu > li { border-color: #8BC34A!important; } #mainnav ul.sub-menu li ul { background: #108b7f; } .header.widget-header { padding:0px; } #mainnav ul.sub-menu > li > a{ font-family: arial; font-weight: 100; } .elementor-icon-box-description{ text-align:center; } #mainnav ul li a { font-size: 18px; text-transform: capitalize; } flat-top .custom-info a, .flat-top .custom-info i, .flat-top .custom-info { font-size: 15px; } .ditty-layout--130 .ditty-item__elements{ font-size:18px !important; } </style> </head> <body class="home wp-singular page-template page-template-tpl page-template-front-page page-template-tplfront-page-php page page-id-15 wp-theme-yoktcc elementor-default elementor-kit-5 elementor-page elementor-page-15"> <div id="fb-root"></div> <script async defer crossorigin="anonymous" src="https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v15.0&appId=563683056990311&autoLogAppEvents=1" nonce="HJjhKVpN"></script> <div class="themesflat-boxed"> <!-- Preloader --> <div class="preloader"> <div class="clear-loading loading-effect-2"> <span></span> </div> </div> <!-- Hero Slider 1 -->