/** * Flash functions and definitions. * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package Flash */ if ( ! function_exists( 'flash_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 flash_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on Flash, use a find and replace * to change 'flash' to the name of your theme in all the template files. */ load_theme_textdomain( 'flash', 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' ); /** * Image size */ add_image_size( 'flash-square', '300', '300', true ); add_image_size( 'flash-big', '800', '400', true ); add_image_size( 'flash-grid', '370', '270', true ); /** * Enable support for site Logo */ add_theme_support( 'custom-logo' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary', 'flash' ), 'social' => esc_html__( 'Social', 'flash' ), 'footer' => esc_html__( 'Footer', 'flash' ), ) ); /* * 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 woocommerce and woocommerce 3.0 product gallery */ add_theme_support( 'woocommerce' ); add_theme_support( 'wc-product-gallery-zoom' ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); /** * Enable support for SiteOrigin Page Builder */ add_theme_support( 'siteorigin-panels', array( 'margin-bottom' => 0, 'recommended-widgets' => false, ) ); /** * Enable Support for selective refresh widgets in Customizer */ add_theme_support( 'customize-selective-refresh-widgets' ); // Gutenberg layout support. add_theme_support( 'align-wide' ); } endif; add_action( 'after_setup_theme', 'flash_setup' ); if ( ! function_exists( 'flash_content_width' ) ) : /** * Set the content width in pixels, based on the theme's design and stylesheet. * * @global int $content_width **/ function flash_content_width() { $content_width = 780; $classes = flash_get_layout(); if ( $classes == 'full-width' ) { $content_width = 1200; } $GLOBALS['content_width'] = apply_filters( 'flash_content_width', $content_width ); } add_action( 'after_setup_theme', 'flash_content_width', 0 ); endif; /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function flash_widgets_init() { // Right Sidebar register_sidebar( array( 'name' => esc_html__( 'Right Sidebar', 'flash' ), 'id' => 'flash_right_sidebar', 'description' => esc_html__( 'Add widgets here for right sidebar.', 'flash' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); // Left Sidebar register_sidebar( array( 'name' => esc_html__( 'Left Sidebar', 'flash' ), 'id' => 'flash_left_sidebar', 'description' => esc_html__( 'Add widgets here for left sidebar.', 'flash' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); // Footer 1 register_sidebar( array( 'name' => esc_html__( 'Footer Sidebar 1', 'flash' ), 'id' => 'flash_footer_sidebar1', 'description' => esc_html__( 'Add widgets here for footer sidebar 1.', 'flash' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); // Footer 2 register_sidebar( array( 'name' => esc_html__( 'Footer Sidebar 2', 'flash' ), 'id' => 'flash_footer_sidebar2', 'description' => esc_html__( 'Add widgets here for footer sidebar 2.', 'flash' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); // Footer 3 register_sidebar( array( 'name' => esc_html__( 'Footer Sidebar 3', 'flash' ), 'id' => 'flash_footer_sidebar3', 'description' => esc_html__( 'Add widgets here for footer sidebar 3.', 'flash' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); // Footer 4 register_sidebar( array( 'name' => esc_html__( 'Footer Sidebar 4', 'flash' ), 'id' => 'flash_footer_sidebar4', 'description' => esc_html__( 'Add widgets here for footer sidebar 4.', 'flash' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); } add_action( 'widgets_init', 'flash_widgets_init' ); /** * Enqueue scripts and styles. */ function flash_scripts() { $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; // Font Awessome wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/font-awesome' . $suffix . '.css', array(), false, false ); // Swiper CSS wp_register_style( 'swiper', get_template_directory_uri() . '/css/swiper' . $suffix . '.css', array(), false, false ); wp_enqueue_style( 'flash-style', get_stylesheet_uri() ); wp_style_add_data( 'flash-style', 'rtl', 'replace' ); // Responsive wp_enqueue_style( 'responsive', get_template_directory_uri() . '/css/responsive' . $suffix . '.css', array(), false, false ); wp_style_add_data( 'responsive', 'rtl', 'replace' ); wp_register_script( 'swiper', get_template_directory_uri() . '/js/swiper.jquery' . $suffix . '.js', array( 'jquery' ), '', true ); if ( get_theme_mod( 'flash_sticky_header', '' ) == '1' ) { wp_enqueue_script( 'sticky', get_template_directory_uri() . '/js/jquery.sticky' . $suffix . '.js', array( 'jquery' ), '', true ); } wp_register_script( 'isotope', get_template_directory_uri() . '/js/isotope.pkgd' . $suffix . '.js', array( 'jquery' ), '', true ); wp_register_script( 'waypoints', get_template_directory_uri() . '/js/waypoints' . $suffix . '.js', array( 'jquery' ), '', true ); wp_register_script( 'counterup', get_template_directory_uri() . '/js/jquery.counterup' . $suffix . '.js', array( 'jquery' ), '', true ); wp_enqueue_script( 'nav', get_template_directory_uri() . '/js/jquery.nav' . $suffix . '.js', array( 'jquery' ), '', true ); wp_enqueue_script( 'flash-custom', get_template_directory_uri() . '/js/flash' . $suffix . '.js', array( 'jquery' ), '', true ); wp_enqueue_script( 'flash-navigation', get_template_directory_uri() . '/js/navigation' . $suffix . '.js', array( 'jquery' ), '', true ); wp_enqueue_script( 'flash-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20151215', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } // Replace main style for RTL. wp_style_add_data( 'flash-style', 'rtl', 'replace' ); } add_action( 'wp_enqueue_scripts', 'flash_scripts' ); /** * Load TGM Activation file. */ require get_template_directory() . '/inc/class-tgm-plugin-activation.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Kirki Toolkit. */ require get_template_directory() . '/inc/kirki/kirki.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load Metaboxes. */ require get_template_directory() . '/inc/meta-boxes.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php'; /** * Load WooCommerce compatibility file. */ require get_template_directory() . '/inc/woocommerce.php'; /** * Load SiteOrigin Panels compatibility file. */ require get_template_directory() . '/inc/siteorigin-panels.php'; /** * Load required files for Flash notice in Admin page only. */ if ( is_admin() ) { /** * Load Welcome page file. */ require get_template_directory() . '/inc/class-flash-admin.php'; /** * Load site library file. */ require get_template_directory() . '/inc/class-flash-site-library.php'; } /** * Load Demo Importer Configs. */ if ( class_exists( 'TG_Demo_Importer' ) ) { require get_template_directory() . '/inc/demo-config.php'; } /** * Fetch and set the typography value as Kirki defines within the theme. * * @since Flash 1.2.8 */ function flash_font_family_change() { // Lets bail out if no 'theme_mods_flash' option found. if ( false === ( $mods = get_option( "theme_mods_flash" ) ) ) { return; } // Lets bail out if no 'flash_typography_transfer_free' option found. if ( get_option( 'flash_typography_transfer_free' ) ) { return; } // Assign the free theme body font family. $typography_options = get_theme_mod( 'flash_body_font', 'Montserrat:400,700' ); $font_family = 'Montserrat'; if ( $typography_options == 'Raleway:400,600,700' ) { $font_family = 'Raleway'; } elseif ( $typography_options == 'Ruda:400,700' ) { $font_family = 'Ruda'; } $value = array( 'font-family' => $font_family, 'variant' => 'regular', ); // Update the 'flash_body_font' theme mod. set_theme_mod( 'flash_body_font', $value ); // Set transfer as complete. update_option( 'flash_typography_transfer_free', 1 ); } add_action( 'after_setup_theme', 'flash_font_family_change' ); <!DOCTYPE html> <html lang="sr-RS" prefix="og: http://ogp.me/ns#"> <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' /> <!-- This site is optimized with the Yoast SEO Premium plugin v8.4 - https://yoast.com/wordpress/plugins/seo/ --> <link rel="canonical" href="https://duro.rs/home/" /> <meta property="og:locale" content="sr_RS" /> <meta property="og:type" content="article" /> <meta property="og:title" content="Home | Duro IT - Vaš profesionalni IT partner" /> <meta property="og:description" content="Create a website for your business Create a website for your business Purchase pro We Are help you to Grow your Business Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia dese mollit anim id est laborum. Financial Planning Excepteur sint occaecat cupidatat non proident sunt in culpa qui officia deserunt mollit. Business …" /> <meta property="og:url" content="https://duro.rs/home/" /> <meta property="og:site_name" content="Duro IT" /> <meta property="og:image" content="https://duro.rs/wp-content/uploads/2019/04/mem-2.png" /> <meta property="og:image:secure_url" content="https://duro.rs/wp-content/uploads/2019/04/mem-2.png" /> <meta property="og:image:width" content="200" /> <meta property="og:image:height" content="200" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:description" content="Create a website for your business Create a website for your business Purchase pro We Are help you to Grow your Business Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia dese mollit anim id est laborum. Financial Planning Excepteur sint occaecat cupidatat non proident sunt in culpa qui officia deserunt mollit. Business […]" /> <meta name="twitter:title" content="Home | Duro IT - Vaš profesionalni IT partner" /> <meta name="twitter:image" content="http://duro.rs/wp-content/uploads/2019/04/ava-1.png" /> <!-- / Yoast SEO Premium plugin. --> <link rel='dns-prefetch' href='//fonts.googleapis.com' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://duro.rs/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fduro.rs%2Fhome%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://duro.rs/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fduro.rs%2Fhome%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='smls-frontend-style-css' href='https://duro.rs/wp-content/plugins/smart-logo-showcase-lite/css/smls-frontend-style.css?ver=1.1.9' type='text/css' media='all' /> <link rel='stylesheet' id='smls-block-editor-css' href='https://duro.rs/wp-content/plugins/smart-logo-showcase-lite/inc/smls-block/smls-block.css?ver=1.1.9' 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='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://duro.rs/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.1.5' type='text/css' media='all' /> <link rel='stylesheet' id='dashicons-css' href='https://duro.rs/wp-includes/css/dashicons.min.css?ver=6.9.4' type='text/css' media='all' /> <link rel='stylesheet' id='everest-forms-general-css' href='https://duro.rs/wp-content/plugins/everest-forms/assets/css/everest-forms.css?ver=3.4.7' type='text/css' media='all' /> <link rel='stylesheet' id='jquery-intl-tel-input-css' href='https://duro.rs/wp-content/plugins/everest-forms/assets/css/intlTelInput.css?ver=3.4.7' type='text/css' media='all' /> <link rel='stylesheet' id='smls-fontawesome-style-css' href='https://duro.rs/wp-content/plugins/smart-logo-showcase-lite/css/font-awesome.min.css?ver=1.1.9' type='text/css' media='all' /> <link rel='stylesheet' id='smls-google-fonts-sans-css' href='https://fonts.googleapis.com/css?family=Open+Sans%3A400%2C300%2C600%2C700%2C800&ver=6.9.4' type='text/css' media='all' /> <link rel='stylesheet' id='smls-google-fonts-roboto-css' href='https://fonts.googleapis.com/css?family=Roboto%3A400%2C300italic%2C400italic%2C500%2C500italic%2C700%2C700italic%2C900italic%2C900&ver=6.9.4' type='text/css' media='all' /> <link rel='stylesheet' id='smls-google-fonts-lato-css' href='https://fonts.googleapis.com/css?family=Lato%3A400%2C300italic%2C400italic%2C700%2C700italic%2C900italic%2C900&ver=6.9.4' type='text/css' media='all' /> <link rel='stylesheet' id='smls-google-fonts-montserrat-css' href='https://fonts.googleapis.com/css?family=Montserrat%3A400%2C700&ver=6.9.4' type='text/css' media='all' /> <link rel='stylesheet' id='smls-google-fonts-merriweather-css' href='https://fonts.googleapis.com/css?family=Merriweather+Sans%3A300%2C400%2C700%2C800+Sans%3A300%2C400%2C700&ver=6.9.4' type='text/css' media='all' /> <link rel='stylesheet' id='smls-google-fonts-droid-css' href='https://fonts.googleapis.com/css?family=Droid+Sans%3A400%2C700&ver=6.9.4' type='text/css' media='all' /> <link rel='stylesheet' id='smls-google-fonts-oxygen-css' href='https://fonts.googleapis.com/css?family=Oxygen%3A300%2C400%2C700&ver=6.9.4' type='text/css' media='all' /> <link rel='stylesheet' id='smls-google-fonts-raleway-css' href='https://fonts.googleapis.com/css?family=Raleway%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C800%2C900&ver=6.9.4' type='text/css' media='all' /> <link rel='stylesheet' id='smls-owl-style-css' href='https://duro.rs/wp-content/plugins/smart-logo-showcase-lite/css/owl.carousel.css?ver=1.1.9' type='text/css' media='all' /> <link rel='stylesheet' id='smls-tooltip-style-css' href='https://duro.rs/wp-content/plugins/smart-logo-showcase-lite/css/tooltipster.bundle.css?ver=1.1.9' type='text/css' media='all' /> <link rel='stylesheet' id='smls-responsive-style-css' href='https://duro.rs/wp-content/plugins/smart-logo-showcase-lite/css/smls-responsive.css?ver=1.1.9' type='text/css' media='all' /> <link rel='stylesheet' id='smls-popup-style-css' href='https://duro.rs/wp-content/plugins/smart-logo-showcase-lite/css/popup-contact.css?ver=1.1.9' type='text/css' media='all' /> <script type="text/javascript" src="https://duro.rs/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://duro.rs/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type="text/javascript" src="https://duro.rs/wp-content/plugins/smart-logo-showcase-lite/js/owl.carousel.js?ver=1.1.9" id="smls-owl-script-js"></script> <script type="text/javascript" src="https://duro.rs/wp-content/plugins/smart-logo-showcase-lite/js/tooltipster.bundle.js?ver=1.1.9" id="smls-tooltip-script-js"></script> <script type="text/javascript" src="https://duro.rs/wp-content/plugins/smart-logo-showcase-lite/js/smls-frontend-script.js?ver=1.1.9" id="smls-frontend-script-js"></script> <link rel="https://api.w.org/" href="https://duro.rs/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://duro.rs/wp-json/wp/v2/pages/279" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://duro.rs/xmlrpc.php?rsd" /> <link rel='shortlink' href='https://duro.rs/?p=279' /> <!-- start Simple Custom CSS and JS --> <script type="text/javascript"> jQuery(document).ready(function( $ ){ $(window).on("scroll", function() { if($(window).scrollTop() > 50) { $(".header-bottom").addClass("sticky_on"); } else { //remove the background property so it comes transparent again (defined in your css) $(".header-bottom").removeClass("sticky_on"); } }); $('.cta-wrapper .btn-wrapper .btn:nth-child(1)').attr('target','_blank'); }); jQuery(document).ready(function( $ ){ $('.copyright-text').html('Duro IT 2019 © Copyright. Sva prava zadržana. Izrada <a style="color: darkorange;" href="http://www.it-lion.rs">It Lion</a>') }); </script> <!-- end Simple Custom CSS and JS --> <link rel="icon" href="https://duro.rs/wp-content/uploads/2019/09/cropped-05-512-32x32.png" sizes="32x32" /> <link rel="icon" href="https://duro.rs/wp-content/uploads/2019/09/cropped-05-512-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://duro.rs/wp-content/uploads/2019/09/cropped-05-512-180x180.png" /> <meta name="msapplication-TileImage" content="https://duro.rs/wp-content/uploads/2019/09/cropped-05-512-270x270.png" /> <style type="text/css" id="wp-custom-css"> .header-bottom { background: #ffffff14 !important; border-bottom: 2px solid #243e8f; } .sticky_on { background-color: white !important; } .home .menu-item a { color: white !important; } .sticky_on .menu-item a { color: black !important; } .slider-arrow { display: none; } .service-wrapper i { color: #5275bf; } .tg-service-widget.tg-service-layout-2 .service-icon-wrap:before { border-color: #5275bf; } .tg-service-widget.tg-service-layout-2 .service-icon-wrap:hover { background: transparent none } .service-title-wrap { background-color: #5275bf; } .service-title-wrap a { color: white; } .service-more { color: #5275bf !important; } #o-nama { margin-top: 6%; } .o_nama_kontakt_info { font-size: 1.2em; } #contact button { width: 100%; background-color: #5275bf; color: white; border-color: #5275bf; } #contact button:hover { background-color: #48536c; } .kontakt_cta { width: 50%; margin-left: 25%; padding: 10px; display: inline-block; color: white; font-weight: bold; background-color: #5275bf; text-align: center; } .kontakt_cta:hover { color: white; background-color: #48536c; } #flash-breadcrumbs { margin-top: 1.5%; } #comments, .comments-link { display: none; } #primary { width: 72.5%; } #secondary { width: 25.22%; } .tekst_usluga p { font-size: 1.1em; text-align: justify } #secondary #menu-usluge li { padding: 6px 15px !important; background-color: #5275bf; border-bottom: 1px solid white; } #secondary #menu-usluge li:after { display: none; } #secondary #menu-usluge li:hover { background-color: #4aad4a; } #secondary #menu-usluge li a { font-size: 1.2em !important; color: white !important; } @media screen and (max-width: 1000px) { #primary, #secondary { width: 100%; } } @media screen and (max-width: 700px) { .logo { padding: 0px; } .transparent-logo { max-width: 120px; } .home .menu-item a { color: black !important; } #content { margin-top: 70px; } .smls-grid-image-wrap { width: 100% !important; } #pg-408-4 { background-color: #5275bf; } #fun-facts { background-image: none !important; } #top-footer .widget ul li a { color: white !important; } } </style> </head> <body class="wp-singular page-template page-template-page-templates page-template-template_page-builder page-template-page-templatestemplate_page-builder-php page page-id-279 wp-custom-logo wp-theme-flash everest-forms-no-js"> <div id="preloader-background"> <div id="spinners"> <div id="preloader"> <span></span> <span></span> <span></span> <span></span> <span></span> </div> </div> </div> <div id="page" class="site"> <a class="skip-link screen-reader-text" href="#content">Skip to content</a> <header id="masthead" class="site-header" role="banner"> <div class="header-bottom"> <div class="tg-container"> <div class="logo"> <figure class="logo-image">