        <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":250880,"date":"2026-02-09T09:32:47","date_gmt":"2026-02-09T08:32:47","guid":{"rendered":"https:\/\/ttc-marconi.com\/ttc-marconi\/"},"modified":"2026-09-17T12:18:49","modified_gmt":"2026-09-17T10:18:49","slug":"ttc-marconi","status":"publish","type":"page","link":"https:\/\/ttc-marconi.com\/en\/","title":{"rendered":"TTC MARCONI"},"content":{"rendered":"<div class=\"et_pb_section_0 et_pb_section et_section_regular et_block_section et-pb-has-background-video et_pb_preload hide-until-loaded\"><span class=\"et-pb-background-video\"><video autoplay loop playsinline muted><source type=\"video\/webm\" src=\"https:\/\/ttc-marconi.com\/wp-content\/uploads\/sites\/32\/2026\/04\/Timeline-5.webm\" \/><\/video><\/span>\n<div class=\"et_pb_row_0 et_pb_row et_pb_gutters4 et_block_row\">\n<div class=\"et_pb_column_0 et_pb_column et_pb_column_3_5 et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_text_0 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\" data-et-mv-hidden-tablet=\"true\"><h1 class=\"et_pb_slide_title\" style=\"text-align: left\">Technology Solutions for Critical Infrastructure<\/h1>\n<p style=\"text-align: left\"><span>Since 1993, we have been designing, building, and operating communication networks <\/span><span>and security systems for the energy sector, railway transport, <\/span><span>and critical communications in the Czech Republic and Europe.<\/span><\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_module et_pb_button_module_wrapper et_pb_button_0_wrapper\"><a class=\"et_pb_button_0 et_pb_button et_pb_bg_layout_light et_pb_module et_block_module\" href=\"https:\/\/ttc-marconi.com\/en\/contact\/\">Contact us<\/a><\/div>\n<\/div>\n\n<div class=\"et_pb_column_1 et_pb_column et_pb_column_2_5 et-last-child et_block_column et_pb_column_empty et_pb_css_mix_blend_mode_passthrough\"><\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_1 et_pb_section et_section_regular et_block_section\">\n<div class=\"et_pb_row_1 et_pb_row et_block_row\">\n<div class=\"et_pb_column_2 et_pb_column et_pb_column_4_4 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_icon_0 et_pb_icon et_animated et_clickable et_pb_module et_block_module\"><span class=\"et_pb_icon_wrap\"><a href=\"#odvetvi\" target=\"\"><span class=\"et-pb-icon\">7<\/span><\/a><\/span><\/div>\n\n<div class=\"et_pb_text_1 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module odvetvi\" id=\"odvetvi\"><div class=\"et_pb_text_inner\"><h1 style=\"text-align: center\"> Solutions by Industry<\/h1>\n<p style=\"text-align: center\">A comprehensive portfolio of solutions ranging from communication and data networks to security and industrial IoT. We combine system integration with our own product development. <\/p>\n<\/div><\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_row_2 et_pb_row et-vb-row--no-module et_block_row\">\n\n<?xml version=\"1.0\" encoding=\"UTF-8\"?><div class=\"et_d4_element et_pb_column_4_4 et_pb_column et_pb_column_20 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_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:\/\/komunikace.ttc.cz\/\"><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\">&#62112;<\/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:\/\/komunikace.ttc.cz\/\">Mission-Critical Communication<\/a><\/h4>\n\t\t\t\t\t\t<div class=\"et_pb_blurb_description\"><p class=\"p1\">Voice dispatch systems, DMR radio networks, private 5G, MCX services, and FRMCS. We unify various types of communication into a single workstation for efficient management of critical situations. <\/p>\n<p><a href=\"https:\/\/komunikace.ttc.cz\/\">Communication Solutions<\/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:\/\/komunikace.ttc.cz\/zeleznicni-doprava-2\/\"><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\">&#63231;<\/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:\/\/komunikace.ttc.cz\/zeleznicni-doprava-2\/\">Data and Transmission Networks<\/a><\/h4>\n\t\t\t\t\t\t<div class=\"et_pb_blurb_description\"><p class=\"p1\">Backbone fiber optic networks, MPLS, WAN\/LAN\/WLAN, microwave links, and migration from legacy systems. We ensure high-speed and secure data connections with a focus on cybersecurity. <\/p>\n<p><a href=\"https:\/\/infrastruktura.ttc.cz\/\">Infrastructure Solutions<\/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_5 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:\/\/teleprotekce.ttc.cz\/\"><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\">&#61671;<\/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:\/\/teleprotekce.ttc.cz\/\">Teleprotection<\/a><\/h4>\n\t\t\t\t\t\t<div class=\"et_pb_blurb_description\"><p class=\"p1\">Fast and reliable communication for power system protection. Multi-service devices for transmitting distance and differential protection commands with minimal latency. Support for legacy and modern protocols including IEC 61850.  <\/p>\n<p><a href=\"https:\/\/teleprotekce.ttc.cz\/\">Teleprotection Solutions<\/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_6 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:\/\/iot.ttc.cz\/\"><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\":\"\\ue0ec\",\"hover\":\"\\uf108\"},\"target\":\"\",\"hover_selector\":\"\"},\"slug\":\"et_pb_blurb\"}'>&#57580;<\/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:\/\/iot.ttc.cz\/\">Industrial IoT<\/a><\/h4>\n\t\t\t\t\t\t<div class=\"et_pb_blurb_description\"><p class=\"p1\">Collection, concentration, and processing of data from the distribution network. Data concentrators, remote device management, and centers for evaluating measured data. Solutions for smart grids and network behavior prediction.  <\/p>\n<p><a href=\"https:\/\/iot.ttc.cz\/\">IoT Solutions<\/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_7 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\/\"><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\">&#62725;<\/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\/\">Converged Security<\/a><\/h4>\n\t\t\t\t\t\t<div class=\"et_pb_blurb_description\"><p class=\"p1\">Integrating physical, cyber, and operational security into a single whole. Situation management, video management, cyber protection, and incident management for comprehensive security of critical assets. <\/p>\n<p><a href=\"https:\/\/bezpecnost.ttc.cz\/\">Security Solutions<\/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\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_2 et_pb_section et_section_regular et_block_section\">\n<div class=\"et_pb_row_3 et_pb_row et_block_row\">\n<div class=\"et_pb_column_3 et_pb_column et_pb_column_4_4 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_text_2 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><h1 class=\"p1\" style=\"text-align: center\">Solutions for Sectors<\/h1>\n<p class=\"p1\" style=\"text-align: center\">Our key areas are energy, railway transport, and critical communications. Thanks to a deep understanding of the specifics of individual industries, we can design and operate solutions that truly work. <\/p>\n<\/div><\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_row_4 et_pb_row et_block_row\">\n<div class=\"et_pb_column_4 et_pb_column et_pb_column_2_3 et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_text_3 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><h3 class=\"p1\">Energy and Utilities<\/h3>\n<p class=\"p1\">We ensure reliable communication for distribution system control, protection against outages, and efficient management of energy networks. From backbone fiber optic networks and teleprotection to data collection from distribution substations. <\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_module et_pb_button_module_wrapper et_pb_button_1_wrapper\"><a class=\"et_pb_button_1 et_pb_button et_pb_bg_layout_light et_pb_module et_block_module\" href=\"https:\/\/ttc-marconi.com\/en\/energy-and-utilities\/\">Solutions for the energy sector<\/a><\/div>\n<\/div>\n\n<div class=\"et_pb_column_5 et_pb_column et_pb_column_1_3 et-last-child et_block_column et_pb_column_empty et_pb_css_mix_blend_mode_passthrough\"><\/div>\n<\/div>\n\n<div class=\"et_pb_row_5 et_pb_row et_block_row\">\n<div class=\"et_pb_column_6 et_pb_column et_pb_column_1_3 et_block_column et_pb_column_empty et_pb_css_mix_blend_mode_passthrough\"><\/div>\n\n<div class=\"et_pb_column_7 et_pb_column et_pb_column_2_3 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_text_4 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><h3 class=\"p1\">Railway Transport<\/h3>\n<p class=\"p1\">We build communication infrastructure for safe transport, from dispatch systems and data networks to preparation for FRMCS and ETCS. We help railways in their digital transformation. <\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_module et_pb_button_module_wrapper et_pb_button_2_wrapper\"><a class=\"et_pb_button_2 et_pb_button et_pb_bg_layout_light et_pb_module et_block_module\" href=\"https:\/\/ttc-marconi.com\/en\/railway-transport\/\">Railway Solutions<\/a><\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_row_6 et_pb_row et_block_row\">\n<div class=\"et_pb_column_8 et_pb_column et_pb_column_2_3 et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_text_5 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><h3 class=\"p1\">Critical Infrastructure and Emergency Services<\/h3>\n<p class=\"p1\">Comprehensive solutions for integrated emergency services, airports, the military, and other elements of critical infrastructure. We secure communications, data networks, and converged security for situations where every second counts. <\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_module et_pb_button_module_wrapper et_pb_button_3_wrapper\"><a class=\"et_pb_button_3 et_pb_button et_pb_bg_layout_light et_pb_module et_block_module\" href=\"https:\/\/ttc-marconi.com\/en\/critical-infrastructure-and-emergency-services\/\">Critical Infrastructure Solutions<\/a><\/div>\n<\/div>\n\n<div class=\"et_pb_column_9 et_pb_column et_pb_column_1_3 et-last-child et_block_column et_pb_column_empty et_pb_css_mix_blend_mode_passthrough\"><\/div>\n<\/div>\n\n<div class=\"et_pb_row_7 et_pb_row et_block_row\">\n<div class=\"et_pb_column_10 et_pb_column et_pb_column_1_3 et_block_column et_pb_column_empty et_pb_css_mix_blend_mode_passthrough\"><\/div>\n\n<div class=\"et_pb_column_11 et_pb_column et_pb_column_2_3 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_text_6 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><h3 class=\"p1\">Other Industries<\/h3>\n<p class=\"p1\">We also work for public administration, manufacturing, and industry. Our solutions help optimize processes, increase security, and prepare for Industry 4.0. <\/p>\n<\/div><\/div>\n\n\n<div class=\"et_pb_module et_d4_element et_pb_divimenus_flex et_pb_divimenus_flex_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\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module_inner\">\n\t\t\t\t\t<div class=\"dd-wrapper\"><nav class=\"dd-divimenu dd-flex dd-divimenu-open dd-closed-tablet\" role=\"menu\" aria-label=\"DiviMenu\"><div class=\"dd-menu-button\" role=\"menuitem\"><span class=\"dd-item dd-menu-button-content dd-icon-content notranslate\"aria-label=\"a Icon Font\" role=\"button\" aria-pressed=\"true\" tabindex=\"0\">a<\/span><\/div><div class=\"et_d4_element et_pb_divimenus_flex_item et_pb_divimenus_flex_item_0\" role=\"menuitem\">\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_pb_module_inner\">\n\t\t\t\t\t<div class=\"dd-mi-w dd-menu-flex-item-wrapper\"><div class=\"dd-mi dd-menu-flex-item dd-sub-fw dd-h-d dd-h-t dd-h-p \"><a href=\"#\" tabindex=\"-1\" data-effect-in=\"slidedown\" data-effect-ms=\"200\" aria-haspopup=\"true\" aria-expanded=\"false\"  class=\"dd-sub\"><div class=\"dd-item dd-menu-item-content dd-text\" tabindex=\"0\"><span class=\"dd-text-content\">Other Industries<\/span><\/div><\/a><div class=\"dd-menu-flex-sub\"><div class=\"et_d4_element et_pb_section et_pb_section_6  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_12 et_pb_gutters2  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_21  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_with_border et_pb_module et_d4_element et_pb_text et_pb_text_13 et_clickable  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>Kritick\u00e1 komunikace<\/h2>\n<p class=\"p1\">komunikace.ttc.cz<\/p><\/div>\n\t\t\t<\/div><div class=\"et_pb_with_border et_pb_module et_d4_element et_pb_text et_pb_text_14 et_clickable  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>P\u0159enosov\u00e9 a datov\u00e9 s\u00edt\u011b<\/h2>\n<p>infrastruktura.ttc.cz<\/p><\/div>\n\t\t\t<\/div><div class=\"et_pb_with_border et_pb_module et_d4_element et_pb_text et_pb_text_15 et_clickable  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>Teleprotekce<\/h2>\n<p>teleprotekce.ttc.cz<\/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_22  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_with_border et_pb_module et_d4_element et_pb_text et_pb_text_16 et_clickable  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>Pr\u016fmyslov\u00e9 IoT<\/h2>\n<p>iot.ttc.cz<\/p><\/div>\n\t\t\t<\/div><div class=\"et_pb_with_border et_pb_module et_d4_element et_pb_text et_pb_text_17 et_clickable  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>Konvergovan\u00e1 bezpe\u010dnost<\/h2>\n<p>bezpecnost.ttc.cz<\/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><\/div><\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div><\/nav><\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_3 et_pb_section et_section_regular et_block_section\">\n<div class=\"et_pb_row_8 et_pb_row et_pb_gutters4 et_block_row\">\n<div class=\"et_pb_column_12 et_pb_column et_pb_column_3_5 et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_blurb_0 et_pb_blurb et_pb_bg_layout_light et_pb_blurb_position_left et_pb_module et_block_module\"><div class=\"et_pb_blurb_content\"><div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap et_pb_only_image_mode_wrap\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/ttc-marconi.com\/wp-content\/uploads\/sites\/32\/2026\/02\/Bezpecnost_negativ.png\" width=\"308\" height=\"385\" srcset=\"https:\/\/ttc-marconi.com\/wp-content\/uploads\/sites\/32\/2026\/02\/Bezpecnost_negativ.png 308w, https:\/\/ttc-marconi.com\/wp-content\/uploads\/sites\/32\/2026\/02\/Bezpecnost_negativ-240x300.png 240w\" sizes=\"(max-width: 308px) 100vw, 308px\" class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone wp-image-63\" \/><\/span><\/div><div class=\"et_pb_blurb_container\"><h4 class=\"et_pb_module_header\">Reliability for Critical Infrastructure<\/h4><div class=\"et_pb_blurb_description\"><p class=\"p2\"><span class=\"s1\"> <\/span>We ensure continuous operation for the energy sector, railways, and integrated emergency services. We meet the conditions for ISO 9001, 14001, 27001, 20000-1, AQAP 2110 certification, and NSA (NB\u00da) clearance for the SECRET level. <\/p>\n<\/div><\/div><\/div><\/div>\n\n<div class=\"et_pb_blurb_1 et_pb_blurb et_pb_bg_layout_light et_pb_blurb_position_left et_pb_module et_block_module\"><div class=\"et_pb_blurb_content\"><div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap et_pb_only_image_mode_wrap\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/ttc-marconi.com\/wp-content\/uploads\/sites\/32\/2026\/02\/Modernizace_a_nove_vytahy_negativ.png\" width=\"447\" height=\"432\" srcset=\"https:\/\/ttc-marconi.com\/wp-content\/uploads\/sites\/32\/2026\/02\/Modernizace_a_nove_vytahy_negativ.png 447w, https:\/\/ttc-marconi.com\/wp-content\/uploads\/sites\/32\/2026\/02\/Modernizace_a_nove_vytahy_negativ-300x290.png 300w\" sizes=\"(max-width: 447px) 100vw, 447px\" class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone wp-image-65\" \/><\/span><\/div><div class=\"et_pb_blurb_container\"><h4 class=\"et_pb_module_header\">From Design to Operation<\/h4><div class=\"et_pb_blurb_description\"><p class=\"p2\"><span class=\"s1\"> <\/span>As a system integrator, we build tailor-made solutions, and thanks to our own product development (KONOS, PCM30U-OCH, SGN-RCE, and others), we can respond flexibly to specific customer requirements. We utilize synergies within the TTC Group. <\/p>\n<\/div><\/div><\/div><\/div>\n\n<div class=\"et_pb_blurb_2 et_pb_blurb et_pb_bg_layout_light et_pb_blurb_position_left et_pb_module et_block_module\"><div class=\"et_pb_blurb_content\"><div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap et_pb_only_image_mode_wrap\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/ttc-marconi.com\/wp-content\/uploads\/sites\/32\/2026\/02\/Prumyslove_site_negativ.png\" width=\"325\" height=\"325\" srcset=\"https:\/\/ttc-marconi.com\/wp-content\/uploads\/sites\/32\/2026\/02\/Prumyslove_site_negativ.png 325w, https:\/\/ttc-marconi.com\/wp-content\/uploads\/sites\/32\/2026\/02\/Prumyslove_site_negativ-300x300.png 300w, https:\/\/ttc-marconi.com\/wp-content\/uploads\/sites\/32\/2026\/02\/Prumyslove_site_negativ-150x150.png 150w\" sizes=\"(max-width: 325px) 100vw, 325px\" class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone wp-image-166\" \/><\/span><\/div><div class=\"et_pb_blurb_container\"><h4 class=\"et_pb_module_header\">Next-Generation Networks and Technologies<\/h4><div class=\"et_pb_blurb_description\"><p class=\"p1\">We prepare our customers for digital transformation, from 5G networks and FRMCS to IoT, Industry 4.0, and advanced security. We assist with migration from legacy technologies to modern IP environments. <\/p>\n<\/div><\/div><\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_13 et_pb_column et_pb_column_2_5 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_image_0 et_pb_image et_pb_module et_block_module\"><span class=\"et_pb_image_wrap\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/ttc-marconi.com\/wp-content\/uploads\/sites\/32\/2026\/02\/MARCONI_zaklad_pozitiv-scaled.png\" width=\"2560\" height=\"256\" srcset=\"https:\/\/ttc-marconi.com\/wp-content\/uploads\/sites\/32\/2026\/02\/MARCONI_zaklad_pozitiv-scaled.png 2560w, https:\/\/ttc-marconi.com\/wp-content\/uploads\/sites\/32\/2026\/02\/MARCONI_zaklad_pozitiv-1280x128.png 1280w, https:\/\/ttc-marconi.com\/wp-content\/uploads\/sites\/32\/2026\/02\/MARCONI_zaklad_pozitiv-980x98.png 980w, https:\/\/ttc-marconi.com\/wp-content\/uploads\/sites\/32\/2026\/02\/MARCONI_zaklad_pozitiv-480x48.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2560px, 100vw\" class=\"wp-image-242\" title=\"MARCONI_base_positive\" \/><\/span><\/div>\n\n<div class=\"et_pb_text_7 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p class=\"p2\" style=\"text-align: left\"><span class=\"s1\"> <\/span>We are a system integrator and manufacturer of our own products with more than 30 years of experience in the field of critical infrastructure. We provide our customers with comprehensive solutions from design and implementation to long-term operation and service. <\/p>\n<\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_4 et_pb_section et_section_regular et_block_section\">\n<div class=\"et_pb_row_9 et_pb_row et_pb_gutters2 et_block_row\">\n<div class=\"et_pb_column_14 et_pb_column et_pb_column_1_3 et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_text_8 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><h2 class=\"p1\" style=\"text-align: left\">Do you have a project?<br \/>Let's realize it<br \/>together.<\/h2>\n<\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_15 et_pb_column et_pb_column_1_3 et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_text_9 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p class=\"p1\">Whether you are planning to build a new network, modernize existing infrastructure, or are looking for a partner for long-term operation, we would be happy to discuss solution options with you.<\/p>\n<\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_16 et_pb_column et_pb_column_1_3 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_module et_pb_button_module_wrapper et_pb_button_4_wrapper\"><a class=\"et_pb_button_4 et_pb_button et_pb_bg_layout_light et_pb_module et_block_module\" href=\"https:\/\/ttc-marconi.com\/en\/contact\/\">Contact us<\/a><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_5 et_pb_section et_section_regular et_block_section\">\n<div class=\"et_pb_row_10 et_pb_row et_block_row\">\n<div class=\"et_pb_column_17 et_pb_column et_pb_column_4_4 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_text_10 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\" data-et-mv-hidden-phone=\"true\"><h1 class=\"p1\" style=\"text-align: center\">Trusted by<\/h1>\n<p class=\"p1\" style=\"text-align: center\">Our customers include key organizations in the Czech Republic and abroad. Our solutions are in continuous operation with energy network operators, railway infrastructure managers, emergency services, and other institutions. <\/p>\n<\/div><\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_row_11 et_pb_row et_block_row\">\n<div class=\"et_pb_column_18 et_pb_column et_pb_column_1_2 et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_text_11 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><h3 class=\"p1\">Part of the TTC Group<\/h3>\n<p class=\"p1\">As part of the TTC Group, our customers benefit from synergies with other ICT companies in the group, particularly from cooperation with specialists from <br \/>TTC TELEKOMUNIKACE, TTC CONTROLS, and TTC NOVIQ.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_image_1 et_pb_image et_pb_module et_block_module\"><span class=\"et_pb_image_wrap\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/ttc-marconi.com\/wp-content\/uploads\/sites\/32\/2026\/02\/TTC-skupina.png\" width=\"2000\" height=\"232\" srcset=\"https:\/\/ttc-marconi.com\/wp-content\/uploads\/sites\/32\/2026\/02\/TTC-skupina.png 2000w, https:\/\/ttc-marconi.com\/wp-content\/uploads\/sites\/32\/2026\/02\/TTC-skupina-1280x148.png 1280w, https:\/\/ttc-marconi.com\/wp-content\/uploads\/sites\/32\/2026\/02\/TTC-skupina-980x114.png 980w, https:\/\/ttc-marconi.com\/wp-content\/uploads\/sites\/32\/2026\/02\/TTC-skupina-480x56.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2000px, 100vw\" class=\"wp-image-241\" title=\"TTC Group\" \/><\/span><\/div>\n<\/div>\n\n<div class=\"et_pb_column_19 et_pb_column et_pb_column_1_2 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_text_12 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\" data-et-mv-hidden-phone=\"true\"><h3 class=\"p1\">Certifications and Security Clearances <br \/>within the TTC Group<\/h3>\n<p class=\"p2\">ISO 9001:2015 - Quality Management System<\/p>\n<p class=\"p2\">ISO 14001:2015 - Environmental Management System<\/p>\n<p class=\"p2\">ISO\/IEC 27001:2013 - Information Security Management System<\/p>\n<p class=\"p2\">ISO\/IEC 20000-1:2018 - IT Service Management System<\/p>\n<p class=\"p2\">AQAP 2110 - Certificate of the Ministry of Defence of the Czech Republic<\/p>\n<p class=\"p2\">NSA (NB\u00da) clearance for the SECRET level<\/p>\n<p class=\"p2\">NATO Certificate<\/p>\n<\/div><\/div>\n<\/div>\n<\/div>\n<\/div>","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-250880","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/ttc-marconi.com\/en\/wp-json\/wp\/v2\/pages\/250880","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ttc-marconi.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/ttc-marconi.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/ttc-marconi.com\/en\/wp-json\/wp\/v2\/users\/30"}],"replies":[{"embeddable":true,"href":"https:\/\/ttc-marconi.com\/en\/wp-json\/wp\/v2\/comments?post=250880"}],"version-history":[{"count":2,"href":"https:\/\/ttc-marconi.com\/en\/wp-json\/wp\/v2\/pages\/250880\/revisions"}],"predecessor-version":[{"id":251019,"href":"https:\/\/ttc-marconi.com\/en\/wp-json\/wp\/v2\/pages\/250880\/revisions\/251019"}],"wp:attachment":[{"href":"https:\/\/ttc-marconi.com\/en\/wp-json\/wp\/v2\/media?parent=250880"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}