        <script type="text/javascript" id="pac_dcm_column_1">
            // Initialize Carousel
            jQuery(function ($) {
                const isDesktop = window.matchMedia("(min-width: 1024px)").matches;
                const isTablet = window.matchMedia("(min-width: 768px) and (max-width: 1023px)").matches;
                const isPhone = window.matchMedia("(max-width: 767px)").matches;
                if ((jQuery(window).width() < 0)|| (jQuery(window).width() <= 480)|| (jQuery(window).width() >= 480 && jQuery(window).width() <= 980)|| (jQuery(window).width() >= 980)) {
                    // Define media queries for different device sizes
                    const columnClass = ".pac_dcm_column_1";
                    column = $(columnClass);
                    column.navigationImages = [];
                    slickSettings = {
                        fade: false,
                        centerMode: true,
                        infinite: true,
                        slidesToShow: 3,
                        variableWidth: false,
                        slidesToScroll: 1,
                        autoplay: true,
                        autoplaySpeed: 3000,
                        arrows: true,
                        dots: true,
                        rtl: false,
                        speed: 500,
                        pauseOnHover: true,
                        useCSS: true,
                        useTransform: true,
                        cssEase: 'ease',
                        waitForAnimate: true,
                        swipe: true,
                        touch: true,
                        swipeToSlide: true,
                        rows: 1,
                        touchThreshold: 500,
                        initialSlide: 0,
                        adaptiveHeight: false,
                        responsive: [
                            {
                                breakpoint: 980,
                                settings: {
                                    fade: false,
                                    centerMode: false,
                                    variableWidth: false,
                                    infinite: true,
                                    slidesToShow: 2,
                                    slidesToScroll: 1,
                                    autoplay: true,
                                    autoplaySpeed: 3000,
                                    arrows: true,
                                    dots: true,
                                    pauseOnHover: true,
                                    swipe: true,
                                    touch: true,
                                    swipeToSlide: true,
                                    rows: 1,
                                    touchThreshold: 500,
                                    initialSlide: 0,
                                    adaptiveHeight: false                                }
                            },
                            {
                                breakpoint: 767,
                                settings: {
                                    fade: false,
                                    centerMode: true,
                                    infinite: true,
                                    variableWidth: false,
                                    slidesToShow: 1,
                                    slidesToScroll: 1,
                                    autoplay: true,
                                    autoplaySpeed: 3000,
                                    arrows: true,
                                    dots: true,
                                    pauseOnHover: true,
                                    swipe: true,
                                    touch: true,
                                    swipeToSlide: true,
                                    rows: 1,
                                    touchThreshold: 500,
                                    initialSlide: 0,
                                    adaptiveHeight: false                                }
                            }
                        ]
                    };

                                        //======================================================================
                    // Carousel Navigation Images
                    //======================================================================
                    column.navigationImages = jQuery(columnClass).data("slick-navigation-images");
                    if ('undefined' === typeof column.navigationImages) {
                        column.navigationImages = [];
                    }
                                        // Total Items Per Row
                    const numberOfItemsPerRow = parseInt('3');
                    //======================================================================
                    // Slick On Init
                    //======================================================================
                    column.on('init', function (event, slick, currentSlide, nextSlide) {
                        let overlayLoading = column.prev('.loading__overlay');
                        if (overlayLoading.length > 0) {
                            overlayLoading.fadeOut('slow');
                            column.fadeIn('slow');
                        }
                        window.carouselCurrentSlide = slick.currentSlide;
                        window.carouselTotalSlides = slick.slideCount;
                        $(columnClass + ' .slick-current').addClass('active');
                        $(columnClass + ' .slick-current').next('.slick-slide').addClass('nextSlide');
                        $(columnClass + ' .slick-current').prev('.slick-slide').addClass('previousSlide');
                        if (numberOfItemsPerRow === 3) {
                            $(columnClass + ' .slick-slide.nextSlide').next('.slick-slide').addClass('preNextSlide');
                            $(columnClass + ' .slick-slide.previousSlide').prev('.slick-slide').addClass("prePreviousSlide");
                        } else if (5 === numberOfItemsPerRow) {
                            $(columnClass + ' .slick-current').next('.slick-slide').next('.slick-slide').addClass('nextSlide');
                            $(columnClass + ' .slick-current').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide');
                        } else if (7 === numberOfItemsPerRow) {
                            $(columnClass + ' .slick-current').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide');
                            $(columnClass + ' .slick-current').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide');
                        } else if (9 === numberOfItemsPerRow) {
                            $(columnClass + ' .slick-current').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide');
                            $(columnClass + ' .slick-current').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide');
                        } else if (11 === numberOfItemsPerRow) {
                            $(columnClass + ' .slick-current').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide');
                            $(columnClass + ' .slick-current').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide');
                        }
                    });
                    //======================================================================
                    // Initliaze Slick
                    //======================================================================
                    column.slick(slickSettings);
                    //======================================================================
                    // Slick Slider Counter
                    //======================================================================
                                        //======================================================================
                    // Slick Before Change
                    //======================================================================
                    column.on('beforeChange', function (event, {slideCount: count}, currentSlide, nextSlide) {
                        let dataSlideIndex = [nextSlide, nextSlide - count, nextSlide + count].map((n) => columnClass + ` [data-slick-index="${n}"]`).join(", ");
                                                $(columnClass + ' .slick-slide')
                            .removeClass('active')
                            .removeClass('nextSlide')
                            .removeClass('preNextSlide')
                            .removeClass('previousSlide')
                            .removeClass('prePreviousSlide');
                        $(dataSlideIndex).addClass('active');
                        $(columnClass + ' .slick-slide.active').next('.slick-slide').addClass('nextSlide');
                        $(columnClass + ' .slick-slide.active').prev('.slick-slide').addClass('previousSlide');
                        if (numberOfItemsPerRow === 3) {
                            $(columnClass + ' .slick-slide.nextSlide').next('.slick-slide').addClass('preNextSlide');
                            $(columnClass + ' .slick-slide.previousSlide').prev('.slick-slide').addClass('prePreviousSlide');
                        } else if (5 === numberOfItemsPerRow) {
                            $(columnClass + ' .slick-slide.active').next('.slick-slide').next('.slick-slide').addClass('nextSlide');
                            $(columnClass + ' .slick-slide.active').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide');
                        } else if (7 === numberOfItemsPerRow) {
                            $(columnClass + ' .slick-slide.active').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide');
                            $(columnClass + ' .slick-slide.active').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide');
                        } else if (9 === numberOfItemsPerRow) {
                            $(columnClass + ' .slick-slide.active').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide');
                            $(columnClass + ' .slick-slide.active').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide');
                        } else if (11 === numberOfItemsPerRow) {
                            $(columnClass + ' .slick-slide.active').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide');
                            $(columnClass + ' .slick-slide.active').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide');
                        }
                                            });
                    //======================================================================
                    // Slick After Change
                    //======================================================================
                    column.on('afterChange', function (event, slick, currentSlide) {
                                            });
                    //======================================================================
                    // Keyboard Navigation
                    //======================================================================
                                        //======================================================================
                    // RecalculateWidth:
                    //======================================================================
                                                            // If continueous scroll is on, ovveride autoplay settings
                                        jQuery(document).ready(function () {
                        /**
                         * Fixed Transition
                         */
                        jQuery(".pac_dcm_column_1 .slick-slide").css({
                            'transition': "all 500ms ease-in-out",
                            'animation-duration': "500ms",
                            'animation-iteration-count': "1"
                        })
                        /**
                         * Fixed Smooth Cont. Scroll
                         */
                        ;
                        jQuery(".pac_dcm_column_1 .slick-track").css({'transform': 'none'});
                                                /**
                         * Fixed Last To First Slide Bumping
                         *
                         * @since 1.3
                         *
                         */
                                                column.on('beforeChange', function (event, slick, currentSlide, nextSlide) {
                            if (0 === nextSlide) {
                                let slideClasses = 'slick-current slick-active' + (slickSettings.centerMode ? ' slick-center' : '');
                                setTimeout(function () {
                                    $('[data-slick-index="' + slick.$slides.length + '"]').addClass(slideClasses).siblings().removeClass(slideClasses);
                                    for (let i = slick.options.slidesToShow - 1; i >= 0; i--) {
                                        if (i !== 0) {
                                            $('[data-slick-index="' + i + '"]').addClass('slick-current slick-active');
                                        } else {
                                            $('[data-slick-index="' + i + '"]').addClass(slideClasses);
                                        }
                                    }
                                }, 0);
                            }
                        });
                                            });
                }
                                /**
                 * Closes open toggle items in a slick slider column before slide change on phones with limited items.
                 *
                 * @description Listens for slide changes on a slick slider column.
                 *              If the device is a phone and only one item is displayed per slide,
                 *              it ensures all open toggle items are closed before transitioning to the next slide
                 *              to maintain a consistent layout and avoid overlapping content.
                 */
                const itemsOnPhone = "1";
                if (column.find('.et_pb_toggle_item').length > 0) {
                    // BeforeChange
                    column.on('beforeChange', function (event, slick, currentSlide, nextSlide) {
                        slick.$slides.each(function (index, slide) {
                            if ($(slide).find('.et_pb_toggle_item').hasClass('et_pb_toggle_open')) {
                                $(slide).find('.et_pb_toggle_item.et_pb_toggle_open').removeClass('et_pb_toggle_open').addClass('et_pb_toggle_close');
                                $(slide).find('.et_pb_toggle_content').hide();
                            }
                        });
                        // Prevent Slider To Move
                        $('.slick-slide').find('.et_pb_toggle_item').on('click', function (e) {
                            if ($(slide).find('.et_pb_toggle_item').hasClass('et_pb_toggle_open')) {
                                $(slide).find('.et_pb_toggle_item.et_pb_toggle_open').removeClass('et_pb_toggle_open').addClass('et_pb_toggle_close');
                                $(slide).find('.et_pb_toggle_content').hide();
                            }
                            column.slick('slickGoTo', $('.slick-slide.active.slick-current.slick-active').data('slick-index'))
                        });
                    });
                }
            });
        </script>
        <script type="text/javascript" id="divi-carousel-maker-modify-module-css">
            /**
             * Initializes the carousel module modification script.
             * This script adjusts the display property of carousel modules based on their computed styles.
             */
            document.addEventListener('DOMContentLoaded', () => {
                setTimeout(() => {
                    const carouselBaseClass = 'pac_dcm_column_';
                    const modules = document.querySelectorAll(`div[class*="${carouselBaseClass}"] .et_pb_module`);
                    modules.forEach(module => {
                        const styles = window.getComputedStyle(module);
                        if (styles.maxWidth !== 'none') {
                            module.style.display = 'flex';
                        }
                    });
                }, 500);
            });
        </script>
        {"id":251364,"date":"2024-11-16T15:56:35","date_gmt":"2024-11-16T14:56:35","guid":{"rendered":"https:\/\/bezpecnost.ttc.cz\/physical-security\/"},"modified":"2026-09-15T16:28:00","modified_gmt":"2026-09-15T14:28:00","slug":"physical-security","status":"publish","type":"page","link":"https:\/\/bezpecnost.ttc.cz\/en\/physical-security\/","title":{"rendered":"Physical Security"},"content":{"rendered":"<p><div class=\"et_d4_element et_pb_section et_pb_section_0 et_pb_with_background  et_pb_css_mix_blend_mode et_section_regular section_has_divider et_pb_bottom_divider et_block_section\" >\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_d4_element et_pb_row et_pb_row_0  et_pb_css_mix_blend_mode et_block_row\">\n\t\t\t\t<div class=\"et_d4_element et_pb_column_4_4 et_pb_column et_pb_column_0  et_pb_css_mix_blend_mode et-last-child et_block_column\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module et_d4_element et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_text_inner\"><h1 style=\"text-align: center;\">SOLUTIONS<\/h1><\/div>\n\t\t\t<\/div><div class=\"et_pb_module et_d4_element et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_text_inner\"><h1 style=\"text-align: center;\">Physical Security<\/h1><\/div>\n\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div><div class=\"et_pb_with_border et_d4_element et_pb_row et_pb_row_1  et_pb_css_mix_blend_mode et_block_row\">\n\t\t\t\t<div class=\"et_d4_element et_pb_column_4_4 et_pb_column et_pb_column_1  et_pb_css_mix_blend_mode et-last-child et_block_column\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module et_d4_element et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_text_inner\" data-et-multi-view=\"{&quot;schema&quot;:{&quot;content&quot;:{&quot;desktop&quot;:&quot;&lt;h2 style=\\&quot;text-align: center;\\&quot;&gt;For the safety of people and property&lt;\\\/h2&gt;\\n&lt;p class=\\&quot;p2\\&quot; style=\\&quot;text-align: center;\\&quot;&gt;&lt;span class=\\&quot;s1\\&quot;&gt; &lt;\\\/span&gt;We help ensure physical security, minimize impacts, and streamline the resolution of security and operational incidents.&lt;\\\/p&gt;&quot;,&quot;tablet&quot;:&quot;&lt;h2 style=\\&quot;text-align: left;\\&quot;&gt;For the safety of people and property&lt;\\\/h2&gt;\\n&lt;p class=\\&quot;p2\\&quot; style=\\&quot;text-align: left;\\&quot;&gt;&lt;span class=\\&quot;s1\\&quot;&gt; &lt;\\\/span&gt;We help ensure physical security, minimize impacts, and streamline the resolution of security and operational incidents.&lt;\\\/p&gt;&quot;},&quot;target&quot;:&quot;&quot;,&quot;hover_selector&quot;:&quot;&quot;},&quot;slug&quot;:&quot;et_pb_text&quot;}\" data-et-multi-view-load-tablet-hidden=\"true\"><h2 style=\"text-align: center;\">For the safety of people and property<\/h2>\n<p class=\"p2\" style=\"text-align: center;\"><span class=\"s1\"> <\/span>We help ensure physical security, minimize impacts, and streamline the resolution of security and operational incidents.<\/p><\/div>\n\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_bottom_inside_divider et-no-transition\"><\/div>\n\t\t\t<\/div><div class=\"et_d4_element et_pb_section et_pb_section_1 et_pb_with_background  et_pb_css_mix_blend_mode et_section_regular section_has_divider et_pb_bottom_divider et_pb_top_divider et_block_section\" >\n\t\t\t\t<div class=\"et_pb_top_inside_divider et-no-transition\"><\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<span class=\"et_pb_background_mask\"><\/span>\n\t\t\t\t\n\t\t\t\t<div class=\"et_d4_element et_pb_row et_pb_row_2  et_pb_css_mix_blend_mode et_block_row\">\n\t\t\t\t<div class=\"et_d4_element et_pb_column_1_2 et_pb_column et_pb_column_2  et_pb_css_mix_blend_mode et_block_column\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module et_d4_element et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_text_inner\"><h2 class=\"p1\">Security is more than just cameras and fencing<\/h2>\n<p class=\"p2\"><span class=\"s1\"> <\/span>Large companies and organizations emphasize physical security strategies. It is not just about monitoring and recording video streams. It is about providing actionable outcomes that help evaluate current security situations and respond quickly to any type of incident. Any security breach can have serious consequences.   <\/p>\n<p class=\"p2\">Our customers face complex and demanding environments that require a high level of expertise.<\/p>\n<p class=\"p2\">To enable customers to provide the maximum level of security and manage incidents quickly and effectively, we offer a wide range of physical security solutions focused on the needs of large organizations in regulated and demanding environments.<\/p><\/div>\n\t\t\t<\/div>\n\t\t\t<\/div><div class=\"et_d4_element et_pb_column_1_2 et_pb_column et_pb_column_3  et_pb_css_mix_blend_mode et-last-child et_block_column et_pb_column_empty\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div><div class=\"et_d4_element et_pb_section et_pb_section_2 et_pb_with_background  et_pb_css_mix_blend_mode et_section_regular et_block_section\" >\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_d4_element et_pb_row et_pb_row_3  et_pb_css_mix_blend_mode et_block_row\">\n\t\t\t\t<div class=\"et_d4_element et_pb_column_4_4 et_pb_column et_pb_column_4  et_pb_css_mix_blend_mode et-last-child et_block_column\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module et_d4_element et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_text_inner\"><h1>Needs<\/h1><\/div>\n\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div><div class=\"et_d4_element et_pb_row et_pb_row_4 et_pb_gutters2  et_pb_css_mix_blend_mode et_block_row\">\n\t\t\t\t<div class=\"et_pb_with_border et_pb_column_1_3 et_d4_element et_pb_column et_pb_column_5  et_pb_css_mix_blend_mode et_block_column\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module et_d4_element et_pb_image et_pb_image_0\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<span class=\"et_pb_image_wrap \"><img loading=\"lazy\" decoding=\"async\" width=\"308\" height=\"385\" src=\"http:\/\/bezpecnost.ttc.cz\/wp-content\/uploads\/sites\/23\/2024\/11\/Bezpecnost_negativ.png\" alt=\"\" title=\"Security_negative\" srcset=\"https:\/\/bezpecnost.ttc.cz\/wp-content\/uploads\/sites\/23\/2024\/11\/Bezpecnost_negativ.png 308w, https:\/\/bezpecnost.ttc.cz\/wp-content\/uploads\/sites\/23\/2024\/11\/Bezpecnost_negativ-240x300.png 240w\" sizes=\"(max-width: 308px) 100vw, 308px\" class=\"wp-image-249975\" \/><\/span>\n\t\t\t<\/div><div class=\"et_pb_module et_d4_element et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_text_inner\"><h1 style=\"text-align: center;\">Security Optimization<\/h1><\/div>\n\t\t\t<\/div><div class=\"et_pb_module et_d4_element et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_text_inner\"><p class=\"p1\" style=\"text-align: center;\">Utilization of all technical means in combination with workflows and prepared scenarios<\/p><\/div>\n\t\t\t<\/div>\n\t\t\t<\/div><div class=\"et_pb_with_border et_pb_column_1_3 et_d4_element et_pb_column et_pb_column_6  et_pb_css_mix_blend_mode et_block_column\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module et_d4_element et_pb_image et_pb_image_1\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<span class=\"et_pb_image_wrap \"><img loading=\"lazy\" decoding=\"async\" width=\"374\" height=\"374\" src=\"http:\/\/bezpecnost.ttc.cz\/wp-content\/uploads\/sites\/23\/2024\/11\/Zrychleni_reakcni_doby_negativ.png\" alt=\"\" title=\"Reaction_time_acceleration_negative\" srcset=\"https:\/\/bezpecnost.ttc.cz\/wp-content\/uploads\/sites\/23\/2024\/11\/Zrychleni_reakcni_doby_negativ.png 374w, https:\/\/bezpecnost.ttc.cz\/wp-content\/uploads\/sites\/23\/2024\/11\/Zrychleni_reakcni_doby_negativ-300x300.png 300w, https:\/\/bezpecnost.ttc.cz\/wp-content\/uploads\/sites\/23\/2024\/11\/Zrychleni_reakcni_doby_negativ-150x150.png 150w\" sizes=\"(max-width: 374px) 100vw, 374px\" class=\"wp-image-249978\" \/><\/span>\n\t\t\t<\/div><div class=\"et_pb_module et_d4_element et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_text_inner\"><h1 style=\"text-align: center;\">Effective<br \/>Response<\/h1><\/div>\n\t\t\t<\/div><div class=\"et_pb_module et_d4_element et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_text_inner\"><p class=\"p1\" style=\"text-align: center;\">Utilization of prepared scenarios during incident resolution processes<\/p><\/div>\n\t\t\t<\/div>\n\t\t\t<\/div><div class=\"et_pb_with_border et_pb_column_1_3 et_d4_element et_pb_column et_pb_column_7  et_pb_css_mix_blend_mode et-last-child et_block_column\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module et_d4_element et_pb_image et_pb_image_2\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<span class=\"et_pb_image_wrap \"><img loading=\"lazy\" decoding=\"async\" width=\"477\" height=\"383\" src=\"http:\/\/bezpecnost.ttc.cz\/wp-content\/uploads\/sites\/23\/2024\/11\/Komunikacni_reseni_negativ.png\" alt=\"\" title=\"Communication_solution_negative\" srcset=\"https:\/\/bezpecnost.ttc.cz\/wp-content\/uploads\/sites\/23\/2024\/11\/Komunikacni_reseni_negativ.png 477w, https:\/\/bezpecnost.ttc.cz\/wp-content\/uploads\/sites\/23\/2024\/11\/Komunikacni_reseni_negativ-300x241.png 300w\" sizes=\"(max-width: 477px) 100vw, 477px\" class=\"wp-image-249977\" \/><\/span>\n\t\t\t<\/div><div class=\"et_pb_module et_d4_element et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_text_inner\"><h1 style=\"text-align: center;\">Better<br \/>Communication<\/h1><\/div>\n\t\t\t<\/div><div class=\"et_pb_module et_d4_element et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_text_inner\"><p class=\"p1\" style=\"text-align: center;\">Optimized information flows, integration of mobile and fixed communication tools<\/p><\/div>\n\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div><div class=\"et_d4_element et_pb_section et_pb_section_3  et_pb_css_mix_blend_mode et_section_regular section_has_divider et_pb_bottom_divider et_pb_top_divider et_block_section\" >\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_d4_element et_pb_row et_pb_row_5  et_pb_css_mix_blend_mode et_block_row\">\n\t\t\t\t<div class=\"et_d4_element et_pb_column_4_4 et_pb_column et_pb_column_8  et_pb_css_mix_blend_mode et-last-child et_block_column\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module et_d4_element et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_text_inner\"><h1>Products<\/h1><\/div>\n\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div><div class=\"et_d4_element et_pb_row et_pb_row_6  et_pb_css_mix_blend_mode et_block_row\">\n\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?><div class=\"et_d4_element et_pb_column_4_4 et_pb_column et_pb_column_9 pac_dcm_column_1  et_pb_css_mix_blend_mode et-last-child et_block_column\" id=\"pac_dcm_carousel_1\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_with_border et_pb_module et_d4_element et_pb_blurb et_pb_blurb_0 pa-overlay pa-underline-link et_pb_section_video_on_hover et_pb_section_parallax_hover  et_pb_text_align_center  et_pb_blurb_position_top et_block_module et_pb_bg_layout_dark\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_blurb_content\">\n\t\t\t\t\t<div class=\"et_pb_main_blurb_image et_pb_css_mix_blend_mode\"><a href=\"https:\/\/bezpecnost.ttc.cz\/en\/vms-and-video-analytics\/\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_off et_pb_animation_off_tablet et_pb_animation_off_phone et-pb-icon et-pb-icon-circle et-pb-icon-circle-border\">&#61501;<\/span><\/span><\/a><\/div>\n\t\t\t\t\t<div class=\"et_pb_blurb_container\">\n\t\t\t\t\t\t<h4 class=\"et_pb_module_header\"><a href=\"https:\/\/bezpecnost.ttc.cz\/en\/vms-and-video-analytics\/\">VMS<\/a><\/h4>\n\t\t\t\t\t\t<div class=\"et_pb_blurb_description\"><p><span>Video management software including video analytics with a focus on integration capabilities with other systems<\/span><\/p>\n<p><a href=\"https:\/\/bezpecnost.ttc.cz\/en\/vms-and-video-analytics\/\">More<\/a><\/p><\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div><div class=\"et_pb_with_border et_pb_module et_d4_element et_pb_blurb et_pb_blurb_1 pa-overlay pa-underline-link et_pb_section_video_on_hover et_pb_section_parallax_hover  et_pb_text_align_center  et_pb_blurb_position_top et_block_module et_pb_bg_layout_dark\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_blurb_content\">\n\t\t\t\t\t<div class=\"et_pb_main_blurb_image et_pb_css_mix_blend_mode\"><a href=\"https:\/\/bezpecnost.ttc.cz\/en\/accur8vision\/\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_off et_pb_animation_off_tablet et_pb_animation_off_phone et-pb-icon et-pb-icon-circle et-pb-icon-circle-border\">&#61550;<\/span><\/span><\/a><\/div>\n\t\t\t\t\t<div class=\"et_pb_blurb_container\">\n\t\t\t\t\t\t<h4 class=\"et_pb_module_header\"><a href=\"https:\/\/bezpecnost.ttc.cz\/en\/accur8vision\/\">Accur8vision<\/a><\/h4>\n\t\t\t\t\t\t<div class=\"et_pb_blurb_description\"><p><span>Volumetric detection, LiDAR-based area security, <\/span><span>3D virtual environment<\/span><\/p>\n<p><a href=\"https:\/\/bezpecnost.ttc.cz\/en\/accur8vision\/\">More<\/a><\/p><\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div><div class=\"et_pb_with_border et_pb_module et_d4_element et_pb_blurb et_pb_blurb_2 pa-overlay pa-underline-link et_pb_section_video_on_hover et_pb_section_parallax_hover  et_pb_text_align_center  et_pb_blurb_position_top et_block_module et_pb_bg_layout_dark\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_blurb_content\">\n\t\t\t\t\t<div class=\"et_pb_main_blurb_image et_pb_css_mix_blend_mode\"><a href=\"https:\/\/bezpecnost.ttc.cz\/en\/oncall\/\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_off et_pb_animation_off_tablet et_pb_animation_off_phone et-pb-icon et-pb-icon-circle et-pb-icon-circle-border\">&#62864;<\/span><\/span><\/a><\/div>\n\t\t\t\t\t<div class=\"et_pb_blurb_container\">\n\t\t\t\t\t\t<h4 class=\"et_pb_module_header\"><a href=\"https:\/\/bezpecnost.ttc.cz\/en\/oncall\/\">OnCall<\/a><\/h4>\n\t\t\t\t\t\t<div class=\"et_pb_blurb_description\"><p><span>Solutions for event and incident management, command and coordination of interventions, selection and provision of the most suitable resources<\/span><\/p>\n<p><a href=\"https:\/\/bezpecnost.ttc.cz\/en\/oncall\/\">More<\/a><\/p><\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div><div class=\"et_pb_with_border et_pb_module et_d4_element et_pb_blurb et_pb_blurb_3 pa-overlay pa-underline-link et_pb_section_video_on_hover et_pb_section_parallax_hover  et_pb_text_align_center  et_pb_blurb_position_top et_block_module et_pb_bg_layout_dark\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_blurb_content\">\n\t\t\t\t\t<div class=\"et_pb_main_blurb_image et_pb_css_mix_blend_mode\"><a href=\"https:\/\/bezpecnost.ttc.cz\/en\/touchguard\/\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_off et_pb_animation_off_tablet et_pb_animation_off_phone et-pb-icon et-pb-icon-circle et-pb-icon-circle-border\">&#63495;<\/span><\/span><\/a><\/div>\n\t\t\t\t\t<div class=\"et_pb_blurb_container\">\n\t\t\t\t\t\t<h4 class=\"et_pb_module_header\"><a href=\"https:\/\/bezpecnost.ttc.cz\/en\/touchguard\/\">TOUCHGUARD<\/a><\/h4>\n\t\t\t\t\t\t<div class=\"et_pb_blurb_description\"><p><span>Online guard tour system, application for monitoring work activity, and lone worker protection<\/span><\/p>\n<p><a href=\"https:\/\/bezpecnost.ttc.cz\/en\/touchguard\/\">More<\/a><\/p><\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div><div class=\"et_pb_with_border et_pb_module et_d4_element et_pb_blurb et_pb_blurb_4 pa-overlay pa-underline-link et_pb_section_video_on_hover et_pb_section_parallax_hover  et_pb_text_align_center  et_pb_blurb_position_top et_block_module et_pb_bg_layout_dark\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_blurb_content\">\n\t\t\t\t\t<div class=\"et_pb_main_blurb_image et_pb_css_mix_blend_mode\"><a href=\"https:\/\/bezpecnost.ttc.cz\/situator\/\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_off et_pb_animation_off_tablet et_pb_animation_off_phone et-pb-icon et-pb-icon-circle et-pb-icon-circle-border\" data-et-multi-view='{\"schema\":{\"content\":{\"desktop\":\"\\ue06c\",\"hover\":\"\\uf108\"},\"target\":\"\",\"hover_selector\":\"\"},\"slug\":\"et_pb_blurb\"}'>&#57452;<\/span><\/span><\/a><\/div>\n\t\t\t\t\t<div class=\"et_pb_blurb_container\">\n\t\t\t\t\t\t<h4 class=\"et_pb_module_header\"><a href=\"https:\/\/bezpecnost.ttc.cz\/situator\/\">Situator<\/a><\/h4>\n\t\t\t\t\t\t<div class=\"et_pb_blurb_description\"><p><span>Software solution for gaining situational awareness and managing dynamic workflows<\/span><\/p>\n<p><a href=\"https:\/\/bezpecnost.ttc.cz\/situator\/\">More<\/a><\/p><\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_bottom_inside_divider et-no-transition\"><\/div>\n\t\t\t<\/div><\/p>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":30,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_monsterinsights_skip_tracking":false,"_et_pb_use_builder":"on","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"class_list":["post-251364","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/bezpecnost.ttc.cz\/en\/wp-json\/wp\/v2\/pages\/251364","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bezpecnost.ttc.cz\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/bezpecnost.ttc.cz\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/bezpecnost.ttc.cz\/en\/wp-json\/wp\/v2\/users\/30"}],"replies":[{"embeddable":true,"href":"https:\/\/bezpecnost.ttc.cz\/en\/wp-json\/wp\/v2\/comments?post=251364"}],"version-history":[{"count":2,"href":"https:\/\/bezpecnost.ttc.cz\/en\/wp-json\/wp\/v2\/pages\/251364\/revisions"}],"predecessor-version":[{"id":251369,"href":"https:\/\/bezpecnost.ttc.cz\/en\/wp-json\/wp\/v2\/pages\/251364\/revisions\/251369"}],"wp:attachment":[{"href":"https:\/\/bezpecnost.ttc.cz\/en\/wp-json\/wp\/v2\/media?parent=251364"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}